﻿:root {
    --bg-dark: #0f172a; /* Slate 900 */
    --bg-glass: rgba(30, 41, 59, 0.7);
    --border-glass: rgba(212, 175, 55, 0.25);
    --gold: #d4af37; /* Premium Gold */
    --slate-light: #94a3b8;
    --white: #f8fafc;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    letter-spacing: 0.02em;
}

/* Unique Background: Glass/Orbs */
.glass-bg { position: fixed; inset: 0; z-index: -1; background: var(--bg-dark); overflow: hidden; }
.grid-overlay { position: absolute; inset: -50%; background-image: linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px); background-size: 60px 60px; transform: perspective(800px) rotateX(60deg); animation: moveGrid 30s linear infinite; }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.35; mix-blend-mode: screen; }
.orb-gold { width: 50vw; height: 50vw; background: var(--gold); top: -20%; left: -10%; animation: float 15s alternate infinite ease-in-out; }
.orb-slate { width: 45vw; height: 45vw; background: #3b82f6; bottom: -20%; right: -10%; animation: float 18s alternate-reverse infinite ease-in-out; }

@keyframes moveGrid { 100% { transform: perspective(800px) rotateX(60deg) translateY(60px); } }
@keyframes float { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.1) translate(10%, 15%); } }

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

/* Structural */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.glass-card { background: var(--bg-glass); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--border-glass); border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

/* Buttons & Tags */
.badge { display: inline-block; padding: 0.5rem 1.2rem; background: rgba(212, 175, 55, 0.1); border: 1px solid var(--gold); color: var(--gold); border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2rem; }
.btn-solid { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(90deg, #b48608, var(--gold)); color: #0f172a !important; padding: 1.2rem 2.5rem; border-radius: 12px; font-weight: 700; font-size: 1.05rem; border: none; cursor: pointer; transition: 0.4s; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5); color: #fff !important; }
.btn-ghost { padding: 0.8rem 1.8rem; border: 1px solid var(--gold); color: var(--white); border-radius: 10px; font-weight: 600; transition: 0.3s; }
.btn-ghost:hover { background: var(--gold); color: var(--bg-dark); }
.btn-block { width: 100%; }

/* Header */
.glass-header { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(15, 23, 42, 0.8); 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-logo { display: flex; align-items: center; gap: 12px; }
.desktop-nav { display: flex; gap: 3rem; align-items: center; }
.desktop-nav a { font-size: 0.95rem; font-weight: 600; }

/* Sections */
section { padding: 9rem 0; }
.section-title { font-size: clamp(2.3rem, 4vw, 3.5rem); margin-bottom: 1.5rem; line-height: 1.2; }
.section-desc { color: var(--slate-light); font-size: 1.15rem; margin-bottom: 4rem; max-width: 700px; margin-inline: auto; }

/* Hero */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 130px; }
.hero-content { padding: 5rem; max-width: 900px; border-left: 4px solid var(--gold); }
.hero-title { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--slate-light); margin-bottom: 3.5rem; line-height: 1.8; max-width: 750px; }

/* Process Grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; text-align: left; }
.process-card { padding: 3.5rem 2.5rem; position: relative; transition: 0.4s; border-top: 3px solid transparent; }
.process-card:hover { transform: translateY(-10px); border-top-color: var(--gold); }
.step-num { position: absolute; top: -10px; right: 20px; font-size: 6rem; font-weight: 900; font-family: var(--font-heading); color: rgba(255,255,255,0.03); line-height: 1; }
.process-card h3 { font-size: 1.4rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.process-card p { color: var(--slate-light); font-size: 1rem; position: relative; z-index: 1; }

/* Features (Asymmetrical) */
.asym-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.img-box { position: relative; padding: 1.5rem; }
.img-box img { width: 100%; border-radius: 12px; display: block; filter: contrast(1.1); }
.float-stat { position: absolute; bottom: -30px; right: -30px; background: var(--bg-dark); border: 1px solid var(--gold); padding: 1.5rem 2rem; border-radius: 16px; display: flex; align-items: center; gap: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.float-stat i { font-size: 2.2rem; color: var(--gold); }
.big-number { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; font-family: var(--font-heading); }
.small-text { font-size: 0.8rem; color: var(--slate-light); font-weight: 500; }
.bullet-list { list-style: none; margin-top: 3rem; }
.bullet-list li { display: flex; gap: 20px; margin-bottom: 2.5rem; }
.icon-circle { background: rgba(212, 175, 55, 0.1); border: 1px solid var(--gold); width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-circle i { font-size: 1.5rem; color: var(--gold); }
.bullet-text h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.bullet-text p { color: var(--slate-light); font-size: 1rem; }

/* About */
.about-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; overflow: hidden; }
.about-text { padding: 4rem; }
.about-text p { margin-bottom: 1.5rem; color: var(--slate-light); font-size: 1.05rem; }
.curved-img { width: 100%; height: 100%; object-fit: cover; border-left: 1px solid var(--border-glass); filter: brightness(0.85); }

/* Form */
.form-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; padding: 5rem; }
.trust-labels { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; color: var(--gold); font-size: 0.95rem; font-weight: 600; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--slate-light); font-weight: 600; }
input { width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; 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.8); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 2.5rem; font-size: 0.85rem; color: var(--slate-light); }
.checkbox-group input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--gold); cursor: pointer; }
.checkbox-group a { color: var(--gold); text-decoration: underline; }
.alert-success { text-align: center; padding: 3rem; border: 1px solid var(--gold); border-radius: 12px; background: rgba(212, 175, 55, 0.1); color: var(--gold); margin-top: 1rem; }

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

/* 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.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; margin-bottom: 3rem; }
.company-address { margin: 1.5rem 0; color: var(--slate-light); line-height: 1.8; }
.contact-methods p { margin-bottom: 0.5rem; color: var(--slate-light); }
.contact-methods i { color: var(--gold); margin-right: 12px; width: 20px; text-align: center; }
.legal-column h3 { margin-bottom: 1.5rem; font-size: 1.2rem; color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: var(--slate-light); font-size: 0.95rem; }
.footer-bottom { 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: 800px; padding: 1.5rem 2.5rem; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 2rem; border-radius: 16px; border: 1px solid var(--gold); }
.cookie-text { font-size: 0.9rem; color: var(--white); }
.cookie-text a { color: var(--gold); }

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

/* Responsive */
@media (max-width: 992px) {
    .asym-layout, .form-wrapper, .about-layout, .footer-grid { grid-template-columns: 1fr; gap: 4rem; }
    .input-row { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
    .hero-content, .form-wrapper, .about-text { padding: 3rem 2rem; }
    .float-stat { 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; }
    .curved-img { border-left: none; border-top: 1px solid var(--border-glass); }
}
