:root {
    --navy: #0b1628;
    --navy-mid: #142038;
    --gold: #c9922a;
    --gold-light: #e8b84b;
    --gold-pale: #f5e6c8;
    --cream: #faf7f2;
    --white: #ffffff;
    --red: #c0392b;
    --text-dark: #0b1628;
    --text-muted: #5c6b7a;
    --border: rgba(201, 146, 42, 0.25);
    --soft-border: rgba(255, 255, 255, 0.12);
    --shadow-gold: 0 12px 40px rgba(201, 146, 42, 0.2);
    --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

iframe {
    display: block;
    width: 100%;
    border: 0;
}

.landing--ai-growth {
    background: var(--navy);
    color: var(--white);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-3 {
    margin-bottom: 1rem;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

/* Page wrapper */
.ai-growth-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(201, 146, 42, 0.08), transparent 70%),
        linear-gradient(180deg, #0b1628 0%, #0b1628 35%, #101b31 100%);
}

/* Topbar */
.ai-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 22, 40, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.ai-brand {
    display: flex;
    align-items: center;
}

.ai-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ai-topbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.ai-topbar-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* Hero */
.hero {
    position: relative;
    padding: 84px 0 72px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 146, 42, 0.13) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 95% 40%, rgba(201, 146, 42, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: 48px;
    align-items: center;
}

.hero-left {
    max-width: 740px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 146, 42, 0.12);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
}

.hero-eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-pain {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    padding-left: 14px;
    border-left: 2px solid rgba(201, 146, 42, 0.45);
    max-width: 640px;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.4vw, 4.25rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    color: var(--gold-light);
    font-style: italic;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 700px;
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.2;
}

.hero-cta,
.final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 34px;
    border-radius: 999px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}

.hero-cta:hover,
.final-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.hero-note {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
}

/* Form card */
.form-card {
    background: linear-gradient(180deg, rgba(20, 32, 56, 0.95), rgba(16, 26, 46, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 6px;
    line-height: 1.2;
}

.form-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    line-height: 1.65;
}

.spots {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.34);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 12px;
    color: #ef8c81;
    margin-bottom: 18px;
    font-weight: 600;
}

.spots-dot {
    width: 8px;
    height: 8px;
    background: #ef8c81;
    border-radius: 50%;
    animation: pulse 1s infinite;
    flex-shrink: 0;
}

.iframe-wrap {
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
        min-height: 520px;

    
}

.form-security {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.32);
    margin-top: 12px;
}

/* Stats */
.stats {
    padding: 18px 0 8px;
}

.stats-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 10px 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 24px 12px;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: var(--border);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    margin-top: 8px;
}

/* Generic sections */
.ai-section,
.offer-section,
.value-section,
.final-cta {
    padding: 84px 0;
}

.section-inner {
    max-width: 1120px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.8;
    max-width: 700px;
}

/* Offer section */
.offer-section {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 184, 75, 0.5);
}

.offer-card-icon {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.offer-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.offer-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
}

/* Cases */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.case-card {
    background: linear-gradient(180deg, rgba(20, 32, 56, 0.95), rgba(14, 25, 44, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.case-result {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.case-metric {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.44);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    line-height: 1.5;
}

.case-quote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 14px;
}

.case-client {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
}

/* Value section */
.value-section {
    background: var(--cream);
    color: var(--text-dark);
}

.value-section .section-title {
    color: var(--navy);
}

.value-section .section-sub {
    color: var(--text-muted);
}

.value-section .section-label {
    color: var(--gold);
}

.bonus-list {
    margin-top: 30px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(11, 22, 40, 0.08);
}

.bonus-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--navy);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.bonus-text {
    flex: 1;
}

.bonus-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.bonus-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.bonus-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
    white-space: nowrap;
}

.bonus-value.gold {
    color: var(--gold);
    text-decoration: none;
}

.value-total {
    margin-top: 18px;
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.value-total-label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.value-total-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* Final CTA */
.final-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 146, 42, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.final-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 16px;
    color: var(--white);
}

.final-headline em {
    color: var(--gold-light);
    font-style: italic;
}

.final-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 28px;
    line-height: 1.75;
}

/* Thank you extras */
.video-wrap,
.calendar-wrap {
    margin-top: 30px;
}

.video-placeholder {
    width: 100%;
    max-width: 820px;
    height: 460px;
    margin: 0 auto;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(201, 146, 42, 0.08)),
        #050b16;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.calendar-wrap iframe {
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

/* Footer */
.ai-footer {
    border-top: 1px solid var(--border);
    padding: 28px 0 36px;
    text-align: center;
}

.ai-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.82);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-left {
        max-width: 100%;
    }

    .form-card {
        max-width: 560px;
    }

    .cases-grid,
    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ai-topbar {
        padding: 12px 0;
    }

    .ai-logo {
        width: 140px;
    }

    .ai-topbar-btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    .hero {
        padding: 56px 0 42px;
    }

    .hero-pain {
        font-size: 14px;
    }

    .hero-sub,
    .section-sub,
    .final-sub {
        font-size: 15px;
    }

    .hero-cta,
    .final-btn {
        width: 100%;
        padding: 15px 18px;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .offer-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .ai-section,
    .offer-section,
    .value-section,
    .final-cta {
        padding: 64px 0;
    }

    .form-card {
        padding: 22px;
    }

    .video-placeholder {
        height: 240px;
    }

    .calendar-wrap iframe {
        height: 560px;
    }

    .value-total {
        flex-direction: column;
        align-items: flex-start;
    }

    .bonus-item {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-eyebrow {
        font-size: 10px;
        padding: 7px 12px;
    }

    .pill {
        width: 100%;
        justify-content: flex-start;
    }

    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none !important;
    }

    .video-placeholder {
        height: 200px;
    }
}