:root {
  --bg: #f7f8f3;
  --paper: #ffffff;
  --ink: #12130f;
  --muted: #62665b;
  --line: rgba(18, 19, 15, 0.12);
  --brand: #b9f436;
  --brand-strong: #8fd900;
  --dark: #11130f;
  --dark-2: #1b1e17;
  --soft: #ecffd2;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(18, 19, 15, 0.14);
}

* {
  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(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 248, 243, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--dark);
  background: var(--brand);
  box-shadow: inset 0 -7px 0 rgba(18, 19, 15, 0.12);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover,
.footer a:hover {
  color: #4a7600;
}

.nav-actions,
.hero-actions,
.section-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 1px 0 rgba(18, 19, 15, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(18, 19, 15, 0.12);
}

.button.primary {
  border-color: rgba(18, 19, 15, 0.92);
  background: var(--brand);
}

.button.dark {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.language {
  position: relative;
}

.language-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 210px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.language:hover .language-menu,
.language:focus-within .language-menu,
.language.is-open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
}

.hero {
  padding: 76px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(185, 244, 54, 0.32), transparent 25%),
    linear-gradient(180deg, #fbfcf6 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(18, 19, 15, 0.12);
  border-radius: 999px;
  background: var(--soft);
  color: #395e00;
  font-size: 13px;
  font-weight: 850;
}

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

h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 em {
  font-style: normal;
  color: #5f9200;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  margin-top: 24px;
}

.disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
}

.hero-card {
  padding: 10px;
  border: 1px solid rgba(18, 19, 15, 0.1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: clamp(320px, 38vw, 500px);
  border-radius: 6px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.stat {
  padding: 12px;
  border-radius: 8px;
  background: #151811;
  color: #fff;
}

.stat strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.stat span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.trust-strip {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

section {
  padding: 74px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 12px 0 12px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(18, 19, 15, 0.04);
}

.icon-card {
  position: relative;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(18, 19, 15, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--soft), #fff);
  color: #395e00;
  box-shadow: inset 0 -8px 0 rgba(185, 244, 54, 0.22);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.card.dark {
  background: var(--dark);
  color: #fff;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.18;
}

.card p,
.card li {
  color: var(--muted);
}

.card.dark p,
.card.dark li {
  color: rgba(255, 255, 255, 0.72);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: #395e00;
  font-size: 12px;
  font-weight: 850;
}

.examples {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(236, 255, 210, 0.42)),
    var(--bg);
}

.example-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.example-card .tag-row {
  margin-top: 18px;
}

.example-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef1e8;
}

.example-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.example-card:hover .example-media img {
  transform: scale(1.025);
}

.example-media .card-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.example-body {
  padding: 20px;
}

.example-card:nth-child(2n) .example-media .card-icon {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.pricing .card-icon {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(185, 244, 54, 0.12);
  color: var(--brand);
  box-shadow: none;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 62px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: var(--dark);
  font-weight: 950;
}

.pricing {
  background: #10120e;
  color: #fff;
}

.pricing .section-head p,
.pricing .card p,
.pricing .card li {
  color: rgba(255, 255, 255, 0.7);
}

.pricing .card {
  background: #181b14;
  border-color: rgba(255, 255, 255, 0.1);
}

.price-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta {
  padding: 70px 0;
  background: var(--brand);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 8px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
}

.cta p {
  margin: 0;
  color: rgba(18, 19, 15, 0.72);
}

.footer {
  padding: 44px 0;
  background: var(--dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 26px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.66);
}

.footer a {
  display: block;
  margin: 7px 0;
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

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

  .nav-links {
    display: none;
  }

  .hero-grid,
  .grid.three,
  .grid.two,
  .cta-box,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-media {
    max-width: 720px;
  }

  .hero-card img {
    height: clamp(280px, 58vw, 430px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: auto;
    padding: 12px 0;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .nav-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .nav-actions .button {
    flex: 1;
  }

  h1 {
    font-size: 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 260px;
  }

  section {
    padding: 52px 0;
  }

  .card {
    padding: 18px;
  }
}
