:root {
  --bg: #fbfbf7;
  --paper: #f7f7f2;
  --card: #f1f1ee;
  --ink: #171916;
  --green: #176b45;
  --green-2: #0f5135;
  --muted: #72766f;
  --line: rgba(22, 32, 26, 0.08);
  --line-2: rgba(22, 32, 26, 0.15);
  --shadow: 0 14px 40px rgba(20, 24, 20, 0.08);
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  background:
    radial-gradient(circle at 54% 17%, rgba(23, 107, 69, 0.055), transparent 28%),
    radial-gradient(circle at 68% 36%, rgba(218, 128, 114, 0.06), transparent 30%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 76px 0 0;
  pointer-events: none;
  opacity: 0.58;
  background:
    repeating-linear-gradient(
      88deg,
      transparent 0,
      transparent 21px,
      rgba(223, 226, 221, 0.55) 22px,
      transparent 23px,
      transparent 64px
    ),
    radial-gradient(ellipse at 28% 24%, transparent 0 38%, rgba(223, 226, 221, 0.44) 39%, transparent 40%),
    radial-gradient(ellipse at 78% 62%, transparent 0 42%, rgba(223, 226, 221, 0.36) 43%, transparent 44%);
}

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

button,
input,
select {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  width: min(100%, 2048px);
  margin: 0 auto;
  padding: 0 clamp(24px, 14.5vw, 300px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 247, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  width: 22px;
  height: 26px;
  display: inline-block;
}

.brand-mark i {
  position: absolute;
  width: 12px;
  height: 18px;
}

.brand-mark i:nth-child(1) {
  left: 0;
  top: 5px;
  background: #dc7166;
}

.brand-mark i:nth-child(2) {
  left: 6px;
  top: 0;
  background: #4f9a61;
}

.brand-mark i:nth-child(3) {
  left: 6px;
  bottom: 0;
  background: #f0b45b;
}

.nav-links {
  gap: 38px;
  font-size: 15px;
}

.nav-links a,
.footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--green);
}

.nav-actions {
  justify-self: end;
  gap: 10px;
}

.lang-button,
.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-radius: 9px;
  font-weight: 600;
}

.lang-button {
  min-width: 76px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(20, 24, 20, 0.08);
}

.login-button {
  min-width: 70px;
  background: var(--green);
  color: white;
}

main {
  position: relative;
  z-index: 1;
}

.hero,
.feature-section,
.method-section,
.pricing-section,
.quote-section,
.final-cta,
.footer {
  width: min(100% - 48px, 1446px);
  margin-inline: auto;
}

.hero {
  padding-top: clamp(200px, 20vh, 260px);
}

.hero-inner {
  max-width: 1000px;
}

.hero h1 {
  margin: 0;
  color: #1e573b;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0;
}

.hero p {
  max-width: 900px;
  margin: 44px 0 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, #155c3e, #15a767);
  color: white;
  font-weight: 650;
  box-shadow: 0 12px 24px rgba(21, 110, 72, 0.18);
}

.hero-product {
  margin-top: 84px;
  height: clamp(520px, 45vw, 820px);
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f2;
  box-shadow: var(--shadow);
}

.hero-product img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-section,
.method-section,
.pricing-section,
.quote-section {
  padding-top: 110px;
}

.feature-section h2,
.section-heading h2,
.quote-section h2 {
  margin: 0 0 32px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 676px;
  background: rgba(241, 241, 238, 0.86);
}

.feature-copy {
  min-height: 190px;
  padding: 28px 26px;
  border-bottom: 1px solid var(--line);
}

.feature-copy h3,
.price-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.feature-copy p,
.section-heading p,
.price-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.feature-copy a {
  display: inline-block;
  margin-top: 46px;
  color: #1e573b;
  font-size: 16px;
}

.feature-copy a::after {
  content: " ↗";
}

.mini-panel {
  align-self: center;
  width: 82%;
  margin: 0 auto;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 46px rgba(20, 24, 20, 0.08);
}

.checklist {
  padding: 18px 0;
}

.checklist p,
.score-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 15px 22px;
  font-size: 16px;
}

.checklist span {
  width: 12px;
  height: 12px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--green);
}

.comments {
  display: grid;
  gap: 16px;
  background: transparent;
  box-shadow: none;
}

.comments div {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 28px rgba(20, 24, 20, 0.1);
}

.comments small {
  color: var(--green);
  font-family: var(--mono);
}

.comments p {
  margin: 12px 0 0;
  line-height: 1.45;
}

.score-list {
  padding: 18px 0;
}

.score-list span {
  color: var(--green);
  font-family: var(--mono);
}

.section-heading {
  margin-bottom: 70px;
}

.method-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.method-rail article,
.price-card,
.quote-grid article {
  background: rgba(241, 241, 238, 0.86);
  box-shadow: 0 8px 28px rgba(20, 24, 20, 0.04);
}

.method-rail article {
  min-height: 280px;
  padding: 26px;
}

.method-rail span {
  color: var(--green);
  font-family: var(--mono);
}

.method-rail h3 {
  margin: 132px 0 10px;
  font-size: 24px;
  font-weight: 500;
}

.method-rail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  position: relative;
  display: grid;
  min-height: 660px;
  padding: 34px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.price-card.featured {
  border-color: rgba(23, 107, 69, 0.34);
  background: rgba(235, 242, 236, 0.82);
}

.badge {
  position: absolute;
  top: 30px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 8px 24px rgba(20, 24, 20, 0.08);
  font-size: 13px;
}

.price {
  margin: 24px 0 28px;
  font-family: var(--mono);
  font-size: 38px;
}

.price span {
  color: var(--muted);
  font-size: 14px;
}

.price-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--ink);
}

.price-card a {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
  background: white;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(20, 24, 20, 0.06);
}

.price-card.featured a {
  background: var(--ink);
  color: white;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quote-grid article {
  min-height: 270px;
  padding: 28px;
}

.quote-grid p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.quote-grid span {
  display: block;
  margin-top: 72px;
  color: var(--muted);
}

.final-cta {
  min-height: 680px;
  display: grid;
  place-items: center;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-size: 132px;
  font-weight: 500;
  letter-spacing: 0;
}

.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: -120px;
  padding: 0 30px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  color: var(--green-2);
  font-weight: 600;
}

.footer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  padding: 82px 0 110px;
  background: rgba(241, 241, 238, 0.9);
}

.footer div {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer p {
  margin: 0 0 8px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .feature-grid,
  .method-rail,
  .pricing-grid,
  .quote-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .price-card {
    min-height: auto;
  }

  .final-cta h2 {
    font-size: 76px;
  }

  .mini-panel {
    margin: 60px auto;
  }
}

@media (max-width: 640px) {
  .hero,
  .feature-section,
  .method-section,
  .pricing-section,
  .quote-section,
  .final-cta,
  .footer {
    width: min(100% - 24px, 1446px);
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-product {
    height: 420px;
  }

  .topbar {
    height: 68px;
  }

  .final-cta h2 {
    font-size: 54px;
  }

  .lang-button {
    display: none;
  }
}
