        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { overflow-anchor: auto; }

        :root {
            --bg: #070b13;
            --bg2: #0d1117;
            --bg3: #111827;
            --card: #141c2b;
            --border: rgba(255,255,255,0.08);
            --gold: #f59e0b;
            --gold2: #fbbf24;
            --green: #22c55e;
            --green2: #16a34a;
            --text: #e2e8f0;
            --muted: rgba(255,255,255,0.45);
            --radius: 16px;
            --radius-sm: 10px;
        }

        html { scroll-behavior: smooth; overflow-x: hidden; }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 32px;
            background: rgba(7,11,19,0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }
        .nav-logo {
            font-size: 1.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: -0.02em;
        }
        .nav-logo span { color: var(--gold); }
        .nav-right { display: flex; align-items: center; gap: 12px; }
        .nav-back {
            font-size: 0.8rem;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }
        .nav-back:hover { color: white; }

        /* ── LANG DROPDOWN ── */
        .lang-dropdown { position: relative; }
        .lang-btn {
            display: flex; align-items: center; gap: 6px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            color: white;
            padding: 7px 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem; font-weight: 600;
            cursor: pointer; transition: all 0.2s;
        }
        .lang-btn:hover { background: rgba(255,255,255,0.12); }
        .lang-btn img { width: 16px; height: 12px; }
        .lang-btn-arrow { font-size: 0.6rem; color: rgba(255,255,255,0.5); }
        .lang-menu {
            position: absolute; top: calc(100% + 8px); right: 0;
            background: #131c2e;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px; padding: 6px; min-width: 160px;
            display: none; flex-direction: column; gap: 2px;
            z-index: 300; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        }
        .lang-menu.open { display: flex; }
        .lang-option {
            display: flex; align-items: center; gap: 8px;
            background: transparent; border: none;
            color: rgba(255,255,255,0.75);
            padding: 8px 12px; border-radius: 6px;
            font-family: 'Poppins', sans-serif; font-size: 0.8rem;
            cursor: pointer; transition: all 0.15s; text-align: left;
        }
        .lang-option:hover { background: rgba(255,255,255,0.07); color: white; }
        .lang-option.active { color: var(--gold); }
        .lang-option img { width: 16px; height: 12px; }
        .nav-wa {
            display: flex;
            align-items: center;
            gap: 7px;
            background: var(--green2);
            color: white;
            padding: 9px 18px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.25s;
        }
        .nav-wa:hover { background: #15803d; transform: translateY(-1px); }

        /* ── HERO ── */
        #hero {
            min-height: 100vh;
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 32px 80px;
            background:
                linear-gradient(270deg, rgba(5,8,15,0.5) 0%, rgba(5,8,15,0.18) 25%, transparent 48%),
                radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,158,11,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 20% 70%, rgba(34,197,94,0.05) 0%, transparent 60%),
                linear-gradient(to bottom, rgba(7,11,19,0.72) 0%, rgba(7,11,19,0.55) 50%, rgba(7,11,19,0.82) 100%),
                url('/images/krakow-melex-hero.webp') center center / cover no-repeat;
        }
        /* Mobile hero gets a portrait-friendly shot — wide-aspect crops badly
           on narrow viewports. Swap only the image layer, keep overlays. */
        @media (max-width: 768px) {
            #hero {
                background:
                    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,158,11,0.08) 0%, transparent 70%),
                    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(34,197,94,0.05) 0%, transparent 60%),
                    linear-gradient(to bottom, rgba(7,11,19,0.55) 0%, rgba(7,11,19,0.78) 50%, rgba(7,11,19,0.92) 100%),
                    url('/images/krakow-melex-hero-mobile.webp') center center / cover no-repeat;
            }
        }
        .hero-bg-grid { display: none; }
        #routes { scroll-margin-top: 80px; }
        .hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-avail {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(34,197,94,0.1);
            border: 1px solid rgba(34,197,94,0.3);
            border-radius: 50px;
            padding: 8px 18px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #4ade80;
            margin-bottom: 24px;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .avail-dot {
            width: 8px; height: 8px;
            background: var(--green);
            border-radius: 50%;
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
            70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
            100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
        }
        .hero-h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.6rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
            color: white;
        }
        .hero-h1 span { color: var(--gold); }
        .hero-sub {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 32px;
            max-width: 520px;
            line-height: 1.7;
        }
        .hero-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 36px;
        }
        .pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0 8px 0 0;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255,255,255,0.95);
        }
        .pill-icon {
            width: 42px;
            height: 42px;
            display: block;
            flex-shrink: 0;
            background: rgba(0,0,0,0.45);
            border-radius: 50%;
            padding: 4px;
            box-sizing: border-box;
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-wa {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green2);
            color: white;
            padding: 15px 28px;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
        }
        .btn-wa:hover { background: #15803d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.3); }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: white;
            padding: 14px 24px;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            border: 1.5px solid rgba(255,255,255,0.2);
            transition: all 0.25s;
        }
        .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

        /* Hero right - booking widget */
        .hero-widget {
            background: rgba(5,8,15,0.75);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 20px;
            padding: 32px;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 40px rgba(0,0,0,0.5);
            position: relative;
            z-index: 1;
            position: relative;
            z-index: 10;
        }
        .widget-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: white;
            margin-bottom: 6px;
        }
        .widget-sub {
            font-size: 0.78rem;
            color: var(--muted);
            margin-bottom: 24px;
        }
        .widget-route {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }
        .route-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1.5px solid transparent;
            background: rgba(255,255,255,0.04);
            cursor: pointer;
            transition: all 0.2s;
        }
        .route-option:hover, .route-option.active {
            border-color: var(--gold);
            background: rgba(245,158,11,0.08);
        }
        .route-option input[type="radio"] { display: none; }
        .route-dot {
            width: 18px; height: 18px;
            border-radius: 4px;
            border: 2px solid rgba(255,255,255,0.2);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s;
            font-size: 11px; color: white; font-weight: 700;
        }
        .route-option.active .route-dot {
            border-color: var(--gold);
            background: var(--gold);
        }
        .route-option.active .route-dot::after {
            content: '✓';
        }
        .route-label { font-size: 0.83rem; font-weight: 600; color: white; }
        .route-detail { font-size: 0.72rem; color: var(--muted); }
        .widget-divider { height: 1px; background: var(--border); margin: 16px 0; }
        .widget-group {
            margin-bottom: 16px;
        }
        .widget-group label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }
        .widget-group select,
        .widget-group input {
            width: 100%;
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: white;
            padding: 10px 14px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .widget-group select:focus,
        .widget-group input:focus { border-color: rgba(245,158,11,0.5); }
        .widget-group select option { background: #1e293b; }
        .widget-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding: 12px 0;
        }
        .widget-price-label { font-size: 0.78rem; color: var(--muted); }
        .widget-price-val { font-size: 1.4rem; font-weight: 800; color: var(--gold); }
        .widget-price-val small { font-size: 0.7rem; color: var(--muted); font-weight: 400; display: block; text-align: right; }
        .btn-widget {
            width: 100%;
            background: var(--green2);
            color: white;
            border: none;
            padding: 15px;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.92rem;
            cursor: pointer;
            transition: all 0.25s;
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .btn-widget:hover { background: #15803d; transform: translateY(-1px); }
        .widget-note {
            text-align: center;
            font-size: 0.7rem;
            color: var(--muted);
            margin-top: 10px;
        }

        /* ── TRUST BAR ── */
        .trust-bar {
            background: rgba(245,158,11,0.06);
            border-top: 1px solid rgba(245,158,11,0.15);
            border-bottom: 1px solid rgba(245,158,11,0.15);
            padding: 20px 32px;
            display: flex;
            justify-content: center;
            gap: 0;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 32px;
            border-right: 1px solid rgba(255,255,255,0.08);
        }
        .trust-item:last-child { border-right: none; }
        .trust-icon { font-size: 1.3rem; line-height: 1; display: flex; align-items: center; }
        .trust-icon svg { width: 34px; height: 34px; display: block; flex-shrink: 0; }
        .trust-item--link { text-decoration: none; color: inherit; }
        .trust-item--link:hover .trust-text strong { color: var(--gold); }
        .trust-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: white; transition: color 0.2s; }
        .trust-text span { font-size: 0.72rem; color: var(--muted); }

        /* ── SECTIONS ── */
        section {
            padding: 80px 32px;
        }
        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .section-tag {
            display: inline-block;
            background: rgba(245,158,11,0.12);
            color: var(--gold);
            border: 1px solid rgba(245,158,11,0.25);
            border-radius: 50px;
            padding: 5px 14px;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 14px;
        }
        .section-h2 {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            color: white;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
        .section-sub {
            font-size: 0.95rem;
            color: var(--muted);
            max-width: 560px;
            margin-bottom: 52px;
        }

        /* ── HOW IT WORKS ── */
        #how { background: var(--bg2); }
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
        }
        /* left line: from circle 1 right edge to circle 2 left edge */
        .steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: calc(16.66% + 56px);
            width: calc(33.33% - 112px);
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4));
        }
        /* right line: from circle 2 right edge to circle 3 left edge */
        .steps::after {
            content: '';
            position: absolute;
            top: 50px;
            left: calc(50% + 56px);
            width: calc(33.33% - 112px);
            height: 1px;
            background: linear-gradient(90deg, rgba(245,158,11,0.4), transparent);
        }
        .step-card {
            text-align: center;
            padding: 0 16px;
        }
        .step-num {
            width: 100px; height: 100px;
            border-radius: 50%;
            background: #0c1424;
            border: 2px solid rgba(245,158,11,0.6);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }
        /* Don't clip — counter badge (1/2/3) on mobile sits at top:-6px left:-6px
           and would otherwise be cropped to a sliver. SVG content fits its
           own viewBox so it never overflows visually. */
        .step-num--icon { overflow: visible; }
        .step-icon {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* ── HOW IT WORKS — animated SVG icons ── */
        .bookride-pin-wrap { animation: bookride-pinBob 2.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
        @keyframes bookride-pinBob {
            0%, 100% { transform: translateY(-3px); }
            50%      { transform: translateY(3px); }
        }
        .bookride-pin-ring {
            transform-box: fill-box;
            transform-origin: center;
            animation: bookride-pinRing 2.2s ease-out infinite;
        }
        @keyframes bookride-pinRing {
            0%        { transform: scale(0.4); opacity: 0.65; }
            70%, 100% { transform: scale(1.5); opacity: 0; }
        }
        .bookride-bub-wrap { animation: bookride-bubBob 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
        @keyframes bookride-bubBob {
            0%, 100% { transform: translateY(-2px); }
            50%      { transform: translateY(2px); }
        }
        .bookride-dot {
            transform-box: fill-box;
            transform-origin: center;
            animation: bookride-dotPulse 1.4s ease-in-out infinite;
        }
        .bookride-dot2 { animation-delay: 0.2s; }
        .bookride-dot3 { animation-delay: 0.4s; }
        @keyframes bookride-dotPulse {
            0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
            30%           { opacity: 1;   transform: translateY(-2px); }
        }
        .bookride-wheel {
            transform-box: fill-box;
            transform-origin: center;
            animation: bookride-spin 1.3s linear infinite;
        }
        @keyframes bookride-spin { to { transform: rotate(360deg); } }
        .bookride-cart-wrap { animation: bookride-cartBob 1.3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
        @keyframes bookride-cartBob {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(-2px); }
        }
        .bookride-route { animation: bookride-march 1s linear infinite; }
        @keyframes bookride-march { to { stroke-dashoffset: -22; } }
        @media (prefers-reduced-motion: reduce) {
            .bookride-pin-wrap,
            .bookride-pin-ring,
            .bookride-bub-wrap,
            .bookride-dot,
            .bookride-dot2,
            .bookride-dot3,
            .bookride-wheel,
            .bookride-cart-wrap,
            .bookride-route { animation: none !important; }
        }
        .step-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }
        .step-card p {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.6;
        }
        .step-time {
            display: inline-block;
            background: rgba(34,197,94,0.12);
            color: #4ade80;
            border-radius: 50px;
            padding: 3px 10px;
            font-size: 0.68rem;
            font-weight: 700;
            margin-top: 8px;
        }

        /* ── ROUTES ── */
        #routes { background: var(--bg); }
        /* Routes section: override section-inner so the 4 cards fill the
           available width on the desktop the way the homepage ride-grid does. */
        #routes { padding-left: 24px; padding-right: 24px; }
        #routes .section-inner { max-width: 1440px; }
        .routes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }
        @media (max-width: 1100px) {
            .routes-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
        }
        @media (max-width: 640px) {
            .routes-grid { grid-template-columns: 1fr; gap: 20px; }
        }
        .route-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .route-card:hover {
            border-color: rgba(245,158,11,0.4);
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }
        /* Featured route (Memory Trail) — visually distinguished */
        .route-card-featured {
            border: 2px solid rgba(245,158,11,0.55);
            box-shadow: 0 0 0 1px rgba(245,158,11,0.18), 0 20px 50px rgba(245,158,11,0.12);
            background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, var(--card) 70%);
        }
        .route-card-featured:hover {
            border-color: rgba(245,158,11,0.85);
            box-shadow: 0 0 0 1px rgba(245,158,11,0.3), 0 22px 55px rgba(245,158,11,0.2);
        }
        .route-card-new-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 3;
            background: #f59e0b;
            color: #0a0f1f;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            box-shadow: 0 4px 14px rgba(245,158,11,0.4);
        }
        .route-card-img {
            height: 200px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }
        /* Top-left duration badge */
        .route-card-duration-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(34,197,94,0.95);
            color: white;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 5px 11px;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        /* Featured card: flame icon + duration in one tight pill */
        .route-card-featured .route-card-duration-badge {
            background: rgba(7,11,19,0.9);
            color: white;
            padding: 5px 11px;
            gap: 4px;
            border: 1px solid rgba(245,158,11,0.6);
        }
        .route-card-featured .route-card-duration-badge::before {
            content: '🔥';
            font-size: 0.9rem;
            line-height: 1;
        }
        .route-card-featured .route-card-duration-badge > span {
            padding: 0;
        }
        .route-card-img-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s;
        }
        .route-card:hover .route-card-img-bg { transform: scale(1.05); }
        .route-card-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(7,11,19,0.95) 0%, rgba(7,11,19,0.3) 60%, transparent 100%);
        }
        .route-card-img-content {
            position: relative;
            z-index: 1;
            padding: 16px 20px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            width: 100%;
        }
        .route-badge-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(34,197,94,0.2);
            border: 1px solid rgba(34,197,94,0.4);
            color: #4ade80;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
        }
        .route-badge-live::before {
            content: '';
            width: 5px; height: 5px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .route-img-price {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--gold);
        }
        .route-img-price small {
            display: block;
            font-size: 0.65rem;
            color: rgba(255,255,255,0.5);
            font-weight: 400;
        }
        .route-body {
            padding: 22px 22px 18px;
            flex: 1;
        }
        .route-body h3 {
            font-size: 1.05rem;
            font-weight: 800;
            color: white;
            margin-bottom: 4px;
        }
        .route-tagline {
            font-size: 0.75rem;
            color: var(--muted);
            margin-bottom: 16px;
        }
        .route-meta {
            display: flex;
            gap: 16px;
            margin-bottom: 18px;
        }
        .route-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.55);
        }
        .lang-flags {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .lang-flags img {
            width: 18px;
            height: 13px;
            border-radius: 2px;
            opacity: 0.85;
        }
        .lang-more {
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--gold);
            background: rgba(245,158,11,0.1);
            border: 1px solid rgba(245,158,11,0.25);
            border-radius: 50px;
            padding: 1px 7px;
            white-space: nowrap;
        }
        .route-stops-label {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            color: var(--gold);
            text-transform: uppercase;
            margin-top: 14px;
            margin-bottom: 10px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }
        .route-stops {
            list-style: none;
            margin-bottom: 6px;
            padding: 0;
        }
        .route-stops li {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.78);
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 9px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        @media (max-width: 640px) { .route-stops li { white-space: normal; overflow: visible; text-overflow: clip; align-items: flex-start; } }
        .route-stops li::before {
            content: '✓';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            background: rgba(34,197,94,0.18);
            border: 1px solid rgba(34,197,94,0.5);
            border-radius: 50%;
            color: #4ade80;
            font-size: 0.62rem;
            font-weight: 800;
            flex-shrink: 0;
        }
        /* Hide stops beyond 4 */
        .route-stops li:nth-child(n+5) { display: none; }
        .route-stops-more {
            font-size: 0.78rem;
            font-weight: 600;
            color: #4ade80;
            display: inline-block;
            margin-top: 4px;
            margin-bottom: 14px;
        }
        .route-stops-more::before {
            content: '✓ ';
            font-weight: 800;
        }
        .route-footer {
            padding: 14px 22px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .btn-book-now {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--green2);
            color: white;
            padding: 12px 10px;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
        }
        .btn-book-now:hover { background: #15803d; transform: translateY(-1px); }
        @media (max-width: 640px) { .btn-book-now { white-space: normal; line-height: 1.3; text-align: center; justify-content: center; } }
        /* Featured (Memory Trail) card — gold gradient with white text for legibility */
        .route-card-featured .btn-book-now {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            box-shadow: 0 4px 14px rgba(245,158,11,0.35);
        }
        .route-card-featured .btn-book-now:hover {
            background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
            box-shadow: 0 6px 20px rgba(245,158,11,0.5);
        }
        .btn-book-later {
            width: 100%;
            background: transparent;
            color: var(--gold);
            padding: 10px;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.82rem;
            border: 1.5px solid rgba(245,158,11,0.3);
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            display: block;
            text-align: center;
        }
        .btn-book-later:hover { border-color: var(--gold); background: rgba(245,158,11,0.07); }

        /* ── COMBO BOX ── */
        .combo-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            max-width: 720px;
            margin: 28px auto 0;
            padding: 18px 24px;
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid rgba(245,158,11,0.25);
            border-radius: 16px;
        }
        .combo-box p {
            font-size: 0.85rem;
            line-height: 1.5;
            color: rgba(255,255,255,0.7);
            margin: 0;
            flex: 1;
            min-width: 220px;
            text-align: left;
        }
        .combo-icon {
            width: 46px; height: 46px;
            border-radius: 50%;
            background: rgba(245,158,11,0.08);
            border: 1px solid rgba(245,158,11,0.25);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .combo-icon svg { width: 22px; height: 22px; display: block; }

        /* ── GROUPS & PRICING ── */
        #pricing { background: var(--bg2); }
        .pricing-intro {
            display: flex;
            align-items: flex-start;
            gap: 60px;
            margin-bottom: 52px;
        }
        .pricing-intro-text { flex: 1; }
        .pricing-note-box {
            background: rgba(34,197,94,0.08);
            border: 1px solid rgba(34,197,94,0.2);
            border-radius: var(--radius);
            padding: 24px;
            max-width: 320px;
            flex-shrink: 0;
        }
        .pricing-note-box h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #4ade80;
            margin-bottom: 8px;
        }
        .pricing-note-box p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
        }
        .pricing-table th {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--muted);
            padding: 10px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        .pricing-table td {
            padding: 16px 20px;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.75);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .pricing-table tr:hover td { background: rgba(255,255,255,0.02); }
        .pricing-table .price-cell {
            font-weight: 800;
            font-size: 1rem;
            color: var(--gold);
        }
        .pricing-table .route-cell { font-weight: 600; color: white; }
        .tag-group {
            display: inline-block;
            background: rgba(245,158,11,0.1);
            color: var(--gold);
            border-radius: 50px;
            padding: 2px 10px;
            font-size: 0.68rem;
            font-weight: 700;
        }
        .tag-popular {
            background: rgba(34,197,94,0.12);
            color: #4ade80;
        }
        .pricing-cta {
            margin-top: 36px;
            text-align: center;
            padding: 28px;
            background: rgba(245,158,11,0.05);
            border: 1px dashed rgba(245,158,11,0.25);
            border-radius: var(--radius);
        }
        .pricing-cta p {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 16px;
        }
        .pricing-cta strong { color: white; }

        /* ── WHY MELEX ── */
        #why { background: var(--bg); }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }
        .why-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            transition: all 0.3s;
        }
        .why-card:hover {
            border-color: rgba(245,158,11,0.3);
            background: rgba(245,158,11,0.04);
        }
        .why-icon {
            font-size: 2rem;
            margin-bottom: 12px;
            display: block;
        }
        .why-card h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: white;
            margin-bottom: 6px;
        }
        .why-card p {
            font-size: 0.76rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ── REVIEWS ── */
        #reviews { background: var(--bg2); }

        /* ── GOOGLE RATING BAR ── */
        .greview-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 18px 24px;
            margin-bottom: 28px;
        }
        .greview-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .greview-g {
            width: 42px; height: 42px;
            background: #fff;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(0,0,0,0.3);
        }
        .greview-g svg { width: 24px; height: 24px; display: block; }
        .greview-stars {
            color: var(--gold);
            font-size: 1.1rem;
            letter-spacing: 3px;
            line-height: 1;
            text-shadow: 0 2px 8px rgba(245,158,11,0.35);
        }
        .greview-label {
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 5px;
            font-weight: 600;
        }
        .greview-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 700;
            text-decoration: none;
            padding: 11px 20px;
            border: 1px solid rgba(245,158,11,0.4);
            border-radius: 10px;
            transition: background 0.2s ease, border-color 0.2s ease;
        }
        .greview-btn:hover {
            background: rgba(245,158,11,0.1);
            border-color: var(--gold);
        }

        /* ── PHOTO MOSAIC ── */
        .review-mosaic {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            grid-template-rows: 220px 220px;
            gap: 8px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 48px;
        }
        .mosaic-photo {
            overflow: hidden;
            position: relative;
        }
        .mosaic-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .mosaic-photo:hover img { transform: scale(1.05); }
        .mosaic-photo-1 { grid-column: 1; grid-row: 1 / 3; }
        .mosaic-photo-2 { grid-column: 2; grid-row: 1; }
        .mosaic-photo-3 { grid-column: 3; grid-row: 1; }
        .mosaic-photo-4 { grid-column: 2; grid-row: 2; }
        .mosaic-photo-5 { grid-column: 3; grid-row: 2; }

        /* badge on last photo */
        .mosaic-badge {
            position: absolute;
            bottom: 12px; right: 12px;
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(245,158,11,0.35);
            color: white;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .mosaic-badge svg { flex-shrink: 0; color: var(--gold); }

        /* ── REVIEWS GRID ── */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .review-card {
            position: relative;
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            overflow: hidden;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .review-card::before {
            content: '\201C';
            position: absolute;
            top: 4px; right: 16px;
            font-size: 4.5rem;
            line-height: 1;
            font-family: Georgia, serif;
            color: rgba(245,158,11,0.12);
            pointer-events: none;
        }
        .review-card:hover {
            transform: translateY(-4px);
            border-color: rgba(245,158,11,0.35);
            box-shadow: 0 12px 28px rgba(0,0,0,0.3);
        }
        @media (prefers-reduced-motion: reduce) {
            .review-card, .review-card:hover { transform: none; }
        }
        .review-stars {
            color: var(--gold);
            font-size: 0.85rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-shadow: 0 2px 6px rgba(245,158,11,0.3);
        }
        .review-text {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.72);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-avatar {
            width: 38px; height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.85rem;
            font-weight: 800;
            color: #0a0f1f;
            box-shadow: 0 4px 12px rgba(245,158,11,0.25);
        }
        .review-name { font-size: 0.8rem; font-weight: 700; color: white; }
        .review-meta { font-size: 0.68rem; color: var(--muted); }

        @media (max-width: 640px) {
            .greview-bar {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                padding: 20px 18px;
                gap: 16px;
            }
            .greview-left { flex-direction: column; gap: 10px; }
            .greview-btn { width: 100%; justify-content: center; }
            .review-mosaic {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 160px 160px 160px;
            }
            .mosaic-photo-1 { grid-column: 1 / 3; grid-row: 1; }
            .mosaic-photo-2 { grid-column: 1; grid-row: 2; }
            .mosaic-photo-3 { grid-column: 2; grid-row: 2; }
            .mosaic-photo-4 { grid-column: 1; grid-row: 3; }
            .mosaic-photo-5 { grid-column: 2; grid-row: 3; }
        }

        /* ── BOTTOM CTA ── */
        #cta { background: linear-gradient(135deg, #0d1117 0%, #111827 50%, #0d1117 100%); border-top: 1px solid var(--border); }
        .cta-inner {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }
        .cta-inner h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            color: white;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }
        .cta-inner h2 span { color: var(--gold); }
        .cta-inner p {
            font-size: 1rem;
            color: var(--muted);
            margin-bottom: 36px;
        }
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .cta-avail {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 28px;
            font-size: 0.82rem;
            color: #4ade80;
            font-weight: 600;
        }

        /* ── STICKY BAR ── */
        .sticky-bar {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            z-index: 200;
            background: rgba(7,11,19,0.97);
            border-top: 1px solid rgba(245,158,11,0.2);
            backdrop-filter: blur(16px);
            padding: 14px 100px calc(14px + env(safe-area-inset-bottom, 0px)) 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        /* Resting state must be transform:none (not translateY(0)): a fixed
           element that keeps a transform sits on its own composited layer and
           iOS WebKit (esp. in-app browsers like the Google app) fails to
           re-anchor it to bottom:0 when the browser bottom UI bar collapses,
           leaving a gap under the bar. */
        .sticky-bar.visible { transform: none; }
        .sticky-bar-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .sticky-avail-dot {
            width: 8px; height: 8px;
            background: var(--green);
            border-radius: 50%;
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }
        .sticky-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: white; }
        .sticky-text span { font-size: 0.72rem; color: var(--muted); }
        .sticky-btns { display: flex; gap: 10px; flex-shrink: 0; }
        .sticky-btn-wa {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--green2);
            color: white;
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.82rem;
            text-decoration: none;
            white-space: nowrap;
        }
        .sticky-btn-wa:hover { background: #15803d; }
        .sticky-btn-call {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.07);
            color: white;
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.82rem;
            text-decoration: none;
            white-space: nowrap;
            border: 1px solid var(--border);
        }
        .sticky-btn-call:hover { background: rgba(255,255,255,0.1); }

        /* ── FOOTER ── */
        footer {
            background: #04060b;
            border-top: 1px solid var(--border);
            padding: 36px 32px 100px;
            text-align: center;
        }
        footer .logo { font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 8px; }
        footer .logo span { color: var(--gold); }
        footer p { font-size: 0.75rem; color: var(--muted); margin-bottom: 16px; }
        footer a { color: var(--muted); text-decoration: none; font-size: 0.75rem; margin: 0 10px; }
        footer a:hover { color: white; }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-widget { display: none; }
            .pricing-intro { flex-direction: column; }
            .pricing-note-box { max-width: 100%; }
            .steps { grid-template-columns: 1fr; gap: 32px; counter-reset: step-counter; }
            .steps::before, .steps::after { display: none; }
            /* slightly smaller animated icon container on mobile */
            .step-num { width: 80px; height: 80px; }
            /* Trust bar — rotating carousel on mobile.
               5 items stacked into one grid cell, only one visible at a time,
               fades + slides every 3s on a loop. Keeps the bar compact + centred
               instead of a left-aligned stack that looked off on narrow screens. */
            .trust-bar {
                display: grid;
                grid-template-areas: "stack";
                padding: 18px 20px;
                background: rgba(245,158,11,0.05);
                min-height: 64px;
                position: relative;
            }
            .trust-item {
                grid-area: stack;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 14px;
                padding: 0;
                border: none;
                text-align: center;
                opacity: 0;
                animation: trust-roll 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
                will-change: opacity, transform;
            }
            .trust-item:nth-child(1) { animation-delay: 0s; }
            .trust-item:nth-child(2) { animation-delay: 3s; }
            .trust-item:nth-child(3) { animation-delay: 6s; }
            .trust-item:nth-child(4) { animation-delay: 9s; }
            .trust-item:nth-child(5) { animation-delay: 12s; }
            @media (prefers-reduced-motion: reduce) {
                .trust-item { animation: none; opacity: 1; position: static; }
                .trust-bar { display: flex; flex-direction: column; gap: 8px; min-height: 0; }
            }
            @keyframes trust-roll {
                0%   { opacity: 0; transform: translateY(20px); }
                8%   { opacity: 1; transform: translateY(0); }
                17%  { opacity: 1; transform: translateY(0); }
                25%  { opacity: 0; transform: translateY(-20px); }
                100% { opacity: 0; transform: translateY(-20px); }
            }
            .trust-icon {
                font-size: 1.6rem;
                flex-shrink: 0;
                opacity: 0.95;
                line-height: 1;
            }
            .trust-text {
                flex: 0 1 auto;            /* don't stretch — keep group tight + centered */
                min-width: 0;
            }
            .trust-text strong { font-size: 0.95rem; line-height: 1.2; margin-bottom: 2px; }
            .trust-text span { font-size: 0.78rem; opacity: 0.7; display: block; line-height: 1.3; }
            .step-card { counter-increment: step-counter; }
            .step-num { position: relative; }
            .step-num::before {
                content: counter(step-counter);
                position: absolute;
                top: -6px; left: -6px;
                width: 22px; height: 22px;
                background: var(--gold);
                color: #0a0f1f;
                border-radius: 50%;
                font-size: 0.72rem;
                font-weight: 800;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 2;
            }
        }
        @media (max-width: 768px) { .sticky-bar { padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)); } }

        @media (max-width: 600px) {
            nav { padding: 12px 16px; }
            section { padding: 56px 16px; }
            #hero { padding: 100px 16px 60px; }
            .trust-bar { padding: 16px; }
            .sticky-bar { padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)); justify-content: center; }
            .sticky-text { display: none; }
            .sticky-bar-left { display: none; }
            .sticky-btn-call { display: none; }
            .sticky-btns { width: 100%; justify-content: center; }
            .sticky-btn-wa { flex: 1; max-width: 320px; justify-content: center; }
            .wa-float { bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
            .why-grid, .reviews-grid { grid-template-columns: 1fr; }
        }
        .wa-float {
            position: fixed;
            bottom: 28px; right: 28px;
            width: 62px; height: 62px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 0;
            text-decoration: none;
            z-index: 998;
            box-shadow: 0 6px 24px rgba(37,211,102,0.45);
            animation: waPulse 2.5s infinite;
            transition: transform 0.2s;
        }
        .wa-float:hover { transform: scale(1.12); }
        @keyframes waPulse {
            0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
            50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
        }

        /* ═══════════════════════════════════════════════════════
           MOBILE UX FIXES — melex page
           ═══════════════════════════════════════════════════════ */
        @media (max-width: 768px) {
            /* Trust bar — keep the single-column stack from the 900px breakpoint
               (5 items × 2-col grid leaves the 5th orphaned in row 3 = bad). */
            .trust-bar { padding: 10px 16px; }
            .trust-item { padding: 13px 4px; gap: 14px; }
            .trust-text span { font-size: 0.78rem; }
            .review-meta { font-size: 0.75rem; }
            .pill { padding: 0 6px 0 0; font-size: 0.78rem; gap: 8px; }
            .pill-icon { width: 38px; height: 38px; padding: 3px; }

            /* Centre everything in the hero + every section header on narrow
               screens — left-aligned text in a single visual column looks
               off-balance, centred reads cleaner on a 360px viewport. We
               target individual header elements (not .section-inner) so
               tables, pricing rows, FAQ lists etc. keep their native align. */
            .hero-content,
            .hero-h1,
            .hero-sub,
            .avail-strip { text-align: center; }
            .hero-sub {
                margin-left: auto;
                margin-right: auto;
                /* Pull text up out of the bright sky area at the top of the
                   mobile photo. Without this the sub paragraph sits right on
                   the sunlit windows and the white text washes out. */
                background: linear-gradient(180deg, rgba(7,11,19,0.55) 0%, rgba(7,11,19,0.7) 100%);
                padding: 14px 18px;
                border-radius: 14px;
                backdrop-filter: blur(3px);
                -webkit-backdrop-filter: blur(3px);
                box-shadow: 0 8px 24px rgba(0,0,0,0.25);
            }
            .hero-h1 {
                text-shadow: 0 2px 16px rgba(0,0,0,0.55);
            }
            .avail-strip { justify-content: center; }
            .hero-pills { justify-content: center; }
            .hero-btns,
            .cta-btns { justify-content: center; }

            .section-tag {
                display: block;
                width: fit-content;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }
            .section-h2 { text-align: center; }
            .section-sub {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            /* Form iOS zoom prevention */
            input, select, textarea { font-size: 16px; }
            /* Pricing table — smaller font + tighter padding */
            .pricing-table { font-size: 0.78rem; }
            .pricing-table th, .pricing-table td { padding: 10px 8px; }
        }
        @media (max-width: 600px) {
            /* Full-width buttons for better tap targets */
            .btn-wa, .btn-outline { width: 100%; padding: 16px 20px; }
            /* Hero reduced min-height on short phones */
            #hero { min-height: 90vh; }
        }
        @media (max-width: 480px) {
            /* Hero on tiny phones */
            #hero { padding: 80px 16px 40px; min-height: 85vh; }
            /* Pricing table — even smaller on tiny screens */
            .pricing-table { font-size: 0.72rem; }
            .pricing-table th, .pricing-table td { padding: 8px 6px; }
        }
