:root {
  --green-deep: #003421;
  --green-mid: #067252;
  --green-lime: #16bc78;
  --accent-yellow: #ffde01;
  --accent-orange: #f96332;
  --surface: #f8faf2;
  --ink: #0a1f16;
  --muted: rgba(10, 31, 22, 0.62);
  --line: rgba(0, 52, 33, 0.12);
  --white: #ffffff;
  --glow: rgba(22, 188, 120, 0.28);
  --radius: 22px;
  --max: 1080px;
  --font-display: "Belanosima", "Syne", system-ui, sans-serif;
  --font-body: "Avenir Next", "Segoe UI", "Nunito Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(22, 188, 120, 0.22), transparent 60%),
    radial-gradient(700px 420px at 100% 0%, rgba(255, 222, 1, 0.12), transparent 55%),
    linear-gradient(180deg, #e8f3ea 0%, var(--surface) 38%, #f3f7ec 100%);
  min-height: 100vh;
}

a {
  color: var(--green-mid);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-deep);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(248, 250, 242, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: 0 10px 40px rgba(0, 52, 33, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-deep);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 52, 33, 0.25);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-deep);
  background: rgba(6, 114, 82, 0.1);
}

.hero {
  margin-top: 42px;
  padding: clamp(36px, 6vw, 64px);
  border-radius: 36px;
  color: var(--white);
  background:
    radial-gradient(560px 280px at 85% 15%, rgba(255, 222, 1, 0.2), transparent 55%),
    radial-gradient(480px 320px at 10% 80%, rgba(22, 188, 120, 0.35), transparent 60%),
    linear-gradient(145deg, var(--green-deep) 0%, #014d32 48%, var(--green-mid) 100%);
  box-shadow: 0 28px 80px rgba(0, 52, 33, 0.28);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--glow);
  filter: blur(8px);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero h1 span {
  color: var(--accent-yellow);
}

.hero-lead {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
  background: var(--accent-yellow);
  color: var(--green-deep);
}

.btn-primary:hover {
  background: #ffe84d;
  color: var(--green-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section-title {
  margin: 56px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--green-deep);
}

.section-sub {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 58ch;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  padding: 22px 22px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(0, 52, 33, 0.05);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(6, 114, 82, 0.14), rgba(255, 222, 1, 0.22));
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-deep);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.panel {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0, 52, 33, 0.06);
}

.panel h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--green-deep);
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.panel h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-deep);
}

.panel p,
.panel li {
  color: rgba(10, 31, 22, 0.78);
}

.panel ul {
  padding-left: 1.2em;
}

.panel li {
  margin: 6px 0;
}

.contact-box {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(6, 114, 82, 0.1), rgba(255, 222, 1, 0.14));
  border: 1px solid rgba(6, 114, 82, 0.18);
}

.contact-box strong {
  display: block;
  font-family: var(--font-display);
  color: var(--green-deep);
  margin-bottom: 6px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 18px;
  margin: 10px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green-deep);
}

.faq details p {
  margin: 10px 0 4px;
  color: var(--muted);
}

.site-footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--green-mid);
  text-decoration: none;
  font-weight: 600;
  margin-right: 14px;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 64px;
  margin: 12px 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-mid);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero h1 {
    max-width: none;
  }
}
