﻿:root {
    --bg-base: #0f172a; /* Deep Indigo / Slate 900 */
    --bg-glass: rgba(30, 41, 59, 0.6);
    --border-glass: rgba(217, 119, 6, 0.25);
    --gold: #d97706; /* Premium Amber/Gold */
    --indigo: #4338ca;
    --text-main: #f8fafc;
    --text-mut: #94a3b8;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Unique Graphic Background: Animated Mesh Gradient */
.mesh-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg-base); }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; mix-blend-mode: color-dodge; animation: moveBlob 25s infinite alternate; }
.color-1 { width: 50vw; height: 50vw; background: var(--indigo); top: -10%; left: -10%; }
.color-2 { width: 45vw; height: 45vw; background: var(--gold); bottom: -10%; right: -10%; animation-delay: -5s; }
.glass-overlay { position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>'); pointer-events: none; }

@keyframes moveBlob { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(10%, 15%) scale(1.1); } }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 900; letter-spacing: -0.01em; }
.brand-text { font-family: var(--font-heading); font-weight: 900; font-size: 2rem; }
a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--gold); }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, var(--gold), #fcd34d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Layout & Containers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.glass-panel { background: var(--bg-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border-glass); border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }

/* Buttons & Badges */
.tag-badge { display: inline-block; padding: 0.5rem 1.2rem; background: rgba(217, 119, 6, 0.1); border: 1px solid var(--gold); color: #fbbf24; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; font-family: var(--font-body); }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(90deg, var(--gold), #b45309); color: #fff !important; padding: 1.2rem 2.5rem; border-radius: 8px; font-weight: 700; font-size: 1.1rem; border: none; cursor: pointer; transition: 0.4s; font-family: var(--font-body); box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(217, 119, 6, 0.5); }
.btn-outline { padding: 0.8rem 1.8rem; border: 1px solid var(--gold); color: var(--text-main); border-radius: 6px; font-weight: 700; transition: 0.3s; }
.btn-outline:hover { background: var(--gold); color: #000; }
.btn-full { width: 100%; }

/* Header */
.glass-nav { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(15, 23, 42, 0.75); border-bottom: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(16px); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.brand { display: flex; align-items: center; gap: 12px; }
.dot { color: var(--gold); }
.desktop-menu { display: flex; gap: 3rem; align-items: center; }
.desktop-menu a { font-size: 1rem; font-weight: 500; font-family: var(--font-body); }

/* Global Sections */
section { padding: 9rem 0; }
.section-heading { font-size: clamp(2.5rem, 4vw, 3.8rem); margin-bottom: 1.5rem; line-height: 1.1; }
.section-sub { color: var(--text-mut); font-size: 1.2rem; margin-bottom: 4rem; max-width: 700px; margin-inline: auto; font-family: var(--font-body); }

/* Hero */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 120px; }
.hero-card { padding: 5rem; max-width: 950px; border-left: 4px solid var(--gold); }
.hero-title { font-size: clamp(3.2rem, 6vw, 5.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.2rem; color: var(--text-mut); margin-bottom: 3.5rem; line-height: 1.8; max-width: 750px; }

/* Asymmetrical Features */
.asym-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center; }
.img-wrapper { position: relative; padding: 1rem; }
.img-wrapper img { width: 100%; border-radius: 12px; display: block; filter: contrast(1.15) brightness(0.9); }
.floating-badge { position: absolute; bottom: -40px; right: -40px; background: var(--bg-base); border: 1px solid var(--indigo); padding: 1.5rem 2rem; border-radius: 12px; display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.8); }
.floating-badge i { font-size: 2.2rem; color: var(--gold); }
.b-val { display: block; font-size: 2rem; font-weight: 900; line-height: 1; font-family: var(--font-heading); color: #fff; }
.b-lbl { font-size: 0.85rem; color: var(--text-mut); font-family: var(--font-body); }
.feature-list { list-style: none; margin-top: 3rem; }
.feature-list li { display: flex; gap: 20px; margin-bottom: 2.5rem; }
.icon-sphere { background: rgba(217, 119, 6, 0.1); border: 1px solid var(--gold); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-sphere i { font-size: 1.5rem; color: var(--gold); }
.feat-txt h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.feat-txt p { color: var(--text-mut); font-size: 1rem; }

/* Stats */
.stats-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; text-align: center; }
.stat-box { padding: 3rem 2rem; transition: 0.4s; border-bottom: 3px solid transparent; }
.stat-box:hover { transform: translateY(-10px); border-bottom-color: var(--gold); }
.stat-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.stat-box h3 { font-size: 3.5rem; margin-bottom: 0.5rem; color: #fff; }
.stat-box p { color: var(--text-mut); font-weight: 700; font-family: var(--font-body); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }

/* About Section */
.about-flex { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-info { padding: 4rem; }
.about-info p { margin-bottom: 1.5rem; color: var(--text-mut); font-size: 1.1rem; }
.rounded-img { width: 100%; border-radius: 16px; border: 1px solid var(--border-glass); filter: grayscale(15%); }

/* Form Section */
.form-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; padding: 5rem; border-top: 3px solid var(--indigo); }
.trust-indicators { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; color: var(--gold); font-size: 0.95rem; font-weight: 700; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-col { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-main); font-weight: 500; }
input { width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; color: white; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus { outline: none; border-color: var(--gold); background: rgba(0,0,0,0.6); box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2); }
.checkbox-wrap { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 2.5rem; font-size: 0.85rem; color: var(--text-mut); }
.checkbox-wrap input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); cursor: pointer; }
.checkbox-wrap a { color: var(--gold); text-decoration: underline; }
.success-alert { text-align: center; padding: 3rem; border: 1px solid var(--gold); border-radius: 8px; background: rgba(217, 119, 6, 0.1); color: #fbbf24; margin-top: 1rem; }

/* FAQ */
.accordion { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.2rem; }
.faq-item { padding: 1.8rem 2.5rem; cursor: pointer; border-left: 3px solid transparent; }
.faq-item:hover { border-left-color: var(--gold); }
.faq-item summary { font-weight: 700; font-size: 1.15rem; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; font-family: var(--font-heading); letter-spacing: 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--indigo); transition: 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--gold); }
.faq-content { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-mut); }

