/* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #111111;
            --bg-card: #1a1a1a;
            --bg-card-hover: #222222;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #707070;
            --accent: #c9a96e;
            --accent-light: #dfc08a;
            --accent-dark: #a8884d;
            --border: #2a2a2a;
            --gradient: linear-gradient(135deg, #c9a96e 0%, #e8d5a8 100%);
        }

        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        button { cursor: pointer; border: none; background: none; color: inherit; font-family: inherit; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: #000000;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .nav-inner {
            display: flex; align-items: center; justify-content: space-between;
            padding: 16px 24px; max-width: 1200px; margin: 0 auto;
            gap: 0;
        }
        .nav-logo {
            font-size: 1.5rem; font-weight: 700; letter-spacing: 2px;
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .nav-links { display: flex; gap: 32px; list-style: none; }
        /* Mobile overlay sidebar — hidden on desktop */
        .nav-links-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--bg-secondary);
            flex-direction: column;
            padding: 80px 30px 30px;
            gap: 0;
            transition: right 0.3s ease;
            border-left: 1px solid var(--border);
            z-index: 1002;
            overflow-y: auto;
            list-style: none;
            display: none;
        }
        .nav-links-mobile.open {
            display: flex !important;
            right: 0;
        }
        .nav-links a {
            font-size: 0.9rem; font-weight: 500; letter-spacing: 1px;
            text-transform: uppercase; color: var(--text-secondary);
            transition: color 0.3s; position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 2px; background: var(--accent);
            transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--accent); }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.active { color: var(--accent); }
        .nav-links a.active::after { width: 100%; }

        .nav-right {
            display: flex; align-items: center; gap: 16px;
        }
        .nav-social { display: flex; gap: 12px; }
        .nav-social a {
            width: 36px; height: 36px; border-radius: 50%;
            background: var(--bg-card); border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            transition: 0.3s; font-size: 0.8rem;
        }
        .nav-social a:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }

        /* ===== HAMBURGER MENU ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: 0.3s;
            border-radius: 2px;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile two-row nav wrapper — hidden on desktop */
        .nav-mobile-row {
            display: none !important;
        }
        .nav-top {
            display: flex; align-items: center; justify-content: space-between;
            width: 100%;
        }
        .nav-bottom {
            display: flex; align-items: center; justify-content: space-between;
            width: 100%;
            margin-top: 8px;
        }
        .nav-links-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: #000000;
            flex-direction: column;
            padding: 80px 30px 30px;
            gap: 0;
            transition: right 0.3s ease;
            border-left: 1px solid var(--border);
            z-index: 1000;
            overflow-y: auto;
            display: flex !important;
        }
        .nav-links-mobile.open {
            right: 0;
        }
        .nav-links-mobile a {
            display: block;
            padding: 14px 0;
            font-size: 1rem;
            border-bottom: 1px solid var(--border);
        }
        .nav-links a::after {
            display: none;
        }

        /* ===== RESPONSIVE — MOBILE ===== */
        @media (max-width: 768px) {
            /* Desktop nav row hidden, mobile row shown */
            .nav-desktop-row {
                display: none !important;
            }
            .nav-mobile-row {
                display: flex !important;
                flex-direction: column;
            }
            .nav {
                min-height: auto;
                padding: 0;
            }
            .nav-inner {
                padding: 12px 16px;
            }
            .nav-mobile-row .nav-top {
                align-items: center;
                justify-content: center;
                padding: 0;
            }
            .nav-mobile-row .nav-logo {
                font-size: 1.1rem;
                letter-spacing: 1px;
            }
            .nav-mobile-row .nav-bottom {
                align-items: center;
                justify-content: space-between;
                padding: 0;
                margin-top: 0;
            }
            .nav-mobile-row .hamburger {
                display: flex;
            }
            .nav-mobile-row .nav-social {
                display: flex;
                gap: 12px;
                margin-top: 0;
                padding-top: 0;
                border-top: none;
            }
            .nav-mobile-row .nav-social a {
                width: 36px;
                height: 36px;
                font-size: 0.8rem;
                border-radius: 50%;
                background: var(--bg-card);
                border: 1px solid var(--border);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.3s;
            }
            .nav-mobile-row .nav-social a:hover {
                background: var(--accent);
                color: #0a0a0a;
                border-color: var(--accent);
            }
            .hamburger {
                display: flex;
            }
             .nav-links-mobile {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #000000;
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 0;
                transition: right 0.3s ease;
                border-left: 1px solid var(--border);
                z-index: 1000;
                overflow-y: auto;
                display: none;
            }
            .nav-links-mobile.open {
                display: flex !important;
                right: 0;
            }
            .nav-links-mobile a {
                display: block;
                padding: 14px 0;
                font-size: 1rem;
                border-bottom: 1px solid var(--border);
            }
            .nav-links-mobile a::after {
                display: none;
            }
            .nav-social {
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid var(--border);
            }
            .nav-social a {
                width: 44px;
                height: 44px;
                font-size: 0.9rem;
            }
            .page-brand-img {
                width: min(260px, 40vw);
                max-height: none;
                margin-bottom: 20px;
            }
            .page-header {
                height: 60vh;
                min-height: 300px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 120px 0 30px;
                position: relative;
                overflow: hidden;
            }
            .page-header::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 150px;
                background: linear-gradient(to bottom, #0a0a0a, transparent);
                z-index: 1;
                pointer-events: none;
            }
            .page-title {
                font-size: 2.5rem;
            }
            .page-brand {
                font-size: 1.25rem;
                letter-spacing: 2px;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .pricing-card {
                padding: 30px 24px;
            }
            .request-form {
                gap: 16px;
            }
            .form-group input {
                padding: 12px 16px;
                font-size: 16px;
            }
            .form-submit {
                width: 100%;
                text-align: center;
                padding: 16px 24px;
            }
            .form-actions {
                flex-direction: column;
                justify-content: stretch;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-social {
                margin-top: 16px;
            }
            .footer-bottom {
                padding-top: 20px;
            }
            .form-submit,
            .pricing-card {
                min-height: 44px;
                min-width: 44px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .nav-inner {
                padding: 12px 16px;
            }
            .page-title {
                font-size: 2rem;
            }
            .page-brand {
                font-size: 1.25rem;
                letter-spacing: 4px;
            }
        }

        /* ===== PAGE HEADER ===== */
        .page-header {
            padding: 120px 0 40px;
            text-align: center;
            background: #000000;
        }
        .page-label {
            font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
            color: var(--accent); margin-bottom: 16px; font-weight: 600;
        }
        .page-title {
            font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700;
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
        }
        .page-brand {
            font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 300;
            letter-spacing: 12px; text-transform: uppercase;
            color: var(--accent); margin-bottom: 20px;
        }
        .page-desc {
            font-size: 1.1rem; color: var(--text-secondary);
            max-width: 600px; margin: 0 auto;
        }
        .page-brand-img {
            width: min(260px, 50vw);
            max-height: 156px;
            margin: 0 auto 20px;
            display: block;
        }
        .gold {
            color: var(--accent); font-weight: 600;
        }

        /* ===== PRICING SECTION ===== */
        .pricing {
            padding: 80px 0;
        }
        .pricing-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px; margin-bottom: 60px;
        }
        .pricing-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 8px; padding: 40px 30px; text-align: center;
            transition: transform 0.3s, border-color 0.3s;
        }
        .pricing-card:hover {
            transform: translateY(-5px); border-color: var(--accent-dark);
        }
        .pricing-icon {
            font-size: 2.5rem; margin-bottom: 20px;
        }
        .pricing-card h3 {
            font-size: 1.4rem; margin-bottom: 12px;
        }
        .pricing-card p {
            color: var(--text-secondary); font-size: 0.95rem;
            margin-bottom: 20px; line-height: 1.7;
        }
        .pricing-note {
            color: var(--accent); font-size: 0.85rem; font-weight: 600;
        }

        /* ===== REQUEST FORM ===== */
        .request-section {
            padding: 20px 0;
            background: #000000;
        }
.request-spacer {
            background: #000000; height: 50px;
        }
        .request-container {
            max-width: 600px; margin: 0 auto;
        }
        .request-header {
            text-align: center; margin-bottom: 40px;
        }
        .request-header h2 {
            font-size: 2rem; margin-bottom: 12px;
        }
        .request-header p {
            color: var(--text-secondary); font-size: 1rem;
        }
        .request-form {
            display: flex; flex-direction: column; gap: 20px;
        }
        .form-group { display: flex; flex-direction: column; gap: 6px; }
        .form-group label {
            font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
            text-transform: uppercase; color: var(--text-secondary);
        }
        .form-group input {
            padding: 14px 18px; background: var(--bg-card);
            border: 1px solid var(--border); border-radius: 6px;
            color: var(--text-primary); font-size: 1rem;
            font-family: inherit; transition: border-color 0.3s;
        }
        .form-group input:focus {
            outline: none; border-color: var(--accent);
        }
        .form-group input::placeholder {
            color: var(--text-muted);
        }
        .form-actions .form-submit {
            padding: 16px 40px; background: var(--gradient);
            color: #0a0a0a; font-weight: 600; font-size: 0.95rem;
            letter-spacing: 1px; text-transform: uppercase;
            border-radius: 6px; border: none; cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
            margin-left: auto;
        }
        .form-actions .form-submit:hover {
            transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
        }
        .form-actions .form-submit.disabled {
            opacity: 0.35;
            pointer-events: none;
        }
        .form-success {
            display: none; text-align: center; padding: 40px;
        }
        .form-success.show { display: block; }
        .form-success h3 {
            font-size: 1.5rem; color: var(--accent); margin-bottom: 12px;
        }
        .form-success p {
            color: var(--text-secondary);
        }
        .form-actions {
            display: flex; align-items: center; gap: 20px; justify-content: flex-end;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #000000; border-top: 1px solid var(--border);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px; margin-bottom: 40px;
        }
        .footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 16px; display: inline-block; }
        .footer-brand p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
        .footer h4 { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; color: var(--accent); }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: var(--text-secondary); font-size: 0.95rem; transition: color 0.3s; }
        .footer-links a:hover { color: var(--accent); }
        .footer-social { display: flex; gap: 12px; margin-top: 20px; }
        .footer-social a {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--bg-card); border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            transition: 0.3s; font-size: 0.9rem;
        }
        .footer-social a:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
        .footer-bottom {
            border-top: 1px solid var(--border); padding-top: 30px;
            text-align: center; color: var(--text-muted); font-size: 0.9rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 968px) {
            .nav-links { gap: 16px; }
            .nav-links a { font-size: 0.75rem; }
            .nav-inner {
                justify-content: space-between;
                padding: 12px 16px;
            }
            .nav-logo {
                font-size: 1.1rem;
            }
            .nav-right {
                display: flex; gap: 12px;
            }
            .nav-social { display: flex; gap: 10px; }
            .nav-social a {
                width: 32px; height: 32px; font-size: 0.7rem;
            }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
        .animate.visible { opacity: 1; transform: translateY(0); }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.97);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--accent-dark);
            padding: 16px 24px;
            z-index: 10001;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        .cookie-banner.visible {
            transform: translateY(0);
        }
        .cookie-banner.hidden {
            display: none;
        }
        .cookie-banner-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .cookie-banner p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
            flex: 1;
            min-width: 200px;
        }
        .cookie-banner a {
            color: var(--accent);
            text-decoration: underline;
        }
        .cookie-banner a:hover {
            color: var(--text-primary);
        }
        .cookie-accept-btn {
            background: var(--accent);
            color: #0a0a0a;
            border: none;
            padding: 10px 28px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            white-space: nowrap;
        }
        .cookie-accept-btn:hover {
            background: var(--accent-light);
        }
        /* ===== PRIVACY MODAL ===== */
        .privacy-modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: #000000;
            z-index: 2000;
            justify-content: center;
            align-items: flex-start;
            padding: 60px 20px;
            overflow-y: auto;
        }
        .privacy-modal-overlay.active {
            display: flex;
        }
        .privacy-modal-content {
            background: #000000;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 40px;
            max-width: 800px;
            width: 100%;
            position: relative;
            color: var(--text-primary);
        }
        .privacy-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .privacy-modal-close:hover {
            color: var(--accent);
        }
        .privacy-modal-content h2 {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        .privacy-modal-content h3 {
            font-size: 1.1rem;
            color: var(--accent-light);
            margin-top: 24px;
            margin-bottom: 10px;
        }
        .privacy-modal-content p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        .privacy-modal-content ul {
            list-style: disc;
            padding-left: 24px;
            color: var(--text-secondary);
        }
        .privacy-modal-content li {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 6px;
        }
        .privacy-modal-content a {
            color: var(--accent);
            text-decoration: underline;
        }

        /* ===== HIDE COPY TOOLTIP ===== */
        .copy-tooltip {
            display: none !important;
        }

body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } input, textarea { -webkit-user-select: text; -moz-user-select: text; user-select: text; } img { pointer-events: none; -webkit-user-drag: none; user-drag: none; }
