 :root {
            --cream-left: #FAF6F2;
            --peach-right: #FDECE3;
            --navy: #121E2C;
            --brick: #D14524;
            --ochre: #E69E32;
            --kicker-orange: #D78A3A;
            --muted: #626569;
            --btn-from: #E1572C;
            --btn-to: #CF3E1B;
            --blue: #1A73E8;
            --coral: #E1572C;
            --coral-deep: #D14524;
            --cream: #fdf1ec;
            --cream-2: #fdf8f6;
            --white: #FFFFFF;
            --text: #15172b;
            --text-2: #292929;
            --text-3: #1a1a1a;
            --border: #f0e8e4;
            --border-2: #ede8e5;
            --radius-pill: 999px;
        }

     /* ---------- HERO WRAPPER ---------- */
        .hero-section {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            /* Split background: cream on left, peach on right (smooth blend) */
            background: linear-gradient(100deg,
                    var(--cream-left) 0%,
                    var(--cream-left) 45%,
                    #FBEFE6 55%,
                    var(--peach-right) 100%);
        }

        .hero-row {
            min-height: 100vh;
        }

        /* ---------- LEFT SIDE ---------- */
        .hero-left {
            padding: 4rem 3rem 4rem 6rem;
        }

        .hero-left-inner {
            max-width: 560px;
            margin-left: auto;
            margin-right: 0;
        }

        section#hero-section {
            padding-top: 60px;
        }

        /* Kicker / eyebrow */
        .hero-kicker {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 2rem;
        }

        .kicker-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--kicker-orange);
            display: inline-block;
        }

        .kicker-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            color: var(--kicker-orange);
            text-transform: uppercase;
        }

        /* Main Heading */
        .hero-heading {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 62px !important;
            line-height: 1.02;
            color: var(--navy);
            letter-spacing: -0.01em;
            margin: 0 0 1.75rem 0;
        }

        /* Italic "Optimizes" word */
        .heading-italic {
            position: relative;
            font-style: italic;
            font-weight: 600;
            color: var(--brick);
            display: inline-block;
            padding: 0 0.1em 0.15em 0.1em;
        }

        /* Hand-drawn squiggle underline */
        .squiggle {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -6px;
            width: 100%;
            height: 18px;
            pointer-events: none;
        }

        /* Subhead */
        .hero-subhead {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.55;
            color: var(--muted);
            margin: 0 0 2.25rem 0;
        }

        /* CTA Button */
        .hero-cta {
            display: inline-block;
            padding: 0.95rem 1.9rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--btn-from) 0%, var(--btn-to) 100%);
            color: #fff !important;
            font-weight: 500;
            font-size: 0.98rem;
            letter-spacing: 0.01em;
            border: none;
            text-decoration: none;
            box-shadow:
                0 14px 30px -10px rgba(207, 62, 27, 0.55),
                0 4px 10px -2px rgba(207, 62, 27, 0.35);
            transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            filter: brightness(1.05);
            box-shadow:
                0 20px 36px -10px rgba(207, 62, 27, 0.6),
                0 6px 14px -2px rgba(207, 62, 27, 0.4);
            color: #fff;
        }

        .hero-cta:active {
            transform: translateY(0);
        }

        /* ---------- RIGHT SIDE ---------- */
        .hero-right {
            position: relative;
            padding: 4rem 5rem 4rem 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Giant translucent G watermark */
        .gmark {
            position: absolute;
            top: -180px;
            right: -160px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 900px;
            line-height: 1;
            color: rgba(232, 68, 58, .06);
            user-select: none;
            pointer-events: none;
            z-index: 0;
        }

        /* Cards stack wrapper */
        .cards-stack {
            position: relative;
            width: 100%;
            max-width: 560px;
            z-index: 2;
        }

        /* Primary big card (auditorium) */
        .card-primary {
            position: relative;
            width: 100%;
            border-radius: 22px;
            overflow: hidden;
            background: #fff;
            padding: 10px;
            box-shadow:
                0 30px 60px -20px rgba(70, 30, 10, 0.25),
                0 10px 25px -10px rgba(70, 30, 10, 0.15);
        }

        .card-primary-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        /* Play button overlay */
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 0;
            z-index: 3;
        }

        .play-ring {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 3px solid rgba(225, 87, 44, 0.85);
            box-shadow: 0 0 0 6px rgba(225, 87, 44, 0.15);
            animation: pulse 2.2s ease-out infinite;
        }

        .play-circle {
            position: absolute;
            inset: 12px;
            border-radius: 50%;
            background: linear-gradient(135deg, #F26B3A 0%, #D14524 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.4rem;
            padding-left: 4px;
            /* optical centering for play icon */
            box-shadow: 0 8px 20px -4px rgba(209, 69, 36, 0.55);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0px rgba(225, 87, 44, 0.35);
            }

            70% {
                box-shadow: 0 0 0 22px rgba(225, 87, 44, 0);
            }

            100% {
                box-shadow: 0 0 0 0px rgba(225, 87, 44, 0);
            }
        }

        /* Secondary smaller overlapping card (Gemini 3.5) */
        .card-secondary {
            position: absolute;
            left: -60px;
            bottom: -50px;
            width: 240px;
            border-radius: 18px;
            overflow: hidden;
            background: #fff;
            padding: 8px;
            box-shadow:
                0 25px 45px -15px rgba(70, 30, 10, 0.28),
                0 8px 18px -8px rgba(70, 30, 10, 0.18);
            z-index: 4;
        }

        .card-secondary-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
            border-radius: 12px;
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 1400px) {
            .hero-heading {
                font-size: 4.4rem;
            }

            .hero-left {
                padding: 4rem 3rem 4rem 5rem;
            }
        }

        @media (max-width: 1199px) {
            .hero-heading {
                font-size: 3.8rem;
            }

            .hero-left {
                padding: 3.5rem 2rem 3.5rem 3.5rem;
            }

            .hero-right {
                padding: 3.5rem 3rem;
            }

            .g-watermark {
                font-size: 8rem;
                top: 20px;
                right: 25px;
            }

            .card-secondary {
                width: 200px;
                left: -40px;
                bottom: -40px;
            }
        }

        @media (max-width: 991px) {
            .hero-row {
                min-height: auto;
            }

            .hero-left,
            .hero-right {
                padding: 3rem 2rem;
                min-height: auto;
            }

            .hero-left-inner {
                margin: 0 auto;
                text-align: left;
            }

            .hero-heading {
                font-size: 3.4rem;
            }

            .hero-section {
                background: linear-gradient(180deg,
                        var(--cream-left) 0%,
                        var(--cream-left) 50%,
                        #FBEFE6 60%,
                        var(--peach-right) 100%);
            }

            .cards-stack {
                max-width: 480px;
                margin: 0 auto;
            }

            .g-watermark {
                font-size: 6rem;
            }
        }

        @media (max-width: 576px) {
            .hero-left {
                padding: 2.5rem 1.25rem 2rem;
            }

            .hero-right {
                padding: 2rem 1.25rem 4rem;
            }

            .hero-heading {
                font-size: 2.6rem;
            }

            .hero-subhead {
                font-size: 0.98rem;
            }

            .kicker-text {
                font-size: 0.7rem;
            }

            .hero-cta {
                padding: 0.85rem 1.5rem;
                font-size: 0.92rem;
            }

            .card-secondary {
                width: 160px;
                left: -15px;
                bottom: -30px;
            }

            .card-secondary-img {
                height: 110px;
            }

            .play-btn {
                width: 70px;
                height: 70px;
            }

            .play-circle {
                font-size: 1.1rem;
            }

            .g-watermark {
                font-size: 4.5rem;
                top: 15px;
                right: 15px;
            }

            .g-watermark::before {
                inset: -15px -22px;
                border-width: 4px;
            }
        }

        /* NEW pill badge */
        .new-badge-pill {
            display: inline-flex;
            align-items: center;
            background: #ffffff;
            border-radius: 999px;
            padding: 6px 16px 6px 6px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            font-size: 14px;
        }

        .new-tag {
            background: #E94B2F;
            color: #fff;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 0.5px;
            padding: 4px 10px;
            border-radius: 999px;
            margin-right: 10px;
        }

        .new-text {
            color: #1B2333;
            font-weight: 500;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
        }

        .row.g-5 {
            gap: 48px 0;
        }

        .col-lg-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 24px;
        }

        .align-items-center {
            align-items: center;
        }

        .text-center {
            text-align: center;
        }

        .mb-5 {
            margin-bottom: 60px;
        }

        /* ---------- Bottom marquee ---------- */
        .arsenal-marquee {
            margin-top: 100px;
            padding: 24px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
            position: relative;
        }

        .arsenal-marquee::before,
        .arsenal-marquee::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fdf1ec, #DA4E26, #fdf1ec) !important;
        }

        .arsenal-marquee::before {
            left: 0;
            background: linear-gradient(90deg, var(--cream-left), transparent);
        }

        .arsenal-marquee::after {
            right: 0;
            background: linear-gradient(-90deg, var(--cream-left), transparent);
        }

        .marquee-track {
            display: flex;
            gap: 48px;
            animation: marqueeMove 30s linear infinite;
            white-space: nowrap;
            width: max-content;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--navy);
            letter-spacing: -0.01em;
        }

        .marquee-item em {
            font-style: italic;
            color: var(--brick);
            font-weight: 700;
        }

        .marquee-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brick);
            opacity: 0.5;
        }

        @keyframes marqueeMove {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 991px) {
            .arsenal-section {
                padding: 90px 0 110px;
            }

            .arsenal-container {
                padding: 0 24px;
            }

            .arsenal-header {
                margin-bottom: 56px;
            }

            .codex {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .codex::before {
                display: none;
            }

            .codex-index {
                position: relative;
                top: 0;
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                gap: 0;
                padding-bottom: 8px;
                scrollbar-width: thin;
            }

            .index-label {
                display: none;
            }

            .index-item {
                flex-shrink: 0;
                border-bottom: none;
                border-right: 1px solid var(--border);
                padding: 12px 18px;
                min-width: 240px;
            }

            .index-item::before {
                display: none;
            }

            .index-item:hover {
                padding-left: 18px;
            }

            .index-item.active {
                padding-left: 18px;
                background: var(--paper);
            }

            .panel-delivers {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .delivers-num {
                font-size: 28px;
            }

            .arsenal-marquee {
                margin-top: 60px;
            }

            .marquee-item {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .arsenal-section::before {
                font-size: 240px;
                top: 30px;
            }

            .arsenal-headline {
                font-size: 38px;
            }

            .arsenal-sub {
                gap: 16px;
            }

            .arsenal-sub-text {
                font-size: 15px;
            }

            .panel-title {
                font-size: 30px;
            }

            .panel-desc {
                font-size: 15px;
            }

            .panel-mockup {
                padding: 18px;
            }

            .mock-agent-flow {
                flex-wrap: wrap;
            }

            .mock-agent-connector {
                display: none;
            }

            .mock-ads-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ════════════════════════════════════════
   SHIFT SECTION (Problem-style)
   ════════════════════════════════════════ */
        .shift-section {
            background: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .shift-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--cream), var(--coral-deep), var(--cream));
        }

        .shift-section::after {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        /* ─── Header ─── */
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fce3dc;
            border: 1px solid rgba(239, 90, 74, 0.2);
            color: var(--coral-deep);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            background: var(--coral-deep);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        .section-headline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 5vw, 55px);
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .section-headline em {
            color: var(--coral-deep);
            font-style: italic;
            font-family: 'Playfair Display', serif;
        }

        .section-sub {
            font-size: 17px;
            color: var(--text-2);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ─── Tabs Nav ─── */
        .shift-tabs-nav {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 60px 0 50px;
        }

        .shift-tab {
            background: #f7f3f1;
            border: 2px solid var(--border-2);
            color: var(--text-2);
            padding: 18px 28px;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 14px;
            font-family: 'Playfair Display', serif;
            min-width: 230px;
        }

        .shift-tab:hover {
            border-color: var(--coral-deep);
            background: #fef6f4;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(239, 90, 74, 0.1);
            color: var(--coral-deep);
        }

        .shift-tab.active {
            background: var(--coral-deep);
            border-color: var(--coral-deep);
            color: #fff;
            box-shadow: 0 10px 30px rgba(239, 90, 74, 0.3);
            transform: translateY(-3px);
        }

        .tab-num {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 800;
            opacity: 0.5;
        }

        .shift-tab.active .tab-num {
            opacity: 1;
        }

        .tab-label {
            font-size: 14px;
            font-weight: 700;
            text-align: left;
            letter-spacing: -0.2px;
        }

        /* ─── Stage ─── */
        .shift-stage {
            background: var(--cream-2);
            border: 2px solid var(--border);
            border-radius: 28px;
            padding: 60px;
            min-height: 560px;
            position: relative;
        }

        .shift-panel {
            display: none;
            animation: panelFade 0.5s ease;
        }

        .shift-panel.active {
            display: block;
        }

        @keyframes panelFade {
            from {
                opacity: 0;
                transform: translateY(16px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .shift-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fce3dc;
            color: var(--coral-deep);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .shift-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 3.2vw, 40px);
            font-weight: 800;
            line-height: 1.15;
            color: var(--text);
            margin-bottom: 18px;
            letter-spacing: -1px;
        }

        .shift-title em {
            color: var(--coral-deep);
            font-style: italic;
        }

        .shift-desc {
            font-size: 16px;
            color: var(--text-2);
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .shift-desc strong {
            color: var(--text);
            font-weight: 700;
        }

        /* Stats */
        .shift-stats {
            display: flex;
            align-items: center;
            gap: 30px;
            background: #fff;
            border: 2px solid var(--border);
            padding: 22px 28px;
            border-radius: 18px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }

        .stat-item {
            flex: 1;
        }

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            font-weight: 800;
            color: var(--coral-deep);
            line-height: 1;
            margin-bottom: 5px;
            letter-spacing: -1px;
        }

        .stat-text {
            font-size: 13px;
            color: var(--text-3);
            font-weight: 500;
            line-height: 1.4;
        }

        .stat-divider {
            width: 1px;
            height: 48px;
            background: var(--border-2);
        }

        /* Quote / Insight */
        .shift-insight {
            background: #fff;
            border-left: 3px solid var(--coral-deep);
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            font-size: 14px;
            color: #5a5a70;
            line-height: 1.6;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }

        .shift-insight i {
            color: rgba(239, 90, 74, 0.4);
            font-size: 14px;
            margin-right: 6px;
        }

        .shift-insight strong {
            color: var(--text);
            font-weight: 700;
        }

        .shift-insight .source-tag {
            display: block;
            margin-top: 10px;
            font-size: 11px;
            color: #a0a0b8;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* ════════════════════════════════════════
   MOCKUP 1: SEARCH (AI Overviews)
   ════════════════════════════════════════ */
        .mockup-search {
            background: #fff;
            border: 1.5px solid var(--border-2);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .mockup-header {
            background: #f7f3f1;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            border-bottom: 1.5px solid var(--border-2);
        }

        .mock-dots {
            display: flex;
            gap: 6px;
        }

        .mock-dots span {
            width: 11px;
            height: 11px;
            border-radius: 50%;
        }

        .mock-dots span:nth-child(1) {
            background: #ff5f56;
        }

        .mock-dots span:nth-child(2) {
            background: #ffbd2e;
        }

        .mock-dots span:nth-child(3) {
            background: #27c93f;
        }

        .browser-url {
            flex: 1;
            background: #fff;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 12px;
            color: var(--text-3);
            border: 1px solid var(--border-2);
        }

        .browser-url i {
            margin-right: 5px;
            font-size: 10px;
            color: #c0c0d0;
        }

        .search-body {
            padding: 20px 24px 24px;
        }

        .google-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            border: 1px solid var(--border-2);
            border-radius: 24px;
            padding: 10px 18px;
            margin-bottom: 16px;
            box-shadow: 0 1px 6px rgba(32, 33, 36, 0.08);
        }

        .google-bar .g-icon {
            font-size: 18px;
        }

        .search-query {
            font-size: 14px;
            color: var(--text);
            flex: 1;
        }

        .ai-overview-card {
            background: linear-gradient(135deg, #f0f7ff 0%, #fef6f4 100%);
            border: 1.5px solid #d4e4fa;
            border-radius: 14px;
            padding: 18px;
            margin-bottom: 14px;
            position: relative;
        }

        .ai-overview-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            border: 1px solid #d4e4fa;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .ai-overview-tag i {
            font-size: 9px;
        }

        .ai-overview-text {
            font-size: 13px;
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .ai-overview-text strong {
            color: var(--text);
        }

        .ai-overview-sources {
            display: flex;
            gap: 6px;
        }

        .ai-source-chip {
            background: #fff;
            border: 1px solid var(--border-2);
            padding: 4px 9px;
            border-radius: 8px;
            font-size: 10px;
            color: var(--text-2);
            font-weight: 500;
        }

        .organic-results {
            padding-top: 12px;
            border-top: 1px dashed var(--border-2);
        }

        .organic-result {
            padding: 10px 0;
            opacity: 0.5;
            position: relative;
        }

        .organic-result .res-url {
            font-size: 10px;
            color: var(--text-3);
            margin-bottom: 3px;
        }

        .organic-result .res-title {
            font-size: 12px;
            color: var(--text-3);
            font-weight: 500;
        }

        .organic-strike {
            position: absolute;
            top: 50%;
            left: -8px;
            right: -8px;
            height: 1.5px;
            background: var(--coral-deep);
            opacity: 0.4;
        }

        .search-warning {
            margin-top: 16px;
            padding: 12px 14px;
            background: #fff0ee;
            border-radius: 10px;
            font-size: 12px;
            color: var(--coral-deep);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .floating-issue {
            position: absolute;
            background: #fff;
            color: var(--text);
            padding: 7px 13px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 5px;
            animation: floatBounce 3s ease infinite;
            border: 1.5px solid #fce3dc;
        }

        .floating-issue i {
            color: var(--coral-deep);
            font-size: 10px;
        }

        .search-float-1 {
            top: 80px;
            left: -40px;
            animation-delay: 0s;
        }

        .search-float-2 {
            bottom: 90px;
            right: -30px;
            animation-delay: 1s;
        }

        @keyframes floatBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        /* ════════════════════════════════════════
   MOCKUP 2: ADS DASHBOARD (AI Max)
   ════════════════════════════════════════ */
        .mockup-ads {
            background: #fff;
            border: 1.5px solid var(--border-2);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .ads-body {
            padding: 22px;
        }

        .ai-toggle-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, #f0f7ff, #fef6f4);
            border: 1.5px solid #d4e4fa;
            padding: 14px 18px;
            border-radius: 14px;
            margin-bottom: 16px;
        }

        .ai-toggle-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ai-toggle-icon {
            width: 36px;
            height: 36px;
            background: var(--blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
        }

        .ai-toggle-text strong {
            display: block;
            font-size: 13px;
            color: var(--text);
            margin-bottom: 2px;
        }

        .ai-toggle-text small {
            font-size: 11px;
            color: var(--text-3);
        }

        .toggle-switch {
            width: 42px;
            height: 24px;
            background: var(--blue);
            border-radius: 50px;
            position: relative;
            flex-shrink: 0;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            right: 3px;
            width: 18px;
            height: 18px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }

        .ad-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 16px;
        }

        .ad-metric {
            background: #f7f3f1;
            border: 1.5px solid var(--border-2);
            padding: 14px 12px;
            border-radius: 12px;
        }

        .ad-metric small {
            font-size: 10px;
            color: var(--text-3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
        }

        .ad-metric h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 4px;
            letter-spacing: -0.5px;
        }

        .ad-metric .trend {
            font-size: 11px;
            font-weight: 700;
            color: #27c93f;
        }

        .ad-metric.win {
            background: #ecfdf5;
            border-color: #a7f3d0;
            animation: winPulse 2s infinite;
        }

        @keyframes winPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.3);
            }

            50% {
                box-shadow: 0 0 0 6px rgba(39, 201, 63, 0);
            }
        }

        .auto-generated-row {
            background: #f7f3f1;
            border: 1.5px solid var(--border-2);
            border-radius: 12px;
            padding: 14px 16px;
        }

        .auto-gen-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            color: var(--text-3);
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .auto-gen-label i {
            color: var(--blue);
        }

        .auto-asset {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            background: #fff;
            border-radius: 8px;
            font-size: 12px;
            color: var(--text);
            margin-bottom: 6px;
            border: 1px solid var(--border-2);
            animation: assetType 0.5s ease;
        }

        @keyframes assetType {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .auto-asset i {
            color: var(--blue);
            font-size: 11px;
        }

        .auto-asset .auto-tag {
            margin-left: auto;
            background: #f0f7ff;
            color: var(--blue);
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 9px;
            font-weight: 700;
        }

        /* ════════════════════════════════════════
   MOCKUP 3: CREATIVES (Imagen/Veo)
   ════════════════════════════════════════ */
        .mockup-creative {
            background: #fff;
            border: 1.5px solid var(--border-2);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .creative-body {
            padding: 22px;
        }

        .prompt-bar {
            background: #f7f3f1;
            border: 1.5px solid var(--border-2);
            border-radius: 14px;
            padding: 12px 16px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .prompt-icon {
            width: 30px;
            height: 30px;
            background: #9B51E0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 12px;
            flex-shrink: 0;
        }

        .prompt-text {
            font-size: 12px;
            color: var(--text-2);
            font-style: italic;
            flex: 1;
            line-height: 1.4;
        }

        .prompt-text strong {
            color: var(--text);
            font-style: normal;
        }

        .generation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 16px;
        }

        .gen-asset {
            aspect-ratio: 1;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            border: 1.5px solid var(--border-2);
        }

        .gen-asset-1 {
            background: linear-gradient(135deg, #ff9a8b 0%, #ff6a88 55%, #ff99ac 100%);
        }

        .gen-asset-2 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .gen-asset-3 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .gen-asset-4 {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            position: relative;
        }

        .gen-asset-4::after {
            content: '\f04b';
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .gen-tag {
            position: absolute;
            top: 8px;
            left: 8px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: 9px;
            font-weight: 700;
            backdrop-filter: blur(8px);
            letter-spacing: 0.5px;
        }

        .gen-time {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text);
            padding: 3px 8px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
        }

        .creative-compare {
            display: flex;
            align-items: stretch;
            background: #f7f3f1;
            border: 1.5px solid var(--border-2);
            border-radius: 12px;
            overflow: hidden;
        }

        .compare-side {
            flex: 1;
            padding: 12px 14px;
        }

        .compare-side.old {
            background: #fff0ee;
            border-right: 1.5px solid var(--border-2);
        }

        .compare-label {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
            color: var(--text-3);
        }

        .compare-side.old .compare-label {
            color: var(--coral-deep);
        }

        .compare-side.new .compare-label {
            color: #27c93f;
        }

        .compare-val {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
            line-height: 1.1;
        }

        .compare-sub {
            font-size: 10px;
            color: var(--text-3);
            margin-top: 2px;
        }

        /* ════════════════════════════════════════
   MOCKUP 4: AGENTIC WEB
   ════════════════════════════════════════ */
        .mockup-agent {
            background: #fff;
            border: 1.5px solid var(--border-2);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .agent-body {
            padding: 22px;
            min-height: 380px;
        }

        .agent-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            padding-bottom: 14px;
            border-bottom: 1px dashed var(--border-2);
        }

        .agent-avatar {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--blue), #9B51E0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
        }

        .agent-name strong {
            display: block;
            font-size: 13px;
            color: var(--text);
        }

        .agent-name small {
            font-size: 11px;
            color: #27c93f;
            font-weight: 600;
        }

        .agent-status {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #ecfdf5;
            color: #059669;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
        }

        .agent-status .dot {
            width: 6px;
            height: 6px;
            background: #059669;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        .agent-task {
            background: #f0f7ff;
            border: 1px solid #d4e4fa;
            border-radius: 10px;
            padding: 10px 14px;
            font-size: 12px;
            color: var(--text);
            margin-bottom: 14px;
            line-height: 1.5;
        }

        .agent-task i {
            color: var(--blue);
            margin-right: 6px;
        }

        .agent-steps {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .agent-step {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: #f7f3f1;
            border: 1px solid var(--border-2);
            border-radius: 10px;
            font-size: 12px;
            color: var(--text-2);
            position: relative;
        }

        .agent-step.done {
            background: #ecfdf5;
            border-color: #a7f3d0;
            color: var(--text);
        }

        .agent-step.done .step-icon {
            background: #059669;
            color: #fff;
        }

        .agent-step.active {
            background: #fef6f4;
            border-color: #fce3dc;
        }

        .agent-step.active .step-icon {
            background: var(--coral-deep);
            color: #fff;
            animation: pulse 1.5s infinite;
        }

        .agent-step.fail {
            background: #fff0ee;
            border-color: rgba(239, 90, 74, 0.3);
        }

        .agent-step.fail .step-icon {
            background: var(--coral-deep);
            color: #fff;
        }

        .step-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #ede8e5;
            color: var(--text-3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
        }

        .step-text {
            flex: 1;
            font-weight: 500;
        }

        .step-text strong {
            color: var(--text);
            font-weight: 700;
        }

        .step-result {
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 6px;
            font-weight: 700;
        }

        .step-result.ok {
            background: #fff;
            color: #059669;
        }

        .step-result.error {
            background: #fff;
            color: var(--coral-deep);
        }

        .agent-summary {
            margin-top: 14px;
            padding: 12px;
            background: #fff0ee;
            border: 1.5px solid rgba(239, 90, 74, 0.2);
            border-radius: 10px;
            font-size: 12px;
            color: var(--coral-deep);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .agent-summary i {
            font-size: 13px;
        }

        /* ─── Bottom CTA Banner ─── */
        .shift-cta {
            margin-top: 60px;
            background: var(--text);
            border-radius: 24px;
            padding: 40px 48px;
            position: relative;
            overflow: hidden;
        }

        .shift-cta::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.3) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .col-lg-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .shift-stage {
                padding: 40px 24px;
            }

            .shift-tab {
                min-width: 200px;
                padding: 14px 22px;
            }

            .cta-inner {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .container-fluid {
                padding: 0 20px;
            }

            .shift-section {
                padding: 70px 0;
            }

            .shift-tabs-nav {
                gap: 8px;
            }

            .shift-tab {
                flex: 1 0 calc(50% - 4px);
                min-width: 0;
                padding: 12px 14px;
            }

            .tab-label {
                font-size: 12px;
            }

            .tab-num {
                font-size: 18px;
            }

            .shift-stats {
                flex-direction: column;
                gap: 20px;
            }

            .stat-divider {
                width: 100%;
                height: 1px;
            }

            .floating-issue {
                display: none;
            }
        }

        /* =========================================================
       ✨ NEW EDITORIAL CTA SECTION
       ========================================================= */
        .editorial-cta-section {
            position: relative;

            margin-left: calc(-50vw + 50%) !important;
            background: #0A1F3C;
            padding: 60px 0;
            overflow: hidden;
        }

        /* Decorative italic mark */
        .editorial-cta-section::before {
            content: '&';
            position: absolute;
            top: -50px;
            right: -30px;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 500px;
            font-weight: 700;
            color: rgba(214, 214, 214, 0.06);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .editorial-cta-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .editorial-cta-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
            padding: 8px 18px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(209, 69, 36, 0.15);
            border-radius: 999px;
        }

        .editorial-cta-kicker-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brick);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        .editorial-cta-kicker-text {
            font-size: 11px;
            font-weight: 700;
            color: var(--brick);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .editorial-cta-heading {
            font-family: 'Playfair Display', serif;
            font-size: 55px;
            font-weight: 700;
            color: rgb(238, 238, 238);
            line-height: 1.05;
            letter-spacing: -0.015em;
            margin: 0 0 28px;
        }

        .editorial-cta-heading em {
            font-style: italic;
            color: var(--brick);
            font-weight: 600;
        }

        .editorial-cta-desc {
            font-size: 18px;
            line-height: 1.65;
            color: rgb(228, 228, 228);
            max-width: 680px;
            margin: 0 auto 44px;
        }

        .editorial-cta-actions {
            display: inline-flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .editorial-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 38px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
            color: #fff !important;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 16px 36px -8px rgba(207, 62, 27, 0.45);
        }

        .editorial-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 44px -8px rgba(207, 62, 27, 0.6);
            color: #fff;
        }

        .editorial-cta-primary i {
            font-size: 13px;
            transition: transform 0.3s ease;
        }

        .editorial-cta-primary:hover i {
            transform: translateX(5px);
        }

        .editorial-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            color: rgb(238, 238, 238);
            text-decoration: none;
            padding-bottom: 4px;
            border-bottom: 2px solid rgb(238, 238, 238);
            transition: all 0.3s ease;
        }


        /* Trust indicators */
        .editorial-cta-trust {
            margin-top: 50px;
            display: inline-flex;
            align-items: center;
            gap: 30px;

            border-top: 1px solid rgba(18, 30, 44, 0.08);
            flex-wrap: wrap;
            justify-content: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgb(238, 238, 238);
            font-weight: 500;
        }

        .trust-item i {
            color: rgb(238, 238, 238);
            font-size: 14px;
        }

        @media (max-width: 991px) {
            .editorial-cta-section {
                padding: 100px 0;
            }

            .editorial-cta-heading {
                font-size: 46px;
            }

            .editorial-cta-section::before {
                font-size: 350px;
            }
        }

        @media (max-width: 576px) {
            .editorial-cta-section {
                padding: 70px 0;
            }

            .editorial-cta-container {
                padding: 0 20px;
            }

            .editorial-cta-heading {
                font-size: 32px;
            }

            .editorial-cta-desc {
                font-size: 16px;
            }

            .editorial-cta-actions {
                flex-direction: column;
                gap: 16px;
            }

            .editorial-cta-primary {
                padding: 14px 28px;
            }

            .editorial-cta-trust {
                gap: 16px;
            }
        }

        /* ==========================================================
       ARSENAL SECTION
       ========================================================== */
        .arsenal-section {
            position: relative;
            background: var(--cream-left);
            padding: 100px 0 100px;
            overflow: hidden;
        }

        /* Decorative italic ampersand */
        .arsenal-section::before {
            content: '§';
            position: absolute;
            top: 60px;
            left: -40px;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 380px;
            font-weight: 700;
            color: rgba(209, 69, 36, 0.045);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        /* Grain texture */
        .arsenal-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 1px 1px, rgba(18, 30, 44, 0.025) 1px, transparent 0);
            background-size: 32px 32px;
            pointer-events: none;
            opacity: 0.6;
        }

        .arsenal-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
            z-index: 2;
        }

        /* ---------- Header ---------- */
        .arsenal-header {
            max-width: 880px;
            margin-bottom: 80px;
        }

        .arsenal-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.22em;
            color: var(--brick);
            text-transform: uppercase;
        }

        .arsenal-kicker-line {
            width: 36px;
            height: 1px;
            background: var(--brick);
        }

        .arsenal-kicker-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--brick);
            box-shadow: 0 0 0 4px rgba(209, 69, 36, 0.12);
            animation: pulseDot 2.2s ease-in-out infinite;
        }

        @keyframes pulseDot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(0.85);
            }
        }

        .arsenal-headline {
            font-family: 'Playfair Display', serif;
            font-size: 55px;
            font-weight: 700;
            line-height: 1.02;
            letter-spacing: -0.02em;
            color: var(--navy);
            margin: 0 0 28px;
        }

        .arsenal-headline .italic-avg {
            font-style: italic;
            font-weight: 600;
            color: var(--brick);
            position: relative;
            display: inline-block;
            padding: 0 0.05em;
        }

        .arsenal-headline .italic-avg .squiggle {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            width: 100%;
            height: 16px;
            pointer-events: none;
        }

        .arsenal-sub {
            display: flex;
            align-items: flex-start;
            gap: 28px;
            max-width: 760px;
        }

        .arsenal-sub-bar {
            width: 3px;
            align-self: stretch;
            background: linear-gradient(180deg, var(--brick), var(--ochre));
            border-radius: 4px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .arsenal-sub-text {
            font-size: 17px;
            line-height: 1.65;
            color: var(--muted);
            font-weight: 400;
            margin: 0;
        }

        .arsenal-sub-text strong {
            color: var(--navy);
            font-weight: 600;
        }

        /* ---------- Codex Layout ---------- */
        .codex {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 56px;
            align-items: start;
            position: relative;
        }

        .codex::before {
            content: '';
            position: absolute;
            left: calc((100% / 2.5) * 1 + 24px);
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, transparent, var(--border-2) 12%, var(--border-2) 88%, transparent);
        }

        /* ---------- Left: Index ---------- */
        .codex-index {
            display: flex;
            flex-direction: column;
            gap: 2px;
            position: sticky;
            top: 40px;
        }

        .index-label {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            letter-spacing: 0.2em;
            color: var(--muted-2);
            text-transform: uppercase;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
        }

        .index-label span:last-child {
            color: var(--brick);
            font-weight: 700;
        }

        .index-item {
            position: relative;
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 18px 0 18px 0;
            cursor: pointer;
            border-bottom: 1px solid var(--border);
            transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .index-item:last-child {
            border-bottom: none;
        }

        .index-item::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 1px;
            background: var(--brick);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .index-num {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: var(--muted-2);
            letter-spacing: 0.05em;
            flex-shrink: 0;
            width: 28px;
            transition: color 0.3s ease;
        }

        .index-icon-box {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--paper);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 13px;
            flex-shrink: 0;
            transition: all 0.35s ease;
        }

        .index-title {
            font-family: 'Playfair Display', serif;
            font-size: 19px;
            font-weight: 600;
            color: var(--navy);
            line-height: 1.25;
            letter-spacing: -0.01em;
            flex: 1;
            transition: color 0.3s ease;
        }

        .index-arrow {
            opacity: 0;
            color: var(--brick);
            font-size: 12px;
            transform: translateX(-6px);
            transition: all 0.3s ease;
        }

        /* Hover state */
        .index-item:hover {
            padding-left: 14px;
        }

        .index-item:hover::before {
            width: 32px;
        }

        .index-item:hover .index-num {
            color: var(--brick);
        }

        .index-item:hover .index-icon-box {
            background: var(--brick);
            border-color: var(--brick);
            color: #fff;
            transform: rotate(-4deg) scale(1.05);
        }

        .index-item:hover .index-title {
            color: var(--brick);
        }

        .index-item:hover .index-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Active state */
        .index-item.active {
            padding-left: 20px;
        }

        .index-item.active::before {
            width: 38px;
            height: 2px;
        }

        .index-item.active .index-num {
            color: var(--brick);
            font-weight: 800;
        }

        .index-item.active .index-icon-box {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff;
        }

        .index-item.active .index-title {
            color: var(--brick);
            font-style: italic;
            font-weight: 700;
        }

        .index-item.active .index-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* ---------- Right: Preview Stage ---------- */
        .codex-stage {
            position: relative;
            min-height: 620px;
        }

        .stage-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 18px;
            border-bottom: 1px dashed var(--border-2);
        }

        .stage-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: var(--brick);
            text-transform: uppercase;
        }

        .stage-tag-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brick);
        }

        .stage-counter {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            color: var(--muted-2);
            letter-spacing: 0.1em;
        }

        .stage-counter span {
            color: var(--brick);
            font-weight: 700;
        }

        .panel {
            display: none;
            animation: panelIn 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .panel.active {
            display: block;
        }

        @keyframes panelIn {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .panel-title {
            font-family: 'Playfair Display', serif;
            font-size: 35px;
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.015em;
            color: var(--navy);
            margin: 0 0 18px;
        }

        .panel-title em {
            font-style: italic;
            color: var(--brick);
            font-weight: 600;
        }

        .panel-desc {
            font-size: 16px;
            line-height: 1.65;
            color: var(--muted);
            margin: 0 0 32px;
            max-width: 560px;
        }

        .panel-desc strong {
            color: var(--navy);
            font-weight: 600;
        }

        /* Mockup canvas */
        .panel-mockup {
            background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 28px;
            position: relative;
            overflow: hidden;
            margin-bottom: 28px;
            min-height: 240px;
        }

        .panel-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--brick), transparent);
            opacity: 0.4;
        }

        /* ----- Mockup variants ----- */
        /* 01 — AI Search */
        .mock-search-bar {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--navy);
            margin-bottom: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }

        .mock-search-bar i {
            color: var(--brick);
        }

        .mock-search-bar .typing-cursor {
            display: inline-block;
            width: 1.5px;
            height: 14px;
            background: var(--brick);
            margin-left: 2px;
            animation: blink 1s infinite;
            vertical-align: middle;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        .mock-citation-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 16px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
        }

        .mock-citation-card.you {
            border-color: var(--brick);
            background: linear-gradient(90deg, #fff 0%, #fff5f1 100%);
            box-shadow: 0 4px 14px rgba(209, 69, 36, 0.1);
        }

        .mock-citation-num {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--paper-2);
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .mock-citation-card.you .mock-citation-num {
            background: var(--brick);
            color: #fff;
        }

        .mock-citation-domain {
            flex: 1;
            color: var(--navy);
            font-weight: 500;
        }

        .mock-citation-card.you .mock-citation-domain {
            font-weight: 700;
        }

        .mock-citation-badge {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            padding: 3px 8px;
            border-radius: 4px;
            background: var(--paper-2);
            color: var(--muted);
            letter-spacing: 0.05em;
        }

        .mock-citation-card.you .mock-citation-badge {
            background: var(--brick);
            color: #fff;
        }

        /* 02 — Agentic AI */
        .mock-agent-flow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 18px;
        }

        .mock-agent-node {
            flex: 1;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 12px;
            text-align: center;
            position: relative;
        }

        .mock-agent-node .node-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--paper-2);
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            font-size: 13px;
        }

        .mock-agent-node.active .node-icon {
            background: var(--brick);
            color: #fff;
            box-shadow: 0 0 0 4px rgba(209, 69, 36, 0.15);
            animation: nodepulse 1.6s ease-in-out infinite;
        }

        @keyframes nodepulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }
        }

        .mock-agent-node .node-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--navy);
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.05em;
        }

        .mock-agent-connector {
            flex: 0 0 24px;
            height: 1px;
            background: repeating-linear-gradient(90deg, var(--brick) 0, var(--brick) 4px, transparent 4px, transparent 8px);
        }

        .mock-agent-log {
            background: var(--navy);
            border-radius: 10px;
            padding: 14px 16px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            color: #cdd5e0;
            line-height: 1.7;
        }

        .mock-agent-log .log-line {
            display: block;
        }

        .mock-agent-log .log-line .ts {
            color: #6b7a8f;
            margin-right: 8px;
        }

        .mock-agent-log .log-line .ok {
            color: #7dd3a4;
        }

        .mock-agent-log .log-line .tag-brick {
            color: var(--brick);
        }

        /* 03 — GEO / Citations */
        .mock-geo-prompt {
            background: #fff;
            border: 1px solid var(--border);
            border-left: 3px solid var(--brick);
            border-radius: 10px;
            padding: 14px 16px;
            font-size: 13px;
            font-style: italic;
            color: var(--navy);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .mock-geo-prompt::before {
            content: 'GEMINI · LIVE';
            display: block;
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--brick);
            margin-bottom: 6px;
        }

        .mock-geo-answer {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 16px;
            font-size: 12px;
            line-height: 1.65;
            color: var(--navy);
        }

        .mock-geo-answer mark {
            background: rgba(209, 69, 36, 0.15);
            color: var(--brick);
            padding: 1px 5px;
            border-radius: 3px;
            font-weight: 700;
        }

        .mock-geo-sources {
            display: flex;
            gap: 6px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px dashed var(--border);
        }

        .mock-geo-sources .src {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            padding: 4px 8px;
            background: var(--paper-2);
            border-radius: 5px;
            color: var(--muted);
        }

        .mock-geo-sources .src.you {
            background: var(--brick);
            color: #fff;
            font-weight: 700;
        }

        /* 04 — AI Max Ads */
        .mock-ads-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 14px;
        }

        .mock-ads-stat {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 12px 14px;
        }

        .mock-ads-stat.win {
            background: linear-gradient(135deg, #fff 0%, #fff5f1 100%);
            border-color: var(--brick);
        }

        .mock-ads-stat small {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            letter-spacing: 0.1em;
            color: var(--muted-2);
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .mock-ads-stat h4 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--navy);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .mock-ads-stat.win h4 {
            color: var(--brick);
        }

        .mock-ads-stat .trend {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: #1A8A72;
            margin-top: 2px;
        }

        .mock-ads-bar {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mock-ads-bar i {
            color: var(--brick);
            font-size: 12px;
        }

        .mock-ads-bar .auto-text {
            font-size: 12px;
            color: var(--navy);
            flex: 1;
        }

        .mock-ads-bar .auto-text strong {
            color: var(--brick);
        }

        /* 05 — Agent-Ready Web */
        .mock-web-browser {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }

        .mock-web-tabs {
            background: var(--paper-2);
            padding: 8px 12px;
            display: flex;
            gap: 6px;
            border-bottom: 1px solid var(--border);
        }

        .mock-web-tabs span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border-2);
        }

        .mock-web-tabs span:first-child {
            background: #E15B47;
        }

        .mock-web-body {
            padding: 16px;
        }

        .mock-web-check {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 12px;
            color: var(--navy);
            border-bottom: 1px dashed var(--border);
        }

        .mock-web-check:last-child {
            border-bottom: none;
        }

        .mock-web-check .check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #1A8A72;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            flex-shrink: 0;
        }

        .mock-web-check .label {
            flex: 1;
        }

        .mock-web-check .val {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            color: var(--brick);
            font-weight: 700;
        }

        /* 06 — Zero-Click */
        .mock-funnel {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .mock-funnel-step {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }

        .mock-funnel-step .step-num {
            width: 24px;
            height: 24px;
            background: var(--paper-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: var(--navy);
            flex-shrink: 0;
        }

        .mock-funnel-step.win {
            background: linear-gradient(90deg, #fff 0%, #fff5f1 100%);
            border-color: var(--brick);
        }

        .mock-funnel-step.win .step-num {
            background: var(--brick);
            color: #fff;
        }

        .mock-funnel-step .step-label {
            flex: 1;
            font-size: 12px;
            color: var(--navy);
            font-weight: 500;
        }

        .mock-funnel-step .step-val {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: var(--brick);
        }

        /* ----- Deliverables ----- */
        .panel-delivers-label {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            letter-spacing: 0.2em;
            color: var(--muted-2);
            text-transform: uppercase;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .panel-delivers-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .panel-delivers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

        .delivers-stat {
            padding: 0;
        }

        .delivers-num {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--brick);
            line-height: 1;
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }

        .delivers-text {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.45;
        }

        /* CTA */
        .panel-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            background: var(--navy);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .panel-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--brick);
            transform: translateX(-101%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .panel-cta span,
        .panel-cta i {
            position: relative;
            z-index: 1;
        }

        .panel-cta:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .panel-cta:hover::before {
            transform: translateX(0);
        }

        .panel-cta i {
            transition: transform 0.3s ease;
        }

        .panel-cta:hover i {
            transform: translateX(4px);
        }

        /* ============ PROOF SECTION ============ */
        .proof-section {
            background: #f4ede4;
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }

        /* Background accents */
        .proof-section::before {
            content: '';
            position: absolute;
            top: 100px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.06), transparent 70%);
            pointer-events: none;
        }

        .proof-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(45, 74, 138, 0.05), transparent 70%);
            pointer-events: none;
        }

        /* ============ HEADER ============ */
        .proof-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .proof-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1.5px solid #f0e4df;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            margin-bottom: 22px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            color: #15172b;
        }

        .proof-badge i {
            color: #DA4E26;
            font-size: 11px;
        }

        .proof-title {
            font-family: 'Playfair Display', serif;
            font-size: 55px;
            font-weight: 700;
            color: #15172b;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .proof-title em {
            color: #DA4E26;
            font-style: italic;
        }

        .proof-sub {
            font-size: 17px;
            color: #6a6a80;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ============ TOP STATS BAR ============ */
        .stats-bar {
            background: #15172b;
            border-radius: 24px;
            padding: 30px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .stats-bar::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.3), transparent 70%);
            pointer-events: none;
        }

        .stat-block {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .stat-block:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 15%;
            right: -10px;
            width: 1px;
            height: 70%;
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-block strong {
            font-family: 'Playfair Display', serif;
            font-size: 44px;
            font-weight: 700;
            background: linear-gradient(135deg, #fff, #DF542A);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-block span {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .stat-block .plus {
            color: #DA4E26;
            -webkit-text-fill-color: #DA4E26;
        }

        /* ============ FEATURED CASE STUDY ============ */
        .featured-case {
            background: #fff;
            border-radius: 28px;
            overflow: hidden;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 50px rgba(21, 23, 43, 0.08);
            border: 1.5px solid rgba(0, 0, 0, 0.04);
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            align-items: stretch;
        }

        /* Left side - Image */
        .featured-visual {
            position: relative;
            min-height: 540px;
            overflow: hidden;
        }

        .featured-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .featured-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(21, 23, 43, 0.5));
            pointer-events: none;
        }

        /* Floating elements on image */
        .featured-tag {
            position: absolute;
            top: 24px;
            left: 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #DA4E26;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .featured-tag .star {
            color: #DF542A;
        }

        .featured-quote-overlay {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(15px);
            padding: 20px 22px;
            border-radius: 18px;
            z-index: 3;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .featured-quote-overlay p {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            color: #15172b;
            font-style: italic;
            line-height: 1.5;
            margin: 0 0 12px;
        }

        .fqo-author {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: #6a6a80;
        }

        .fqo-author .fqo-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #DA4E26, #d94838);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
        }

        .fqo-author strong {
            color: #15172b;
            font-weight: 700;
            display: block;
        }

        /* Right side - Results */
        .featured-content {
            padding: 50px 45px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .fc-header {
            margin-bottom: 30px;
        }

        .fc-company {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .fc-logo {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #DA4E26, #d94838);
            color: #fff;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .fc-company-info strong {
            display: block;
            font-size: 18px;
            color: #15172b;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .fc-company-info span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #6a6a80;
        }

        .fc-company-info span i {
            color: #DA4E26;
            font-size: 10px;
        }

        .fc-headline {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: #15172b;
            line-height: 1.2;
            margin: 0 0 14px;
        }

        .fc-headline em {
            color: #DA4E26;
            font-style: italic;
        }

        .fc-summary {
            font-size: 14px;
            color: #6a6a80;
            line-height: 1.7;
            margin: 0;
        }

        /* Big results grid */
        .fc-results {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 24px 0;
        }

        .fc-result {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            border-radius: 16px;
            padding: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .fc-result:hover {
            border-color: #DA4E26;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(239, 90, 74, 0.1);
        }

        .fc-result .res-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: #8a8a9e;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .fc-result .res-label i {
            color: #DA4E26;
            font-size: 12px;
        }

        .fc-result .res-num {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 700;
            color: #15172b;
            line-height: 1;
            margin-bottom: 6px;
        }

        .fc-result .res-num.green {
            color: #1e9b30;
        }

        .fc-result .res-num.red {
            color: #DA4E26;
        }

        .fc-result .res-change {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 50px;
        }

        .fc-result .res-change.up {
            background: rgba(39, 201, 63, 0.12);
            color: #1e9b30;
        }

        .fc-result .res-change.down {
            background: rgba(239, 90, 74, 0.12);
            color: #DA4E26;
        }

        .fc-result::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.06), transparent 70%);
        }

        /* Bottom CTA in featured */
        .fc-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 22px;
            border-top: 1.5px solid #f0e4df;
            gap: 14px;
            flex-wrap: wrap;
        }

        .fc-meta {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 12px;
            color: #6a6a80;
            font-weight: 500;
        }

        .fc-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .fc-meta i {
            color: #DA4E26;
            font-size: 11px;
        }

        .fc-read-btn {
            background: #15172b;
            color: #fff;
            text-decoration: none;
            padding: 12px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .fc-read-btn:hover {
            background: #DA4E26;
            color: #fff;
            transform: translateX(3px);
        }

        /* ============ MORE CASES CAROUSEL ============ */
        .more-cases-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
        }

        .more-cases-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: #15172b;
            margin: 0;
        }

        .carousel-controls {
            display: flex;
            gap: 8px;
        }

        .carousel-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1.5px solid #d4c8bc;
            background: #fff;
            color: #15172b;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all 0.3s;
        }

        .carousel-btn:hover {
            background: #15172b;
            color: #fff;
            border-color: #15172b;
        }

        .carousel-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* Carousel container */
        .cases-carousel {
            display: flex;
            gap: 22px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            padding: 10px 0 30px;
            position: relative;
            z-index: 2;
            scrollbar-width: none;
        }

        .cases-carousel::-webkit-scrollbar {
            display: none;
        }

        /* Case card */
        .case-card {
            flex: 0 0 380px;
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            scroll-snap-align: start;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1.5px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 10px 30px rgba(21, 23, 43, 0.06);
            cursor: pointer;
            position: relative;
        }

        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 50px rgba(21, 23, 43, 0.12);
        }

        .case-img-wrap {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .case-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .case-card:hover .case-img-wrap img {
            transform: scale(1.08);
        }

        .case-img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5));
            pointer-events: none;
        }

        .case-category {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 700;
            color: #15172b;
            letter-spacing: 1px;
            z-index: 2;
        }

        .case-big-number {
            position: absolute;
            bottom: 16px;
            left: 16px;
            color: #fff;
            z-index: 2;
        }

        .case-big-number strong {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            font-weight: 700;
            line-height: 1;
            background: linear-gradient(135deg, #fff, #DF542A);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .case-big-number span {
            display: block;
            font-size: 11px;
            font-weight: 600;
            margin-top: 4px;
            opacity: 0.9;
        }

        /* Play button overlay (for video case) */
        .video-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #DA4E26;
            font-size: 24px;
            z-index: 3;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .video-play::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            animation: ringPulse 2s ease infinite;
        }

        @keyframes ringPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        .video-play:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: #fff;
        }

        .case-body {
            padding: 24px;
        }

        .case-company {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .case-company .cc-logo {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #fff;
            font-size: 14px;
            flex-shrink: 0;
        }

        .cc1 .cc-logo {
            background: linear-gradient(135deg, #4285f4, #2d5fc4);
        }

        .cc2 .cc-logo {
            background: linear-gradient(135deg, #6c5ce7, #4d3fb8);
        }

        .cc3 .cc-logo {
            background: linear-gradient(135deg, #ff9500, #d97700);
        }

        .cc4 .cc-logo {
            background: linear-gradient(135deg, #27c93f, #1e9b30);
        }

        .case-company .cc-text strong {
            display: block;
            font-size: 14px;
            color: #15172b;
            font-weight: 700;
            line-height: 1.2;
        }

        .case-company .cc-text span {
            font-size: 11px;
            color: #8a8a9e;
        }

        .case-headline {
            font-family: 'Playfair Display', serif;
            font-size: 19px;
            font-weight: 700;
            color: #15172b;
            margin: 0 0 12px;
            line-height: 1.3;
        }

        .case-mini-stats {
            display: flex;
            gap: 12px;
            margin: 16px 0 18px;
            padding: 14px;
            background: #fdf8f6;
            border-radius: 12px;
        }

        .case-mini-stat {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .case-mini-stat:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 15%;
            right: -6px;
            width: 1px;
            height: 70%;
            background: #ede4dd;
        }

        .case-mini-stat strong {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            color: #DA4E26;
            display: block;
            line-height: 1;
        }

        .case-mini-stat span {
            display: block;
            font-size: 9px;
            color: #8a8a9e;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 4px;
        }

        .case-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            border-top: 1px solid #f0e4df;
        }

        .case-time {
            font-size: 11px;
            color: #8a8a9e;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .case-arrow {
            color: #DA4E26;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }

        .case-card:hover .case-arrow {
            gap: 10px;
        }

        /* ============ BOTTOM CTA STRIP ============ */
        .proof-cta-strip {
            margin-top: 50px;
            background: #fff;
            border-radius: 24px;
            padding: 32px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: 0 15px 40px rgba(21, 23, 43, 0.06);
            border: 1.5px solid rgba(0, 0, 0, 0.04);
            position: relative;
            z-index: 2;
        }

        .cta-strip-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-strip-avatars {
            display: flex;
            align-items: center;
        }

        .cta-strip-avatars .csa {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2.5px solid #fff;
            margin-left: -10px;
            background-size: cover;
            background-position: center;
            background-color: #ddd;
        }

        .cta-strip-avatars .csa:first-child {
            margin-left: 0;
        }

        .cta-strip-avatars .csa:nth-child(1) {
            background: linear-gradient(135deg, #DA4E26, #d94838);
        }

        .cta-strip-avatars .csa:nth-child(2) {
            background: linear-gradient(135deg, #4285f4, #2d5fc4);
        }

        .cta-strip-avatars .csa:nth-child(3) {
            background: linear-gradient(135deg, #ff9500, #d97700);
        }

        .cta-strip-avatars .csa:nth-child(4) {
            background: linear-gradient(135deg, #6c5ce7, #4d3fb8);
        }

        .cta-strip-avatars .csa:last-child {
            background: #15172b;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
        }

        .cta-strip-text strong {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #15172b;
            display: block;
            line-height: 1.2;
        }

        .cta-strip-text p {
            font-size: 13px;
            color: #6a6a80;
            margin: 4px 0 0;
        }

        .cta-strip-text p i {
            color: #DF542A;
            font-size: 11px;
        }

        .btn-see-all {
            background: #DA4E26;
            color: #fff;
            text-decoration: none;
            padding: 16px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 10px 25px rgba(239, 90, 74, 0.3);
        }

        .btn-see-all:hover {
            background: #d94838;
            color: #fff;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .proof-title {
                font-size: 42px;
            }

            .stats-bar {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .stat-block:nth-child(2)::after {
                display: none;
            }

            .featured-grid {
                grid-template-columns: 1fr;
            }

            .featured-visual {
                min-height: 360px;
            }

            .featured-content {
                padding: 35px 28px;
            }

            .fc-headline {
                font-size: 26px;
            }

            .case-card {
                flex: 0 0 320px;
            }

            .proof-cta-strip {
                flex-direction: column;
                text-align: center;
                padding: 28px 24px;
            }

            .cta-strip-left {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .proof-title {
                font-size: 32px;
            }

            .stats-bar {
                grid-template-columns: 1fr;
                padding: 24px;
            }

            .stat-block::after {
                display: none !important;
            }

            .stat-block {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .stat-block:last-child {
                border: none;
            }

            .stat-block strong {
                font-size: 36px;
            }

            .fc-results {
                grid-template-columns: 1fr;
            }

            .case-card {
                flex: 0 0 280px;
            }

            .more-cases-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
        }

        .proof-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fdf1ec, #DA4E26, #fdf1ec) !important;
            width: 100% !important;
        }

        /* ============ TESTIMONIALS SECTION ============ */
        .testimonials-section {
            background: #fff;
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(239, 90, 74, 0.06), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 189, 46, 0.05), transparent 50%);
            pointer-events: none;
        }

        /* Header */
        .test-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .test-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1.5px solid #f0e4df;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            margin-bottom: 22px;
            box-shadow: 0 6px 20px rgba(239, 90, 74, 0.08);
            color: #15172b;
        }

        .test-badge .badge-heart {
            color: #DA4E26;
            font-size: 13px;
            animation: heartPulse 1.5s ease infinite;
        }

        @keyframes heartPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.25);
            }
        }

        .test-title {
            font-family: 'Playfair Display', serif;
            font-size: 55px;
            font-weight: 700;
            color: #15172b;
            line-height: 1.05;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .test-title em {
            color: #DA4E26;
            font-style: italic;
        }

        .test-sub {
            font-size: 17px;
            color: #6a6a80;
            max-width: 640px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        /* ============ STATS BANNER ============ */
        .video-stats-banner {
            display: inline-flex;
            align-items: center;
            gap: 24px;
            background: linear-gradient(135deg, #15172b, #2a2c4a);
            padding: 14px 28px;
            border-radius: 60px;
            color: #fff;
            box-shadow: 0 15px 40px rgba(21, 23, 43, 0.2);
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
            justify-content: center;
        }

        .vsb-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
        }

        .vsb-item strong {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #DF542A;
            font-weight: 700;
        }

        .vsb-item .vsb-icon {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #DF542A;
        }

        .vsb-divider {
            width: 1px;
            height: 24px;
            background: rgba(255, 255, 255, 0.15);
        }

        /* ============ FILTER PILLS ============ */
        .filter-pills {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 50px 0 40px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .filter-pill {
            background: #fdf8f3;
            border: 1.5px solid #f0e4df;
            color: #6a6a80;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
        }

        .filter-pill:hover {
            border-color: #DA4E26;
            color: #DA4E26;
            background: #fff;
        }

        .filter-pill.active {
            background: #15172b;
            color: #fff;
            border-color: #15172b;
            box-shadow: 0 8px 20px rgba(21, 23, 43, 0.2);
        }

        .filter-pill .pill-count {
            background: rgba(0, 0, 0, 0.1);
            padding: 2px 8px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
        }

        .filter-pill.active .pill-count {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        /* ============ VIDEO GRID (YouTube Shorts Style) ============ */
        .stories-grid-2col {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .story-card-2col {
            position: relative;
            aspect-ratio: 9/16;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: #15172b;
        }

        .story-card-2col:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .story-thumb-2col {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s, filter 0.4s;
        }

        .story-card-2col:hover .story-thumb-2col {
            transform: scale(1.08);
            filter: brightness(0.7);
        }

        /* Gradient overlay */
        .story-card-2col::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(0, 0, 0, 0.3) 0%,
                    transparent 30%,
                    transparent 60%,
                    rgba(0, 0, 0, 0.8) 100%);
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.3s;
        }

        .story-card-2col:hover::after {
            opacity: 0.7;
        }

        /* Top badge on card */
        .story-top-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #15172b;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .story-top-badge i {
            color: #DA4E26;
            font-size: 9px;
        }

        .story-top-badge.bath-tag i {
            color: #2d5fc4;
        }

        /* Bottom info on card */
        .story-bottom-info {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            color: #fff;
            z-index: 3;
        }

        .story-bottom-info strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 3px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .story-bottom-info span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
        }

        .story-bottom-info span i {
            color: #DF542A;
            font-size: 10px;
        }

        /* YouTube Play Overlay */
        .yt-play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            pointer-events: none;
            transition: all 0.3s;
        }

        .yt-play-btn {
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            width: 72px;
            height: 50px;
            transition: all 0.3s;
            filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.5));
        }

        .story-card-2col:hover .yt-play-btn {
            transform: scale(1.15);
        }

        .yt-play-btn svg {
            width: 100%;
            height: 100%;
        }

        .yt-bg {
            fill: rgba(255, 0, 0, 0.95);
            transition: fill 0.3s;
        }

        .story-card-2col:hover .yt-bg {
            fill: #ff0000;
        }

        .yt-arrow {
            fill: #fff;
        }

        /* Duration badge */
        .story-duration {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            z-index: 3;
            backdrop-filter: blur(4px);
        }

        /* Hidden cards (load more) */
        .stories-show-more {
            display: none;
        }

        .stories-show-more.revealed {
            display: block;
            animation: cardFadeIn 0.6s ease;
        }

        @keyframes cardFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ LOAD MORE BUTTON ============ */
        .load-more-wrap {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }

        .btn-load-more {
            background: #fff;
            color: #15172b;
            border: 1.5px solid #f0e4df;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .btn-load-more:hover {
            background: #15172b;
            color: #fff;
            border-color: #15172b;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(21, 23, 43, 0.2);
        }

        .btn-load-more i {
            transition: transform 0.3s;
        }

        .btn-load-more.spinning i {
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .load-more-meta {
            margin-top: 14px;
            font-size: 12px;
            color: #8a8a9e;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .load-more-meta i {
            color: #DA4E26;
            font-size: 10px;
        }


        /* ============ PROCESS SECTION ============ */
        .process-section {
            background: #fffaf5;
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 200px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.07), transparent 70%);
            pointer-events: none;
        }

        .process-section::after {
            content: '';
            position: absolute;
            bottom: 100px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 189, 46, 0.08), transparent 70%);
            pointer-events: none;
        }

        .proc-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 2;
        }

        .proc-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1.5px solid #f0e4df;
            color: #DA4E26;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 22px;
            box-shadow: 0 4px 14px rgba(239, 90, 74, 0.08);
        }

        .proc-badge i {
            font-size: 11px;
        }

        .proc-title {
            font-family: 'Playfair Display', serif;
            font-size: 55px;
            font-weight: 700;
            color: #15172b;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .proc-title em {
            color: #DA4E26;
            font-style: italic;
        }

        .proc-sub {
            font-size: 17px;
            color: #6a6a80;
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .proc-stage {
            position: relative;
            z-index: 2;
        }

        .proc-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 60px;
            align-items: start;
        }

        /* ============ LEFT: TIMELINE ============ */
        .proc-timeline {
            position: relative;
            padding-left: 0;
        }

        .timeline-track {
            position: absolute;
            left: 35px;
            top: 30px;
            bottom: 30px;
            width: 2px;
            background: #f0e4df;
            border-radius: 4px;
            z-index: 0;
        }

        .timeline-progress {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            background: linear-gradient(180deg, #DA4E26, #d94838);
            border-radius: 4px;
            height: 0%;
            transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-item {
            position: relative;
            padding: 16px 0 16px 90px;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 16px;
            margin-bottom: 8px;
        }

        .step-item:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .step-item.active {
            background: #fff;
            box-shadow: 0 8px 24px rgba(239, 90, 74, 0.08);
        }

        .step-circle {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: #fff;
            border: 2px solid #f0e4df;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: #c8b8ac;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-item.active .step-circle,
        .step-item.completed .step-circle {
            background: #DA4E26;
            border-color: #DA4E26;
            color: #fff;
            box-shadow: 0 0 0 6px rgba(239, 90, 74, 0.15);
        }

        .step-item.completed .step-circle::after {
            content: '\f00c';
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: 16px;
        }

        .step-item.completed .step-circle {
            font-size: 0;
        }

        .step-label {
            display: inline-block;
            font-size: 10px;
            letter-spacing: 2px;
            font-weight: 700;
            color: #8a8a9e;
            text-transform: uppercase;
            margin-bottom: 6px;
            transition: color 0.3s;
        }

        .step-item.active .step-label {
            color: #DA4E26;
        }

        .step-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: #15172b;
            margin: 0 0 8px;
            line-height: 1.25;
            padding-right: 50px;
        }

        .step-desc {
            font-size: 13px;
            color: #6a6a80;
            line-height: 1.6;
            margin: 0;
            padding-right: 30px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-item.active .step-desc {
            max-height: 100px;
            opacity: 1;
            margin-top: 4px;
        }

        .step-meta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            font-size: 11px;
            color: #DA4E26;
            font-weight: 600;
            background: #fef0ec;
            padding: 4px 12px;
            border-radius: 50px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.5s 0.1s;
        }

        .step-item.active .step-meta {
            max-height: 30px;
            opacity: 1;
        }

        .step-meta i {
            font-size: 9px;
        }

        /* ============ RIGHT: PREVIEW PANEL ============ */
        .proc-preview {
            position: sticky;
            top: 40px;
        }

        .preview-card {
            background: #fff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(21, 23, 43, 0.1);
            border: 1.5px solid rgba(0, 0, 0, 0.04);
            min-height: 560px;
            position: relative;
        }

        .preview-header {
            background: linear-gradient(135deg, #15172b, #2a2c4a);
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
        }

        .preview-header-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .preview-step-num {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: #DF542A;
            line-height: 1;
        }

        .preview-header-text small {
            font-size: 10px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
            text-transform: uppercase;
            display: block;
        }

        .preview-header-text strong {
            font-size: 16px;
            font-weight: 700;
        }

        .preview-time-badge {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .preview-time-badge i {
            color: #DF542A;
        }

        .preview-body {
            padding: 35px;
            position: relative;
        }

        .preview-panel {
            display: none;
            animation: panelSlide 0.5s ease;
        }

        .preview-panel.active {
            display: block;
        }

        @keyframes panelSlide {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* === STEP 1: AUDIT === */
        .audit-card {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            border-radius: 18px;
            padding: 24px;
            margin-bottom: 18px;
        }

        .audit-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid #f0e4df;
        }

        .audit-row:last-child {
            border: none;
            padding-bottom: 0;
        }

        .audit-row:first-child {
            padding-top: 0;
        }

        .audit-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #15172b;
        }

        .audit-label .ic {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
        }

        .ic-red {
            background: #fce3dc;
            color: #DA4E26;
        }

        .ic-green {
            background: #d4f5dc;
            color: #1e9b30;
        }

        .ic-yellow {
            background: #fff3c4;
            color: #c98800;
        }

        .audit-score {
            font-weight: 700;
            font-size: 14px;
        }

        .score-bad {
            color: #DA4E26;
        }

        .score-ok {
            color: #c98800;
        }

        .score-good {
            color: #1e9b30;
        }

        .audit-summary {
            background: linear-gradient(135deg, #fff0ec, #fdf8f6);
            border-left: 3px solid #DA4E26;
            padding: 16px 18px;
            border-radius: 0 12px 12px 0;
            font-size: 13px;
            color: #15172b;
            line-height: 1.6;
        }

        .audit-summary strong {
            color: #DA4E26;
        }

        /* === STEP 2: STRATEGY === */
        .strategy-stack {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .strategy-item {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            border-radius: 14px;
            padding: 16px;
            position: relative;
            overflow: hidden;
        }

        .strategy-item .check {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 18px;
            height: 18px;
            background: #27c93f;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
        }

        .strategy-item .si-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            margin-bottom: 10px;
        }

        .si1 .si-icon {
            background: linear-gradient(135deg, #4285f4, #2d5fc4);
        }

        .si2 .si-icon {
            background: linear-gradient(135deg, #DA4E26, #d94838);
        }

        .si3 .si-icon {
            background: linear-gradient(135deg, #6c5ce7, #4d3fb8);
        }

        .si4 .si-icon {
            background: linear-gradient(135deg, #ff9500, #d97700);
        }

        .strategy-item h6 {
            font-size: 13px;
            font-weight: 700;
            color: #15172b;
            margin: 0 0 4px;
        }

        .strategy-item p {
            font-size: 11px;
            color: #8a8a9e;
            margin: 0;
            line-height: 1.4;
        }

        .strategy-bar {
            margin-top: 16px;
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            padding: 14px 18px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .strategy-bar-left {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #15172b;
            font-weight: 600;
        }

        .strategy-bar-left i {
            color: #DA4E26;
        }

        .strategy-bar-time {
            font-size: 12px;
            color: #6a6a80;
            font-weight: 500;
        }

        /* === STEP 3: LAUNCH === */
        .launch-screen {
            background: #15172b;
            border-radius: 18px;
            padding: 20px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .launch-screen::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.4), transparent 70%);
        }

        .launch-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(39, 201, 63, 0.2);
            color: #7eff9b;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .launch-status .dot {
            width: 6px;
            height: 6px;
            background: #27c93f;
            border-radius: 50%;
            animation: pulse 1.2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        .launch-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            margin: 0 0 6px;
            position: relative;
        }

        .launch-sub {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0 0 20px;
        }

        .launch-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            position: relative;
        }

        .launch-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 14px;
            border-radius: 12px;
        }

        .launch-box small {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
        }

        .launch-box strong {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #fff;
        }

        .launch-box .trend {
            font-size: 11px;
            color: #7eff9b;
            font-weight: 700;
            margin-left: 6px;
        }

        .launch-list {
            margin-top: 18px;
            padding: 0;
            list-style: none;
        }

        .launch-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.85);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .launch-list li:last-child {
            border: none;
        }

        .launch-list li i {
            color: #7eff9b;
            font-size: 11px;
        }

        /* === STEP 4: AUTOMATION === */
        .auto-flow {
            position: relative;
            padding: 10px 0;
        }

        .auto-row {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            padding: 14px 16px;
            border-radius: 14px;
            margin-bottom: 10px;
            position: relative;
        }

        .auto-row::before {
            content: '';
            position: absolute;
            left: 33px;
            bottom: -10px;
            width: 2px;
            height: 10px;
            background: #f0c4b8;
        }

        .auto-row:last-child::before {
            display: none;
        }

        .auto-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }

        .ai1 {
            background: linear-gradient(135deg, #4285f4, #2d5fc4);
        }

        .ai2 {
            background: linear-gradient(135deg, #DA4E26, #d94838);
        }

        .ai3 {
            background: linear-gradient(135deg, #6c5ce7, #4d3fb8);
        }

        .ai4 {
            background: linear-gradient(135deg, #27c93f, #1e9b30);
        }

        .auto-text {
            flex-grow: 1;
        }

        .auto-text strong {
            font-size: 13px;
            color: #15172b;
            display: block;
            margin-bottom: 2px;
        }

        .auto-text p {
            font-size: 11px;
            color: #8a8a9e;
            margin: 0;
        }

        .auto-time {
            font-size: 11px;
            font-weight: 700;
            color: #DA4E26;
            background: #fef0ec;
            padding: 4px 10px;
            border-radius: 50px;
            flex-shrink: 0;
        }

        /* === STEP 5: GROW === */
        .grow-hero {
            background: linear-gradient(135deg, #fef0ec, #fdf8f6);
            border: 1.5px solid #f0e4df;
            border-radius: 18px;
            padding: 24px;
            text-align: center;
            margin-bottom: 18px;
        }

        .grow-big-num {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            font-weight: 700;
            color: #DA4E26;
            line-height: 1;
            margin: 0;
            background: linear-gradient(135deg, #DA4E26, #ff8c7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .grow-big-num+p {
            font-size: 13px;
            color: #6a6a80;
            margin: 8px 0 0;
            font-weight: 500;
        }

        .grow-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }

        .grow-stat {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            padding: 14px 10px;
            border-radius: 12px;
            text-align: center;
        }

        .grow-stat strong {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #15172b;
            display: block;
            line-height: 1;
        }

        .grow-stat span {
            font-size: 10px;
            color: #8a8a9e;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 6px;
            display: block;
        }

        .grow-quote {
            margin-top: 18px;
            background: #15172b;
            color: #fff;
            padding: 16px 18px;
            border-radius: 14px;
            font-size: 13px;
            line-height: 1.6;
            font-style: italic;
            position: relative;
        }

        .grow-quote::before {
            content: '"';
            position: absolute;
            top: -8px;
            left: 14px;
            font-family: 'Playfair Display', serif;
            font-size: 60px;
            color: #DA4E26;
            line-height: 1;
        }

        .grow-quote-author {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            font-style: normal;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
        }

        .grow-quote-author i {
            color: #DF542A;
        }

        /* ============ BOTTOM CTA ============ */
        .proc-cta {
            margin-top: 80px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-wrap {
            background: #15172b;
            border-radius: 28px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            color: #fff;
        }

        .cta-wrap::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.4), transparent 70%);
        }

        .cta-wrap::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 189, 46, 0.2), transparent 70%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-wrap h3 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 700;
            margin: 0 0 14px;
        }

        .cta-wrap h3 em {
            color: #DF542A;
            font-style: italic;
        }

        .cta-wrap p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.75);
            max-width: 540px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-main {
            background: #DA4E26;
            color: #fff;
            border: none;
            padding: 16px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 10px 28px rgba(239, 90, 74, 0.4);
        }

        .btn-cta-main:hover {
            background: #fff;
            color: #15172b;
            transform: translateY(-3px);
        }

        .btn-cta-ghost {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            padding: 16px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-cta-ghost:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .proc-title {
                font-size: 42px;
            }

            .proc-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .proc-preview {
                position: relative;
                top: 0;
            }

            .preview-card {
                min-height: auto;
            }

            .step-title {
                font-size: 19px;
            }

            .cta-wrap h3 {
                font-size: 28px;
            }

            .cta-wrap {
                padding: 35px 25px;
            }
        }

        @media (max-width: 576px) {
            .proc-title {
                font-size: 32px;
            }

            .step-item {
                padding-left: 75px;
            }

            .step-circle {
                width: 42px;
                height: 42px;
                left: 8px;
                font-size: 17px;
            }

            .timeline-track {
                left: 28px;
            }

            .step-title {
                font-size: 17px;
                padding-right: 10px;
            }

            .preview-body {
                padding: 24px;
            }

            .strategy-stack {
                grid-template-columns: 1fr;
            }

            .grow-row {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .grow-big-num {
                font-size: 48px;
            }
        }
          /* ============ GET STARTED SECTION ============ */
        .gs-section-wrap {
            background: #fff8f3;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .gs-section-wrap::before {
            content: '';
            position: absolute;
            top: 50px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.07), transparent 70%);
            pointer-events: none;
        }

        .gs-section-wrap::after {
            content: '';
            position: absolute;
            bottom: 50px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(45, 74, 138, 0.05), transparent 70%);
            pointer-events: none;
        }

        /* Header */
        .gs-head-block {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .gs-pill-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1.5px solid #f0e4df;
            color: #DA4E26;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 22px;
            box-shadow: 0 4px 14px rgba(239, 90, 74, 0.08);
        }

        .gs-pill-badge .gs-live-dot {
            width: 7px;
            height: 7px;
            background: #27c93f;
            border-radius: 50%;
            animation: gsPulseDot 1.2s infinite;
            box-shadow: 0 0 0 4px rgba(39, 201, 63, 0.2);
        }

        @keyframes gsPulseDot {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        .gs-main-title {
            font-family: 'Playfair Display', serif;
            font-size: 55px;
            font-weight: 700;
            color: #15172b;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .gs-main-title em {
            color: #DA4E26;
            font-style: italic;
        }

        .gs-subtitle-text {
            font-size: 17px;
            color: #6a6a80;
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ============ TAB SWITCHER ============ */
        .gs-switcher {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .gs-switcher-inner {
            background: #fff;
            border: 1.5px solid #f0e4df;
            border-radius: 60px;
            padding: 6px;
            display: inline-flex;
            gap: 4px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            flex-wrap: wrap;
        }

        .gs-switch-btn {
            background: transparent;
            border: none;
            padding: 14px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: #6a6a80;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            position: relative;
        }

        .gs-switch-btn:hover {
            color: #15172b;
        }

        .gs-switch-btn.active {
            background: #15172b;
            color: #fff;
            box-shadow: 0 8px 20px rgba(21, 23, 43, 0.25);
        }

        .gs-switch-btn .gs-switch-icon {
            width: 26px;
            height: 26px;
            background: #fce3dc;
            color: #DA4E26;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            transition: all 0.3s;
        }

        .gs-switch-btn.active .gs-switch-icon {
            background: #DA4E26;
            color: #fff;
        }

        .gs-switch-btn .gs-popular-label {
            background: #DA4E26;
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            margin-left: 4px;
        }

        /* ============ TAB PANELS ============ */
        .gs-content-panels {
            position: relative;
            z-index: 2;
            max-width: 1080px;
            margin: 0 auto;
        }

        .gs-content-panel {
            display: none;
            animation: gsPanelFade 0.5s ease;
        }

        .gs-content-panel.active {
            display: block;
        }

        @keyframes gsPanelFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ PANEL CARD ============ */
        .gs-card-wrap {
            background: #fff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(21, 23, 43, 0.08);
            border: 1.5px solid rgba(0, 0, 0, 0.04);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            min-height: 600px;
        }

        /* LEFT SIDE - Info */
        .gs-info-side {
            padding: 50px 40px;
            background: #0A1F3C;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .gs-info-inner {
            position: relative;
            z-index: 2;
        }

        .gs-label-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid rgba(255, 215, 0, 0.3);
            color: #DF542A;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 18px;
        }

        .gs-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 14px;
            color: white;
        }

        .gs-card-title em {
            color: #DF542A;
            font-style: italic;
        }

        .gs-card-desc {
            font-size: 14px;
            color: rgb(228, 228, 228);
            ;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .gs-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }

        .gs-feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }

        .gs-feature-list li i {
            width: 18px;
            height: 18px;
            background: rgba(39, 201, 63, 0.2);
            color: #7eff9b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .gs-trust-block {
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gs-trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .gs-trust-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.65);
            font-weight: 500;
        }

        .gs-trust-item i {
            color: #7eff9b;
            font-size: 10px;
        }

        /* Team avatars */
        .gs-team-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 18px;
        }

        .gs-team-avatars {
            display: flex;
        }

        .gs-team-avatars .gs-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid #15172b;
            margin-left: -8px;
            background-size: cover;
            font-weight: 700;
            font-size: 12px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gs-team-avatars .gs-avatar:first-child {
            margin-left: 0;
        }

        .gs-team-avatars .gs-avatar:nth-child(1) {
            background: linear-gradient(135deg, #DA4E26, #d94838);
        }

        .gs-team-avatars .gs-avatar:nth-child(2) {
            background: linear-gradient(135deg, #4285f4, #2d5fc4);
        }

        .gs-team-avatars .gs-avatar:nth-child(3) {
            background: linear-gradient(135deg, #ff9500, #d97700);
        }

        .gs-team-info {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.65);
        }

        .gs-team-info strong {
            color: #fff;
            display: block;
            font-size: 13px;
        }

        /* RIGHT SIDE - Form */
        .gs-form-side {
            padding: 50px 45px;
            background: #fff;
            display: flex;
            flex-direction: column;
        }

        .gs-form-head {
            margin-bottom: 24px;
        }

        .gs-form-head h3 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 700;
            color: #15172b;
            margin: 0 0 6px;
        }

        .gs-form-head p {
            font-size: 13px;
            color: #8a8a9e;
            margin: 0;
        }

        /* ============ MULTI-STEP PROGRESS ============ */
        .gs-progress-wrap {
            margin-bottom: 28px;
        }

        .gs-progress-track {
            width: 100%;
            height: 6px;
            background: #f0e4df;
            border-radius: 50px;
            overflow: hidden;
            margin-bottom: 14px;
        }

        .gs-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #DA4E26, #ff8c7a);
            border-radius: 50px;
            width: 25%;
            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gs-progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .gs-prog-step {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: #b0b0c0;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .gs-prog-step .gs-step-num {
            width: 22px;
            height: 22px;
            background: #f0e4df;
            color: #b0b0c0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .gs-prog-step.active .gs-step-num {
            background: #DA4E26;
            color: #fff;
            box-shadow: 0 0 0 4px rgba(239, 90, 74, 0.2);
        }

        .gs-prog-step.active {
            color: #15172b;
        }

        .gs-prog-step.completed .gs-step-num {
            background: #27c93f;
            color: #fff;
        }

        .gs-prog-step.completed .gs-step-num::after {
            content: '\f00c';
            font-family: 'Inter', sans-serif;
            font-weight: 900;
        }

        .gs-prog-step.completed .gs-step-num {
            font-size: 0;
        }

        /* ============ FORM STEPS ============ */
        .gs-form-step {
            display: none;
            animation: gsStepFade 0.4s ease;
        }

        .gs-form-step.active {
            display: block;
        }

        @keyframes gsStepFade {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .gs-field {
            margin-bottom: 18px;
        }

        .gs-field-label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: #15172b;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .gs-field-label .gs-req {
            color: #DA4E26;
        }

        .gs-field-input,
        .gs-field-select,
        .gs-field-textarea {
            width: 100%;
            border: 1.5px solid #f0e4df;
            border-radius: 12px;
            padding: 14px 16px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            color: #15172b;
            background: #fdf8f6;
            outline: none;
            transition: all 0.3s;
        }

        .gs-field-input:focus,
        .gs-field-select:focus,
        .gs-field-textarea:focus {
            border-color: #DA4E26;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(239, 90, 74, 0.1);
        }

        .gs-field-input::placeholder {
            color: #b0b0c0;
        }

        .gs-field-textarea {
            resize: vertical;
            min-height: 90px;
        }

        .gs-field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        /* Range Slider */
        .gs-range-container {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            border-radius: 14px;
            padding: 20px;
        }

        .gs-range-display {
            text-align: center;
            margin-bottom: 14px;
        }

        .gs-range-display strong {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: #DA4E26;
            line-height: 1;
            display: block;
        }

        .gs-range-display span {
            font-size: 12px;
            color: #8a8a9e;
            font-weight: 500;
            margin-top: 4px;
            display: block;
        }

        .gs-range-input {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            border-radius: 50px;
            background: #f0e4df;
            outline: none;
        }

        .gs-range-input::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #fff;
            border: 4px solid #DA4E26;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(239, 90, 74, 0.3);
        }

        .gs-range-input::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #fff;
            border: 4px solid #DA4E26;
            cursor: pointer;
        }

        .gs-range-marks {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 11px;
            color: #8a8a9e;
            font-weight: 500;
        }

        /* Challenge cards (radio-like) */
        .gs-challenge-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .gs-challenge-card {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            border-radius: 12px;
            padding: 14px 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .gs-challenge-card:hover {
            border-color: #DA4E26;
            background: #fff;
        }

        .gs-challenge-card.selected {
            background: linear-gradient(135deg, #fef0ec, #fff);
            border-color: #DA4E26;
            box-shadow: 0 4px 12px rgba(239, 90, 74, 0.1);
        }

        .gs-challenge-card input {
            display: none;
        }

        .gs-challenge-card .gs-challenge-icon {
            width: 32px;
            height: 32px;
            background: #fce3dc;
            color: #DA4E26;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            flex-shrink: 0;
        }

        .gs-challenge-card.selected .gs-challenge-icon {
            background: #DA4E26;
            color: #fff;
        }

        .gs-challenge-card .gs-challenge-text {
            font-size: 12px;
            color: #15172b;
            font-weight: 600;
            line-height: 1.4;
        }

        /* Form navigation */
        .gs-form-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1.5px solid #f0e4df;
        }

        .gs-btn-back {
            background: transparent;
            color: #6a6a80;
            border: 1.5px solid #f0e4df;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .gs-btn-back:hover {
            background: #fdf8f6;
            border-color: #15172b;
            color: #15172b;
        }

        .gs-btn-back:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .gs-btn-next,
        .gs-btn-submit {
            background: #DA4E26;
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 20px rgba(239, 90, 74, 0.3);
        }

        .gs-btn-next:hover,
        .gs-btn-submit:hover {
            background: #d94838;
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(239, 90, 74, 0.4);
        }

        .gs-btn-submit {
            background: linear-gradient(135deg, #DA4E26, #d94838);
        }

        /* ============ THANK YOU STATE ============ */
        .gs-thankyou {
            display: none;
            text-align: center;
            padding: 40px 20px;
            animation: gsThankPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .gs-thankyou.show {
            display: block;
        }

        @keyframes gsThankPop {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .gs-thankyou-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #27c93f, #1e9b30);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 22px;
            box-shadow: 0 15px 35px rgba(39, 201, 63, 0.3);
            animation: gsIconBounce 0.8s ease;
        }

        @keyframes gsIconBounce {

            0%,
            20%,
            60%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-15px);
            }

            80% {
                transform: translateY(-5px);
            }
        }

        .gs-thankyou h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: #15172b;
            margin: 0 0 12px;
        }

        .gs-thankyou h3 em {
            color: #DA4E26;
            font-style: italic;
        }

        .gs-thankyou p {
            font-size: 15px;
            color: #6a6a80;
            line-height: 1.7;
            margin: 0 0 22px;
            max-width: 460px;
            margin-left: auto;
            margin-right: auto;
        }

        .gs-thankyou-steps {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 0 auto 22px;
            max-width: 460px;
            text-align: left;
        }

        .gs-thankyou-steps strong {
            font-size: 11px;
            color: #DA4E26;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
        }

        .gs-thankyou-steps ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .gs-thankyou-steps ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-size: 13px;
            color: #15172b;
            font-weight: 500;
        }

        .gs-thankyou-steps ul li i {
            color: #27c93f;
            font-size: 12px;
        }

        .gs-thankyou-links {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .gs-thankyou-link {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            color: #15172b;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
        }

        .gs-thankyou-link:hover {
            background: #DA4E26;
            color: #fff;
            border-color: #DA4E26;
        }

        .gs-thankyou-link i {
            font-size: 10px;
        }

        /* ============ CALENDAR EMBED ============ */
        .gs-calendar-embed {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            border-radius: 16px;
            padding: 30px;
            min-height: 380px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .gs-cal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 24px;
            padding-bottom: 18px;
            border-bottom: 1.5px solid #ede4dd;
        }

        .gs-cal-header h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: #15172b;
            margin: 0;
        }

        .gs-cal-controls {
            display: flex;
            gap: 6px;
        }

        .gs-cal-controls button {
            width: 32px;
            height: 32px;
            background: #fff;
            border: 1.5px solid #ede4dd;
            border-radius: 8px;
            cursor: pointer;
            color: #6a6a80;
            font-size: 11px;
            transition: all 0.3s;
        }

        .gs-cal-controls button:hover {
            background: #DA4E26;
            color: #fff;
            border-color: #DA4E26;
        }

        .gs-cal-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
            width: 100%;
            margin-bottom: 20px;
        }

        .gs-cal-day-label {
            font-size: 10px;
            color: #8a8a9e;
            font-weight: 700;
            letter-spacing: 1px;
            text-align: center;
            padding: 6px 0;
        }

        .gs-cal-date {
            aspect-ratio: 1;
            background: #fff;
            border: 1.5px solid #ede4dd;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            color: #15172b;
            cursor: pointer;
            transition: all 0.3s;
        }

        .gs-cal-date:hover {
            background: #DA4E26;
            color: #fff;
            border-color: #DA4E26;
            transform: scale(1.08);
        }

        .gs-cal-date.disabled {
            color: #d0c8c0;
            cursor: not-allowed;
        }

        .gs-cal-date.disabled:hover {
            background: #fff;
            color: #d0c8c0;
            border-color: #ede4dd;
            transform: none;
        }

        .gs-cal-date.selected {
            background: #DA4E26 !important;
            color: #fff !important;
            border-color: #DA4E26 !important;
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(239, 90, 74, 0.4);
        }

        .gs-cal-date.today {
            background: #fef0ec;
            border-color: #DA4E26;
            color: #DA4E26;
        }

        .gs-cal-times {
            width: 100%;
            margin-top: 8px;
        }

        .gs-cal-times-label {
            font-size: 11px;
            color: #8a8a9e;
            font-weight: 700;
            letter-spacing: 1px;
            text-align: left;
            margin-bottom: 10px;
        }

        .gs-cal-times-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 6px;
        }

        .gs-cal-slot {
            background: #fff;
            border: 1.5px solid #ede4dd;
            padding: 8px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            color: #15172b;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .gs-cal-slot:hover {
            background: #DA4E26;
            color: #fff;
            border-color: #DA4E26;
        }

        .gs-cal-slot.selected {
            background: #DA4E26 !important;
            color: #fff !important;
            border-color: #DA4E26 !important;
            box-shadow: 0 4px 12px rgba(239, 90, 74, 0.3);
        }

        .gs-cal-info {
            margin-top: 14px;
            font-size: 11px;
            color: #8a8a9e;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .gs-cal-info i {
            color: #DA4E26;
        }

        /* ============ BOOKING SUMMARY ============ */
        .gs-booking-summary {
            margin-top: 16px;
            background: linear-gradient(135deg, #fef0ec, #fdf8f6);
            border: 1.5px solid #DA4E26;
            border-radius: 12px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: gsBookingPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes gsBookingPop {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .gs-booking-summary i {
            width: 36px;
            height: 36px;
            background: #DA4E26;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .gs-booking-summary small {
            display: block;
            font-size: 10px;
            color: #8a8a9e;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .gs-booking-summary strong {
            font-size: 14px;
            color: #15172b;
            font-weight: 700;
        }

        /* Empty state for slots */
        .gs-cal-slots-empty {
            text-align: center;
            padding: 20px;
            color: #b0b0c0;
            font-size: 12px;
            font-style: italic;
            grid-column: span 4;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 991px) {
            .gs-main-title {
                font-size: 40px;
            }

            .gs-card-wrap {
                grid-template-columns: 1fr;
            }

            .gs-info-side,
            .gs-form-side {
                padding: 35px 28px;
            }

            .gs-card-title {
                font-size: 26px;
            }

            .gs-switch-btn {
                padding: 10px 16px;
                font-size: 12px;
            }

            .gs-switch-btn .gs-switch-icon {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .gs-section-wrap {
                padding: 70px 0;
            }

            .gs-main-title {
                font-size: 30px;
            }

            .gs-switcher-inner {
                gap: 2px;
                padding: 4px;
            }

            .gs-switch-btn {
                padding: 10px 14px;
                font-size: 11px;
            }

            .gs-switch-btn .gs-popular-label {
                display: none;
            }

            .gs-info-side,
            .gs-form-side {
                padding: 28px 22px;
            }

            .gs-field-row {
                grid-template-columns: 1fr;
            }

            .gs-challenge-grid {
                grid-template-columns: 1fr;
            }

            .gs-form-nav {
                flex-direction: column-reverse;
                gap: 10px;
            }

            .gs-form-nav button {
                width: 100%;
                justify-content: center;
            }

            .gs-prog-step span {
                display: none;
            }

            .gs-cal-times-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ============ NEWSLETTER STRIP ============ */
        .newsletter-strip {
            background: linear-gradient(135deg, #fdf1ec, #fff5f0);
            padding: 60px 0;
            border-bottom: 1.5px solid rgba(239, 90, 74, 0.1);
            position: relative;
            overflow: hidden;
        }

        .newsletter-strip::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fdf1ec, #DA4E26, #fdf1ec) !important;
            width: 100% !important;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .news-left h3 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 700;
            color: #15172b;
            margin: 0 0 10px;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        .news-left h3 em {
            color: #DA4E26;
            font-style: italic;
        }

        .news-left p {
            font-size: 15px;
            color: #6a6a80;
            margin: 0;
            line-height: 1.7;
        }

        .news-form {
            background: #fff;
            border-radius: 60px;
            padding: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 15px 35px rgba(239, 90, 74, 0.1);
            border: 1.5px solid #f0e4df;
            position: relative;
        }

        .news-input {
            flex-grow: 1;
            border: none;
            outline: none;
            padding: 14px 20px;
            font-size: 14px;
            color: #15172b;
            background: transparent;
            font-family: 'Inter', sans-serif;
            min-width: 0;
        }

        .news-input::placeholder {
            color: #b0b0c0;
        }

        .news-btn {
            background: #DA4E26;
            color: #fff;
            border: none;
            padding: 14px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .news-btn:hover {
            background: #d94838;
            transform: translateX(2px);
        }

        .news-trust {
            margin-top: 12px;
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 12px;
            color: #8a8a9e;
            flex-wrap: wrap;
        }

        .news-trust .nt-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .news-trust .nt-item i {
            color: #27c93f;
            font-size: 11px;
        }

        .news-trust .nt-divider {
            width: 3px;
            height: 3px;
            background: #d0c8c0;
            border-radius: 50%;
        }

        /* ── STATS ── */
        .stats-section {
            background: #0A1F3C;
            padding: 60px 0;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: clamp(38px, 5vw, 50px);
            font-weight: 900;
            color: #fff;
            line-height: 1;
            letter-spacing: -1px;
            margin-bottom: 8px;
        }

        .stat-number.orange-accent {
            color: #DD5228;
        }

        .stat-slash {
            font-size: 60%;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.4);
        }

        .stat-unit-min {
            font-size: 36%;
            font-weight: 600;
            margin-left: 2px;
        }

        .stat-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.45);
            text-transform: uppercase;
        }

        .btn-cta-primary {
            background: #DD5228;
            color: #fff !important;
            border: none;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 15px;
            padding: 14px 28px;
            box-shadow: 0 4px 16px rgba(247, 140, 60, 0.35);
            transition: all 0.25s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .btn-cta-primary:hover {
            background: #DD5228;
            transform: translateY(-2px);
        }

        .btn-cta-outline-white {
            background: transparent;
            color: #fff !important;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 15px;
            padding: 13px 24px;
            transition: all 0.25s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cta-outline-white:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff !important;
        }


        /* ── PARTNERS ── */
        .partners-section {
            background: #0A1F3C;
            padding: 80px 0;
        }

        h2.get-head {
            color: white !important;
            font-size: 55px !important;
        }

        p.get-sub {
            color: rgb(228, 228, 228) !important;
        }

        .partner-logo {
            background: #ffffff;
            border: 1.5px solid var(--border);
            border-radius: 18px;
            padding: 18px 20px;
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(10, 31, 60, 0.07);
            transition: all 0.28s ease;
        }

        #google-partner {
            background: none;
            border: none;
            box-shadow: none;
        }

        .partner-logo:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 36px rgba(10, 31, 60, 0.13);
            border-color: var(--orange);
        }

        .partner-logo a {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-img {
            display: block;
            max-width: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* ============ FAQ SECTION ============ */
        .faq-section {
            background: #f4ede4;
            padding: 110px 0 80px;
            position: relative;
            overflow: hidden;
        }


        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fdf1ec, #ef5a4a, #fdf1ec);
        }

        /* Header */
        .faq-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1.5px solid #f0e4df;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            margin-bottom: 22px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            color: #15172b;
        }

        .faq-badge i {
            color: #ef5a4a;
        }

        .faq-title {
            font-family: 'Playfair Display', serif;
            font-size: 62px;
            font-weight: 700;
            color: #15172b;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .faq-title em {
            color: #ef5a4a;
            font-style: italic;
        }

        .faq-sub {
            font-size: 17px;
            color: #6a6a80;
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ============ FAQ LAYOUT ============ */
        .faq-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        /* Side Nav */
        .faq-sidenav {
            position: sticky;
            top: 30px;
            align-self: start;
        }

        .sidenav-title {
            font-size: 11px;
            font-weight: 700;
            color: #8a8a9e;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 14px;
            padding-left: 16px;
        }

        .sidenav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidenav-item {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: #6a6a80;
            font-weight: 500;
            text-decoration: none;
            border-radius: 12px;
            border-left: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 2px;
            line-height: 1.4;
        }

        .sidenav-item:hover {
            color: #15172b;
            background: rgba(255, 255, 255, 0.6);
        }

        .sidenav-item.active {
            color: #ef5a4a;
            background: #fff;
            border-left-color: #ef5a4a;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        .sidenav-item .sn-num {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-right: 8px;
            opacity: 0.5;
        }

        .sidenav-item.active .sn-num {
            opacity: 1;
        }

        .sidenav-cta {
            margin-top: 24px;
            padding: 18px 16px;
            background: #15172b;
            border-radius: 16px;
            color: #fff;
            text-align: center;
        }

        .sidenav-cta p {
            font-size: 13px;
            margin: 0 0 12px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }

        .sidenav-cta a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #ffd700;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            transition: gap 0.3s;
        }

        .sidenav-cta a:hover {
            gap: 10px;
            color: #ffd700;
        }

        /* ============ FAQ ITEMS ============ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            border: 1.5px solid #f0e4df;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            /* scroll-margin-top: 30px; */
        }

        .faq-item:hover {
            border-color: #ef5a4a;
        }

        .faq-item.open {
            border-color: #ef5a4a;
            box-shadow: 0 15px 40px rgba(239, 90, 74, 0.08);
        }

        /* Question (trigger) */
        .faq-question {
            padding: 24px 28px;
            display: flex;
            align-items: center;
            gap: 18px;
            cursor: pointer;
            transition: all 0.3s;
            user-select: none;
        }

        .faq-question:hover {
            background: #fef9f7;
        }

        .faq-q-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .faq-item:nth-child(1) .faq-q-icon {
            background: #fce3dc;
            color: #ef5a4a;
        }

        .faq-item:nth-child(2) .faq-q-icon {
            background: #dce7ff;
            color: #2d5fc4;
        }

        .faq-item:nth-child(3) .faq-q-icon {
            background: #e6dcff;
            color: #6c5ce7;
        }

        .faq-item:nth-child(4) .faq-q-icon {
            background: #dcf5e4;
            color: #1e9b30;
        }

        .faq-item:nth-child(5) .faq-q-icon {
            background: #fff3c4;
            color: #c98800;
        }

        .faq-item:nth-child(6) .faq-q-icon {
            background: #fce3dc;
            color: #ef5a4a;
        }

        .faq-item:nth-child(7) .faq-q-icon {
            background: #dce7ff;
            color: #2d5fc4;
        }

        .faq-item:nth-child(8) .faq-q-icon {
            background: #dcf5e4;
            color: #1e9b30;
        }

        .faq-item.open .faq-q-icon {
            transform: scale(1.1);
        }

        .faq-q-text {
            flex-grow: 1;
        }

        .faq-q-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: #15172b;
            margin: 0 0 4px;
            line-height: 1.3;
        }

        .faq-q-text span {
            font-size: 12px;
            color: #8a8a9e;
            font-weight: 500;
        }

        .faq-toggle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f7f3f1;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s;
            color: #6a6a80;
            font-size: 14px;
        }

        .faq-item.open .faq-toggle {
            background: #ef5a4a;
            color: #fff;
            transform: rotate(45deg);
        }

        /* Answer (expandable) */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.open .faq-answer {
            max-height: 2000px;
        }

        .faq-answer-inner {
            padding: 0 28px 28px;
            border-top: 1.5px solid #f0e4df;
            margin-top: 0;
            padding-top: 24px;
        }

        /* Rich answer content */
        .ans-text {
            font-size: 15px;
            color: #4a4a60;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .ans-text a {
            color: #ef5a4a;
            font-weight: 600;
            text-decoration: underline;
            text-decoration-color: rgba(239, 90, 74, 0.3);
        }

        .ans-text a:hover {
            text-decoration-color: #ef5a4a;
        }

        /* Bullet points */
        .ans-bullets {
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
        }

        .ans-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 14px;
            color: #3a3a50;
            line-height: 1.6;
            border-bottom: 1px solid #f7f3f1;
        }

        .ans-bullets li:last-child {
            border: none;
        }

        .ans-bullets li .bullet-icon {
            width: 22px;
            height: 22px;
            background: #fce3dc;
            color: #ef5a4a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .ans-bullets li strong {
            color: #15172b;
            font-weight: 600;
        }

        /* Image in answer */
        .ans-image-wrap {
            border-radius: 16px;
            overflow: hidden;
            margin: 20px 0;
            border: 1.5px solid #f0e4df;
            position: relative;
        }

        .ans-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }

        .ans-image-caption {
            padding: 12px 16px;
            background: #fdf8f6;
            font-size: 12px;
            color: #6a6a80;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ans-image-caption i {
            color: #ef5a4a;
            font-size: 10px;
        }

        /* ============ MEDIA ROW: Image + Video Side by Side ============ */
        .ans-media-row {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 16px;
            margin: 20px 0;
            align-items: stretch;
        }

        /* Image side - takes full height of row */
        .ans-media-row .ans-image-wrap {
            margin: 0;
            display: flex;
            flex-direction: column;
        }

        .ans-media-row .ans-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            flex-grow: 1;
            min-height: 380px;
        }

        /* Video side - REEL SIZE (vertical/portrait) */
        .ans-media-row .ans-video-wrap {
            margin: 0;
            display: flex;
            flex-direction: column;
            background: #15172b;
        }

        .ans-media-row .ans-video-thumb {
            height: auto;
            aspect-ratio: 9 / 16;
            flex-grow: 1;
            min-height: 380px;
        }

        .ans-media-row .ans-video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive - stack on mobile */
        @media (max-width: 768px) {
            .ans-media-row {
                grid-template-columns: 1fr;
            }

            .ans-media-row .ans-video-thumb {
                aspect-ratio: 9 / 14;
                min-height: 320px;
            }

            .ans-media-row .ans-image-wrap img {
                min-height: 240px;
            }
        }

        /* Video in answer */
        .ans-video-wrap {
            border-radius: 16px;
            overflow: hidden;
            margin: 20px 0;
            position: relative;
            cursor: pointer;
            border: 1.5px solid #f0e4df;
        }

        .ans-video-thumb {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .ans-video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ans-video-thumb::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(21, 23, 43, 0.4), rgba(21, 23, 43, 0.6));
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ef5a4a;
            font-size: 20px;
            z-index: 2;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        }

        .ans-video-wrap:hover .video-play-btn {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-play-btn::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            animation: vRing 2s ease infinite;
        }

        @keyframes vRing {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        .ans-video-info {
            padding: 14px 16px;
            background: #fdf8f6;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ans-video-info .vi-left {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #15172b;
            font-weight: 600;
        }

        .ans-video-info .vi-left i {
            color: #ef5a4a;
        }

        .ans-video-info .vi-right {
            font-size: 11px;
            color: #8a8a9e;
            font-weight: 500;
        }

        /* Highlight / callout box */
        .ans-callout {
            background: linear-gradient(135deg, #fef0ec, #fdf8f6);
            border-left: 4px solid #ef5a4a;
            padding: 16px 20px;
            border-radius: 0 14px 14px 0;
            margin: 18px 0;
            font-size: 14px;
            color: #15172b;
            line-height: 1.6;
        }

        .ans-callout strong {
            color: #ef5a4a;
        }

        .ans-callout a {
            color: #ef5a4a;
            font-weight: 600;
            text-decoration: underline;
        }

        /* Comparison mini-table */
        .ans-compare {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 18px 0;
        }

        .ans-compare-card {
            padding: 16px;
            border-radius: 14px;
            border: 1.5px solid;
        }

        .ans-compare-card.bad-card {
            background: #fff5f3;
            border-color: rgba(239, 90, 74, 0.2);
        }

        .ans-compare-card.good-card {
            background: #f0fff4;
            border-color: rgba(39, 201, 63, 0.2);
        }

        .ans-compare-card .comp-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .bad-card .comp-header {
            color: #ef5a4a;
        }

        .good-card .comp-header {
            color: #1e9b30;
        }

        .comp-header i {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .bad-card .comp-header i {
            background: #fce3dc;
            color: #ef5a4a;
        }

        .good-card .comp-header i {
            background: #d4f5dc;
            color: #1e9b30;
        }

        .ans-compare-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .ans-compare-card ul li {
            font-size: 12px;
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            line-height: 1.4;
        }

        .bad-card ul li {
            color: #6a4040;
        }

        .good-card ul li {
            color: #2a5a30;
        }

        .bad-card ul li::before {
            content: '✕';
            color: #ef5a4a;
            font-weight: 700;
            font-size: 10px;
        }

        .good-card ul li::before {
            content: '✓';
            color: #1e9b30;
            font-weight: 700;
            font-size: 10px;
        }

        /* Internal link cards */
        .ans-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 18px;
        }

        .ans-link-card {
            background: #fdf8f6;
            border: 1.5px solid #f0e4df;
            padding: 10px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            color: #15172b;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .ans-link-card i {
            color: #ef5a4a;
            font-size: 11px;
        }

        .ans-link-card:hover {
            background: #ef5a4a;
            color: #fff;
            border-color: #ef5a4a;
            transform: translateX(3px);
        }

        .ans-link-card:hover i {
            color: #fff;
        }

        /* See all FAQ CTA */
        .faq-see-all {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }

        .btn-see-faqs {
            background: #15172b;
            color: #fff;
            text-decoration: none;
            padding: 16px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-see-faqs:hover {
            background: #ef5a4a;
            color: #fff;
            transform: translateY(-2px);
        }


        /* ============ TRANSPARENCY SECTION ============ */
        .transparency-section {
            background: #fdf8f3;
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }

        /* Background pattern - subtle dots */
        .transparency-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(239, 90, 74, 0.08) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.5;
            pointer-events: none;
        }

        .transparency-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(239, 90, 74, 0.05), transparent 70%);
            pointer-events: none;
        }

        /* Header */
        .trans-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .trans-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1.5px solid #f0e4df;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            margin-bottom: 22px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            color: #15172b;
        }

        .trans-badge .heart {
            color: #ef5a4a;
            font-size: 13px;
            animation: heartBeat 1.5s ease infinite;
        }

        @keyframes heartBeat {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2);
            }
        }

        .trans-title {
            font-family: 'Playfair Display', serif;
            font-size: 55px;
            font-weight: 700;
            color: #15172b;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 22px;
        }

        .trans-title em {
            color: #ef5a4a;
            font-style: italic;
        }

        .trans-sub {
            font-size: 17px;
            color: #6a6a80;
            max-width: 660px;
            margin: 0 auto;
            line-height: 1.75;
        }

        .trans-sub strong {
            color: #15172b;
            font-weight: 600;
        }

        /* Live counter strip */
        .live-counter {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            margin-top: 28px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            border: 1.5px solid #f0e4df;
        }

        .live-avatars {
            display: flex;
            align-items: center;
        }

        .live-avatars .av {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid #fff;
            margin-left: -8px;
            background: #ddd;
            background-size: cover;
            background-position: center;
        }

        .live-avatars .av:first-child {
            margin-left: 0;
        }

        .live-avatars .av:nth-child(1) {
            background: linear-gradient(135deg, #ef5a4a, #d94838);
        }

        .live-avatars .av:nth-child(2) {
            background: linear-gradient(135deg, #4285f4, #2d5fc4);
        }

        .live-avatars .av:nth-child(3) {
            background: linear-gradient(135deg, #ff9500, #d97700);
        }

        .live-avatars .av:nth-child(4) {
            background: linear-gradient(135deg, #27c93f, #1e9b30);
        }

        .live-text {
            font-size: 13px;
            color: #15172b;
            font-weight: 500;
        }

        .live-text strong {
            color: #ef5a4a;
            font-weight: 700;
        }

        .live-pulse {
            width: 8px;
            height: 8px;
            background: #27c93f;
            border-radius: 50%;
            animation: livePulse 1.2s infinite;
            box-shadow: 0 0 0 4px rgba(39, 201, 63, 0.2);
        }

        @keyframes livePulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        /* ============ MAIN SPLIT LAYOUT ============ */
        .path-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            position: relative;
            z-index: 2;
            margin-bottom: 50px;
        }

        /* ============ NEW VS COMPARISON DIVIDER ============ */
        .path-vs {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            pointer-events: none;
        }

        .vs-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #15172b 0%, #1f2142 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 15px 40px rgba(21, 23, 43, 0.35), 0 0 0 6px #fdf8f3, 0 0 0 8px rgba(239, 90, 74, 0.2);
            animation: vsPulse 2.5s ease infinite;
        }

        .vs-circle::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: conic-gradient(from 0deg, #ef5a4a, #DF542A, #4285f4, #ef5a4a);
            z-index: -1;
            animation: vsRotate 4s linear infinite;
            filter: blur(2px);
        }

        .vs-circle::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: linear-gradient(135deg, #15172b 0%, #1f2142 100%);
            border-radius: 50%;
            z-index: 0;
        }

        .vs-text {
            position: relative;
            z-index: 2;
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            font-size: 24px;
            background: linear-gradient(135deg, #DF542A 0%, #ef5a4a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            font-style: italic;
        }

        @keyframes vsPulse {

            0%,
            100% {
                box-shadow: 0 15px 40px rgba(21, 23, 43, 0.35), 0 0 0 6px #fdf8f3, 0 0 0 8px rgba(239, 90, 74, 0.2);
            }

            50% {
                box-shadow: 0 15px 40px rgba(21, 23, 43, 0.45), 0 0 0 6px #fdf8f3, 0 0 0 14px rgba(239, 90, 74, 0.15);
            }
        }

        @keyframes vsRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .vs-line {
            display: none;
        }

        /* Path Card Base */
        .path-card {
            border-radius: 28px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            min-height: 620px;
        }

        /* Traditional Agency Path - Faded/Outdated feel */
        .path-diy {
            background: #fff;
            border: 2px solid #f0e4df;
            opacity: 0.95;
        }

        .path-diy::after {
            content: 'OLD WAY';
            position: absolute;
            top: 20px;
            right: -38px;
            background: #8a8a9e;
            color: #fff;
            padding: 5px 45px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 2px;
            transform: rotate(45deg);
            z-index: 3;
        }

        .path-diy:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            border-color: #8a8a9e;
        }

        /* DMTECHLABS AI-First Path - Premium/Glowing */
        .path-dfy {
            background: #0A1F3C;
            color: #fff;
            position: relative;
            border: 2px solid transparent;
            background-clip: padding-box;
        }



        .path-dfy::after {
            content: 'AI POWERED';
            position: absolute;
            top: 20px;
            right: -45px;
            background: linear-gradient(135deg, #ef5a4a, #d94838);
            color: #fff;
            padding: 5px 50px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 2px;
            transform: rotate(45deg);
            z-index: 3;
            box-shadow: 0 4px 12px rgba(239, 90, 74, 0.4);
        }

        .path-dfy:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px rgba(21, 23, 43, 0.35), 0 0 40px rgba(239, 90, 74, 0.15);
        }

        /* Path header */
        .path-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
            gap: 10px;
        }

        .path-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .path-diy .path-tag {
            background: #f0e4df;
            color: #8a8a9e;
        }

        .path-dfy .path-tag {
            background: rgba(255, 215, 0, 0.15);
            color: #DF542A;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .path-price {
            font-size: 13px;
            font-weight: 600;
        }

        .path-diy .path-price {
            color: #8a8a9e;
        }

        .path-dfy .path-price {
            color: #DF542A;
        }

        .path-price strong {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            margin-right: 4px;
        }

        /* Path icon */
        .path-icon {
            width: 62px;
            height: 62px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 22px;
            position: relative;
            z-index: 2;
        }

        .path-diy .path-icon {
            background: linear-gradient(135deg, #f0e4df, #e0d4cf);
            color: #8a8a9e;
        }

        .path-dfy .path-icon {
            background: #DE5329;
            color: #fff;
            box-shadow: 0 10px 25px rgba(239, 90, 74, 0.4);
            animation: iconGlow 3s ease infinite;
        }

        @keyframes iconGlow {

            0%,
            100% {
                box-shadow: 0 10px 25px rgba(239, 90, 74, 0.4);
            }

            50% {
                box-shadow: 0 10px 35px rgba(239, 90, 74, 0.7), 0 0 20px rgba(255, 215, 0, 0.3);
            }
        }

        /* Path title */
        .path-title {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 700;
            margin: 0 0 12px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }

        .path-diy .path-title {
            color: #6a6a80;
        }

        .path-diy .path-title em {
            color: #8a8a9e;
            font-style: italic;
        }

        .path-dfy .path-title {
            color: #fff;
        }

        .path-dfy .path-title em {
            color: #DF542A;
            font-style: italic;
        }

        .path-desc {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 26px;
            position: relative;
            z-index: 2;
        }

        .path-diy .path-desc {
            color: #8a8a9e;
        }

        .path-dfy .path-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Resource cards inside DIY (now traditional comparison) */
        .resource-stack {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .resource-item {
            background: #fdf8f3;
            border: 1.5px solid #f0e4df;
            border-radius: 14px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .resource-item.traditional {
            background: #faf6f1;
            opacity: 0.85;
        }

        .resource-item.traditional:hover {
            opacity: 1;
            border-color: #c0c0d0;
            transform: translateX(4px);
        }

        .resource-thumb {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #fff;
            flex-shrink: 0;
            position: relative;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Traditional items use grayish colors */
        .r1.traditional .resource-thumb {
            background: linear-gradient(135deg, #9a9aab, #7a7a8b);
        }

        .r2.traditional .resource-thumb {
            background: linear-gradient(135deg, #8a8a9e, #6a6a80);
        }

        .r3.traditional .resource-thumb {
            background: linear-gradient(135deg, #a0a0b0, #808090);
        }

        .r4.traditional .resource-thumb {
            background: linear-gradient(135deg, #b0b0c0, #909090);
        }

        .resource-info {
            flex-grow: 1;
            min-width: 0;
        }

        .resource-info strong {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: #6a6a80;
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .resource-info p {
            font-size: 11px;
            color: #a0a0b0;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .resource-info p i {
            font-size: 9px;
        }

        .resource-meta {
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .resource-meta.old {
            background: #ffe5e5;
            color: #d94838;
        }

        /* DFY features list */
        .dfy-features {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
            flex-grow: 1;
            position: relative;
            z-index: 2;
        }

        .dfy-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .dfy-features li:last-child {
            border: none;
        }

        .dfy-features li i {
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, rgba(239, 90, 74, 0.3), rgba(255, 215, 0, 0.2));
            color: #DF542A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
            margin-top: 2px;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
        }

        .dfy-features li strong {
            display: block;
            color: #fff;
            font-weight: 600;
        }

        .dfy-features li span {
            display: block;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 400;
            margin-top: 2px;
        }

        /* Path CTA */
        .path-cta-area {
            margin-top: auto;
            position: relative;
            z-index: 2;
        }

        .path-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 26px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s;
            width: 100%;
        }

        .path-dfy .path-cta {
            background: #DE5329;
            color: #fff;
            box-shadow: 0 10px 25px rgba(239, 90, 74, 0.4);
        }

        .path-dfy .path-cta:hover {
            background: #fff;
            color: #15172b;
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
        }

        /* Warning box for traditional path */
        .path-warning {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 20px;
            background: linear-gradient(135deg, #fff5f5, #ffe5e5);
            border: 1.5px dashed #d94838;
            border-radius: 14px;
            font-size: 13px;
            font-weight: 600;
            color: #d94838;
            text-align: center;
        }

        .path-warning i {
            font-size: 16px;
            animation: warningPulse 1.5s ease infinite;
        }

        @keyframes warningPulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.1);
            }
        }

        .path-meta-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 14px;
            font-size: 12px;
            font-weight: 500;
        }

        .path-dfy .path-meta-row {
            color: rgba(255, 255, 255, 0.6);
        }

        .path-meta-row i {
            font-size: 11px;
        }

        /* ============ BOTTOM TRUST QUOTE ============ */
        .trust-quote-wrap {
            background: #fff;
            border-radius: 28px;
            padding: 40px 50px;
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            border: 1.5px solid #f0e4df;
            text-align: center;
            max-width: 880px;
            margin: 0 auto;
            overflow: hidden;
        }

        .trust-quote-wrap::before {
            content: '"';
            position: absolute;
            top: -30px;
            left: 30px;
            font-family: 'Playfair Display', serif;
            font-size: 180px;
            color: rgba(239, 90, 74, 0.08);
            line-height: 1;
        }

        .trust-quote-wrap p {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: #15172b;
            line-height: 1.5;
            margin: 0 0 20px;
            font-style: italic;
            position: relative;
        }

        .trust-quote-wrap p span {
            color: #ef5a4a;
            font-weight: 700;
            font-style: normal;
        }

        .trust-quote-author {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #6a6a80;
            font-weight: 500;
        }

        .trust-quote-author .qa-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ef5a4a, #d94838);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
        }

        .trust-quote-author strong {
            color: #15172b;
            font-weight: 700;
            display: block;
        }

        .trust-quote-author small {
            color: #8a8a9e;
            font-size: 11px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .trans-title {
                font-size: 42px;
            }

            .path-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .path-vs {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin: -30px auto;
                order: 1;
            }

            .path-diy {
                order: 0;
            }

            .path-dfy {
                order: 2;
            }

            .vs-circle {
                width: 70px;
                height: 70px;
            }

            .vs-text {
                font-size: 20px;
            }

            .path-card {
                min-height: auto;
                padding: 32px 28px;
            }

            .trust-quote-wrap {
                padding: 32px 28px;
            }

            .trust-quote-wrap p {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .trans-title {
                font-size: 32px;
            }

            .path-title {
                font-size: 24px;
            }

            .resource-item {
                padding: 12px;
            }

            .resource-info strong {
                font-size: 12px;
            }

            .resource-info p {
                font-size: 10px;
            }

            .resource-meta {
                font-size: 9px;
                padding: 3px 8px;
            }

            .path-diy::after,
            .path-dfy::after {
                font-size: 8px;
                padding: 4px 35px;
                right: -35px;
            }
        }

        /* ============ VIDEO MODAL ============ */
        .video-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: modalFade 0.3s ease;
        }

        .video-modal.show {
            display: flex;
        }

        @keyframes modalFade {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .video-modal-inner {
            position: relative;
            width: 100%;
            max-width: 420px;
            aspect-ratio: 9/16;
            background: #000;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
            animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes modalSlide {
            from {
                opacity: 0;
                transform: scale(0.85) translateY(40px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .video-modal-inner iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .modal-close-btn {
            position: absolute;
            top: -50px;
            right: 0;
            width: 40px;
            height: 40px;
            background: #fff;
            border: none;
            border-radius: 50%;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #15172b;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .modal-close-btn:hover {
            background: #ef5a4a;
            color: #fff;
            transform: rotate(90deg);
        }

        /* Side info panel on modal (desktop) */
        .modal-side-info {
            position: absolute;
            left: -340px;
            top: 50%;
            transform: translateY(-50%);
            width: 320px;
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: sideSlide 0.5s 0.2s both ease;
        }

        @keyframes sideSlide {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }

        .modal-side-info .ms-badge {
            display: inline-block;
            background: #fce3dc;
            color: #ef5a4a;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .modal-side-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: #15172b;
            margin: 0 0 12px;
            line-height: 1.2;
        }

        .modal-side-info p {
            font-size: 14px;
            color: #6a6a80;
            line-height: 1.6;
            margin: 0 0 20px;
        }

        .modal-side-info .ms-stat-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 14px 0;
            border-top: 1px solid #f0e4df;
            border-bottom: 1px solid #f0e4df;
        }

        .modal-side-info .ms-stat {
            text-align: center;
        }

        .modal-side-info .ms-stat strong {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #ef5a4a;
            display: block;
        }

        .modal-side-info .ms-stat span {
            font-size: 11px;
            color: #8a8a9e;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .modal-side-info .ms-cta {
            display: block;
            background: #15172b;
            color: #fff;
            text-decoration: none;
            text-align: center;
            padding: 12px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 13px;
            margin-top: 18px;
            transition: all 0.3s;
        }

        .modal-side-info .ms-cta:hover {
            background: #ef5a4a;
            color: #fff;
        }


        @keyframes faqFade {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
