﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Syne:wght@600;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --bg-dark: #022c22; /* Very dark green */
    --bg-card: #064e3b; /* Dark green */
    --primary: #bef264; /* Lime green */
    --primary-hover: #a3e635;
    --accent: #fcd34d; /* Warm yellow */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

/* Accessibility */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--primary); color: #000; padding: 15px; z-index: 10000; font-weight: bold; transition: top 0.3s; text-decoration: none; }
.skip-link:focus { top: 0; }

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; background: rgba(2, 44, 34, 0.9); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(15px); border-bottom: 1px solid rgba(190, 242, 100, 0.1); }
.logo { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo span { color: var(--primary); }
.logo img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: color 0.3s; text-transform: lowercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--primary); }
.burger-btn { display: none; background: none; border: none; color: var(--primary); font-size: 2.5rem; cursor: pointer; }

/* Hero */
.hero { padding: 12rem 5% 8rem; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; min-height: 95vh; justify-content: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; left: -20%; width: 70%; height: 70%; background: radial-gradient(circle, rgba(190,242,100,0.1) 0%, transparent 70%); z-index: -1; }
.hero h1 { font-family: var(--font-head); font-size: clamp(4rem, 9vw, 7.5rem); line-height: 0.95; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: -2px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--text-main); max-width: 800px; margin-bottom: 3rem; font-weight: 400; }
.btn { display: inline-block; background: var(--primary); color: #000; padding: 1.3rem 3.5rem; border-radius: 4px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; transition: all 0.3s; border: none; cursor: pointer; font-family: var(--font-body); font-size: 1.1rem; box-shadow: 4px 4px 0px var(--accent); }
.btn:hover { background: var(--primary-hover); transform: translate(2px, 2px); box-shadow: 2px 2px 0px var(--accent); }

/* Sections & Grids */
.section { padding: 8rem 5%; }
.section-title { font-family: var(--font-head); font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 4rem; text-align: center; color: var(--primary); line-height: 1; text-transform: uppercase;}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.img-wrapper { position: relative; border-radius: 12px; overflow: hidden; border: 2px solid var(--primary); padding: 10px; background: var(--bg-card); }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; filter: grayscale(20%) contrast(120%); transition: filter 0.4s; }
.img-wrapper:hover img { filter: grayscale(0%) contrast(100%); }
.text-content h2 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1; }
.text-content ul { list-style: none; margin-top: 2.5rem; }
.text-content li { margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 15px; font-size: 1.2rem; }
.text-content li i { color: var(--accent); margin-top: 4px; font-size: 1.5rem; }

/* Features (Asymmetric) */
.features-wrapper { display: flex; flex-direction: column; gap: 6rem; }
.feature-block { display: flex; align-items: center; gap: 4rem; }
.feature-block:nth-child(even) { flex-direction: row-reverse; }
.feature-block .img-container { flex: 1; position: relative; }
.feature-block .img-container img { width: 100%; height: 450px; object-fit: cover; border-radius: 12px; box-shadow: -15px 15px 0px var(--bg-card); }
.feature-block:nth-child(even) .img-container img { box-shadow: 15px 15px 0px var(--bg-card); }
.feature-block .text-container { flex: 1; background: var(--bg-card); padding: 4rem; border-radius: 12px; border-left: 5px solid var(--primary); }
.feature-block h3 { font-family: var(--font-head); font-size: 2.8rem; margin-bottom: 1rem; color: var(--text-main); line-height: 1; }
.feature-block p { font-size: 1.15rem; color: var(--text-muted); }

/* Form Section */
.form-section { background: var(--bg-card); border-radius: 20px; padding: 5rem; max-width: 900px; margin: 0 auto; border: 1px solid rgba(190,242,100,0.2); position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.lead-form input, .lead-form textarea { padding: 1.2rem 1.5rem; border-radius: 4px; border: 2px solid transparent; background: var(--bg-dark); color: #fff; font-family: var(--font-body); font-size: 1.1rem; transition: all 0.3s; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--primary); }
.checkbox-group { display: flex; flex-direction: row; align-items: flex-start; gap: 15px; font-size: 0.95rem; color: var(--text-muted); }
.checkbox-group input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--primary); }

