/* BLEND — styles for download.html (foundation will move to main.css) */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --gold-1: #f5d77a;
            --gold-2: #d4af37;
            --gold-3: #b8942e;
            --bg-deep: #0b0d11;
            --bg-mid: #11151d;
            --glass-bg: rgba(255,255,255,0.035);
            --glass-border: rgba(212,175,55,0.12);
            --glass-border-hover: rgba(212,175,55,0.32);
            --text-primary: #f0ead8;
            --text-muted: rgba(240,234,216,0.45);
            --text-dim: rgba(240,234,216,0.25);
            --radius-card: 20px;
            --radius-xl: 36px;
        }

        html, body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            background: var(--bg-deep);
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-deep);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold-3);
            border-radius: 2px;
        }

        /* ===================== BACKGROUND ===================== */
        .bg-canvas {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(212,175,55,0.09) 0%, transparent 65%), radial-gradient(ellipse 50% 40% at 90% 60%, rgba(180,140,30,0.05) 0%, transparent 60%), radial-gradient(ellipse 45% 35% at 5% 80%, rgba(100,80,20,0.06) 0%, transparent 55%), linear-gradient(170deg, #11151d 0%, #0b0d11 100%);
        }

        .bg-noise {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 180px;
        }

        /* ===================== NAV ===================== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 48px;
            background: rgba(11,13,17,0.6);
            border-bottom: 1px solid rgba(212,175,55,0.06);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
        }

        .nav-brand {
            font-family: 'Cinzel', serif;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 3px;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(212,175,55,0.12);
            border-radius: 40px;
            padding: 4px;
        }

        .lang-btn {
            padding: 5px 13px;
            border-radius: 30px;
            border: none;
            background: transparent;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.25s;
            line-height: 1;
        }

            .lang-btn.active {
                background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
                color: #0b0d11;
            }

            .lang-btn:not(.active):hover {
                color: var(--gold-1);
            }

        /* ===================== NAV LINKS ===================== */
        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

            .nav-links a {
                font-size: 11px;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: var(--text-muted);
                text-decoration: none;
                transition: color 0.3s;
                font-weight: 400;
                white-space: nowrap;
            }

                .nav-links a:hover {
                    color: var(--gold-1);
                }

                .nav-links a.active {
                    color: var(--gold-1);
                }

        /* ===================== HAMBURGER ===================== */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 6px;
            border-radius: 8px;
            transition: background 0.2s;
            margin-left: 4px;
        }

            .nav-hamburger:hover {
                background: rgba(212,175,55,0.08);
            }

            .nav-hamburger span {
                display: block;
                width: 20px;
                height: 1.5px;
                background: var(--gold-2);
                transition: all 0.3s ease;
                border-radius: 2px;
                transform-origin: center;
            }

            .nav-hamburger.open span:nth-child(1) {
                transform: translateY(6.5px) rotate(45deg);
            }

            .nav-hamburger.open span:nth-child(2) {
                opacity: 0;
                transform: scaleX(0);
            }

            .nav-hamburger.open span:nth-child(3) {
                transform: translateY(-6.5px) rotate(-45deg);
            }

        /* ===================== MOBILE MENU ===================== */
        .mobile-menu {
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            z-index: 98;
            background: rgba(11,13,17,0.98);
            border-bottom: 1px solid rgba(212,175,55,0.1);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            transform: translateY(-8px);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease;
            padding: 20px 28px 28px;
        }

            .mobile-menu.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .mobile-menu ul {
                list-style: none;
                display: flex;
                flex-direction: column;
            }

                .mobile-menu ul li a {
                    display: block;
                    padding: 14px 0;
                    font-size: 11px;
                    letter-spacing: 2.5px;
                    text-transform: uppercase;
                    color: var(--text-muted);
                    text-decoration: none;
                    transition: color 0.25s;
                    border-bottom: 1px solid rgba(212,175,55,0.07);
                    font-weight: 400;
                    font-family: 'Inter', sans-serif;
                }

                .mobile-menu ul li:last-child a {
                    border-bottom: none;
                }

                .mobile-menu ul li a:hover {
                    color: var(--gold-1);
                }

        .mobile-menu-cta {
            margin-top: 20px;
            display: inline-block;
            padding: 11px 28px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
            color: #0b0d11;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(212,175,55,0.25);
        }

            .mobile-menu-cta:hover {
                box-shadow: 0 6px 30px rgba(212,175,55,0.4);
                transform: translateY(-1px);
            }

        @media (max-width: 1023px) {
            .nav-links {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }
        }

        @media (max-width: 899px) {
            nav {
                padding: 0 28px;
            }
        }

        @media (max-width: 599px) {
            nav {
                padding: 0 20px;
                height: 64px;
            }

            .mobile-menu {
                top: 64px;
            }

            .lang-btn {
                padding: 4px 10px;
                font-size: 9px;
            }
        }

        /* ===================== FULL FOOTER ===================== */
        .blend-footer {
            padding: 80px 0 0;
            border-top: 1px solid rgba(212,175,55,0.08);
            position: relative;
            z-index: 1;
        }

            .blend-footer::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
            }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 64px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .footer-brand-name {
            font-family: 'Cinzel', serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 4px;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 14px;
        }

        .footer-tagline-text {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: var(--text-dim);
            font-weight: 300;
            line-height: 1.7;
            max-width: 240px;
            display: block;
            margin-bottom: 28px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 1px solid rgba(212,175,55,0.15);
            background: rgba(212,175,55,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }

            .footer-social-btn:hover {
                border-color: rgba(212,175,55,0.4);
                background: rgba(212,175,55,0.1);
                transform: translateY(-2px);
            }

            .footer-social-btn svg {
                width: 15px;
                height: 15px;
                stroke: var(--gold-2);
                fill: none;
                stroke-width: 1.5;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

        .footer-col-title {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.6;
            margin-bottom: 20px;
        }

        .footer-col-links {
            display: flex;
            flex-direction: column;
            gap: 13px;
            list-style: none;
        }

            .footer-col-links a {
                font-size: 13px;
                font-weight: 300;
                color: var(--text-muted);
                text-decoration: none;
                transition: color 0.25s;
                letter-spacing: 0.2px;
            }

                .footer-col-links a:hover {
                    color: var(--gold-1);
                }

        .footer-app-badges {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 12px;
            border: 1px solid rgba(212,175,55,0.15);
            background: rgba(212,175,55,0.04);
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

            .footer-badge:hover {
                border-color: rgba(212,175,55,0.35);
                background: rgba(212,175,55,0.08);
                transform: translateY(-2px);
            }

            .footer-badge svg {
                width: 18px;
                height: 18px;
                flex-shrink: 0;
                fill: var(--gold-2);
            }

        .footer-badge-text {
            display: flex;
            flex-direction: column;
        }

        .footer-badge-sub {
            font-size: 9px;
            font-weight: 400;
            letter-spacing: 1px;
            color: var(--text-dim);
            text-transform: uppercase;
        }

        .footer-badge-store {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            letter-spacing: 0.2px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copy {
            font-size: 11px;
            color: var(--text-dim);
            letter-spacing: 0.5px;
            font-weight: 300;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }

            .footer-bottom-links a {
                font-size: 11px;
                color: var(--text-dim);
                text-decoration: none;
                transition: color 0.25s;
                letter-spacing: 0.5px;
            }

                .footer-bottom-links a:hover {
                    color: var(--gold-1);
                }

        @media (max-width: 1023px) {
            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr;
                gap: 36px;
            }

            .footer-col-download {
                grid-column: 1 / -1;
            }

            .footer-app-badges {
                flex-direction: row;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 899px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-col-brand {
                grid-column: 1 / -1;
            }

            .footer-app-badges {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                gap: 16px;
            }
        }

        @media (max-width: 599px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-app-badges {
                flex-direction: column;
            }

            .footer-badge {
                max-width: 220px;
            }

            .footer-bottom-links {
                gap: 14px;
            }
        }

        .page {
            position: relative;
            z-index: 1;
            padding: 120px 0 100px;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ===================== HERO ===================== */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .hero-left {
            text-align: left;
        }

        .section-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.7;
            margin-bottom: 20px;
            display: block;
            animation: fadeUp 0.7s ease both;
        }

        .brand {
            font-family: 'Cinzel', serif;
            font-size: clamp(52px, 8vw, 100px);
            font-weight: 900;
            line-height: 0.9;
            background: linear-gradient(160deg, #f8e49a 0%, #d4af37 40%, #a8841f 75%, #c9a52e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 24px rgba(212,175,55,0.3)) drop-shadow(0 0 60px rgba(212,175,55,0.1));
            margin-bottom: 24px;
            animation: fadeUp 0.8s ease 0.05s both;
        }

        .hero-headline {
            font-size: clamp(16px, 2vw, 22px);
            font-weight: 300;
            letter-spacing: -0.2px;
            color: var(--text-primary);
            line-height: 1.45;
            margin-bottom: 16px;
            animation: fadeUp 0.8s ease 0.1s both;
        }

        .hero-desc {
            font-size: 14px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 44px;
            animation: fadeUp 0.8s ease 0.15s both;
        }

        /* ===================== STORE BADGES ===================== */
        .store-badges {
            display: flex;
            flex-direction: column;
            gap: 14px;
            animation: fadeUp 0.8s ease 0.2s both;
        }

        .store-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 24px;
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            text-decoration: none;
            transition: all 0.35s;
            position: relative;
            overflow: hidden;
        }

            .store-badge::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
                opacity: 0;
                transition: opacity 0.35s;
            }

            .store-badge:hover {
                border-color: var(--glass-border-hover);
                background: rgba(212,175,55,0.05);
                transform: translateY(-3px);
                box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.07);
            }

                .store-badge:hover::before {
                    opacity: 1;
                }

        .store-badge-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(212,175,55,0.07);
            border: 1px solid rgba(212,175,55,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

            .store-badge-icon svg {
                width: 22px;
                height: 22px;
                fill: var(--gold-2);
            }

        .store-badge-text {
            flex: 1;
        }

        .store-badge-sub {
            display: block;
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 3px;
        }

        .store-badge-name {
            display: block;
            font-size: 17px;
            font-weight: 500;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }

        .store-badge-arrow {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            border: 1px solid rgba(212,175,55,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.3s, background 0.3s;
        }

        .store-badge:hover .store-badge-arrow {
            border-color: rgba(212,175,55,0.35);
            background: rgba(212,175,55,0.08);
        }

        .store-badge-arrow svg {
            width: 12px;
            height: 12px;
            stroke: var(--gold-2);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ===================== PHONE MOCKUP ===================== */
        .hero-right {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeUp 0.9s ease 0.2s both;
        }

        .phone-wrap {
            position: relative;
            width: 260px;
        }

        .phone-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 400px;
            background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(212,175,55,0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .phone-mockup {
            width: 100%;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(212,175,55,0.07), 0 40px 80px rgba(0,0,0,0.55), 0 0 60px rgba(212,175,55,0.07);
            position: relative;
        }

            .phone-mockup::before {
                content: '';
                position: absolute;
                top: 0;
                left: 10%;
                right: 10%;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
            }

        .phone-notch {
            height: 28px;
            background: rgba(0,0,0,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .phone-notch::after {
                content: '';
                width: 70px;
                height: 10px;
                border-radius: 6px;
                background: rgba(0,0,0,0.6);
            }

        .phone-screen {
            aspect-ratio: 9/17;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
        }

        .phone-shot {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .phone-screen-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            border: 1px solid rgba(212,175,55,0.2);
            background: rgba(212,175,55,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.4;
        }

            .phone-screen-icon svg {
                width: 22px;
                height: 22px;
                fill: var(--gold-2);
            }

        .phone-screen-label {
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.35;
            font-family: 'Inter', sans-serif;
        }

        .phone-home-bar {
            height: 22px;
            background: rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .phone-home-bar::after {
                content: '';
                width: 70px;
                height: 4px;
                border-radius: 3px;
                background: rgba(255,255,255,0.15);
            }

        /* ===================== DIVIDER ===================== */
        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
            margin: 0 0 100px;
        }

        /* ===================== BENEFITS ===================== */
        .benefits-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: clamp(24px, 3.5vw, 40px);
            font-weight: 300;
            letter-spacing: -0.5px;
            line-height: 1.15;
            margin-bottom: 14px;
        }

        .gold-text {
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 14px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 440px;
            margin: 0 auto;
        }

        .glow-line {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, var(--gold-2), transparent);
            margin: 18px auto 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 100px;
        }

        .benefit-card {
            padding: 36px 28px;
            border-radius: var(--radius-card);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

            .benefit-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
                opacity: 0;
                transition: opacity 0.4s;
            }

            .benefit-card:hover {
                border-color: var(--glass-border-hover);
                transform: translateY(-4px);
                box-shadow: 0 20px 48px rgba(0,0,0,0.28), 0 0 24px rgba(212,175,55,0.05);
            }

                .benefit-card:hover::before {
                    opacity: 1;
                }

        .benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            border: 1px solid rgba(212,175,55,0.18);
            background: rgba(212,175,55,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

            .benefit-icon svg {
                width: 20px;
                height: 20px;
                stroke: var(--gold-2);
                fill: none;
                stroke-width: 1.5;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

            .benefit-icon.num-icon {
                font-family: 'Cinzel', serif;
                font-size: 15px;
                font-weight: 700;
                background: rgba(212,175,55,0.08);
                border-color: rgba(212,175,55,0.25);
            }

                .benefit-icon.num-icon span {
                    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                    line-height: 1;
                }

        .benefit-title {
            font-size: 15px;
            font-weight: 500;
            letter-spacing: -0.1px;
            color: var(--gold-1);
            margin-bottom: 10px;
        }

        .benefit-desc {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ===================== RATINGS STRIP ===================== */
        .ratings-strip {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 100px;
        }

        .rating-card {
            flex: 0 0 auto;
            padding: 28px 36px;
            border-radius: var(--radius-card);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
            text-align: center;
            min-width: 160px;
        }

        .rating-value {
            font-family: 'Cinzel', serif;
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 6px;
        }

        .rating-stars {
            display: flex;
            gap: 3px;
            justify-content: center;
            margin-bottom: 8px;
        }

            .rating-stars svg {
                width: 12px;
                height: 12px;
                fill: var(--gold-2);
            }

        .rating-label {
            font-size: 11px;
            font-weight: 400;
            color: var(--text-dim);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ===================== CTA BANNER ===================== */
        .cta-banner {
            padding: 72px 60px;
            border-radius: var(--radius-xl);
            background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid rgba(212,175,55,0.15);
            backdrop-filter: blur(20px);
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
        }

            .cta-banner::before {
                content: '';
                position: absolute;
                top: -1px;
                left: 10%;
                right: 10%;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
            }

            .cta-banner::after {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212,175,55,0.05) 0%, transparent 65%);
                pointer-events: none;
            }

        .cta-banner-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.7;
            margin-bottom: 20px;
            display: block;
        }

        .cta-banner h2 {
            font-size: clamp(22px, 3.5vw, 40px);
            font-weight: 300;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .cta-banner p {
            font-size: 14px;
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            padding: 15px 36px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
            color: #0b0d11;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 28px rgba(212,175,55,0.28);
        }

            .btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 36px rgba(212,175,55,0.42);
            }

            .btn-primary svg {
                width: 15px;
                height: 15px;
                fill: #0b0d11;
            }

        .btn-secondary {
            padding: 15px 36px;
            border-radius: 50px;
            background: transparent;
            color: var(--gold-1);
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid rgba(212,175,55,0.28);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

            .btn-secondary:hover {
                background: rgba(212,175,55,0.07);
                border-color: rgba(212,175,55,0.5);
                transform: translateY(-2px);
            }

            .btn-secondary svg {
                width: 15px;
                height: 15px;
                fill: var(--gold-1);
            }

        /* ===================== FOOTER ===================== */
        .page-footer {
            position: relative;
            z-index: 1;
            padding: 32px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(212,175,55,0.06);
            margin-top: 80px;
        }

        .footer-copy {
            font-size: 11px;
            color: var(--text-dim);
            letter-spacing: 0.5px;
        }

        .footer-tagline {
            font-size: 11px;
            color: var(--text-dim);
            letter-spacing: 0.5px;
        }

        /* ===================== SCROLL REVEAL ===================== */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .reveal.d1 {
                transition-delay: 0.1s;
            }

            .reveal.d2 {
                transition-delay: 0.2s;
            }

            .reveal.d3 {
                transition-delay: 0.3s;
            }

        /* ===================== ANIMATIONS ===================== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }

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

        /* ===================== GEORGIAN ===================== */
        body.lang-ka,
        body.lang-ka .section-label,
        body.lang-ka .hero-headline,
        body.lang-ka .hero-desc,
        body.lang-ka .section-title,
        body.lang-ka .section-desc,
        body.lang-ka .store-badge-sub,
        body.lang-ka .store-badge-name,
        body.lang-ka .benefit-title,
        body.lang-ka .benefit-desc,
        body.lang-ka .rating-label,
        body.lang-ka .cta-banner-label,
        body.lang-ka .cta-banner h2,
        body.lang-ka .cta-banner p,
        body.lang-ka .btn-primary,
        body.lang-ka .btn-secondary,
        body.lang-ka .footer-copy,
        body.lang-ka .footer-tagline,
        body.lang-ka .lang-btn {
            font-family: 'Noto Sans Georgian', sans-serif;
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 1023px) {
            .hero {
                gap: 48px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 24px;
            }

            .container {
                padding: 0 24px;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 56px;
                text-align: center;
            }

            .hero-left {
                text-align: center;
            }

            .section-label {
                text-align: center;
            }

            .store-badges {
                align-items: center;
            }

            .store-badge {
                max-width: 340px;
                width: 100%;
            }

            .hero-right {
                display: none;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .ratings-strip {
                gap: 14px;
            }

            .cta-banner {
                padding: 52px 28px;
            }

            .page-footer {
                padding: 24px;
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .page {
                padding: 100px 0 60px;
            }

            .container {
                padding: 0 20px;
            }

            .brand {
                font-size: clamp(48px, 16vw, 80px);
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .rating-card {
                min-width: 130px;
                padding: 22px 24px;
            }
        }
