﻿:root {
    --bg-color: #022c22; /* Very dark green */
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --accent: #10b981; /* Emerald */
    --accent-hover: #059669;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Unique Graphic Element: Animated Bio-Spheres */
.bio-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; overflow: hidden; background: #022c22;
}
.sphere {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4;
    animation: drift 25s infinite alternate ease-in-out;
}
.sphere-1 { background: #10b981; width: 45vw; height: 45vh; top: -10%; left: -10%; }
.sphere-2 { background: #059669; width: 55vw; height: 55vh; bottom: -20%; right: -10%; animation-delay: -5s; }
.sphere-3 { background: #064e3b; width: 40vw; height: 40vh; top: 40%; left: 30%; animation-delay: -10s; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8vw, 12vh) scale(1.15); }
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; }

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Header */
.glass-header {
    position: fixed; top: 0; width: 100%;
    background: rgba(2, 44, 34, 0.8); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border); z-index: 1000;
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.8rem; font-family: var(--font-head); font-weight: 600; letter-spacing: 0.5px; }
.desktop-nav a { color: var(--text-main); text-decoration: none; margin-left: 2.5rem; font-weight: 400; transition: color 0.3s; }
.desktop-nav a:hover { color: var(--accent); }

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block; text-decoration: none; font-family: var(--font-body);
    border-radius: 50px; cursor: pointer; transition: all 0.3s ease; border: none; text-align: center; font-weight: 600;
}
.btn-primary { background: var(--accent); color: #022c22; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--glass-border); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.9rem; margin-left: 2rem !important; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; padding: 1.2rem; font-size: 1.1rem; }

/* Sections */
section { padding: 7rem 0; }
.section-heading { margin-bottom: 3.5rem; }
.section-heading h2 { font-size: 2.8rem; margin-bottom: 1rem; }
.section-heading p { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

/* Hero */
.hero { margin-top: 120px; text-align: center; }
.hero-content { max-width: 900px; margin: 0 auto; }
.badge { display: inline-block; padding: 0.5rem 1.2rem; background: rgba(16, 185, 129, 0.15); color: var(--accent); border: 1px solid rgba(16, 185, 129, 0.3); border-radius: 30px; font-weight: 600; margin-bottom: 2rem; letter-spacing: 1px; font-size: 0.85rem; }
.hero h1 { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 1.5rem; }
.hero h1 span { font-style: italic; color: var(--accent); }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 700px; margin-inline: auto; font-weight: 300; }

/* Process Grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.process-card { text-align: center; padding: 2.5rem; }
.process-card i { margin-bottom: 1.5rem; }
.process-card h3 { font-size: 1.5rem; margin-bottom: 1rem; font-family: var(--font-body); }
.process-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Features */
.feature-layout { display: flex; align-items: center; gap: 4rem; }
.feature-img img { width: 100%; border-radius: 20px; border: 1px solid var(--glass-border); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.feature-text { flex: 1; }
.feature-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.feature-text p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.check-list { list-style: none; }
.check-list li { margin-bottom: 1.2rem; display: flex; gap: 1rem; align-items: flex-start; font-size: 1.05rem; }
.check-list i { margin-top: 0.3rem; font-size: 1.1rem; }

/* About */
.about-section h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-section p { font-size: 1.1rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 1.5rem auto; font-weight: 300; }

/* Form */
.form-container { max-width: 750px; margin: 0 auto; }
.form-container h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.form-container p { color: var(--text-muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
input { width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.4); border: 1px solid var(--glass-border); border-radius: 12px; color: var(--text-main); font-family: var(--font-body); font-size: 1rem; outline: none; transition: border 0.3s; }
input:focus { border-color: var(--accent); }
.consent-group { display: flex; gap: 1rem; margin-bottom: 2.5rem; align-items: flex-start; }
.consent-group input[type="checkbox"] { width: auto; margin-top: 0.3rem; }
.consent-group label { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; }
.consent-group a { color: var(--accent); }
.success-box { margin-top: 1.5rem; padding: 1.5rem; background: rgba(16, 185, 129, 0.1); border: 1px solid var(--accent); border-radius: 12px; color: var(--accent); text-align: center; font-weight: 600; }
.hidden { display: none !important; }

/* FAQ */
.accordion details { border-bottom: 1px solid var(--glass-border); padding: 1.5rem 0; }
.accordion details:last-child { border-bottom: none; }
.accordion summary { font-family: var(--font-body); font-size: 1.2rem; font-weight: 600; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion p { margin-top: 1rem; color: var(--text-muted); font-weight: 300; }

/* Footer */
footer { border-top: 1px solid var(--glass-border); padding: 4rem 0; background: rgba(0,0,0,0.4); }
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-brand p { color: var(--text-muted); margin-top: 1rem; font-weight: 300; }
.footer-brand .copyright { font-size: 0.85rem; opacity: 0.6; margin-top: 2rem; }
.footer-legal h4 { margin-bottom: 1.5rem; font-family: var(--font-head); font-size: 1.2rem; }
.footer-legal a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; transition: color 0.3s; font-weight: 300; }
.footer-legal a:hover { color: var(--accent); }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 650px;
    background: rgba(2, 44, 34, 0.95); border: 1px solid var(--glass-border); border-radius: 16px;
    padding: 1.5rem; z-index: 9999; backdrop-filter: blur(15px); display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.cookie-text p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }
.cookie-text a { color: var(--accent); }

/* Legal Pages Overrides (Premium White Cards) */
.legal-page { padding-top: 130px; padding-bottom: 80px; }
.legal-document { background: #ffffff; color: #1e293b; border-radius: 24px; padding: 4.5rem; box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.legal-document h1 { font-size: 2.8rem; color: #0f172a; margin-bottom: 2rem; }
.legal-document h2 { font-size: 1.6rem; color: #334155; margin-top: 3rem; margin-bottom: 1.2rem; font-family: var(--font-body); font-weight: 600; }
.legal-document p, .legal-document ul { font-size: 1.05rem; color: #475569; margin-bottom: 1.2rem; line-height: 1.8; }
.legal-document ul { margin-left: 2rem; }
.legal-header { background: #ffffff !important; border-bottom: 1px solid #e2e8f0; }
.legal-header .logo { color: #064e3b; }
.legal-header .btn-outline { border-color: #cbd5e1; color: #1e293b; }
.legal-header .btn-outline:hover { background: #f1f5f9; }

/* Responsive */
@media (max-width: 900px) {
    .feature-layout, .footer-content { grid-template-columns: 1fr; flex-direction: column; }
    .hero h1 { font-size: 2.5rem; }
}
@media (max-width: 600px) {
    .desktop-nav a { display: none; }
    .desktop-nav .btn-sm { display: inline-block; margin: 0 !important; }
    .form-grid { grid-template-columns: 1fr; }
    .legal-document { padding: 2rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
}
