* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #11131a;
  --muted: #5c606b;
  --accent: #e23d2b;
  --accent-dark: #b92e20;
  --paper: #f6f4f1;
  --tone: #f0ebe6;
  --shadow: rgba(17, 19, 26, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fcfbfa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 16px;
  border-bottom: 1px solid #e1dcd6;
  background: #fff;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 6vw 8px;
  background: var(--tone);
}

.hero-strip p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.magazine {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 6vw 70px;
}

.section {
  padding: 22px 0;
  border-top: 1px solid #e6e0da;
}

.section:first-child {
  border-top: none;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.mag-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mag-columns.split {
  flex-direction: column;
}

.mag-columns.split > div {
  flex: 1;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 24px 45px -35px var(--shadow);
}

.feature-panel .cta-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.image-wrap {
  background: var(--paper);
  padding: 18px;
  border-radius: 12px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 20px 50px -40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  border: 1px solid #e5ded8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}

.price-card strong {
  font-size: 1.2rem;
}

.highlight-box {
  background: var(--ink);
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-box a {
  color: #fff;
  font-weight: 600;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--paper);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-left: 6px solid var(--accent);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 28px 60px -42px var(--shadow);
}

.lead-form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border: 1px solid #d9d2cc;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 20px 40px -25px var(--shadow);
  z-index: 20;
}

.footer {
  margin-top: auto;
  border-top: 1px solid #e1dcd6;
  padding: 26px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 24px 60px -35px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-banner {
  background: #fff;
  padding: 20px 6vw;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #e6e0da;
}

.page-banner h1 {
  margin: 0;
  font-size: 2rem;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--paper);
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.background-panel {
  background-image: url("../img/texture-noise.svg");
  background-size: cover;
  background-position: center;
  padding: 26px;
  border-radius: 14px;
}

@media (min-width: 860px) {
  .mag-columns {
    flex-direction: row;
  }

  .mag-columns.split {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
  }

  .stats-row {
    flex-direction: row;
  }

  .lead-form {
    max-width: 520px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 380px;
  }
}
