﻿:root {
  --primary: #059669;
  --accent: #34D399;
  --bg: #064E3B;
  --bg-card: rgba(30, 41, 59, 0.6);
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --gradient: linear-gradient(135deg, #059669 0%, #34D399 100%);
  --radius: 12px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max-width: 1100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.9; }
.container { width: min(100% - 2rem, var(--max-width)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(15,23,42,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(148,163,184,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 1.1rem; color: var(--text); }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--gradient); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-cta { background: var(--gradient); color: #fff !important; padding: 0.5rem 1rem; border-radius: 8px; font-weight: 600; }
.menu-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }
.hero { padding: 5rem 0 4rem; background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,255,255,0.06), transparent); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; margin-bottom: 1rem; }
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-lead { font-size: 1.2rem; color: var(--text-muted); max-width: 52ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.btn { display: inline-flex; align-items: center; padding: 0.85rem 1.5rem; border-radius: 10px; font-weight: 600; border: none; cursor: pointer; }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-secondary { background: var(--bg-card); color: var(--text); border: 1px solid rgba(148,163,184,0.2); }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; }
.stat-value { font-size: 1.75rem; font-weight: 800; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }
section { padding: 4rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); }
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--bg-card); border: 1px solid rgba(148,163,184,0.1); border-radius: var(--radius); padding: 1.5rem; }
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.cta-box { text-align: center; background: var(--bg-card); border: 1px solid rgba(148,163,184,0.12); border-radius: var(--radius); padding: 3rem 2rem; }
.cta-box h2 { margin-bottom: 0.75rem; }
.cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(148,163,184,0.12); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; background: none; border: none; color: var(--text); font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--text-muted); }
.faq-item.open .faq-answer { display: block; }
.site-footer { border-top: 1px solid rgba(148,163,184,0.1); padding: 3rem 0 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a, .footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--text-muted); font-size: 0.85rem; }
.legal-page { padding: 3rem 0 4rem; max-width: 760px; }
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page h2 { margin: 2rem 0 0.75rem; font-size: 1.2rem; }
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: 0.75rem; }
.legal-page .updated { font-size: 0.9rem; margin-bottom: 2rem; }
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg); padding: 1rem; border-bottom: 1px solid rgba(148,163,184,0.1); }
  .nav-links.open { display: flex; }
  .about-grid, .footer-grid { grid-template-columns: 1fr; }
}