/* FAQ */
.faq-container { max-width: 850px; margin: 0 auto; }
.faq-item { background: transparent; margin-bottom: 1.5rem; border: 2px solid var(--bg-card); border-radius: 8px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--primary); }
.faq-question { padding: 1.8rem; width: 100%; text-align: left; background: var(--bg-card); border: none; color: var(--text-main); font-family: var(--font-head); font-size: 1.4rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 1.8rem; max-height: 0; overflow: hidden; transition: all 0.4s ease; background: var(--bg-dark); color: var(--text-muted); font-size: 1.1rem; }
.faq-item.active .faq-answer { padding: 1.5rem 1.8rem; max-height: 500px; }
.faq-item i { transition: transform 0.3s; color: var(--primary); font-size: 1.5rem; }
.faq-item.active i { transform: rotate(180deg); }

/* Trust Layer */
.trust-layer { background: #011a14; padding: 4rem 5%; text-align: center; border-top: 1px solid rgba(190,242,100,0.1); font-size: 0.9rem; color: #64748b; }
.trust-layer h3 { color: var(--primary); font-family: var(--font-head); margin-bottom: 1.5rem; font-size: 1.5rem; text-transform: uppercase; }
.trust-layer p { margin-bottom: 0.8rem; max-width: 1000px; margin-inline: auto; }
.trust-layer a { color: var(--accent); text-decoration: none; font-weight: bold; }

/* Footer */
footer { background: #000; padding: 5rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; margin-bottom: 4rem; }
.footer-col h4 { font-family: var(--font-head); color: var(--text-main); margin-bottom: 1.8rem; font-size: 1.6rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; font-size: 1.1rem; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #111; color: #334155; font-size: 0.85rem; }

/* Cookies Banner */
.cookie-banner { position: fixed; bottom: -150%; left: 0; width: 100%; background: var(--bg-card); padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.6s cubic-bezier(0.22, 1, 0.36, 1); border-top: 4px solid var(--primary); box-shadow: 0 -10px 40px rgba(0,0,0,0.5); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 1rem; color: var(--text-main); max-width: 70%; }
.cookie-btns { display: flex; gap: 1.5rem; }
.btn-outline { background: transparent; border: 2px solid var(--text-main); color: var(--text-main); padding: 1rem 2rem; font-weight: 700; cursor: pointer; transition: all 0.3s; font-family: var(--font-body); }
.btn-outline:hover { background: var(--text-main); color: #000; }

/* Legal Pages */
.legal-content { max-width: 900px; margin: 6rem auto; padding: 0 5%; }
.legal-content h1 { font-family: var(--font-head); font-size: 4rem; margin-bottom: 2rem; color: var(--primary); line-height: 1; text-transform: uppercase; }
.legal-content h2 { font-family: var(--font-head); margin: 4rem 0 1.5rem; color: var(--accent); font-size: 2.2rem; }
.legal-content p, .legal-content li { margin-bottom: 1.5rem; color: var(--text-main); font-size: 1.15rem; }

@media (max-width: 992px) {
    .hero h1 { font-size: clamp(3.5rem, 12vw, 5rem); }
    .grid-2, .feature-block, .feature-block:nth-child(even) { grid-template-columns: 1fr; flex-direction: column; gap: 4rem; }
    .feature-block .img-container img { box-shadow: none !important; height: 300px; }
    .feature-block .text-container { padding: 2.5rem; border-left: none; border-top: 5px solid var(--primary); }
    .form-section { padding: 3rem 2rem; }
    .lead-form { grid-template-columns: 1fr; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(2, 44, 34, 0.98); flex-direction: column; padding: 8rem 2rem; transition: right 0.4s ease; backdrop-filter: blur(20px); align-items: center; justify-content: center; }
    .nav-links a { font-size: 2rem; }
    .nav-links.active { right: 0; }
    .burger-btn { display: block; z-index: 1001; }
    .cookie-banner { flex-direction: column; gap: 2rem; text-align: center; }
    .cookie-text { max-width: 100%; }
}
