@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

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

:root {
  --bg: hsl(140, 20%, 98%);
  --fg: hsl(150, 30%, 12%);
  --card: hsl(0, 0%, 100%);
  --card-fg: hsl(150, 30%, 12%);
  --primary: hsl(152, 55%, 32%);
  --primary-fg: hsl(0, 0%, 100%);
  --secondary: hsl(42, 80%, 55%);
  --muted: hsl(140, 15%, 93%);
  --muted-fg: hsl(150, 10%, 45%);
  --accent: hsl(152, 40%, 92%);
  --accent-fg: hsl(152, 55%, 25%);
  --border: hsl(140, 15%, 88%);
  --radius: 0.75rem;
  --yellow: hsl(48, 96%, 53%);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.container { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: hsla(140, 20%, 98%, 0.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav .container { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.5rem; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--fg); }
.nav-brand svg { width: 28px; height: 28px; color: var(--primary); }
.nav-links { display: none; align-items: center; gap: 1.5rem; font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); }
.nav-links a:hover { color: var(--primary); }
@media (min-width: 768px) { .nav-links { display: flex; } }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { opacity: 0.9; }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--primary-fg); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ===== HERO ===== */
.hero { position: relative; padding-top: 64px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, hsla(150,30%,12%,0.8), hsla(150,30%,12%,0.5), transparent); }
.hero-content { position: relative; max-width: 580px; padding: 8rem 0; }
@media (min-width: 768px) { .hero-content { padding: 11rem 0; } }
.hero-badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; background: var(--primary); color: var(--primary-fg); margin-bottom: 1rem; }
.hero h1 { font-size: 2.5rem; font-weight: 800; color: var(--primary-fg); line-height: 1.1; margin-bottom: 1rem; }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; max-width: 28rem; }
.hero-disclaimer { display: flex; align-items: flex-start; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 0.75rem; margin-bottom: 1.5rem; }
.hero-disclaimer svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.hero-disclaimer p { font-size: 0.75rem; color: rgba(255,255,255,0.9); line-height: 1.6; }
.hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats { background: var(--primary); color: var(--primary-fg); }
.stats .container { padding-top: 2.5rem; padding-bottom: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .stats .container { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; }
@media (min-width: 768px) { .stat-num { font-size: 2.5rem; } }
.stat-label { font-size: 0.875rem; opacity: 0.8; margin-top: 0.25rem; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-muted { background: hsla(140, 15%, 93%, 0.5); }
.section-label { color: var(--primary); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
.section-title { font-size: 1.875rem; font-weight: 700; margin-top: 0.5rem; color: var(--fg); }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-desc { color: var(--muted-fg); margin-top: 1rem; line-height: 1.7; max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; gap: 1.5rem; }
.cards-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.cards-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: all 0.3s; }
.card:hover { box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.card-service:hover { transform: translateY(-4px); }
.card-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.card-icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.card-icon-sm { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.card-icon-sm svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.card h3 { font-size: 1.125rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
.card p { color: var(--muted-fg); font-size: 0.875rem; }
.card-center { text-align: center; }
.card-contact .card-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; }

/* ===== FAQ ===== */
.faq-disclaimer { display: flex; align-items: flex-start; gap: 0.75rem; background: var(--accent); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; margin-bottom: 2rem; }
.faq-disclaimer svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.faq-disclaimer p { font-size: 0.875rem; color: var(--muted-fg); }
.faq-disclaimer strong { color: var(--fg); }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 48rem; margin: 0 auto; }
.faq-item { width: 100%; text-align: left; padding: 1rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); cursor: pointer; transition: border-color 0.2s; font-family: inherit; font-size: inherit; }
.faq-item:hover { border-color: hsla(152, 55%, 32%, 0.3); }
.faq-header { display: flex; align-items: center; justify-content: space-between; }
.faq-header span { font-weight: 600; color: var(--fg); }
.faq-header svg { width: 16px; height: 16px; color: var(--muted-fg); transition: transform 0.3s; flex-shrink: 0; margin-left: 0.5rem; }
.faq-item.open .faq-header svg { transform: rotate(180deg); }
.faq-answer { display: none; color: var(--muted-fg); font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--fg); color: rgba(255,255,255,0.7); }
.footer-disclaimer { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
.footer-disclaimer-box { display: flex; align-items: flex-start; gap: 0.75rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1rem; }
.footer-disclaimer-box svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-disclaimer-box p { font-size: 0.75rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.footer-disclaimer-box strong { color: rgba(255,255,255,0.95); }
.footer-grid { display: grid; gap: 2rem; padding: 2.5rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-brand svg { width: 24px; height: 24px; color: var(--primary); }
.footer-brand span { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.125rem; color: white; }
.footer h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: white; font-size: 0.875rem; margin-bottom: 0.75rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-links a:hover { color: var(--primary); }
.footer-data { font-size: 0.875rem; }
.footer-data p { margin-bottom: 0.25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; justify-content: space-between; font-size: 0.75rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a { text-decoration: underline; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; padding: 1rem; transform: translateY(100%); transition: transform 0.4s ease-out; }
.cookie-banner.show { transform: translateY(0); }
.cookie-box { max-width: 56rem; margin: 0 auto; background: var(--card); border: 1px solid var(--border); border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.cookie-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cookie-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.cookie-content { flex: 1; }
.cookie-content h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--fg); margin-bottom: 0.25rem; }
.cookie-content p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
.cookie-content a { color: var(--primary); text-decoration: underline; }
.cookie-content a:hover { opacity: 0.8; }
.cookie-buttons { display: flex; gap: 0.75rem; margin-top: 1rem; }
.cookie-buttons .btn { font-size: 0.875rem; padding: 0.5rem 1rem; }
.btn-outline-dark { background: transparent; border: 1px solid var(--border); color: var(--fg); }
.btn-outline-dark:hover { background: var(--muted); }
.cookie-close { background: none; border: none; color: var(--muted-fg); cursor: pointer; padding: 0.25rem; }
.cookie-close:hover { color: var(--fg); }
.cookie-close svg { width: 20px; height: 20px; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== LEGAL PAGES ===== */
.legal-page { min-height: 100vh; background: var(--bg); }
.legal-page main { max-width: 56rem; margin: 0 auto; padding: 4rem 1rem; }
.legal-page h1 { font-size: 1.875rem; font-weight: 700; color: var(--fg); margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.25rem; font-weight: 700; color: var(--fg); margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-page p { color: var(--muted-fg); line-height: 1.7; margin-bottom: 0.75rem; font-size: 0.9375rem; }
.legal-page ul, .legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--muted-fg); font-size: 0.9375rem; }
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li { margin-bottom: 0.25rem; line-height: 1.6; }
.legal-notice { margin-top: 2rem; padding: 1rem; background: var(--accent); border-radius: var(--radius); border: 1px solid var(--border); font-size: 0.875rem; color: var(--muted-fg); }
.legal-notice strong { color: var(--fg); }
.legal-nav { background: hsla(140,20%,98%,0.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.legal-nav .container { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.btn-ghost { background: transparent; border: none; color: var(--muted-fg); display: flex; align-items: center; gap: 0.25rem; cursor: pointer; font-size: 0.875rem; font-family: inherit; }
.btn-ghost:hover { color: var(--fg); }
