/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --evergreen: #0C6B58;
  --pine:      #083F33;
  --mint:      #2F8E78;
  --clay:      #C26D3D;
  --paper:     #F8F6F1;
  --ink:       #171B19;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Layout ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--clay);
  color: #fff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover { background: #a85a2e; }
.btn:active { transform: scale(0.98); }

/* ── Header ── */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid #E4E2DB;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.site-header .logo img { height: 36px; }

/* ── Hero ── */
.hero {
  background: var(--pine);
  color: #fff;
  padding: 96px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  color: #C7DBD3;
  max-width: 560px;
  margin: 0 0 40px;
}
.hero-animation svg {
  width: 100%;
  height: auto;
  border-radius: 34px;
  display: block;
}

/* ── Problem ── */
.problem {
  padding: 88px 0;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--evergreen);
  margin-bottom: 12px;
}
.problem h2 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 32px;
  max-width: 600px;
}
.problem-body {
  max-width: 640px;
}
.problem-body p {
  color: #3A403D;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}
.problem-body p:last-child { margin-bottom: 0; }
.pain-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #3A403D;
}
.pain-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 9px;
}

/* ── How it works ── */
.how {
  background: #fff;
  padding: 88px 0;
  border-top: 1px solid #E4E2DB;
  border-bottom: 1px solid #E4E2DB;
}
.how h2 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: #E4E2DB;
}
.step-icon {
  width: 44px;
  height: 44px;
  background: #F0EFE9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--evergreen);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step h3 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step p {
  font-size: 15px;
  line-height: 1.65;
  color: #4A5250;
}
.step-connector {
  display: none;
}

/* ── Benefits ── */
.benefits {
  padding: 88px 0;
}
.benefits h2 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid #E4E2DB;
  border-radius: 16px;
  padding: 32px;
}
.card-icon {
  width: 40px;
  height: 40px;
  background: #EFF8F5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--evergreen);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.card p {
  font-size: 15px;
  line-height: 1.65;
  color: #4A5250;
}

/* ── Reassurance band ── */
.reassurance {
  background: var(--pine);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.reassurance-inner {
  max-width: 720px;
  margin: 0 auto;
}
.reassurance h2 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.reassurance p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: #C7DBD3;
  max-width: 580px;
  margin: 0 auto;
}
.reassurance-divider {
  width: 48px;
  height: 3px;
  background: var(--mint);
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* ── Final CTA + Form ── */
.cta-form {
  padding: 96px 0;
}
.cta-form-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.cta-form h2 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-form .lead {
  font-size: 17px;
  color: #4A5250;
  margin-bottom: 40px;
}
.form-card {
  background: #fff;
  border: 1px solid #E4E2DB;
  border-radius: 20px;
  padding: 40px;
  text-align: left;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #D8D6CF;
  border-radius: 8px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus {
  border-color: var(--evergreen);
  box-shadow: 0 0 0 3px rgba(12, 107, 88, 0.12);
}
.form-group input::placeholder { color: #9AA09A; }

.form-error {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #B91C1C;
  margin-bottom: 16px;
}
.form-error.visible { display: block; }

.form-card .btn {
  width: 100%;
  text-align: center;
  padding: 17px;
  font-size: 17px;
}
.form-card .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  background: #F0FDF8;
  border: 1.5px solid var(--mint);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}
.form-success.visible { display: block; }
.success-icon {
  width: 52px;
  height: 52px;
  background: var(--evergreen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success h3 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 16px;
  color: #4A5250;
  line-height: 1.6;
}

/* ── Footer ── */
.site-footer {
  background: var(--pine);
  color: #C7DBD3;
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo img { height: 28px; }
.footer-meta {
  font-size: 13px;
  color: #7BAAA0;
  line-height: 1.6;
}
.footer-meta a {
  color: #7BAAA0;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-meta a:hover { color: #C7DBD3; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .problem { padding: 64px 0; }
  .how { padding: 64px 0; }
  .benefits { padding: 64px 0; }
  .reassurance { padding: 72px 0; }
  .cta-form { padding: 72px 0; }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .site-header .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .form-card { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps { gap: 24px; }
  .cards { grid-template-columns: 1fr 1fr; }
}
