:root {
  --bg: #f6f7f2;
  --ink: #101522;
  --muted: #4b5568;
  --primary: #0f766e;
  --secondary: #f97316;
  --card: #ffffff;
  --line: #d8dde8;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(16, 21, 34, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 10%, #cde8e4 0%, transparent 40%), var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.12rem;
}

p {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.hero {
  padding: 1.25rem 0 4.5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-toggle {
  display: none;
}

.pill {
  width: fit-content;
  background: #d1fae5;
  color: #065f46;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.12fr 0.88fr;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-card {
  background: linear-gradient(160deg, #0d1b2a 0%, #1f2937 100%);
  color: #edf2f7;
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.stats {
  display: grid;
  gap: 0.9rem;
}

.stats article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.8rem;
}

.stat-number {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.35rem;
  color: #fda65d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  background: var(--secondary);
  color: #171717;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.28);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 0.8rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1px solid var(--line);
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #eef2f6;
  border-top: 1px solid #e4e8ef;
  border-bottom: 1px solid #e4e8ef;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.step span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  background: #dbeafe;
  color: #1e3a8a;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: clip;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  color: var(--muted);
  padding: 0 1rem 1rem;
  margin-bottom: 0;
}

.cta {
  padding-top: 1rem;
}

.cta-box {
  background: linear-gradient(120deg, #0f766e 0%, #155e75 55%, #0c4a6e 100%);
  color: #effdf7;
  border-radius: 22px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box p {
  max-width: 640px;
  margin-inline: auto;
}

.cta-box .btn {
  margin-top: 0.7rem;
  background: #fef3c7;
}

.footer {
  border-top: 1px solid #dce3ee;
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-grid,
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    background: #fff;
    font-weight: 700;
  }

  .menu {
    position: absolute;
    top: 62px;
    right: 4%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 190px;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .btn-sm {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
