:root {
  --yellow: #ffff00;
  --yellow-dark: #e6e600;
  --ink: #111111;
  --black: #0c0c0c;
  --char: #171717;
  --paper: #f6f3ea;
  --white: #ffffff;
  --muted: #5e5c55;
  --line: rgba(17, 17, 17, 0.12);
  --pass: #1f7a4d;
  --fail: #c1121f;
  --blue: #1d4ed8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --max: 1160px;
  --header: 118px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, .brand-word {
  font-family: Outfit, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 600;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: var(--yellow); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--yellow);
  border-bottom: 2px solid #111;
}
.site-header .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}
.logo img {
  display: block;
  height: auto;
  width: auto;
  max-height: 96px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav a:hover, .nav a[aria-current="page"] {
  background: #111;
  color: var(--yellow);
}
.nav .btn { margin-left: 8px; }
.menu-toggle {
  display: none;
  background: #111;
  color: var(--yellow);
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid #111;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}
.btn:hover { background: #2a2a2a; }
.btn-yellow {
  background: var(--yellow);
  color: #111;
}
.btn-yellow:hover { background: #ffe066; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: #fff; color: #111; border-color: #fff; }

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,204,0,0.18), transparent 28%),
    linear-gradient(160deg, #0c0c0c 0%, #1a1608 55%, #0c0c0c 100%);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 72px;
}
.hero-grid > * { min-width: 0; max-width: 100%; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,204,0,0.12);
  color: var(--yellow);
  border: 1px solid rgba(255,204,0,0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  margin: 16px 0 12px;
}
.lede { font-size: 1.2rem; color: #d8d4c8; max-width: 38rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.price-pill {
  display: block;
  margin: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 18px;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  line-height: 1.4;
  font-size: 1rem;
}
.price-pill strong {
  color: var(--yellow);
  font-size: 1.05em;
  font-weight: 800;
}
.price-note {
  margin: 10px 0 0;
  max-width: 38rem;
  font-size: 0.95rem;
  color: #cfcab8;
}
.hero-card {
  background: linear-gradient(180deg, #222 0%, #111 100%);
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}
.hero-card svg {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
}
.hero-card figcaption {
  text-align: center;
  color: #cfcab8;
  font-size: 0.92rem;
  margin-top: 10px;
}

.section-dark ul { padding-left: 1.2rem; }
.section-dark li { margin: 0.45em 0; }

.section { padding: 72px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.eyebrow {
  color: #8a6d00;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.section-dark .eyebrow { color: var(--yellow); }
.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 20px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.section-dark .card { background: #1a1a1a; border-color: #333; color: #fff; }
.card h3 { font-size: 1.25rem; }
.icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.trust div {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-weight: 700;
}
.trust small { display: block; color: var(--muted); font-weight: 500; margin-top: 4px; }

.band {
  background: var(--yellow);
  color: #111;
  padding: 28px 0;
  font-weight: 700;
}
.band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
th { background: #111; color: var(--yellow); }
.calc {
  background: #111;
  color: #fff;
  border-radius: 24px;
  padding: 28px;
}
.calc label { display: block; font-weight: 700; margin-bottom: 8px; }
.calc input {
  width: 100%;
  font-size: 1.4rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 0;
  margin-bottom: 16px;
}
.calc-result {
  background: rgba(255,204,0,0.12);
  border: 1px solid rgba(255,204,0,0.35);
  border-radius: 16px;
  padding: 16px;
}
.calc-result b { color: var(--yellow); font-size: 2rem; }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 800; font-size: 1.05rem; }
.faq details p { margin: 10px 0 4px; color: #333; }

form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-weight: 700; display: block; margin: 0 0 6px; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font: inherit;
  background: #fff;
  margin-bottom: 14px;
}
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.cf-turnstile { margin: 4px 0 16px; min-height: 65px; }
.alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 700;
}
.alert-error { background: #fde8ea; color: #8a1020; }
.alert-ok { background: #e7f6ee; color: #145c38; }

.page-hero {
  background: #111;
  color: #fff;
  padding: 48px 0 40px;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.crumbs { color: #bbb; font-size: 0.92rem; margin-bottom: 10px; }
.crumbs a { color: var(--yellow); text-decoration: none; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.contact-aside {
  background: #111;
  color: #fff;
  border-radius: 24px;
  padding: 28px;
}
.contact-aside a { color: var(--yellow); }
.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.towns span {
  background: var(--yellow);
  color: #111;
  border: 1px solid #111;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}
.section-dark .towns span {
  background: var(--yellow);
  color: #111;
}

.site-footer {
  background: #111;
  color: #d7d3c8;
  padding: 48px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.site-footer a { color: var(--yellow); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.legal {
  border-top: 1px solid #333;
  padding-top: 16px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-4, .trust, .contact-grid, .footer-grid, .grid-2, form .row {
    grid-template-columns: 1fr;
  }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--yellow);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 2px solid #111;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .hero-grid { padding: 40px 0 52px; }
  .section { padding: 48px 0; }
  .site-header { position: sticky; }
  .site-header .wrap {
    position: relative;
    min-height: 84px;
    gap: 12px;
  }
  .menu-toggle { flex: 0 0 auto; }
  .logo img { max-height: 58px; }
  .price-pill {
    white-space: normal;
    font-size: 0.82rem;
    padding: 10px 12px;
    box-sizing: border-box;
    width: 100%;
  }
  .hero-card {
    padding: 12px;
    border-radius: 18px;
    width: min(100%, 260px);
    justify-self: center;
  }
  .hero-card svg {
    max-width: 160px;
    max-height: 220px;
  }
  .hero-card figcaption { font-size: 0.82rem; }
}
