:root {
  --bg: #f7fbff;
  --bg-soft: #eef6ff;
  --bg-panel: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.92);
  --text: #0f1f14;
  --muted: #42574a;
  --accent: #266431;
  --accent-strong: #42a046;
  --accent-soft: #5fb767;
  --border: rgba(38, 100, 49, 0.2);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 34px rgba(30, 61, 44, 0.12);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 0%, rgba(66, 160, 70, 0.12), transparent 36%),
    radial-gradient(circle at 95% 5%, rgba(58, 123, 213, 0.2), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #edf4ff 100%);
  color: var(--text);
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f6fff7;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus-visible {
  top: 1rem;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(38, 100, 49, 0.16);
}

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

.logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--accent);
}

.nav-list {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.2rem 0.75rem;
  text-decoration: none;
  border-radius: 999px;
  color: #355343;
  white-space: nowrap;
  border: 1px solid transparent;
}

.nav-list a:hover {
  color: var(--accent);
  background: rgba(66, 160, 70, 0.1);
  border-color: rgba(38, 100, 49, 0.2);
}

.section {
  padding: var(--space-7) 0;
  border-bottom: 1px solid rgba(38, 100, 49, 0.1);
}

.hero {
  padding-top: calc(var(--space-7) + var(--space-3));
}

.hero-grid {
  display: grid;
  gap: var(--space-6);
}

.kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 var(--space-3);
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.lead,
.section-intro {
  color: var(--muted);
  max-width: 68ch;
  margin-top: 0;
  margin-bottom: var(--space-5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  color: #f6fff7;
  box-shadow: 0 10px 20px rgba(38, 100, 49, 0.25);
}

.btn-secondary {
  border-color: rgba(38, 100, 49, 0.25);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  border-color: rgba(66, 160, 70, 0.6);
  background: #ffffff;
}

.path-choices {
  display: grid;
  gap: var(--space-4);
}

.path-card {
  width: 100%;
  text-align: left;
  background:
    linear-gradient(160deg, rgba(66, 160, 70, 0.08), rgba(58, 123, 213, 0.03) 40%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow);
  color: var(--text);
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.path-card:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 160, 70, 0.55);
  box-shadow: 0 18px 30px rgba(30, 61, 44, 0.14);
}

.path-card[aria-pressed="true"] {
  border-color: var(--accent-strong);
  background:
    linear-gradient(170deg, rgba(66, 160, 70, 0.16), rgba(255, 255, 255, 0.85) 52%),
    var(--bg-card);
}

.path-card p {
  margin: 0 0 var(--space-3);
  color: var(--muted);
}

.path-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #234133;
}

.path-card small {
  display: inline-block;
  margin-top: var(--space-3);
  color: #2f7b37;
}

.card-grid,
.process-grid,
.cols-2 {
  display: grid;
  gap: var(--space-4);
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  background:
    linear-gradient(180deg, rgba(66, 160, 70, 0.05), rgba(255, 255, 255, 0.95) 34%),
    #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow);
}

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

.benefits-list,
.plain-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.benefits-list li,
.plain-list li {
  margin-bottom: 0.55rem;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.93);
  overflow: clip;
}

.faq-item h3 {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 1rem 1rem;
  min-height: 44px;
  font-weight: 600;
  cursor: pointer;
}

.faq-panel {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: var(--space-4);
  background:
    linear-gradient(170deg, rgba(66, 160, 70, 0.1), rgba(58, 123, 213, 0.04) 38%),
    #ffffff;
}

.form-grid {
  display: grid;
  gap: var(--space-3);
}

label {
  display: grid;
  gap: 0.45rem;
  color: #1d3828;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(38, 100, 49, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 0.65rem 0.8rem;
}

input::placeholder,
textarea::placeholder {
  color: #71877a;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.consent input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.3rem;
  accent-color: var(--accent-strong);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
}

.form-status.success {
  color: #1f6e2d;
}

.form-status.error {
  color: #9a1f1f;
}

.site-footer {
  padding: var(--space-6) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(237, 244, 255, 0.9));
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  color: var(--muted);
}

.footer-brand {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.55rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.footer-links a:hover {
  border-color: rgba(38, 100, 49, 0.28);
  background: rgba(66, 160, 70, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

@media (min-width: 740px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .form-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
