        /* ─── Theme (matches landing page) ─── */
        :root {
            --cream: #FEFAE0;
            --sage-light: #E9EDC9;
            --sage: #CCD5AE;
            --sage-dark: #B5C49A;
            --ink: #1E2A3A;
            --ink-soft: #3D4F60;
            --gold: #D4A855;
            --gold-light: #E8C86A;
            --white: #FFFFFF;
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            color: var(--ink);
            background: var(--cream);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── Scroll Reveal ─── */
        .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ─── Navbar (identical to landing) ─── */
        .navbar-landing {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
            padding: 1rem 0;
            transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
        }
        .navbar-landing.scrolled {
            background: rgba(254,250,224,.92);
            backdrop-filter: blur(16px) saturate(1.3);
            -webkit-backdrop-filter: blur(16px) saturate(1.3);
            padding: .55rem 0;
            box-shadow: 0 1px 20px rgba(0,0,0,.06);
        }
        .navbar-landing .nav-link {
            color: var(--ink) !important;
            font-weight: 500;
            font-size: .9rem;
            letter-spacing: .02em;
            padding: .5rem 1rem !important;
            transition: color .2s;
        }
        .navbar-landing .nav-link:hover { color: var(--gold) !important; }
        .navbar-landing .navbar-brand {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--ink);
            letter-spacing: -.02em;
        }
        .navbar-landing .navbar-brand i { color: var(--gold); }
        /* mobile collapsed bg */
        @media (max-width: 991.98px) {
            .navbar-landing .navbar-collapse {
                background: #fefae0;
                border-radius: 12px;
                padding: .75rem 1rem;
                margin-top: .75rem;
                box-shadow: 0 8px 24px rgba(0,0,0,.08);
            }
        }

        /* ─── Buttons ─── */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border: none;
            color: var(--ink);
            font-weight: 700;
            padding: .85rem 2.25rem;
            border-radius: 60px;
            transition: transform .3s, box-shadow .3s;
            box-shadow: 0 4px 20px rgba(212,168,85,.3);
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212,168,85,.4);
            color: var(--ink);
        }
        .btn-ghost {
            background: transparent;
            border: 2px solid var(--ink);
            color: var(--ink);
            font-weight: 600;
            padding: .85rem 2.25rem;
            border-radius: 60px;
            transition: all .3s;
        }
        .btn-ghost:hover {
            background: var(--ink);
            color: var(--cream);
        }
        .btn-outline-light-custom {
            background: transparent;
            border: 2px solid rgba(255,255,255,.3);
            color: var(--white);
            font-weight: 600;
            padding: .85rem 2.25rem;
            border-radius: 60px;
            transition: all .3s;
        }
        .btn-outline-light-custom:hover {
            background: var(--white);
            color: var(--ink);
            border-color: var(--white);
        }

        /* ─── Section base ─── */
        section { position: relative; }
        .section-label {
            display: inline-block;
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: .75rem;
        }
        .section-title {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2rem, 4vw, 3rem);
            letter-spacing: -.02em;
            color: var(--ink);
        }
        .section-sub {
            font-size: 1.05rem;
            color: var(--ink-soft);
            max-width: 560px;
            line-height: 1.7;
        }

        /* ─── Hero (advertiser-focused) ─── */
        .page-hero {
            position: relative;
            padding: 10rem 0 4rem;
            overflow: hidden;
            background: linear-gradient(165deg, var(--cream) 0%, var(--sage-light) 40%, var(--sage) 100%);
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -30%; right: -10%;
            width: 70vmax; height: 70vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(204,213,174,.25) 0%, transparent 65%);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -20%; left: -5%;
            width: 50vmax; height: 50vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212,168,85,.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-floating-shape {
            position: absolute;
            border: 2px solid rgba(212,168,85,.15);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-floating-1 { width: 300px; height: 300px; top: 5%; right: 3%; animation: float 8s ease-in-out infinite; }
        .hero-floating-2 { width: 180px; height: 180px; bottom: 10%; left: 5%; animation: float 10s ease-in-out infinite reverse; }
        @keyframes float {
            0%, 100% { transform: translate(0,0) rotate(0deg); }
            50% { transform: translate(20px,-20px) rotate(5deg); }
        }
        .hero-badge-ad {
            display: inline-flex; align-items: center; gap: .5rem;
            background: rgba(212,168,85,.12);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(212,168,85,.25);
            padding: .4rem 1rem; border-radius: 100px;
            font-size: .75rem; font-weight: 700; color: var(--gold);
            margin-bottom: 1.25rem;
            letter-spacing: .08em; text-transform: uppercase;
        }
        .hero-stats-row {
            display: flex; gap: 2rem; flex-wrap: wrap;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(204,213,174,.3);
        }
        .hero-stat {
            display: flex; align-items: center; gap: .75rem;
        }
        .hero-stat-icon {
            width: 44px; height: 44px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(212,168,85,.12), rgba(212,168,85,.06));
            color: var(--gold);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .hero-stat .num {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--ink);
            line-height: 1;
        }
        .hero-stat .label {
            font-size: .75rem;
            color: var(--ink-soft);
            text-transform: uppercase;
            letter-spacing: .05em;
            margin-top: .1rem;
        }

        /* ─── Pricing Cards ─── */
        .pricing-card {
            background: var(--white);
            border-radius: 1.5rem;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(204,213,174,.2);
            box-shadow: 0 4px 30px rgba(0,0,0,.03);
            transition: all .4s cubic-bezier(.22,1,.36,1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,.08);
            border-color: rgba(212,168,85,.25);
        }
        .pricing-card.featured {
            border-color: var(--gold);
            box-shadow: 0 8px 40px rgba(212,168,85,.15);
            transform: scale(1.03);
        }
        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-8px);
        }
        .pricing-card .popular-badge {
            position: absolute;
            top: 1.25rem; right: -2.5rem;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--ink);
            font-size: .7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            padding: .35rem 3rem;
            transform: rotate(45deg);
        }
        .pricing-card .plan-name {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--ink);
        }
        .pricing-card .plan-subtitle {
            font-size: .85rem;
            color: var(--ink-soft);
            margin-top: .25rem;
        }
        .pricing-card .price-display {
            margin: 1.5rem 0;
            padding: 1.25rem 0;
            border-top: 1px solid rgba(204,213,174,.2);
            border-bottom: 1px solid rgba(204,213,174,.2);
        }
        .pricing-card .price-amount {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 2.8rem;
            color: var(--ink);
            line-height: 1;
        }
        .pricing-card .price-amount .currency {
            font-size: 1.4rem;
            vertical-align: super;
        }
        .pricing-card .price-period {
            font-size: .85rem;
            color: var(--ink-soft);
        }
        .pricing-card .price-savings {
            display: inline-block;
            background: rgba(212,168,85,.1);
            color: var(--gold);
            font-size: .75rem;
            font-weight: 600;
            padding: .2rem .75rem;
            border-radius: 100px;
            margin-top: .5rem;
        }
        .pricing-card .feature-list { list-style: none; padding: 0; margin: 0; }
        .pricing-card .feature-list li {
            display: flex; align-items: center; gap: .6rem;
            padding: .45rem 0;
            font-size: .9rem;
            color: var(--ink-soft);
        }
        .pricing-card .feature-list li i {
            color: var(--gold);
            font-size: .9rem;
            flex-shrink: 0;
        }
        .pricing-card .feature-list li.disabled {
            color: rgba(61,79,96,.35);
        }
        .pricing-card .feature-list li.disabled i {
            color: rgba(61,79,96,.2);
        }

        /* ─── Package Toggle ─── */
        .pkg-toggle {
            display: inline-flex;
            background: var(--white);
            border: 1px solid rgba(204,213,174,.3);
            border-radius: 60px;
            padding: .35rem;
            box-shadow: 0 2px 10px rgba(0,0,0,.03);
        }
        .pkg-toggle .btn-pkg {
            border: none;
            background: transparent;
            padding: .5rem 1.25rem;
            border-radius: 60px;
            font-size: .85rem;
            font-weight: 600;
            color: var(--ink-soft);
            transition: all .3s;
            cursor: pointer;
        }
        .pkg-toggle .btn-pkg.active {
            background: var(--ink);
            color: var(--white);
        }
        .pkg-toggle .btn-pkg:not(.active):hover {
            color: var(--ink);
        }

        .pkg-table {
            display: none;
        }
        .pkg-table.active {
            display: block;
        }

        /* ─── Package Detail Table ─── */
        .pkg-detail-card {
            background: var(--white);
            border-radius: 1.25rem;
            border: 1px solid rgba(204,213,174,.15);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,.03);
        }
        .pkg-detail-card table {
            margin: 0;
        }
        .pkg-detail-card th {
            font-size: .8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--ink-soft);
            border-bottom: 2px solid var(--sage-light);
            padding: 1rem 1.25rem;
        }
        .pkg-detail-card td {
            font-size: .9rem;
            padding: 1rem 1.25rem;
            vertical-align: middle;
            border-bottom: 1px solid rgba(204,213,174,.1);
        }
        .pkg-detail-card tr:last-child td { border-bottom: none; }
        .pkg-detail-card .plan-label {
            font-weight: 600;
            color: var(--ink);
        }
        .pkg-detail-card .rate-cell {
            font-weight: 700;
            color: var(--ink);
        }
        .pkg-detail-card .savings-cell {
            color: var(--gold);
            font-weight: 600;
            font-size: .85rem;
        }
        .pkg-detail-card .best-value {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--ink);
            font-size: .65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
            padding: .15rem .6rem;
            border-radius: 100px;
            margin-left: .35rem;
        }

        /* ─── Placement Table ─── */
        .placement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1rem;
        }
        .placement-item {
            background: var(--white);
            border: 1px solid rgba(204,213,174,.15);
            border-radius: 1rem;
            padding: 1.25rem;
            text-align: center;
            transition: all .3s;
        }
        .placement-item:hover {
            border-color: rgba(212,168,85,.2);
            box-shadow: 0 4px 20px rgba(0,0,0,.04);
        }
        .placement-item i {
            font-size: 1.5rem;
            color: var(--gold);
            display: block;
            margin-bottom: .5rem;
        }
        .placement-item .name {
            font-weight: 600;
            font-size: .85rem;
            color: var(--ink);
        }
        .placement-item .desc {
            font-size: .75rem;
            color: var(--ink-soft);
            margin-top: .15rem;
        }

        /* ─── FAQ ─── */
        .faq-item {
            background: var(--white);
            border: 1px solid rgba(204,213,174,.15);
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all .3s;
        }
        .faq-item:hover {
            border-color: rgba(212,168,85,.15);
            box-shadow: 0 4px 20px rgba(0,0,0,.03);
        }
        .faq-item h6 {
            font-weight: 700;
            font-size: .95rem;
            color: var(--ink);
            margin-bottom: .4rem;
        }
        .faq-item p {
            font-size: .88rem;
            color: var(--ink-soft);
            margin: 0;
            line-height: 1.6;
        }

        /* ─── CTA ─── */
        .cta-section {
            background: linear-gradient(135deg, var(--ink) 0%, #2a3f52 100%);
            border-radius: 2rem;
            padding: 5rem 3rem;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%; right: -20%;
            width: 80vmax; height: 80vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212,168,85,.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40%; left: -10%;
            width: 50vmax; height: 50vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(204,213,174,.06) 0%, transparent 50%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
            letter-spacing: -.02em;
            position: relative; z-index: 1;
        }
        .cta-section p {
            color: rgba(255,255,255,.65);
            font-size: 1.05rem;
            position: relative; z-index: 1;
        }
        .cta-section .btn-gold { position: relative; z-index: 1; }

        /* ─── Footer (identical to landing) ─── */
        .footer {
            background: var(--ink);
            color: rgba(255,255,255,.7);
            padding-top: 4rem;
        }
        .footer h6 {
            font-weight: 700;
            font-size: .85rem;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .footer a {
            color: rgba(255,255,255,.6);
            text-decoration: none;
            font-size: .9rem;
            transition: color .2s;
            display: inline-block;
            padding: .15rem 0;
        }
        .footer a:hover { color: var(--gold); }
        .footer-brand {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--white) !important;
        }
        .footer-brand i { color: var(--gold); }
        .footer p { font-size: .9rem; line-height: 1.7; }
        .footer-social a {
            width: 38px; height: 38px;
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 10px;
            background: rgba(255,255,255,.06);
            color: rgba(255,255,255,.6);
            font-size: 1rem;
            transition: all .3s;
            margin-right: .4rem;
        }
        .footer-social a:hover {
            background: var(--gold);
            color: var(--ink);
            transform: translateY(-2px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.06);
            padding: 1.5rem 0;
            margin-top: 3rem;
            font-size: .85rem;
        }

        /* ─── Responsive ─── */
        @media (max-width: 991.98px) {
            .pricing-card.featured { transform: none; }
            .pricing-card.featured:hover { transform: translateY(-8px); }
            .cta-section { padding: 3rem 1.5rem; border-radius: 1rem; }
        }
        @media (max-width: 575.98px) {
            .page-hero { padding: 7rem 0 3rem; }
            .pricing-card { padding: 1.5rem; }
        }
