/* BLEND — styles for contact.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 ===================== */
        .page {
            position: relative;
            z-index: 1;
            padding: 120px 0 80px;
        }

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

        /* ===================== PAGE HEADER ===================== */
        .page-header {
            text-align: center;
            margin-bottom: 72px;
            animation: fadeUp 0.8s ease both;
        }

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

        .page-title {
            font-size: clamp(30px, 5vw, 54px);
            font-weight: 300;
            letter-spacing: -0.5px;
            line-height: 1.1;
            margin-bottom: 16px;
        }

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

        .page-desc {
            font-size: 15px;
            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: 20px auto 0;
        }

        /* ===================== MAIN GRID ===================== */
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 1.55fr;
            gap: 28px;
            align-items: start;
            margin-bottom: 80px;
        }

        /* ===================== CONTACT INFO CARDS ===================== */
        .info-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .info-card {
            padding: 28px 26px;
            border-radius: var(--radius-card);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
            display: flex;
            align-items: flex-start;
            gap: 18px;
            text-decoration: none;
            transition: all 0.35s;
            position: relative;
            overflow: hidden;
        }

            .info-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.35s;
            }

            .info-card:hover {
                border-color: var(--glass-border-hover);
                background: rgba(212,175,55,0.04);
                transform: translateX(4px);
                box-shadow: 0 12px 40px rgba(0,0,0,0.2);
            }

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

        .info-icon {
            width: 46px;
            height: 46px;
            border-radius: 13px;
            border: 1px solid rgba(212,175,55,0.18);
            background: rgba(212,175,55,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

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

        .info-text {
            flex: 1;
        }

        .info-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 5px;
            display: block;
        }

        .info-value {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-primary);
            letter-spacing: 0.1px;
        }

        .info-sub {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-muted);
            margin-top: 3px;
            display: block;
        }

        /* Social row inside info col */
        .social-card {
            padding: 24px 26px;
            border-radius: var(--radius-card);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
        }

        .social-card-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 16px;
            display: block;
        }

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

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

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

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

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

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

            .form-card::after {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 65%);
                pointer-events: none;
            }

        .form-title {
            font-size: 20px;
            font-weight: 400;
            letter-spacing: -0.2px;
            color: var(--text-primary);
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }

        .form-subtitle {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 36px;
            position: relative;
            z-index: 1;
        }

        .form-body {
            position: relative;
            z-index: 1;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px;
        }

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

            .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 {
            padding: 14px 18px;
            border-radius: 14px;
            border: 1px solid rgba(212,175,55,0.14);
            background: rgba(255,255,255,0.03);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 300;
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
            width: 100%;
        }

            .form-input::placeholder,
            .form-textarea::placeholder {
                color: rgba(240,234,216,0.2);
            }

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

        .form-select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='%23d4af37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 16px;
            cursor: pointer;
        }

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

        .form-textarea {
            resize: vertical;
            min-height: 130px;
            line-height: 1.7;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            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: 2.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            margin-top: 24px;
            transition: all 0.3s;
            box-shadow: 0 4px 24px rgba(212,175,55,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

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

            .form-submit:active {
                transform: translateY(0);
            }

            .form-submit svg {
                width: 15px;
                height: 15px;
                stroke: #0b0d11;
                fill: none;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

        /* Success state */
        .form-success {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 0 20px;
            gap: 16px;
        }

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

        .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-bottom: 8px;
            animation: popIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

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

        @keyframes popIn {
            from {
                transform: scale(0.6);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-title {
            font-size: 18px;
            font-weight: 400;
            color: var(--gold-1);
        }

        .success-desc {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 320px;
        }

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

        /* ===================== FAQ ===================== */
        .faq-header {
            text-align: center;
            margin-bottom: 44px;
        }

        .faq-title {
            font-size: clamp(22px, 3vw, 36px);
            font-weight: 300;
            letter-spacing: -0.4px;
        }

        .faq-list {
            max-width: 720px;
            margin: 0 auto 80px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            overflow: hidden;
            transition: border-color 0.3s;
        }

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

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

        .faq-q-text {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: var(--text-primary);
            letter-spacing: 0.1px;
        }

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

            .faq-chevron svg {
                width: 12px;
                height: 12px;
                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 24px;
        }

        .faq-item.open .faq-a {
            max-height: 200px;
            padding-bottom: 22px;
        }

        .faq-a-text {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.8;
            border-top: 1px solid rgba(212,175,55,0.08);
            padding-top: 16px;
        }

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

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

        /* ===================== REVEAL ===================== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            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;
            }

        /* ===================== 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 .page-title,
        body.lang-ka .page-desc,
        body.lang-ka .info-label,
        body.lang-ka .info-value,
        body.lang-ka .info-sub,
        body.lang-ka .social-card-label,
        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-title,
        body.lang-ka .faq-q-text,
        body.lang-ka .faq-a-text,
        body.lang-ka .success-title,
        body.lang-ka .success-desc,
        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: 1100px) {
            .main-grid {
                gap: 20px;
            }
        }

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

            .info-col {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .social-card {
                grid-column: 1 / -1;
            }

            .page {
                padding: 108px 0 70px;
            }
        }

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

            .container {
                padding: 0 20px;
            }

            .page {
                padding: 100px 0 60px;
            }

            .page-header {
                margin-bottom: 48px;
            }

            .form-card {
                padding: 28px 20px;
            }

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

            .info-col {
                grid-template-columns: 1fr;
            }

            .social-card {
                grid-column: auto;
            }

            .faq-list {
                padding: 0 0 40px;
            }
        }

        @media (max-width: 400px) {
            .page-title {
                font-size: 28px;
            }

            .form-card {
                padding: 22px 16px;
            }
        }
