/* Section Setup */
        section {
            padding: 4rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* ── Section structure helpers ── */
        .section-eyebrow {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 1rem;
        }
        .section-rule {
            width: 48px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            margin: 0 auto 2rem;
        }

        /* ── Scroll reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }


        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem 1.5rem;
            position: relative;
        }

        .hero-bg {
            display: none;
            /* Removed — dark theme uses body background */
        }

        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.8rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.25rem;
            color: #d8f5ed;
            text-shadow:
                0 0 8px  rgba(0, 200, 150, 0.75),
                0 0 20px rgba(0, 200, 150, 0.5),
                0 0 45px rgba(0, 200, 150, 0.22);
        }

        .hero p {
            font-size: clamp(0.95rem, 2.5vw, 1.2rem);
            color: var(--text-muted);
            margin-bottom: 0;
            max-width: 560px;
            font-weight: 400;
        }

        /* Buttons */
        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Nav */
        nav:not(.hnav) {
            padding: 1.5rem;
            display: flex;
            justify-content: center;
            z-index: 10;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 200, 150, 0.08);
            padding: 0.5rem 1.5rem;
            border-radius: 99px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 200, 150, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .logo i {
            color: var(--accent);
        }

        /* Story Block */
        .story {
            padding: 3rem 1.5rem;
        }

        .story-text {
            font-size: clamp(1.1rem, 3vw, 1.75rem);
            font-weight: 500;
            line-height: 1.5;
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }

        .story-p {
            opacity: 0.2;
            transform: translateY(30px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 2rem;
            color: var(--text-dark);
            text-shadow: 0 8px 20px rgba(0, 200, 150, 0.25);
        }

        .story-p:last-child {
            margin-bottom: 0;
        }

        .story-p.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .story-p.highlight {
            color: var(--accent);
            font-weight: 800;
            font-size: clamp(1.3rem, 4vw, 2rem);
            text-shadow: 0 8px 24px rgba(0, 200, 150, 0.5);
        }

        /* How it works */
        .how-it-works {
            text-align: center;
            padding-top: 1.5rem;
        }

        .section-title {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 2.5rem;
            text-align: center;
            color: var(--text-dark);
            text-shadow: 0 0 30px rgba(0, 200, 150, 0.25);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .step-card {
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 200, 150, 0.12);
        }

        .step-icon {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1.25rem;
        }

        .step-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--accent);
        }

        /* Value Prop */
        .value-prop {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            background: rgba(0, 200, 150, 0.03);
            border-radius: 16px;
            padding: 3rem 2rem;
            margin: 0 auto;
            max-width: 1000px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 200, 150, 0.14);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        }

        @media (min-width: 768px) {
            .value-prop {
                grid-template-columns: 1fr 1fr;
                padding: 3rem 2rem;
            }
        }

        .value-text h2 {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            margin-bottom: 1.25rem;
            line-height: 1.25;
            color: var(--text-dark);
        }

        .value-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .value-list li {
            margin-bottom: 1.5rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }

        .value-list li i {
            color: var(--accent-teal);
            font-size: 1.4rem;
        }

        .price-card {
            background: rgba(0, 200, 150, 0.06);
            border: 1px solid rgba(0, 200, 150, 0.22);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 0 32px rgba(0, 200, 150, 0.08), 0 16px 40px rgba(0, 0, 0, 0.4);
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
            position: relative;
        }

        .price-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 200, 150, 0.4);
            box-shadow: 0 0 40px rgba(0, 200, 150, 0.15), 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .price {
            font-size: 3.25rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 24px rgba(0, 200, 150, 0.4);
        }

        /* Final CTA */
        .final-cta {
            text-align: center;
            padding: 2.5rem 1.5rem 1.5rem;
        }

        /* Why Join */
        .reasons-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

        .reason-pill {
            padding: 0.75rem 1.6rem;
            background: rgba(0, 200, 150, 0.07);
            backdrop-filter: blur(15px);
            border-radius: 99px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 200, 150, 0.2);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .reason-pill:hover {
            background: rgba(0, 200, 150, 0.12);
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(0, 200, 150, 0.18), 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        .reason-pill i {
            color: var(--accent);
            font-size: 1.4rem;
        }

        .reason-pill img.pill-icon {
            width: 44px;
            height: 44px;
            margin: -6px 2px -6px -6px;
            object-fit: contain;
            mix-blend-mode: screen;
            filter: drop-shadow(0 3px 8px rgba(0, 200, 150, 0.6));
            border-radius: 10px;
        }

        .hero-icon-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #060d14;
            border-radius: 50%;
            margin-left: 10px;
            vertical-align: middle;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.8), 0 4px 10px rgba(0,0,0,0.3);
            border: 1px solid rgba(0, 200, 150, 0.5);
            overflow: hidden;
        }

        .ai-hero-icon {
            width: 160%;
            height: 160%;
            object-fit: contain;
            mix-blend-mode: screen;
            margin: 0;
            display: block;
            border-radius: 0;
            filter: contrast(1.1);
        }

        .ai-value-icon {
            width: 40px;
            height: 40px;
            mix-blend-mode: screen;
            object-fit: contain;
            flex-shrink: 0;
            margin-right: 14px;
            border-radius: 10px;
        }

        .ai-step-icon {
            width: 100%;
            height: 100%;
            object-fit: contain;
            mix-blend-mode: screen;
            border-radius: 50%;
            display: block;
            margin: auto;
            filter: contrast(1.1);
        }

        .ai-logo-icon {
            width: 56px;
            height: 56px;
            mix-blend-mode: screen;
            vertical-align: middle;
            margin-right: 10px;
            border-radius: 12px;
        }

        /* ── SA RETRO TERMINAL MAP ── */
        #sa-map-section {
            width: min(100%, 740px);
            margin: 1.5rem auto 3.5rem;
            position: relative;
        }

        @media(max-width:600px) {
            #sa-map-section {
                margin-top: 1.5rem;
            }
        }

        .sa-section-label {
            text-align: center;
            font-family: 'Press Start 2P', monospace;
            color: #00ddff;
            font-size: clamp(.48rem, 1.1vw, .62rem);
            letter-spacing: .22em;
            text-transform: uppercase;
            margin-bottom: .7rem;
            padding: 0 1rem;
            text-shadow: 0 0 12px rgba(0, 221, 255, .6), 0 0 28px rgba(0, 221, 255, .25);
        }

        .sa-crt-outer {
            width: 100%
        }

        .sa-crt-frame {
            background: rgba(6, 13, 20, .97);
            border: 2px solid rgba(0, 200, 150, .5);
            border-radius: 12px;
            box-shadow: 0 0 40px rgba(0, 200, 150, .15), 0 0 80px rgba(0, 200, 150, .06), inset 0 0 40px rgba(0, 0, 0, .5);
            overflow: hidden;
            position: relative;
        }

        .sa-crt-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .12) 2px, rgba(0, 0, 0, .12) 4px);
            z-index: 20;
            border-radius: 12px;
        }

        .sa-titlebar {
            background: rgba(0, 200, 150, .15);
            color: #00c896;
            border-bottom: 1px solid rgba(0, 200, 150, .25);
            padding: .5rem .9rem;
            font-family: 'Press Start 2P', monospace;
            font-size: clamp(.48rem, 1.1vw, .62rem);
            letter-spacing: .08em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: .4rem;
            flex-wrap: wrap;
        }

        .sa-titlebar-right {
            opacity: .55;
            font-size: clamp(.4rem, .9vw, .52rem)
        }

        .sa-body {
            display: flex;
            align-items: stretch
        }

        .sa-canvas-wrap {
            position: relative;
            flex-shrink: 0;
            border-right: 1px solid rgba(0, 200, 150, .15);
            width: clamp(200px, 55%, 420px);
        }

        .sa-canvas-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(6, 13, 20, .7) 100%);
            z-index: 5;
        }

        canvas#sa-canvas {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 480/390;
            image-rendering: pixelated;
            image-rendering: crisp-edges;
        }

        .sa-log {
            flex: 1;
            min-width: 0;
            padding: .7rem .85rem;
            background: rgba(6, 13, 20, .6);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .sa-log-title {
            font-family: 'Press Start 2P', monospace;
            color: rgba(0, 200, 150, .4);
            font-size: clamp(.48rem, .95vw, .55rem);
            letter-spacing: .1em;
            border-bottom: 1px solid rgba(0, 200, 150, .12);
            padding-bottom: .45rem;
            margin-bottom: .45rem;
            flex-shrink: 0;
        }

        #sa-log-lines {
            flex: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: .22rem
        }

        .sa-ll {
            font-family: 'Press Start 2P', monospace;
            font-size: clamp(.48rem, .92vw, .55rem);
            line-height: 1.75;
            white-space: pre-wrap;
            word-break: break-word;
            animation: saLogIn .22s ease both;
        }

        .sa-ll.bright {
            color: #00ff41
        }

        .sa-ll.dim {
            color: #00e0a8;
            opacity: 0.8
        }

        .sa-ll.warn {
            color: #ffcc00
        }

        .sa-ll.city {
            color: #00ddff
        }

        @keyframes saLogIn {
            from {
                opacity: 0;
                transform: translateX(-5px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        .sa-log-cursor {
            font-family: 'Press Start 2P', monospace;
            color: #00c896;
            font-size: clamp(.5rem, .98vw, .6rem);
            animation: saBlink .7s step-end infinite;
            flex-shrink: 0;
            margin-top: .35rem;
            height: 1em;
        }

        .sa-statusbar {
            border-top: 1px solid rgba(0, 200, 150, .15);
            padding: .45rem .85rem;
            display: flex;
            align-items: center;
            gap: .7rem;
            background: rgba(6, 13, 20, .8);
        }

        .sa-prog-wrap {
            flex: 1;
            height: 5px;
            background: rgba(0, 200, 150, .08);
            border: 1px solid rgba(0, 200, 150, .15);
            border-radius: 2px;
            overflow: hidden;
            min-width: 0
        }

        .sa-prog-inner {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #00c896, #00ddff);
            box-shadow: 0 0 8px rgba(0, 200, 150, .5);
            transition: width .5s ease
        }

        #sa-status-text {
            font-family: 'Press Start 2P', monospace;
            font-size: clamp(.4rem, .85vw, .5rem);
            color: #00c896;
            letter-spacing: .05em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-shrink: 0;
            max-width: min(45vw, 240px);
            opacity: .8;
        }

        @keyframes saBlink {
            50% {
                opacity: 0
            }
        }

        .sa-blink {
            animation: saBlink .9s step-end infinite
        }

        @media(max-width:600px) {
            #sa-map-section {
                width: 100%;
                margin: 2rem 0 0
            }

            .sa-body {
                flex-direction: column
            }

            .sa-canvas-wrap {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid rgba(0, 200, 150, .15)
            }

            .sa-log {
                max-height: 180px
            }

            .sa-log-title,
            .sa-ll {
                font-size: .5rem
            }

            .sa-log-cursor {
                font-size: .52rem
            }

            .sa-titlebar {
                font-size: .5rem;
                padding: .4rem .6rem
            }

            .sa-titlebar-right {
                display: none
            }

            #sa-status-text {
                max-width: 52vw;
                font-size: .42rem
            }
        }

        /* Floating Character Elements (Fun Additions) */
        .avatar-hero {
            width: 250px;
            height: 250px;
            object-fit: contain;
            margin-top: 1rem;
            animation: float 6s infinite ease-in-out;
            filter: drop-shadow(0 15px 25px rgba(145, 108, 86, 0.3));
        }

        .avatar-peek {
            position: absolute;
            width: 140px;
            height: 140px;
            object-fit: contain;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
        }

        .peek-1 {
            top: -80px;
            right: -30px;
            animation: wobble 4s infinite linear;
        }

        .peek-2 {
            bottom: -60px;
            left: -30px;
            animation: float 5s infinite ease-in-out reverse;
            z-index: 10;
        }


        /* Animations */
        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes bounceVoice {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(3deg);
            }

            100% {
                transform: translateY(0px) rotate(0deg);
            }
        }

        @keyframes wobble {
            0% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(-5deg);
            }

            50% {
                transform: rotate(0deg);
            }

            75% {
                transform: rotate(5deg);
            }

            100% {
                transform: rotate(0deg);
            }
        }

        /* Footprint Trail System */
        .trail-print {
            position: absolute;
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
            animation: walkFadeInOut 2.5s forwards ease-in-out;
            transform-origin: center;
        }

        .trail-print svg {
            width: clamp(40px, 8vw, 70px);
            height: auto;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
        }

        @keyframes walkFadeInOut {
            0% {
                opacity: 0;
                transform: scale(0.7) rotate(var(--rot));
            }

            20% {
                opacity: 0.85;
                transform: scale(1) rotate(var(--rot));
            }

            70% {
                opacity: 0.85;
                transform: scale(1.05) rotate(var(--rot));
            }

            100% {
                opacity: 0;
                transform: scale(0.9) rotate(var(--rot));
            }
        }

        /* ── Language toggle ── */
        body.lang-en .af { display: none; }
        body.lang-af .en { display: none; }

        #lang-btn {
            background: transparent;
            border: 1px solid rgba(0, 200, 150, 0.3);
            color: rgba(255,255,255,0.7);
            border-radius: 6px;
            padding: 0.3rem 0.75rem;
            font-size: 0.75rem;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            transition: all 0.2s;
        }
        #lang-btn:hover { border-color: #00c896; color: #00c896; }

        /* ── Mobile spacing overrides ── */
        @media (max-width: 640px) {
            section {
                padding: 2.5rem 1.25rem;
            }
            .story {
                padding: 3rem 1.25rem;
            }
            .section-title {
                margin-bottom: 1.5rem;
            }
            .value-prop {
                padding: 2rem 1.25rem;
                margin: 0 auto;
            }
            .step-card {
                padding: 2rem 1.25rem;
            }
            .reasons-grid {
                gap: 0.75rem;
            }
        }

        /* ── Three-plan card grid ── */
        .price-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        /* ── Trust section ── */
        .trust-section {
            text-align: center;
            padding-top: 1.5rem;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.75rem;
            margin-top: 2rem;
            text-align: left;
        }

        .trust-block {
            padding: 2rem 1.75rem;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .trust-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(0, 200, 150, 0.08);
            border: 1px solid rgba(0, 200, 150, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .trust-block h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        .trust-block p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
        }

        @media (max-width: 640px) {
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .trust-block {
                padding: 1.5rem 1.25rem;
            }
        }

        /* ── FAQ accordion ── */
        .faq-section {
            text-align: center;
            padding-top: 1.5rem;
        }

        .faq-list {
            max-width: 720px;
            margin: 2rem auto 0;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.02);
            overflow: hidden;
        }

        .faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 1.4rem;
            background: none;
            border: none;
            text-align: left;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
        }

        .faq-icon {
            flex-shrink: 0;
            font-size: 1.1rem;
            color: var(--accent);
            transition: transform 0.2s;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
        }

        .faq-item.open .faq-a {
            max-height: 20em;
        }

        .faq-a p {
            margin: 0;
            padding: 0 1.4rem 1.2rem;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* ── Hero CTA + value line ── */
        .hero-sub {
            font-size: clamp(1rem, 2.6vw, 1.25rem);
            color: var(--text-muted);
            max-width: 620px;
            line-height: 1.6;
            margin: 0 auto 1.75rem;
            font-weight: 400;
        }
        .hero-sub strong { color: var(--accent); font-weight: 700; }

        .hero-cta {
            display: flex;
            gap: 0.9rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 0.9rem;
        }
        .hero-cta .btn {
            border-radius: 12px;
            padding: 0.95rem 1.9rem;
            font-size: 1.02rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            cursor: pointer;
        }
        .hero-btn-ghost {
            background: rgba(0, 200, 150, 0.08);
            border: 1px solid rgba(0, 200, 150, 0.35);
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.2s;
        }
        .hero-btn-ghost:hover {
            background: rgba(0, 200, 150, 0.15);
            border-color: var(--accent);
        }
        .hero-demo-link {
            display: inline-block;
            color: var(--text-muted);
            font-size: 0.9rem;
            text-decoration: none;
            border-bottom: 1px dashed rgba(0, 200, 150, 0.4);
            padding-bottom: 1px;
            transition: color 0.2s;
        }
        .hero-demo-link:hover { color: var(--accent); }

        /* Shorter hero on mobile so a CTA is reachable without a long scroll */
        @media (max-width: 640px) {
            .hero { min-height: auto; padding-top: 1.5rem; padding-bottom: 2.5rem; }
            .hero-cta .btn { width: 100%; justify-content: center; }
        }

        /* ── Site + Map bundle / founding social proof ── */
        .bundle { text-align: center; padding-top: 1.5rem; }
        .bundle-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
            text-align: left;
        }
        @media (min-width: 820px) {
            .bundle-grid { grid-template-columns: 1.1fr 0.9fr; }
        }
        .bundle-lead {
            font-size: clamp(1.15rem, 2.8vw, 1.5rem);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin: 0 0 1rem;
        }
        .bundle-lead strong { color: var(--accent); }
        .bundle-body {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }
        .bundle-body strong { color: var(--text-dark); }

        .map-preview {
            display: block;
            text-decoration: none;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(0, 200, 150, 0.3);
            box-shadow: 0 0 30px rgba(0, 200, 150, 0.1), 0 16px 40px rgba(0, 0, 0, 0.4);
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        }
        .map-preview:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 0 40px rgba(0, 200, 150, 0.18), 0 20px 50px rgba(0, 0, 0, 0.5);
        }
        .map-preview-frame {
            position: relative;
            aspect-ratio: 16 / 10;
            background:
                radial-gradient(ellipse at 50% 40%, rgba(0, 200, 150, 0.18), transparent 60%),
                repeating-linear-gradient(0deg, rgba(0, 200, 150, 0.06) 0 1px, transparent 1px 26px),
                repeating-linear-gradient(90deg, rgba(0, 200, 150, 0.06) 0 1px, transparent 1px 26px),
                #060d14;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .map-preview-pins {
            position: absolute;
            inset: 0;
        }
        .map-preview-pins i {
            position: absolute;
            color: var(--accent);
            font-size: 1.4rem;
            filter: drop-shadow(0 0 7px rgba(0, 200, 150, 0.85));
            animation: pinPulse 2.4s ease-in-out infinite;
        }
        .map-preview-pins i:nth-child(1) { top: 26%; left: 30%; animation-delay: 0s; }
        .map-preview-pins i:nth-child(2) { top: 54%; left: 22%; animation-delay: .4s; }
        .map-preview-pins i:nth-child(3) { top: 38%; left: 56%; animation-delay: .8s; }
        .map-preview-pins i:nth-child(4) { top: 66%; left: 64%; animation-delay: 1.2s; font-size: 1.7rem; }
        .map-preview-pins i:nth-child(5) { top: 20%; left: 72%; animation-delay: 1.6s; }
        @keyframes pinPulse {
            0%, 100% { transform: translateY(0); opacity: 0.85; }
            50% { transform: translateY(-5px); opacity: 1; }
        }
        .map-preview-count {
            position: relative;
            z-index: 2;
            text-align: center;
            font-weight: 800;
            font-size: clamp(1rem, 2.4vw, 1.2rem);
            color: #d8f5ed;
            padding: 0.6rem 1.4rem;
            background: rgba(2, 6, 10, 0.7);
            border: 1px solid rgba(0, 200, 150, 0.35);
            border-radius: 12px;
            backdrop-filter: blur(6px);
            line-height: 1.35;
            max-width: 80%;
        }
        .map-preview-count strong { color: var(--accent); }
        .map-preview-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1rem;
            background: rgba(0, 200, 150, 0.1);
            color: var(--accent);
            font-weight: 700;
            font-size: 0.95rem;
        }
        .map-preview-cta i { font-size: 1.05rem; }

        @media (prefers-reduced-motion: reduce) {
            .map-preview-pins i { animation: none; }
        }
