:root {
  --ink: #18231f;
  --muted: #63706b;
  --paper: #f3f0e8;
  --cream: #fffdf8;
  --line: rgba(24, 35, 31, 0.15);
  --green: #176b50;
  --green-dark: #0c4936;
  --lime: #d9f99d;
  --orange: #ef8354;
  --shadow: 0 24px 70px rgba(24, 35, 31, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 86% 8%, rgba(217, 249, 157, .38), transparent 28rem), var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header { border-bottom: 1px solid var(--line); background: rgba(243,240,232,.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; text-decoration: none; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); box-shadow: inset 0 0 0 7px rgba(255,255,255,.15); font-size: 13px; letter-spacing: 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); font-weight: 800; text-decoration: none; }
.button-primary { border-color: var(--green); color: #fff; background: var(--green); }
.hero { padding: 90px 0 78px; }
.hero-grid, .two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: center; }
.eyebrow { margin-bottom: 18px; color: var(--green-dark); font-size: 13px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { margin-bottom: 24px; font-size: clamp(48px, 7vw, 82px); }
h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 54px); }
h3 { font-size: 22px; }
.lede { max-width: 720px; color: var(--muted); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.price-card, .card, .faq-item { border: 1px solid var(--line); border-radius: 24px; background: var(--cream); box-shadow: var(--shadow); }
.price-card { padding: 32px; }
.price { font-family: Georgia, "Times New Roman", serif; font-size: 64px; line-height: 1; }
.price-note { margin: 8px 0 24px; color: var(--muted); }
.check-list { padding: 0; list-style: none; }
.check-list li { margin: 10px 0; }
.check-list li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }
section { padding: 82px 0; }
.alt { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.card { padding: 28px; box-shadow: none; }
.card-number { display: block; margin-bottom: 32px; color: var(--orange); font-weight: 850; }
.use-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0; list-style: none; }
.use-cases li { padding: 20px; border-left: 4px solid var(--green); background: var(--cream); }
.faq-list { display: grid; gap: 12px; margin-top: 30px; }
.faq-item { padding: 24px; box-shadow: none; }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; color: var(--muted); }
.cta { padding: 42px; border-radius: 28px; color: #fff; background: var(--ink); }
.cta .eyebrow { color: var(--lime); }
.cta p { color: rgba(255,255,255,.72); }
footer { padding: 36px 0 50px; }
.footer-inner { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.8fr) auto; align-items: center; gap: 30px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-brand-block { display: grid; gap: 14px; }
.footer-tagline { max-width: 310px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-links a { text-underline-offset: 3px; }
.footer-year { white-space: nowrap; }
.cookie-banner { position: fixed; z-index: 30; right: 20px; bottom: 20px; width: min(520px, calc(100% - 40px)); padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--cream); box-shadow: 0 24px 70px rgba(24,35,31,.22); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin-bottom: 8px; font-size: 26px; }
.cookie-banner p { color: var(--muted); font-size: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 780px) {
  .hero-grid, .two-col, .cards, .use-cases { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .header-inner { align-items: flex-start; flex-direction: column; padding: 20px 0; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; padding: 28px 0 0; }
  .cookie-banner { right: 14px; bottom: 14px; width: calc(100% - 28px); }
}
