:root {
  --charcoal: #1c2b24;
  --mint: #7dcea0;
  --mint-soft: #d8f3e4;
  --fog: #f3f7f4;
  --ink: #14201a;
  --muted: #4d6358;
  --display: "Poppins", system-ui, sans-serif;
  --serif: "Lora", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--display);
  background: var(--fog);
  color: var(--ink);
  line-height: 1.55;
  position: relative;
}
a { color: inherit; text-decoration: none; }
.skip { position: absolute; left: -9999px; }
.stripes {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .35;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 28px,
    rgba(125,206,160,.12) 28px 56px
  );
}
.wrap { width: min(960px, calc(100% - 2.25rem)); margin-inline: auto; position: relative; z-index: 1; }
.hdr {
  position: sticky; top: 0; z-index: 20;
  background: rgba(243,247,244,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #d5e6dc;
}
.row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.tel { font-weight: 700; color: #2f6b4a; }
.hero { padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 3.5rem); }
.kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  color: #2f6b4a;
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 1.15rem;
  font-weight: 800;
}
h1 span { color: #2f6b4a; }
.lede {
  font-family: var(--serif);
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 38ch;
  margin: 0 0 1.75rem;
}
.btn {
  display: inline-flex;
  background: var(--charcoal);
  color: var(--mint-soft);
  font-weight: 700;
  padding: .9rem 1.3rem;
  border-radius: 999px;
}
.btn:hover { background: #243830; }
.btn.dark { background: var(--charcoal); color: #fff; margin-top: 1rem; }
.process {
  background: var(--charcoal);
  color: #e7f2eb;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  position: relative; z-index: 1;
}
.process h2, .offer h2, .area h2, .cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 0 0 1.5rem;
  letter-spacing: -.02em;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.25rem;
  border-left: 3px solid var(--mint);
}
.timeline li {
  position: relative;
  padding: 0 0 1.75rem 1.5rem;
}
.timeline li:last-child { padding-bottom: 0; }
.dot {
  position: absolute;
  left: -1.25rem;
  top: .35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--mint);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(125,206,160,.25);
}
.timeline h3 { margin: 0 0 .35rem; font-size: 1.15rem; }
.timeline p { margin: 0; color: #a8c4b4; font-family: var(--serif); font-size: .98rem; }
.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}
.card {
  background: #fff;
  border: 1px solid #d5e6dc;
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 30px rgba(28,43,36,.05);
}
.card.mint { background: var(--mint-soft); border-color: transparent; }
.card ul { margin: 0; padding: 0 0 0 1.1rem; color: var(--muted); }
.card li { margin-bottom: .45rem; }
.card p { font-family: var(--serif); color: var(--muted); margin: 0; }
.area { padding-bottom: 2rem; }
.area p { color: var(--muted); max-width: 46ch; line-height: 1.7; font-family: var(--serif); }
.cta {
  background: var(--mint);
  color: var(--charcoal);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  text-align: center;
  position: relative; z-index: 1;
}
.cta .btn { background: var(--charcoal); color: #fff; }
.foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  padding: 1.25rem 0 2rem;
  color: var(--muted); font-size: .9rem;
}
.foot a { color: #2f6b4a; font-weight: 700; }
@media (max-width: 720px) {
  .offer { grid-template-columns: 1fr; }
}
