:root {
  --green: #2f8f46;
  --green-dark: #17602f;
  --green-soft: #edf8ef;
  --orange: #f28c28;
  --orange-soft: #fff4e6;
  --ink: #1f2a24;
  --muted: #667085;
  --line: #d9e5dc;
  --paper: #ffffff;
  --soft: #f7fbf7;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(31, 42, 36, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 229, 220, 0.85);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 172px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 750;
  color: #304438;
  font-size: 0.96rem;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.20), transparent 34%),
    radial-gradient(circle at bottom left, rgba(47, 143, 70, 0.14), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f3faf4 52%, #fff7ec 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 22px 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 5.6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.24rem;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.16rem;
  color: #4b5c50;
  max-width: 680px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  font-size: 1rem;
}

.btn.primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(47, 143, 70, 0.22);
}

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

.btn.full {
  width: 100%;
}

.trust-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 229, 220, 0.9);
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.mama-card {
  min-height: 360px;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(23, 96, 47, 0.92), rgba(47, 143, 70, 0.72)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 30%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12), rgba(255,255,255,0.12) 8px, transparent 8px, transparent 20px);
  color: #ffffff;
}

.mama-label {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 850;
  margin-bottom: 18px;
}

.mama-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  margin-bottom: 12px;
}

.mama-card p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
}

.section {
  padding: 84px 22px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: start;
}

.two-col p {
  color: var(--muted);
  font-size: 1.04rem;
}

.soft {
  background: var(--soft);
}

.fruit-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.fruit-card {
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(31, 42, 36, 0.06);
  display: flex;
  align-items: end;
  font-weight: 900;
  color: var(--green-dark);
}

.how {
  background: #12351f;
  color: #ffffff;
}

.how .section-kicker {
  color: #ffbd73;
}

.steps {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 24px;
}

.steps span {
  color: #ffbd73;
  font-weight: 950;
}

.steps p {
  color: rgba(255,255,255,0.76);
  margin-bottom: 0;
}

.form-section {
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.16), transparent 30%),
    #ffffff;
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 34px;
  align-items: start;
}

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

.interest-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

label,
fieldset {
  display: block;
  margin-bottom: 17px;
}

label {
  font-weight: 800;
}

.optional {
  color: var(--muted);
  font-weight: 600;
}

input,
select {
  width: 100%;
  margin-top: 7px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfdcd3;
  border-radius: 14px;
  font: inherit;
  background: #ffffff;
  color: var(--ink);
}

input:focus,
select:focus {
  outline: 3px solid rgba(47, 143, 70, 0.15);
  border-color: var(--green);
}

fieldset {
  border: 1px solid #dce8df;
  border-radius: 18px;
  padding: 18px;
}

legend {
  font-weight: 900;
  padding: 0 8px;
}

.check,
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  color: #34443a;
}

.check input,
.consent input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.consent {
  font-size: 0.92rem;
  color: var(--muted);
}

.privacy-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-message {
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 14px;
  display: none;
  font-weight: 800;
}

.form-message.success {
  display: block;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid #b7dfc0;
}

.form-message.error {
  display: block;
  background: #fff1f1;
  color: #9a1d1d;
  border: 1px solid #f0b7b7;
}

.footer {
  background: #102719;
  color: rgba(255,255,255,0.82);
  padding: 38px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 142px;
  margin-bottom: 10px;
}

.footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero-inner,
  .two-col,
  .form-wrap {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .nav {
    padding: 13px 18px;
  }

  .brand-logo {
    width: 145px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding: 58px 18px 62px;
  }

  .section {
    padding: 62px 18px;
  }

  .fruit-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .interest-form {
    padding: 22px;
  }

  .footer {
    display: block;
  }
}