/* Footer */
.footer { border-radius: 0; border-bottom: none; border-left: none; border-right: none; padding: 5rem 0 2rem; margin-top: 5rem; background: rgba(0, 0, 0, 0.5); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; margin-bottom: 3rem; }
.address-text { margin: 1.5rem 0; color: var(--text-mut); line-height: 1.8; }
.contact-info p { margin-bottom: 0.5rem; color: var(--text-mut); }
.contact-info i { color: var(--gold); margin-right: 12px; width: 20px; text-align: center; }
.legal-col h3 { margin-bottom: 1.5rem; font-size: 1.2rem; color: #fff; font-family: var(--font-heading); }
.footer-nav { display: flex; flex-direction: column; gap: 1rem; }
.footer-nav a { color: var(--text-mut); font-size: 0.95rem; }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; color: #475569; font-size: 0.85rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 850px; padding: 1.5rem 2.5rem; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 2rem; border-radius: 12px; border: 1px solid var(--indigo); }
.cookie-txt { font-size: 0.9rem; color: var(--text-main); }
.cookie-txt a { color: var(--gold); text-decoration: underline; }

/* Legal Pages (White Paper Style) */
.legal-wrapper { padding-top: 150px; padding-bottom: 100px; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 5rem; background: #ffffff; color: #0f172a; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.legal-card h1 { font-family: var(--font-heading); font-size: 2.5rem; border-bottom: 2px solid #e2e8f0; padding-bottom: 1.5rem; margin-bottom: 2.5rem; color: #0f172a; }
.legal-card h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-top: 3rem; margin-bottom: 1rem; color: #b45309; }
.legal-card p, .legal-card li { color: #334155; margin-bottom: 1.2rem; line-height: 1.8; font-size: 1.05rem; font-family: var(--font-body); }
.legal-card ul { margin-left: 2rem; margin-bottom: 2rem; }
.legal-card a { color: #4338ca; font-weight: 700; text-decoration: underline; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .asym-grid, .form-layout, .about-flex, .footer-layout { grid-template-columns: 1fr; gap: 4rem; }
    .input-row { grid-template-columns: 1fr; }
    .desktop-menu { display: none; }
    .hero-card, .form-layout { padding: 3rem 2rem; }
    .floating-badge { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-flex; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .legal-card { padding: 3rem 2rem; }
    .hero-title { font-size: 2.8rem; }
}
