:root {
  --bg: #f4f7f4;
  --surface: #ffffff;
  --surface-alt: #ecf2ee;
  --text: #102118;
  --muted: #405246;
  --primary: #0f7a4d;
  --primary-strong: #0b5f3b;
  --accent: #ffb703;
  --border: #ccd8d0;
  --shadow: 0 12px 34px rgba(16, 33, 24, 0.09);
  --radius: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 15%, rgba(15, 122, 77, 0.11), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(255, 183, 3, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbf8 0%, #eef4f0 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #165cfc;
  outline-offset: 2px;
  border-radius: 6px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  background: #ffffff;
  border: 2px solid #165cfc;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(8px);
  background: rgba(247, 251, 248, 0.88);
  border-bottom: 1px solid rgba(16, 33, 24, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.06rem;
  color: #0a5f3b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  color: #234333;
}

.nav-links a.active,
.nav-links a:hover {
  background: #dde9e1;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: #123323;
}

.mobile-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid var(--border);
  color: #123323;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
}

.hero {
  padding: 4.2rem 0 2.5rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 2.2vw, 2.2rem);
  display: grid;
  gap: 1.2rem;
}

.hero-kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #0b6e45;
  background: #dcefe4;
  border-radius: 999px;
  padding: 6px 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
  margin: 0;
}

.hero-lead {
  font-size: 1.07rem;
  color: var(--muted);
  max-width: 68ch;
}

.hero-actions,
.store-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section {
  padding: 2.3rem 0;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.45rem;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.card h3 {
  margin-bottom: 0.45rem;
}

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

.steps {
  counter-reset: item;
  display: grid;
  gap: 10px;
}

.step {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.step h3::before {
  counter-increment: item;
  content: counter(item) ". ";
  color: #0b6e45;
}

.testimonial {
  border-left: 4px solid var(--primary);
  background: #ffffff;
  border-radius: 0 10px 10px 0;
  padding: 0.95rem 1rem;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.cta-banner {
  background: linear-gradient(90deg, #0f7a4d, #0b603c);
  color: #ffffff;
  border-radius: calc(var(--radius) + 2px);
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.legal article {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.legal h2,
.legal h3 {
  margin-top: 1rem;
}

.legal p,
.legal li {
  color: #33493d;
}

.legal ul {
  padding-left: 1.2rem;
}

.site-footer {
  margin-top: 2.8rem;
  border-top: 1px solid rgba(16, 33, 24, 0.12);
  background: #f1f6f2;
}

.footer-wrap {
  padding: 1.4rem 0 1.6rem;
  display: grid;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-note {
  font-size: 0.95rem;
  color: #3e5247;
}

.contact-form {
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.field {
  display: grid;
  gap: 5px;
}

label {
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #a8b8ad;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: #ffffff;
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links,
  .header-ctas {
    display: none;
    width: 100%;
  }

  .nav-open .nav-wrap {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10px 0;
  }

  .nav-open .nav-links,
  .nav-open .header-ctas {
    display: grid;
    gap: 8px;
  }

  .nav-open .header-ctas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card,
  .card,
  .step,
  .testimonial,
  .cta-banner {
    animation: rise 0.45s ease both;
  }

  .card:nth-child(2),
  .step:nth-child(2),
  .testimonial:nth-child(2) {
    animation-delay: 0.05s;
  }

  .card:nth-child(3),
  .step:nth-child(3),
  .testimonial:nth-child(3) {
    animation-delay: 0.1s;
  }

  @keyframes rise {
    from {
      transform: translateY(8px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
