:root {
  --cream: #F0FDFA;
  --cream-dark: #CCFBF1;
  --ink: #134E4A;
  --ink-light: #2D6A67;
  --ink-muted: #5EABA6;
  --terracotta: #14B8A6;
  --terracotta-light: #99F6E4;
  --sage: #8B5CF6;
  --sage-light: #DDD6FE;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --blue: #0EA5E9;
  --blue-light: #BAE6FD;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 40px rgba(20, 184, 166, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "DM Sans", "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1100px, 92%); margin: 0 auto; }

.header {
  padding: 24px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.5rem;
}
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.95rem; color: var(--ink-light); }
.nav-cta { padding: 10px 18px; border-radius: 999px; background: linear-gradient(135deg, #14B8A6, #0EA5E9); color: white; font-weight: 600; box-shadow: var(--shadow-soft); }

.hero {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #F0FDFA 0%, #CCFBF1 100%);
}
.hero-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; }
.hero h1 { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1.1; margin-bottom: 16px; }
.hero p { font-size: 1.1rem; color: var(--ink-light); margin-bottom: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  padding: 14px 22px; border-radius: 999px; font-weight: 600; border: none; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #14B8A6, #0EA5E9); color: white; box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}
.btn-secondary { background: white; color: var(--ink-light); border: 1.5px solid var(--cream-dark); }
.hero-card {
  background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft);
}
.hero-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.hero-card ul { list-style: none; display: grid; gap: 10px; }
.hero-card li { display: flex; gap: 10px; align-items: center; color: var(--ink-light); }

.section { padding: 56px 0; }
.section h2 { font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; margin-bottom: 16px; }
.section p.lead { color: var(--ink-light); margin-bottom: 28px; }

.grid-3 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: white; border-radius: var(--radius); padding: 20px; box-shadow: 0 8px 24px rgba(20, 184, 166, 0.08);
}
.card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card p { color: var(--ink-muted); }

.stats { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat { background: white; border-radius: var(--radius); padding: 16px; text-align: center; }
.stat .value { font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; color: var(--terracotta); }

.banner {
  background: linear-gradient(135deg, #14B8A6, #0EA5E9);
  color: white; padding: 32px; border-radius: var(--radius-lg); display: grid; gap: 16px; align-items: center;
}
.banner a { color: white; font-weight: 600; }

.footer {
  padding: 32px 0; border-top: 1px solid var(--cream-dark); background: white;
}
.footer-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer small { color: var(--ink-muted); }

.page-hero {
  padding: 48px 0; background: linear-gradient(180deg, #F0FDFA 0%, #CCFBF1 100%);
}
.page-hero h1 { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 12px; }
.page-content { padding: 40px 0 60px; }
.page-content h2 { margin-top: 24px; font-family: "DM Serif Display", Georgia, serif; }
.page-content ul { padding-left: 18px; margin: 12px 0; }
.page-content li { margin-bottom: 8px; }

.callout {
  background: var(--cream-dark); border-radius: var(--radius); padding: 20px; margin: 20px 0; color: var(--ink-light);
}

.faq { display: grid; gap: 16px; }
.faq details { background: white; border-radius: var(--radius); padding: 16px; box-shadow: 0 8px 24px rgba(20, 184, 166, 0.08); }
.faq summary { cursor: pointer; font-weight: 600; }

.badge { padding: 6px 12px; border-radius: 999px; background: var(--terracotta-light); color: var(--terracotta); font-size: 0.8rem; font-weight: 600; }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hero { padding-top: 48px; }
}
