﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;600;700&display=swap');

:root {
    --primary: #054a34;
    --primary-light: #0a6b4c;
    --secondary: #c2e59c;
    --accent: #ffb703;
    --bg-main: #fcfdfc;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(5, 74, 52, 0.08);
    --border-radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius); }

/* Unique Background Element */
.bg-mesh {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
    background: radial-gradient(circle at 15% 50%, rgba(194, 229, 156, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(5, 74, 52, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.logo { display: flex; align-items: center; gap: 0.8rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--primary); }
.logo img { width: 40px; height: 40px; }
nav ul { display: flex; gap: 2rem; }
nav a { font-weight: 500; font-size: 1rem; }
nav a:hover { color: var(--accent); }

/* Hero Section */
.hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 6rem 5% 4rem; position: relative; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; max-width: 900px; }
.hero p { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-muted); max-width: 700px; margin-bottom: 3rem; }
.hero-img-container { width: 100%; max-width: 1100px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.hero-img-container img { width: 100%; max-height: 500px; object-fit: cover; }

/* Lead Form Section (High Priority) */
.lead-section { padding: 5rem 5%; background: var(--primary); color: var(--white); margin: 4rem 5%; border-radius: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; box-shadow: 0 20px 40px rgba(5,74,52,0.2); }
.lead-content h2 { color: var(--secondary); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.lead-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.form-container { background: var(--white); padding: 3rem; border-radius: 20px; color: var(--text-main); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-group input { width: 100%; padding: 1rem; border: 1px solid #e5e7eb; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 1rem; transition: border-color 0.3s; background: #f9fafb; }
.form-group input:focus { outline: none; border-color: var(--primary); background: var(--white); }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 2rem; }
.checkbox-group input { margin-top: 0.3rem; width: auto; }
.checkbox-group label { font-size: 0.8rem; color: var(--text-muted); }
.submit-btn { width: 100%; background: var(--accent); color: var(--primary); border: none; padding: 1.2rem; font-size: 1.1rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif; border-radius: 10px; cursor: pointer; transition: transform 0.2s, background 0.3s; }
.submit-btn:hover { background: #e5a400; transform: translateY(-2px); }
.success-msg { display: none; text-align: center; padding: 3rem 1rem; }
.success-msg i { font-size: 4rem; color: var(--primary); margin-bottom: 1rem; }

/* Random Section - Smart Process */
.process-section { padding: 4rem 5%; text-align: center; }
.process-section h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 3rem; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.process-card { background: var(--white); padding: 2.5rem; border-radius: var(--border-radius); box-shadow: var(--shadow); border-top: 5px solid var(--secondary); transition: transform 0.3s; }
.process-card:hover { transform: translateY(-10px); }
.process-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; }

/* Features (Asymmetrical) */
.features { padding: 6rem 5%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.features-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 2rem; }
.features-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; font-size: 1.1rem; }
.features-list i { color: var(--accent); font-size: 1.5rem; margin-top: 0.2rem; }

/* About */
.about { padding: 5rem 5%; background: var(--white); }
.about-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.about h2 { font-size: 2.5rem; margin-bottom: 2rem; }
.about p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 1.5rem; text-align: justify; }

/* FAQ */
.faq { padding: 5rem 5%; max-width: 800px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }
details { background: var(--white); border-radius: 12px; margin-bottom: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.02); overflow: hidden; }
summary { padding: 1.5rem; font-weight: 600; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--primary); list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; transition: transform 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
.faq-content { padding: 0 1.5rem 1.5rem; color: var(--text-muted); line-height: 1.7; }

/* Legal Pages Standard Layout */
.legal-main { padding: 6rem 5%; max-width: 900px; margin: 0 auto; }
.legal-card { background: var(--white); padding: 4rem; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.legal-card h1 { font-size: 2.5rem; margin-bottom: 2rem; border-bottom: 2px solid var(--secondary); padding-bottom: 1rem; }
.legal-card h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.legal-card p, .legal-card ul { margin-bottom: 1rem; color: var(--text-muted); }
.legal-card ul { padding-left: 2rem; list-style-type: disc; }
.map-container { width: 100%; height: 300px; border-radius: 12px; overflow: hidden; margin-top: 2rem; }

/* Footer */
footer { background: var(--primary); color: rgba(255,255,255,0.8); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-col h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 600px; background: var(--white); box-shadow: var(--shadow); padding: 1.5rem; border-radius: 16px; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid #e5e7eb; }
.cookie-text p { font-size: 0.9rem; color: var(--text-muted); }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-btn { background: var(--primary); color: var(--white); border: none; padding: 0.8rem 1.5rem; border-radius: 8px; cursor: pointer; font-weight: 600; white-space: nowrap; }

/* Responsive */
@media (max-width: 992px) {
    .lead-section, .features { grid-template-columns: 1fr; }
    .lead-section { margin: 2rem 5%; gap: 2rem; }
    .features-img { order: -1; }
}
@media (max-width: 768px) {
    nav ul { display: none; } /* Simplified mobile header */
    .legal-card { padding: 2rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
}
