:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #080a0c;
  --panel: #111511;
  --panel-2: #171d18;
  --border: #2b342c;
  --text: #f6f7f6;
  --muted: #aab3ac;
  --accent: #ffd400;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-size: 17px; line-height: 1.65; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 44px)); margin-inline: auto; }
.site-header { border-bottom: 1px solid #202521; background: rgba(8, 10, 12, .97); }
.site-header .wrap { min-height: 74px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 900; letter-spacing: 1.4px; text-decoration: none; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; background: var(--accent); color: #111; font-size: 22px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; font-size: 14px; }
.site-nav a { text-decoration: none; color: #d9ded9; }
.site-nav a[aria-current="page"] { color: var(--accent); }
.button { display: inline-block; padding: 13px 19px; border-radius: 12px; background: var(--accent); color: #111; font-weight: 900; text-decoration: none; }
.button.secondary { border: 1px solid #465047; background: transparent; color: #fff; }
.crumbs { padding-top: 28px; color: #929b94; font-size: 14px; }
.crumbs a { color: #cbd1cc; }
.hero { padding: 48px 0 76px; background: radial-gradient(circle at 72% 22%, rgba(44, 104, 62, .30), transparent 34%), linear-gradient(145deg, #152018, #090c0a 63%); }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: 1.3px; text-transform: uppercase; }
h1 { max-width: 850px; margin: 0 0 20px; font-size: clamp(40px, 6.5vw, 68px); line-height: 1.03; letter-spacing: -1.8px; }
.lead { max-width: 780px; margin: 0; color: #bcc4be; font-size: 20px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust { display: flex; flex-wrap: wrap; gap: 13px 28px; margin: 28px 0 0; padding: 0; color: #aeb7b0; list-style: none; font-size: 14px; }
.trust li::before { content: "✓"; margin-right: 8px; color: #91d63a; font-weight: 900; }
.section { padding: 76px 0; }
.section.alt { background: #0d100e; }
h2 { max-width: 780px; margin: 0 0 14px; font-size: clamp(30px, 4vw, 43px); line-height: 1.16; }
.section-intro { max-width: 760px; margin: 0 0 34px; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { padding: 24px; border: 1px solid var(--border); border-radius: 19px; background: var(--panel); }
.card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); }
.price-card { position: relative; }
.price-card.featured { border-color: rgba(255, 212, 0, .65); background: linear-gradient(180deg, rgba(255, 212, 0, .08), var(--panel)); }
.tag { display: inline-block; margin-bottom: 14px; padding: 5px 10px; border-radius: 999px; background: rgba(255, 212, 0, .12); color: var(--accent); font-size: 12px; font-weight: 900; }
.price { display: block; margin: 10px 0 4px; font-size: 35px; font-weight: 900; }
.features { margin: 18px 0 0; padding-left: 20px; color: #c2c9c3; }
.features li { margin: 7px 0; }
.comparison { width: 100%; border-collapse: collapse; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; }
.comparison th, .comparison td { padding: 15px; border-bottom: 1px solid var(--border); text-align: left; }
.comparison th { color: var(--accent); background: #151a16; }
.comparison tr:last-child td { border-bottom: 0; }
.faq { display: grid; gap: 12px; }
.faq details { padding: 18px 20px; border: 1px solid var(--border); border-radius: 15px; background: var(--panel); }
.faq summary { cursor: pointer; font-weight: 850; }
.faq p { margin: 12px 0 0; color: var(--muted); }
.cta { margin: 0 auto 76px; padding: 42px; border: 1px solid rgba(255, 212, 0, .38); border-radius: 25px; background: linear-gradient(135deg, rgba(255, 212, 0, .18), #152019); text-align: center; }
.cta h2, .cta p { margin-inline: auto; }
.cta p { max-width: 660px; color: #bac2bc; }
.site-footer { padding: 30px 0 40px; border-top: 1px solid #202521; color: #8f9891; font-size: 14px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 14px 24px; }
.site-footer nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 800px) {
  .site-nav { display: none; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .comparison { font-size: 14px; }
  .comparison th, .comparison td { padding: 11px 8px; }
  .cta { padding: 30px 22px; }
}
