:root {
  color-scheme: light;
  --ink: #10231d;
  --muted: #5d6d66;
  --line: #dbe8e1;
  --surface: #f5faf7;
  --brand: #0b8f5b;
  --brand-dark: #07663f;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, sans-serif;
  line-height: 1.7;
}
.site-header, main, footer { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.site-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-decoration: none; }
.logo img { width: 42px; height: 42px; object-fit: contain; }
nav { display: flex; gap: 18px; }
nav a, footer a { color: var(--brand-dark); font-weight: 700; text-decoration: none; }
.language { border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; }
.hero { display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px; align-items: center; padding: 58px 0 42px; }
.eyebrow { color: var(--brand-dark); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 8px 0 18px; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.08; letter-spacing: -.04em; }
h2 { margin-top: 0; font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.2; }
.lead { max-width: 680px; color: var(--muted); font-size: 1.18rem; }
.price-card, .info-card { border: 1px solid var(--line); border-radius: 24px; background: #fff; padding: 28px; box-shadow: 0 16px 45px rgba(16, 35, 29, .08); }
.price { margin: 8px 0 18px; color: var(--brand-dark); font-size: 2.4rem; font-weight: 900; }
.price small { color: var(--muted); font-size: 1rem; font-weight: 600; }
.button { display: inline-block; border-radius: 999px; background: var(--brand); color: #fff; padding: 12px 22px; font-weight: 800; text-decoration: none; }
.button:hover { background: var(--brand-dark); }
.section { padding: 36px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card h2 { font-size: 1.25rem; }
ul { padding-inline-start: 1.2rem; }
.faq { border-top: 1px solid var(--line); padding: 18px 0; }
.faq h2 { margin-bottom: 5px; font-size: 1.1rem; }
footer { border-top: 1px solid var(--line); margin-top: 42px; padding: 26px 0 50px; color: var(--muted); }
footer p { margin: 4px 0; }
@media (max-width: 760px) {
  .site-header { align-items: flex-start; gap: 14px; }
  nav { flex-wrap: wrap; justify-content: flex-end; gap: 10px; font-size: .9rem; }
  .hero, .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 30px; }
}
