:root {
    --chatgpt-primary: #F1592A;
    --chatgpt-secondary: #D6451B;
    --chatgpt-accent: #FFF0EB;
    --chatgpt-bg-light: #F9FAFB;
    --chatgpt-text-dark: #111827;
    --chatgpt-text-gray: #4B5563;
    --chatgpt-radius: 1rem;
}

/* Base Styles for the landing page */
.chatgpt-landing {
    font-family: 'Inter', sans-serif;
    color: var(--chatgpt-text-dark);
}

.chatgpt-landing .gradient-text {
    background: linear-gradient(to right, var(--chatgpt-primary), var(--chatgpt-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes chatgptFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.chatgpt-landing .animate-float {
    animation: chatgptFloat 6s ease-in-out infinite;
}

/* Sections */
.chatgpt-section {
    padding: 80px 0;
}

.chatgpt-section--gray {
    background-color: var(--chatgpt-bg-light);
}

/* Hero */
.chatgpt-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.chatgpt-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    color: #C2410C;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.chatgpt-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.chatgpt-hero__desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--chatgpt-text-gray);
    margin-bottom: 40px;
    max-width: 32rem;
}

.chatgpt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none !important;
}

.chatgpt-btn--primary {
    background-color: var(--chatgpt-primary);
    color: white !important;
    box-shadow: 0 10px 15px -3px rgba(241, 89, 42, 0.3);
}

.chatgpt-btn--primary:hover {
    background-color: var(--chatgpt-secondary);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(241, 89, 42, 0.4);
}

/* Feature Cards */
.chatgpt-grid {
    display: grid;
    gap: 2rem;
}

.chatgpt-card {
    background: white;
    border: 1px solid #F3F4F6;
    border-radius: var(--chatgpt-radius);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.chatgpt-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.chatgpt-card__img-wrapper {
    height: 12rem;
    position: relative;
    overflow: hidden;
}

.chatgpt-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.chatgpt-card:hover .chatgpt-card__img {
    transform: scale(1.1);
}

.chatgpt-card__content {
    padding: 2rem;
}

.chatgpt-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatgpt-card__desc {
    color: var(--chatgpt-text-gray);
    line-height: 1.625;
    font-size: 0.875rem;
}

/* Advantages */
.chatgpt-advantage {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #F3F4F6;
    position: relative;
    transition: all 0.3s;
}

.chatgpt-advantage:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.chatgpt-advantage__icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: #FFF7ED;
    color: var(--chatgpt-primary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.chatgpt-advantage__bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    font-size: 6rem !important;
    opacity: 0.05;
    transition: opacity 0.3s;
}

.chatgpt-advantage:hover .chatgpt-advantage__bg-icon {
    opacity: 0.15;
}

/* Hero Image & Stat Card */
.chatgpt-hero__image-wrapper {
    position: relative;
    z-index: 10;
}

.chatgpt-hero__image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(241, 89, 42, 0.15) 0%, rgba(241, 89, 42, 0) 70%);
    filter: blur(40px);
    z-index: -1;
}

.chatgpt-hero__img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chatgpt-hero__stat-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: bounce 3s infinite;
}

.chatgpt-hero__stat-icon {
    background: #DCFce7;
    color: #16a34a;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
}

.chatgpt-hero__stat-label {
    font-size: 0.75rem;
    color: var(--chatgpt-text-gray);
    font-weight: 600;
    margin: 0;
}

.chatgpt-hero__stat-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--chatgpt-text-dark);
    margin: 0;
}

/* CTA Blobs */
.chatgpt-cta-box {
    position: relative;
    background: var(--chatgpt-primary);
    padding: 5rem 2rem;
    border-radius: 2rem;
    color: white;
    text-align: center;
    overflow: hidden;
}

.chatgpt-cta-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.chatgpt-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.chatgpt-blob--1 {
    top: -10%;
    right: -5%;
    width: 15rem;
    height: 15rem;
    background: #fb923c;
    animation: blobFloat 10s infinite alternate;
}

.chatgpt-blob--2 {
    bottom: -10%;
    left: -5%;
    width: 18rem;
    height: 18rem;
    background: #ef4444;
    animation: blobFloat 12s infinite alternate-reverse;
}

@keyframes blobFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, 20px) scale(1.1); }
}

/* Utilities */
.text-primary { color: var(--chatgpt-primary) !important; }
.bg-primary { background-color: var(--chatgpt-primary) !important; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Adjustments for existing sections */
.chatgpt-logos-pulse img {
    max-height: 40px;
    width: auto;
}

.chatgpt-blog-card__img-wrapper {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.chatgpt-blog-card {
    transition: transform 0.3s;
}

.chatgpt-blog-card:hover {
    transform: translateY(-5px);
}

.chatgpt-contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}
.chatgpt-faq__item {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
}

.chatgpt-faq__q {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.chatgpt-faq__a {
    padding: 0 1rem 1rem;
    color: var(--chatgpt-text-gray);
    line-height: 1.625;
}

/* Blog */
.chatgpt-blog-card {
    display: flex;
    flex-direction: column;
}

.chatgpt-blog-card__img {
    height: 12rem;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .chatgpt-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .chatgpt-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .chatgpt-hero__title { font-size: 2.5rem; }
    .chatgpt-section { padding: 40px 0; }
}
