/* BLEND — styles for partnership.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 {
            scroll-behavior: smooth;
        }

        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 75% 55% at 50% -5%, rgba(212,175,55,0.09) 0%, transparent 65%), radial-gradient(ellipse 55% 45% at 90% 50%, rgba(180,140,30,0.05) 0%, transparent 60%), radial-gradient(ellipse 40% 35% at 5% 85%, 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;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
            align-items: center;
        }

            .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);
                }

        .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-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 {
            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);
            }

        /* ===================== PAGE ===================== */
        .page {
            position: relative;
            z-index: 1;
            padding: 110px 0 0;
        }

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

        /* ===================== UTILITIES ===================== */
        .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-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.7;
            margin-bottom: 16px;
            display: block;
        }

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

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

        /* ===================== HERO ===================== */
        .hero {
            text-align: center;
            padding: 80px 0 90px;
            position: relative;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 7px 18px;
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 40px;
            background: rgba(212,175,55,0.04);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-2);
            margin-bottom: 40px;
            animation: fadeUp 0.7s ease both;
        }

            .hero-eyebrow::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: var(--gold-2);
                box-shadow: 0 0 8px var(--gold-2);
                animation: pulse 2s infinite;
            }

        @keyframes pulse {
            0%,100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .5;
                transform: scale(.7)
            }
        }

        .hero-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(34px, 5.5vw, 64px);
            font-weight: 300;
            letter-spacing: -1px;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeUp 0.8s ease 0.08s both;
        }

        .hero-desc {
            font-size: clamp(14px, 1.6vw, 17px);
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.85;
            max-width: 540px;
            margin: 0 auto 52px;
            animation: fadeUp 0.8s ease 0.16s both;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 0.8s ease 0.24s both;
        }

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

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

        .btn-ghost {
            padding: 15px 38px;
            border-radius: 50px;
            background: transparent;
            color: var(--gold-1);
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 500;
            border: 1px solid rgba(212,175,55,0.3);
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.35s;
            font-family: 'Inter', sans-serif;
        }

            .btn-ghost:hover {
                border-color: var(--gold-1);
                background: rgba(212,175,55,0.07);
                transform: translateY(-2px);
            }

        /* hero stats strip */
        .hero-stats {
            display: flex;
            gap: 0;
            justify-content: center;
            margin-top: 72px;
            border: 1px solid rgba(212,175,55,0.1);
            border-radius: 20px;
            background: rgba(255,255,255,0.025);
            backdrop-filter: blur(16px);
            animation: fadeUp 0.8s ease 0.3s both;
        }

        .hero-stat {
            flex: 1;
            padding: 32px 24px;
            text-align: center;
            position: relative;
        }

            .hero-stat + .hero-stat::before {
                content: '';
                position: absolute;
                left: 0;
                top: 20%;
                bottom: 20%;
                width: 1px;
                background: rgba(212,175,55,0.1);
            }

        .stat-value {
            font-family: 'Cinzel', serif;
            font-size: clamp(26px, 3.5vw, 38px);
            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: 8px;
        }

        .stat-label {
            font-size: 11px;
            letter-spacing: 1.5px;
            color: var(--text-dim);
            text-transform: uppercase;
        }

        /* ===================== BENEFITS ===================== */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

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

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

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

        .benefit-card {
            padding: 40px 32px;
            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.35), transparent);
                opacity: 0;
                transition: opacity 0.4s;
            }

            .benefit-card:hover {
                border-color: var(--glass-border-hover);
                transform: translateY(-5px);
                box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 40px rgba(212,175,55,0.07);
            }

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

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

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

        .benefit-title {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.2px;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

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

        /* ===================== HOW IT WORKS ===================== */
        .steps-section {
            padding: 100px 0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            margin-top: 60px;
        }

            .steps-grid::before {
                content: '';
                position: absolute;
                top: 28px;
                left: calc(12.5% + 4px);
                right: calc(12.5% + 4px);
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), rgba(212,175,55,0.2), transparent);
                z-index: 0;
            }

        .step {
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 1px solid rgba(212,175,55,0.25);
            background: var(--bg-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            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;
            box-shadow: 0 0 20px rgba(212,175,55,0.15);
            position: relative;
        }

            .step-num::after {
                content: attr(data-num);
                position: absolute;
                inset: 0;
                background: var(--bg-deep);
                border-radius: 50%;
                border: 1px solid rgba(212,175,55,0.22);
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: 'Cinzel', serif;
                font-size: 14px;
                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;
            }

        .step-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 1px solid rgba(212,175,55,0.22);
            background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.04));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: 'Cinzel', serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--gold-2);
            box-shadow: 0 0 20px rgba(212,175,55,0.1);
        }

        .step-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

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

        /* ===================== TIERS ===================== */
        .tiers-section {
            padding: 100px 0;
        }

        /* Horizontal, swipeable plans (mirrors the main page's phone/brand
           carousels): centred when all three fit, drag/swipe when they don't. */
        .tiers-carousel {
            display: flex;
            justify-content: safe center;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
            margin-top: 60px;
            /* Tiny edge fade — sits inside the track padding so the three cards
               are never dimmed on desktop, but hints "more" while swiping. */
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
        }
        .tiers-carousel::-webkit-scrollbar { display: none; }
        .tiers-carousel.dragging { cursor: grabbing; }
        .tiers-track {
            display: flex;
            gap: 20px;
            flex: 0 0 auto;
            padding: 10px 26px 26px;
        }
        .tiers-carousel .tier-card {
            flex: 0 0 300px;
            max-width: 82vw;
            scroll-snap-align: center;
        }
        .tiers-carousel.dragging .tier-card,
        .tiers-carousel.dragging * { cursor: grabbing; }
        .tiers-hint {
            display: none;
            text-align: center;
            margin-top: 8px;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--text-dim);
        }
        @media (max-width: 980px) { .tiers-hint { display: block; } }

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

            .tier-card.featured {
                border-color: rgba(212,175,55,0.3);
                background: rgba(212,175,55,0.04);
            }

                .tier-card.featured::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 2px;
                    background: linear-gradient(90deg, transparent, var(--gold-2), var(--gold-1), transparent);
                }

            .tier-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.06);
            }

        .tier-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: rgba(212,175,55,0.12);
            color: var(--gold-2);
            border: 1px solid rgba(212,175,55,0.2);
            margin-bottom: 24px;
        }

            .tier-badge.hot {
                background: rgba(212,175,55,0.18);
                color: var(--gold-1);
                border-color: rgba(212,175,55,0.35);
            }

        .tier-name {
            font-family: 'Cinzel', serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .tier-tagline {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .tier-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 13px;
            margin-bottom: 36px;
        }

            .tier-features li {
                display: flex;
                align-items: flex-start;
                gap: 10px;
                font-size: 13px;
                font-weight: 300;
                color: var(--text-muted);
                line-height: 1.5;
            }

                .tier-features li::before {
                    content: '';
                    flex-shrink: 0;
                    width: 14px;
                    height: 14px;
                    margin-top: 1px;
                    border-radius: 50%;
                    border: 1px solid rgba(212,175,55,0.35);
                    background: rgba(212,175,55,0.08);
                    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%23d4af37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
                    background-size: 10px;
                    background-repeat: no-repeat;
                    background-position: center;
                }

        .tier-divider {
            height: 1px;
            background: rgba(212,175,55,0.08);
            margin-bottom: 36px;
        }

        /* ===================== TESTIMONIAL / QUOTE ===================== */
        .quote-section {
            padding: 80px 0;
        }

        .quote-card {
            max-width: 780px;
            margin: 0 auto;
            padding: 56px 64px;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(212,175,55,0.12);
            background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, rgba(255,255,255,0.02) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

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

        .quote-mark {
            font-family: 'Cinzel', serif;
            font-size: 80px;
            line-height: 0.5;
            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: 32px;
            opacity: 0.4;
        }

        .quote-text {
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 300;
            line-height: 1.75;
            color: var(--text-primary);
            margin-bottom: 32px;
            font-style: italic;
        }

        .quote-author {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.7;
        }

        /* ===================== APPLICATION FORM ===================== */
        .form-section {
            padding: 100px 0;
        }

        .form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 60px;
            align-items: start;
        }

        .form-intro {
            padding-top: 8px;
        }

        .form-intro-title {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 300;
            letter-spacing: -0.3px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .form-intro-desc {
            font-size: 14px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.85;
            margin-bottom: 36px;
        }

        .form-perks {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .form-perk {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .form-perk-dot {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            flex-shrink: 0;
            border: 1px solid rgba(212,175,55,0.2);
            background: rgba(212,175,55,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .form-perk-dot svg {
                width: 13px;
                height: 13px;
                stroke: var(--gold-2);
                fill: none;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

        .form-perk-text {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* The card form */
        .application-card {
            padding: 48px 44px;
            border-radius: var(--radius-card);
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

            .application-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);
            }

        .form-title {
            font-size: 18px;
            font-weight: 500;
            letter-spacing: -0.2px;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .form-subtitle {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 16px;
        }

            .form-group.full {
                grid-column: 1 / -1;
            }

            .form-group.no-mb {
                margin-bottom: 0;
            }

        .form-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-dim);
        }

        .form-input, .form-select, .form-textarea {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(212,175,55,0.12);
            border-radius: 12px;
            padding: 13px 16px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 300;
            transition: border-color 0.25s, box-shadow 0.25s;
            width: 100%;
            -webkit-appearance: none;
        }

            .form-input::placeholder, .form-textarea::placeholder {
                color: var(--text-dim);
            }

            .form-input:focus, .form-select:focus, .form-textarea:focus {
                outline: none;
                border-color: rgba(212,175,55,0.35);
                box-shadow: 0 0 0 3px rgba(212,175,55,0.06);
            }

        .form-select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='rgba(212,175,55,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 16px;
            padding-right: 40px;
        }

            .form-select option {
                background: #11151d;
                color: var(--text-primary);
            }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
            line-height: 1.6;
        }

        .form-divider {
            height: 1px;
            background: rgba(212,175,55,0.07);
            margin: 8px 0 20px;
        }

        .form-submit {
            width: 100%;
            padding: 15px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
            color: #0b0d11;
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.35s;
            box-shadow: 0 4px 24px rgba(212,175,55,0.28);
            margin-top: 8px;
        }

            .form-submit:hover {
                box-shadow: 0 8px 36px rgba(212,175,55,0.45);
                transform: translateY(-2px);
            }

        .form-note {
            font-size: 10px;
            color: var(--text-dim);
            text-align: center;
            margin-top: 14px;
            line-height: 1.6;
            letter-spacing: 0.3px;
        }

        /* Success state */
        .form-success {
            display: none;
            text-align: center;
            padding: 32px 16px;
        }

            .form-success.show {
                display: block;
            }

        .success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 1px solid rgba(212,175,55,0.3);
            background: rgba(212,175,55,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

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

        .success-title {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 12px;
        }

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

        /* ===================== FAQ ===================== */
        .faq-section {
            padding: 80px 0 100px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: start; /* don't stretch a row-neighbour when one item opens */
            gap: 12px;
            margin-top: 52px;
        }

        .faq-item {
            border-radius: 14px;
            border: 1px solid rgba(212,175,55,0.1);
            background: rgba(255,255,255,0.02);
            overflow: hidden;
            transition: border-color 0.3s;
        }

            .faq-item.open {
                border-color: rgba(212,175,55,0.22);
            }

        .faq-q {
            width: 100%;
            background: none;
            border: none;
            cursor: pointer;
            padding: 20px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            text-align: left;
        }

        .faq-q-text {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-primary);
            letter-spacing: 0.1px;
        }

        .faq-chevron {
            width: 26px;
            height: 26px;
            border-radius: 7px;
            flex-shrink: 0;
            border: 1px solid rgba(212,175,55,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

            .faq-chevron svg {
                width: 11px;
                height: 11px;
                stroke: var(--gold-2);
                fill: none;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
                transition: transform 0.3s;
            }

        .faq-item.open .faq-chevron {
            background: rgba(212,175,55,0.08);
            border-color: rgba(212,175,55,0.3);
        }

            .faq-item.open .faq-chevron svg {
                transform: rotate(180deg);
            }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
            padding: 0 22px;
        }

        .faq-item.open .faq-a {
            max-height: 420px;
            padding-bottom: 20px;
        }

        .faq-a-text {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.85;
            border-top: 1px solid rgba(212,175,55,0.07);
            padding-top: 14px;
        }

        /* ===================== 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-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-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.6;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
        }

        .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);
                }

        /* ===================== 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;
            }

            .reveal.d4 {
                transition-delay: 0.4s;
            }

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

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

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

            .nav-hamburger {
                display: flex;
            }

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

            .form-wrapper {
                gap: 40px;
            }

            .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) {
            nav {
                padding: 0 28px;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

                .steps-grid::before {
                    display: none;
                }

            .form-wrapper {
                grid-template-columns: 1fr;
            }

            .form-intro {
                padding-top: 0;
            }

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

            .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;
            }

            .quote-card {
                padding: 40px 36px;
            }
        }

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

            .mobile-menu {
                top: 64px;
            }

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

            .container {
                padding: 0 20px;
            }

            .hero {
                padding: 56px 0 64px;
            }

            .hero-stats {
                flex-direction: column;
            }

            .hero-stat + .hero-stat::before {
                top: 0;
                left: 20%;
                right: 20%;
                bottom: auto;
                height: 1px;
                width: auto;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-ghost {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

            .section {
                padding: 70px 0;
            }

            .steps-section {
                padding: 70px 0;
            }

            .tiers-section {
                padding: 70px 0;
            }

            .form-section {
                padding: 70px 0;
            }

            .faq-section {
                padding: 60px 0 70px;
            }

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

            .benefit-card {
                padding: 28px 22px;
            }

            .steps-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .application-card {
                padding: 28px 22px;
            }

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

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

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

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

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

            .quote-card {
                padding: 32px 24px;
            }
        }

        @media (max-width: 420px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats .hero-stat {
                padding: 24px 20px;
            }
        }

        /* Georgian font */
        body.lang-ka, body.lang-ka .section-label, body.lang-ka .hero-eyebrow,
        body.lang-ka .hero-title, body.lang-ka .hero-desc, body.lang-ka .btn-primary,
        body.lang-ka .btn-ghost, body.lang-ka .benefit-title, body.lang-ka .benefit-desc,
        body.lang-ka .step-title, body.lang-ka .step-desc, body.lang-ka .tier-name,
        body.lang-ka .tier-tagline, body.lang-ka .tier-features li, body.lang-ka .tiers-hint,
        body.lang-ka .form-title, body.lang-ka .form-subtitle, body.lang-ka .form-label,
        body.lang-ka .form-input, body.lang-ka .form-select, body.lang-ka .form-textarea,
        body.lang-ka .form-submit, body.lang-ka .faq-q-text, body.lang-ka .faq-a-text,
        body.lang-ka .lang-btn, body.lang-ka .footer-col-links a,
        body.lang-ka .footer-tagline-text, body.lang-ka .footer-copy {
            font-family: 'Noto Sans Georgian', sans-serif;
        }

/* ===================== BECOME A PARTNER (self-service CTA) ===================== */
.apply-cta {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 40px;
    border-radius: 24px;
    border: 1px solid rgba(212,175,55,0.18);
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(212,175,55,0.10), transparent 60%),
        rgba(255,255,255,0.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.apply-cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 600;
    margin: 16px 0 14px;
    line-height: 1.15;
}
.apply-cta-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 32px;
    font-weight: 300;
}
.apply-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #0b0d11;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 34px rgba(212,175,55,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.apply-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(212,175,55,0.45);
}
.apply-cta-note {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    font-weight: 300;
}
body.lang-ka .apply-cta-title,
body.lang-ka .apply-cta-desc,
body.lang-ka .apply-cta-btn,
body.lang-ka .apply-cta-note { font-family: 'Noto Sans Georgian', sans-serif; }

/* ===================== AI SECTION ===================== */
.ai-section { padding: 40px 0; }
.ai-card {
    position: relative;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
    padding: 52px 44px;
    border-radius: 24px;
    background:
        radial-gradient(130% 150% at 0% 0%, rgba(212, 175, 55, 0.10), transparent 55%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: center;
}
.ai-glow {
    position: absolute;
    top: -45%;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 65%);
    pointer-events: none;
}
.ai-badge {
    position: relative;
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 20px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-1, #f5d77a);
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.06);
}
.ai-title {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #c79b34 0%, #f0d588 30%, #fff6da 50%, #f0d588 70%, #c79b34 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: aiShimmer 7s linear infinite;
}
@keyframes aiShimmer { to { background-position: 200% center; } }
.ai-lead {
    position: relative;
    max-width: 640px;
    margin: 0 auto 36px;
    color: rgba(240, 234, 216, 0.72);
    font-size: 16px;
    line-height: 1.65;
}
.ai-features {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 34px;
    text-align: left;
    margin-bottom: 30px;
}
.ai-feature { position: relative; padding-left: 22px; }
.ai-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5d77a, #d4af37);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
.ai-feature-title { font-weight: 700; color: #f0ead8; margin-bottom: 5px; font-size: 15px; }
.ai-feature p { margin: 0; color: rgba(240, 234, 216, 0.6); font-size: 14px; line-height: 1.55; }
.ai-note { position: relative; margin: 0; font-size: 13px; font-style: italic; color: rgba(240, 234, 216, 0.55); }
@media (max-width: 700px) {
    .ai-card { padding: 38px 22px; }
    .ai-features { grid-template-columns: 1fr; gap: 20px; }
}

/* ===================== ALSO INCLUDED (unified panel) ===================== */
/* One connected surface — not three cards. Gold top hairline, internal glow,
   circular icons, thin vertical dividers between the three perks. */
.included-panel {
    position: relative;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    border: 1px solid rgba(212,175,55,0.16);
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(212,175,55,0.08), transparent 60%),
        rgba(255,255,255,0.025);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.included-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), rgba(245,215,122,0.78), rgba(212,175,55,0.5), transparent);
}
.included-glow {
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 440px;
    background: radial-gradient(circle, rgba(212,175,55,0.10), transparent 65%);
    pointer-events: none;
}
.included-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.included-item {
    position: relative;
    padding: 48px 36px;
    text-align: center;
}
.included-item + .included-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212,175,55,0.18), transparent);
}
.included-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.25);
    background: rgba(212,175,55,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 0 22px rgba(212,175,55,0.08);
}
.included-icon svg {
    width: 23px;
    height: 23px;
    stroke: var(--gold-2);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.included-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.included-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 260px;
    margin: 0 auto;
}
body.lang-ka .included-title,
body.lang-ka .included-desc {
    font-family: 'Noto Sans Georgian', sans-serif;
}
@media (max-width: 767px) {
    .included-row { grid-template-columns: 1fr; }
    .included-item { padding: 34px 28px; }
    .included-item + .included-item::before {
        left: 22%;
        right: 22%;
        top: 0;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212,175,55,0.18), transparent);
    }
}
