:root {
  --fudd-green: #10b981;
  --fudd-green-dark: #059669;
  --fudd-green-deeper: #078F66;
  --fudd-navy: #023c69;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --bg-light: #f9fafb;
  --bg-card: #ffffff;
  --border-light: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 0.75rem;
  --radius-lg: 1rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--fudd-green-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--fudd-green-deeper);
}

img { max-width: 100%; height: auto; }

/* ── NAV ── */
.nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--fudd-green-dark);
  letter-spacing: -0.025em;
}
.nav-brand .logo-dot {
  width: 2rem;
  height: 2rem;
  background: var(--fudd-green);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--fudd-green-dark);
  border-bottom-color: var(--fudd-green);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
}
.menu-toggle svg { display: block; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--fudd-green) 0%, var(--fudd-green-deeper) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1.25rem 3.5rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero p {
  font-size: 1.125rem;
  opacity: 0.92;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--fudd-green-dark);
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-md);
}
.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  color: var(--fudd-green-deeper);
}

/* ── SECTIONS ── */
.section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.section-sm {
  max-width: 52rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 3rem;
  height: 3rem;
  background: #ecfdf5;
  color: var(--fudd-green-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}
.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── LEGAL / CONTENT ── */
.content-page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.content-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.content-page .date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.content-page h2 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.content-page h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.content-page p,
.content-page li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.content-page ul, .content-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-page ul { list-style: disc; }
.content-page ol { list-style: decimal; }
.content-page strong { color: var(--text-primary); }

.content-page .highlight-box {
  background: #ecfdf5;
  border-left: 4px solid var(--fudd-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.content-page .highlight-box p {
  color: #065f46;
  margin-bottom: 0;
}
.content-page .warning-box {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.content-page .warning-box p {
  color: #92400e;
  margin-bottom: 0;
}

/* ── FAQ ── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question .chevron {
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--text-muted);
}
.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 30rem;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── FOOTER ── */
.footer {
  margin-top: auto;
  background: var(--text-primary);
  color: #d1d5db;
  padding: 2.5rem 1.25rem 1.5rem;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}
.footer h4 {
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.375rem; }
.footer a {
  color: #9ca3af;
  font-size: 0.875rem;
}
.footer a:hover { color: #fff; }
.footer-bottom {
  max-width: 72rem;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #374151;
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 3.75rem;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.625rem 0;
    border-bottom: none;
  }
  .menu-toggle { display: block; }

  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 1.875rem; }
  .hero p { font-size: 1rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .content-page h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.375rem; }
}
