/* ============================================================
           pricing.html — Pricing Showcase
           Dark hero + product image + floating price cards
           ============================================================ */

        :root {
            --amber:        #f59e0b;
            --amber-light:  #fbbf24;
            --amber-pale:   #fde68a;
            --amber-deep:   #d97706;
            --amber-dark:   #b45309;
            --ink:          #0a0a0a;
            --ink-soft:     #3f3f46;
            --muted:        #6b7280;
            --faint:        #9ca3af;
            --line:         #e5e7eb;
            --void:         #070604;
            --void-2:       #0d0b08;
        }

        *, *::before, *::after { box-sizing: border-box; }

        body {
            margin: 0;
            background: #fff !important;
            color: var(--ink) !important;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        body::before, body::after { display: none !important; }

        main { display: block; }

        .wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

        /* ---- Scroll reveal ---- */
        .reveal {
            opacity: 0; transform: translateY(32px);
            transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
        }
        .reveal.revealed { opacity: 1; transform: none; }
        .reveal-d1 { transition-delay: 0.08s; }
        .reveal-d2 { transition-delay: 0.16s; }
        .reveal-d3 { transition-delay: 0.24s; }
        .reveal-d4 { transition-delay: 0.32s; }

        @media (prefers-reduced-motion: reduce) {
            .reveal { opacity: 1; transform: none; transition: none; }
            .hero-ambient { animation: none !important; }
            .pulse-ring { animation: none !important; }
            .float-img { animation: none !important; }
        }

        /* ================================================================
           HERO — Cinematic full-bleed photo backdrop, left-aligned copy
           The product photo IS the background atmosphere.
           Dark gradient sweeps in from the left so text is always legible.
           ================================================================ */
        .hero {
            min-height: min(100dvh, 820px);
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            isolation: isolate;
            background: #0a0804;
        }

        /* Full-bleed lifestyle photo — pulled slightly right so the
           Mac mini sits in the right half of the frame                  */
        .hero-photo {
            position: absolute; inset: 0;
            background:
                url('../resources/image/mac_mini_m4_pricing.jpg')
                55% center / cover no-repeat;
            opacity: 0.55;
            transform: scale(1.04); /* tiny zoom to avoid white edges     */
            will-change: transform;
        }

        /* Cinematic left-to-right gradient:
           Left → almost opaque dark (text zone)
           Right → photo shows through (product zone)                    */
        .hero-overlay-lr {
            position: absolute; inset: 0;
            background: linear-gradient(
                100deg,
                #0a0804        0%,
                #0a0804        22%,
                rgba(10,8,4,0.93) 38%,
                rgba(10,8,4,0.68) 55%,
                rgba(10,8,4,0.28) 75%,
                rgba(10,8,4,0.08) 100%
            );
            pointer-events: none;
        }

        /* Bottom scrim so page transition looks smooth */
        .hero-overlay-btm {
            position: absolute;
            bottom: 0; left: 0; right: 0; height: 38%;
            background: linear-gradient(to top, #0a0804 0%, transparent 100%);
            pointer-events: none;
        }

        /* Top hairline amber accent */
        .hero::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg,
                transparent,
                rgba(245,158,11,0.7) 25%,
                rgba(251,191,36,0.6) 50%,
                rgba(245,158,11,0.4) 75%,
                transparent);
            z-index: 5;
        }

        /* ---- Content column ---- */
        .hero-content {
            position: relative; z-index: 3;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 1160px;
            width: 100%;
            margin: 0 auto;
            padding: 96px 24px 64px;
        }

        /* Left-aligned copy block — stays inside ~48% of screen width  */
        .hero-copy-block {
            max-width: 560px;
        }

        /* Eyebrow badge */
        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 6px 16px 6px 9px;
            border-radius: 999px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.13);
            margin-bottom: 20px;
            backdrop-filter: blur(14px);
        }
        .pulse-dot {
            position: relative; width: 7px; height: 7px; border-radius: 50%;
            background: var(--amber-light);
            box-shadow: 0 0 9px rgba(251,191,36,0.9);
            flex-shrink: 0;
        }
        .pulse-dot::after {
            content: ''; position: absolute; inset: 0; border-radius: 50%;
            background: var(--amber-light);
            animation: pulse-expand 2.4s ease-out infinite;
        }
        @keyframes pulse-expand {
            0%   { transform: scale(1);   opacity: 0.7; }
            70%  { transform: scale(2.8); opacity: 0; }
            100% { transform: scale(2.8); opacity: 0; }
        }
        .hero-eyebrow-text {
            font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
            color: rgba(255,255,255,0.68);
        }

        /* H1 — left-aligned, large, tight tracking */
        .hero-h1 {
            font-size: clamp(3.2rem, 6vw, 5.6rem);
            font-weight: 800; letter-spacing: -0.04em; line-height: 0.98;
            color: #fff; margin: 0 0 20px;
        }
        .hero-h1 em {
            font-style: normal; display: block;
            background: linear-gradient(135deg,
                var(--amber-pale) 0%,
                var(--amber-light) 42%,
                var(--amber-deep) 100%);
            -webkit-background-clip: text; background-clip: text;
            color: transparent;
        }

        /* Subtitle */
        .hero-sub {
            font-size: 1rem; line-height: 1.88;
            color: rgba(255,255,255,0.46);
            margin: 0 0 36px;
            max-width: 420px;
        }

        /* Price row */
        .hero-price-row {
            display: flex; align-items: baseline; gap: 8px;
            margin-bottom: 32px; flex-wrap: wrap;
        }
        .price-from-label {
            font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.35);
            letter-spacing: 0.06em; text-transform: uppercase;
        }
        .price-big {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900; letter-spacing: -0.045em; line-height: 1;
            background: linear-gradient(135deg,
                var(--amber-pale) 0%,
                var(--amber-light) 42%,
                var(--amber-deep) 100%);
            -webkit-background-clip: text; background-clip: text;
            color: transparent;
        }
        .price-per {
            font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.32);
        }

        /* CTA buttons */
        .hero-actions {
            display: flex; gap: 12px; flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 17px 44px; border-radius: 999px;
            background: linear-gradient(135deg,
                var(--amber) 0%, var(--amber-light) 55%, var(--amber-pale) 100%);
            color: #1a0e00; font-size: 16px; font-weight: 800;
            text-decoration: none; border: none; cursor: pointer;
            box-shadow: 0 4px 28px rgba(245,158,11,0.52),
                        inset 0 1px 0 rgba(255,255,255,0.28);
            transition: transform 0.22s cubic-bezier(0.22,1,0.36,1),
                        box-shadow 0.22s ease;
            white-space: nowrap; letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 44px rgba(245,158,11,0.65),
                        inset 0 1px 0 rgba(255,255,255,0.38);
        }
        .btn-primary svg { transition: transform 0.22s ease; }
        .btn-primary:hover svg { transform: translateX(3px); }

        .btn-ghost {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 16px 28px; border-radius: 999px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.60); font-size: 15px; font-weight: 700;
            text-decoration: none; cursor: pointer;
            backdrop-filter: blur(10px);
            transition: background 0.2s ease, border-color 0.2s ease,
                        color 0.2s ease;
            white-space: nowrap;
        }
        .btn-ghost:hover {
            background: rgba(255,255,255,0.11);
            border-color: rgba(245,158,11,0.42);
            color: rgba(255,255,255,0.9);
        }

        /* ---- Bottom trust strip ---- */
        .hero-trust {
            position: relative; z-index: 3;
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 18px 0;
        }
        .hero-trust-inner {
            display: flex; align-items: center; justify-content: flex-start;
            flex-wrap: wrap; gap: 8px 28px;
            max-width: 1160px; margin: 0 auto; padding: 0 24px;
        }
        .trust-item {
            display: flex; align-items: center; gap: 7px;
            font-size: 12.5px; font-weight: 700;
            color: rgba(255,255,255,0.36);
        }
        .trust-item svg { color: var(--amber-light); flex-shrink: 0; }
        .trust-sep {
            width: 1px; height: 14px;
            background: rgba(255,255,255,0.10);
        }

        /* Mobile: stack copy, reduce photo opacity, center text */
        @media (max-width: 700px) {
            .hero-photo { background-position: center center; opacity: 0.35; }
            .hero-overlay-lr {
                background: linear-gradient(
                    to bottom,
                    rgba(10,8,4,0.82) 0%,
                    rgba(10,8,4,0.68) 60%,
                    rgba(10,8,4,0.95) 100%
                );
            }
            .hero-content { padding: 88px 24px 52px; align-items: center; text-align: center; }
            .hero-copy-block { max-width: 100%; }
            .hero-h1 em { display: inline; }
            .hero-sub { max-width: 100%; }
            .hero-price-row { justify-content: center; }
            .hero-actions { justify-content: center; }
            .hero-trust-inner {
                display: grid;
                grid-template-columns: 1fr;
                gap: 10px;
                justify-items: center;
            }
            .trust-item {
                justify-content: center;
                text-align: center;
                line-height: 1.45;
                max-width: 300px;
            }
            .trust-sep { display: none; }
        }

        /* ================================================================
           PRICE BREAKDOWN SECTION
           ================================================================ */
        .price-section {
            background: #fff;
            padding: 96px 0 80px;
        }

        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em;
            text-transform: uppercase; color: var(--amber-deep);
            margin-bottom: 16px;
        }
        .section-label .dot {
            width: 7px; height: 7px; border-radius: 50%;
            background: linear-gradient(135deg, var(--amber-light), var(--amber-deep));
            box-shadow: 0 0 6px rgba(245,158,11,0.55);
        }
        .section-title {
            font-size: clamp(1.9rem, 4vw, 2.8rem);
            font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
            color: var(--ink); margin: 0 0 16px;
        }
        .section-desc {
            font-size: 1rem; line-height: 1.8; color: var(--muted);
            max-width: 560px; margin: 0;
        }

        .price-section-head {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 40px; align-items: end;
            margin-bottom: 64px;
        }
        @media (max-width: 820px) {
            .price-section-head { grid-template-columns: 1fr; gap: 20px; }
        }

        .price-note-aside {
            display: flex; flex-direction: column; gap: 12px;
            align-items: flex-end;
        }
        @media (max-width: 820px) { .price-note-aside { align-items: flex-start; } }

        .nodes-pill {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 10px 18px; border-radius: 999px;
            background: linear-gradient(135deg, rgba(245,158,11,0.10), rgba(217,119,6,0.07));
            border: 1px solid rgba(245,158,11,0.28);
        }
        .nodes-pill-text {
            font-size: 13px; font-weight: 800; color: var(--amber-dark);
        }
        .nodes-pill svg { color: var(--amber-deep); }

        .same-price-tag {
            font-size: 12px; font-weight: 700; color: var(--muted);
        }

        /* Price cards grid */
        .price-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 900px) { .price-cards { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 480px) { .price-cards { grid-template-columns: 1fr; } }

        .price-card {
            border-radius: 24px; overflow: hidden;
            background: #fff;
            border: 1.5px solid var(--line);
            position: relative;
            transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .price-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.05);
            border-color: rgba(245,158,11,0.3);
        }
        .price-card.featured {
            border-color: var(--amber);
            background: var(--void);
            box-shadow: 0 8px 32px rgba(245,158,11,0.20);
        }
        .price-card.featured:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 56px rgba(245,158,11,0.28);
        }

        .pc-badge {
            position: absolute; top: 16px; right: 16px;
            padding: 4px 12px; border-radius: 999px;
            font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .pc-badge-popular {
            background: linear-gradient(135deg, var(--amber), var(--amber-deep));
            color: #1a0e00;
        }
        .pc-badge-value {
            background: rgba(245,158,11,0.14);
            border: 1px solid rgba(245,158,11,0.30);
            color: var(--amber-deep);
        }

        .pc-inner { padding: 28px 24px 24px; }

        .pc-period {
            font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
            text-transform: uppercase; margin-bottom: 20px;
        }
        .price-card:not(.featured) .pc-period { color: var(--muted); }
        .price-card.featured .pc-period { color: rgba(255,255,255,0.42); }

        .pc-price {
            font-size: 3rem; font-weight: 900; letter-spacing: -0.04em;
            line-height: 1; margin-bottom: 8px;
        }
        .price-card:not(.featured) .pc-price { color: var(--ink); }
        .price-card.featured .pc-price {
            background: linear-gradient(135deg, var(--amber-pale), var(--amber-light), var(--amber-deep));
            -webkit-background-clip: text; background-clip: text; color: transparent;
        }

        .pc-per-day {
            font-size: 12px; font-weight: 700; margin-bottom: 24px;
        }
        .price-card:not(.featured) .pc-per-day { color: var(--faint); }
        .price-card.featured .pc-per-day { color: rgba(255,255,255,0.35); }

        .pc-divider {
            height: 1px; margin-bottom: 20px;
        }
        .price-card:not(.featured) .pc-divider { background: var(--line); }
        .price-card.featured .pc-divider { background: rgba(255,255,255,0.08); }

        .pc-features { display: flex; flex-direction: column; gap: 10px; }
        .pc-feature {
            display: flex; align-items: center; gap: 9px;
            font-size: 12.5px; font-weight: 600;
        }
        .price-card:not(.featured) .pc-feature { color: var(--ink-soft); }
        .price-card.featured .pc-feature { color: rgba(255,255,255,0.65); }

        .pc-check {
            flex-shrink: 0; width: 17px; height: 17px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }
        .price-card:not(.featured) .pc-check {
            background: rgba(245,158,11,0.12); color: var(--amber-deep);
        }
        .price-card.featured .pc-check {
            background: rgba(245,158,11,0.18); color: var(--amber-light);
        }

        /* CTA card — full width below the grid */
        .price-cta-row {
            margin-top: 24px;
            display: grid; grid-template-columns: 1fr auto;
            align-items: center; gap: 24px;
            padding: 32px 36px;
            border-radius: 24px;
            background: var(--void);
            border: 1px solid rgba(255,255,255,0.07);
            box-shadow: 0 16px 48px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.05);
            position: relative; overflow: hidden;
        }
        .price-cta-row::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245,158,11,0.55), rgba(217,119,6,0.45), transparent);
        }
        @media (max-width: 700px) {
            .price-cta-row { grid-template-columns: 1fr; text-align: center; }
        }

        .price-cta-left { position: relative; z-index: 1; }
        .price-cta-from { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
        .price-cta-amount {
            font-size: 2.8rem; font-weight: 900; letter-spacing: -0.035em; line-height: 1;
            background: linear-gradient(135deg, var(--amber-pale), var(--amber-light), var(--amber-deep));
            -webkit-background-clip: text; background-clip: text; color: transparent;
            margin-bottom: 6px;
        }
        .price-cta-note { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 600; }

        .price-cta-right {
            position: relative; z-index: 1;
            display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
        }
        @media (max-width: 700px) { .price-cta-right { align-items: center; } }

        /* ================================================================
           SPECS SECTION
           ================================================================ */
        .specs-section {
            background: #f8f8f6;
            padding: 88px 0;
        }

        .specs-layout {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 64px; align-items: center;
        }
        @media (max-width: 860px) { .specs-layout { grid-template-columns: 1fr; gap: 40px; } }

        .specs-img-side {
            display: flex; align-items: center; justify-content: center;
        }
        .specs-img-frame {
            position: relative; width: 100%; max-width: 460px;
        }
        .specs-img-bg {
            position: absolute; inset: -20px;
            border-radius: 48px;
            background: radial-gradient(ellipse at 50% 80%, rgba(245,158,11,0.14) 0%, transparent 70%);
            filter: blur(24px);
        }
        .specs-img {
            width: 100%; height: auto; object-fit: contain;
            position: relative; z-index: 1;
            filter: drop-shadow(0 24px 40px rgba(0,0,0,0.15));
        }

        .specs-copy-side { position: relative; }

        .spec-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 2px; margin-top: 40px;
            border-radius: 20px; overflow: hidden;
            border: 1px solid var(--line);
            box-shadow: 0 2px 12px rgba(15,23,42,0.05);
        }
        .spec-cell {
            background: #fff; padding: 22px 20px;
            border-right: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
        .spec-cell:nth-child(even) { border-right: none; }
        .spec-cell:nth-last-child(-n+2) { border-bottom: none; }

        .spec-key {
            font-size: 10px; font-weight: 800; letter-spacing: 0.10em;
            text-transform: uppercase; color: var(--faint); margin-bottom: 8px;
        }
        .spec-val {
            font-size: 1.3rem; font-weight: 900; letter-spacing: -0.02em; color: var(--ink);
            margin-bottom: 3px;
        }
        .spec-hint { font-size: 11px; font-weight: 600; color: var(--faint); }

        /* ================================================================
           NODE SECTION (locations)
           ================================================================ */
        .nodes-section {
            background: #fff;
            padding: 88px 0 80px;
        }

        .nodes-head { text-align: center; margin-bottom: 56px; }
        .nodes-head .section-label { justify-content: center; }

        .nodes-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
        }
        @media (max-width: 900px) { .nodes-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 560px) { .nodes-grid { grid-template-columns: repeat(2, 1fr); } }

        .node-card {
            border-radius: 20px;
            border: 1.5px solid var(--line);
            background: #fff;
            padding: 24px 18px;
            text-align: center;
            transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease, border-color 0.22s ease;
        }
        .node-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(15,23,42,0.08);
            border-color: rgba(245,158,11,0.30);
        }
        .node-flag {
            font-size: 2.4rem; line-height: 1; margin-bottom: 12px;
        }
        .node-name {
            font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 4px;
        }
        .node-city {
            font-size: 11px; font-weight: 600; color: var(--faint);
        }
        .node-price-tag {
            display: inline-block; margin-top: 12px;
            padding: 4px 12px; border-radius: 999px;
            background: rgba(245,158,11,0.10);
            border: 1px solid rgba(245,158,11,0.22);
            font-size: 11px; font-weight: 800; color: var(--amber-dark);
        }

        /* Nodes same-price note */
        .nodes-same-note {
            margin-top: 28px; text-align: center;
            display: flex; align-items: center; justify-content: center; gap: 8px;
            font-size: 13px; font-weight: 600; color: var(--muted);
        }
        .nodes-same-note svg { color: var(--amber-deep); }

        /* ================================================================
           FEATURES SECTION
           ================================================================ */
        .features-section {
            background: var(--void);
            padding: 96px 0 88px;
            position: relative; overflow: hidden;
        }
        .features-section::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4), transparent);
        }
        .features-section::after {
            content: '';
            position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), transparent);
        }
        .feat-ambient {
            position: absolute; inset: 0; pointer-events: none;
            background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245,158,11,0.07) 0%, transparent 65%);
        }

        .features-head { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
        .features-head .section-label { justify-content: center; }
        .features-head .section-title { color: #fff; }
        .features-head .section-desc { color: rgba(255,255,255,0.42); margin: 0 auto; }

        .features-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 16px; position: relative; z-index: 1;
        }
        @media (max-width: 860px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 520px) { .features-grid { grid-template-columns: 1fr; } }

        .feat-card {
            padding: 28px 24px; border-radius: 22px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
        }
        .feat-card:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(245,158,11,0.22);
            transform: translateY(-4px);
        }
        .feat-icon {
            width: 46px; height: 46px; border-radius: 14px; margin-bottom: 18px;
            background: linear-gradient(135deg, rgba(245,158,11,0.20), rgba(217,119,6,0.12));
            border: 1px solid rgba(245,158,11,0.22);
            display: flex; align-items: center; justify-content: center;
            color: var(--amber-light); font-size: 18px;
        }
        .feat-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 8px; }
        .feat-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.42); }

        /* ================================================================
           FINAL CTA SECTION
           ================================================================ */
        .final-section {
            background: #fff;
            padding: 96px 0 104px;
            text-align: center;
        }
        .final-inner {
            max-width: 700px; margin: 0 auto;
        }
        .final-section .section-label { justify-content: center; }
        .final-h2 {
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
            color: var(--ink); margin: 0 0 18px;
        }
        .final-desc {
            font-size: 1rem; line-height: 1.85; color: var(--muted);
            margin: 0 0 40px;
        }
        .final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

        .btn-dark {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 16px 38px; border-radius: 999px;
            background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 55%, var(--amber-pale) 100%);
            color: #1a0e00; font-size: 15px; font-weight: 800;
            text-decoration: none; border: none; cursor: pointer;
            box-shadow: 0 4px 24px rgba(245,158,11,0.40), inset 0 1px 0 rgba(255,255,255,0.30);
            transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease;
            white-space: nowrap;
        }
        .btn-dark:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(245,158,11,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
        }
        .btn-light {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 15px 28px; border-radius: 999px;
            background: #fff; color: var(--ink); font-size: 14px; font-weight: 700;
            text-decoration: none; border: 1.5px solid var(--line);
            box-shadow: 0 2px 8px rgba(15,23,42,0.06);
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }
        .btn-light:hover {
            border-color: rgba(245,158,11,0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(15,23,42,0.10);
        }

        /* Payment icons row */
        .payment-row {
            display: flex; align-items: center; justify-content: center;
            gap: 10px; margin-top: 28px;
        }
        .payment-row-label { font-size: 12px; font-weight: 600; color: var(--faint); }
        .payment-row-icons { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: center; }
        .payment-badge {
            font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
            color: var(--faint); padding: 3px 7px;
            border: 1px solid rgba(15,23,42,0.12); border-radius: 5px;
            transition: color 0.15s, border-color 0.15s; cursor: default;
        }
        .payment-badge:hover { color: var(--amber-deep); border-color: rgba(245,158,11,0.35); }


/* ── Narrow centered description paragraph ── */
.section-desc--narrow {
    margin: 0 auto;
    max-width: 480px;
}

/* ── Muted pricing section label ── */
.pricing-label-muted {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
}
