:root {
  --ink: #17212b;
  --muted: #5f6f7c;
  --line: #d9e2e7;
  --paper: #fbfcfd;
  --surface: #ffffff;
  --brand: #0f766e;
  --brand-2: #2563eb;
  --accent: #c2410c;
  --ok: #15803d;
  --soft: #edf7f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { color: var(--ink); background: var(--paper); }
body { margin: 0; font-size: 16px; line-height: 1.55; }
a { color: inherit; }
img { max-width: 100%; display: block; border: 1px solid var(--line); border-radius: 8px; background: #eef2f5; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(251,252,253,.94); backdrop-filter: blur(12px); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 760; text-decoration: none; }
.mark { width: 30px; height: 30px; border-radius: 7px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; }
.links a { text-decoration: none; }
.cta { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 15px; border-radius: 7px; border: 1px solid var(--brand); background: var(--brand); color: #fff; font-weight: 700; text-decoration: none; }
.cta.secondary { color: var(--brand); background: #fff; }
.hero { padding: 64px 0 44px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 42px; align-items: center; }
.eyebrow { margin: 0 0 10px; color: var(--accent); font-weight: 760; text-transform: uppercase; font-size: 13px; letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.04; letter-spacing: 0; }
h2 { margin: 0 0 18px; font-size: 30px; line-height: 1.14; letter-spacing: 0; }
h3 { margin: 0 0 8px; font-size: 18px; }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: 19px; max-width: 680px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-shot { box-shadow: 0 24px 50px rgba(23,33,43,.12); }
.band { padding: 54px 0; border-bottom: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); padding: 20px; }
.price { font-size: 34px; font-weight: 780; color: var(--ink); margin: 8px 0 12px; }
.small { font-size: 13px; color: var(--muted); }
.list { padding-left: 18px; margin: 12px 0 0; color: var(--muted); }
.list li { margin: 8px 0; }
.table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.table th, .table td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.table th { background: #f4f8fa; font-size: 13px; color: var(--muted); }
.table tr:last-child td { border-bottom: 0; }
.footer { padding: 34px 0; color: var(--muted); font-size: 14px; }
.lang { display: inline-flex; gap: 8px; align-items: center; color: var(--muted); font-size: 13px; }

@media (max-width: 860px) {
  .hero-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .links { display: none; }
  .hero { padding-top: 42px; }
  h1 { font-size: 40px; }
}
