:root {
  --bg: #f7f4ef;
  --paper: #fffdf8;
  --ink: #1f2523;
  --muted: #68716c;
  --line: #ddd5c8;
  --red: #b91f2d;
  --red-dark: #8c1823;
  --green: #244f43;
  --blue: #2d536f;
  --gold: #9a6b1f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.98);
  padding: 10px clamp(14px, 4vw, 48px);
  box-shadow: 0 10px 34px rgba(36, 42, 38, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  display: flex;
  min-width: 0;
  gap: 4px;
  justify-content: center;
  overflow-x: auto;
  border: 1px solid #e7e0d5;
  border-radius: 999px;
  background: #f2eee6;
  padding: 5px;
  scrollbar-width: none;
  white-space: nowrap;
}

nav::-webkit-scrollbar {
  display: none;
}

nav a {
  flex: 0 0 auto;
  border-radius: 999px;
  color: #33413b;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

nav a:hover {
  background: #fff;
  color: var(--red);
}

.language-switch {
  display: flex;
  min-width: max-content;
  gap: 4px;
  justify-content: flex-end;
}

.language-switch a {
  display: inline-flex;
  width: 34px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded6ca;
  border-radius: 999px;
  background: #fff;
  color: #33413b;
  padding: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.language-switch a:hover {
  border-color: var(--red);
  color: var(--red);
}

.language-switch a[aria-current="page"] {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(30, 34, 31, 0.96), rgba(30, 34, 31, 0.78)),
    radial-gradient(circle at 82% 20%, rgba(185, 31, 45, 0.32), transparent 34%),
    #202420;
  color: white;
}

.hero h1,
.final-cta h2 {
  color: white;
}

.hero .lead,
.hero p,
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #ffced3;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7.5vw, 94px);
  line-height: 0.96;
}

h2 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.15;
}

.lead {
  max-width: 820px;
  font-size: clamp(19px, 2.1vw, 24px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 900;
  line-height: 1.1;
}

.primary {
  background: var(--red);
  color: white;
}

.primary:hover {
  background: var(--red-dark);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: white;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-panel div,
.note-card,
.comparison-grid article,
.cards article,
.order-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
}

.hero-panel div {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel span,
.badge {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 28px;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.strip div {
  min-height: 120px;
  border-right: 1px solid var(--line);
  padding: 24px clamp(18px, 3vw, 34px);
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-intro {
  max-width: 980px;
  margin-bottom: 34px;
}

.note-card {
  position: sticky;
  top: 92px;
}

.note-card.dark {
  background: var(--green);
  color: white;
}

.note-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

ul,
ol {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

li + li {
  margin-top: 7px;
}

.band {
  background: #ece9e1;
}

.cards {
  display: grid;
  gap: 18px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.steps {
  margin-bottom: 28px;
}

.order-box {
  background: #fff;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-table [role="row"] {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.7fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
}

.price-table [role="row"]:last-child {
  border-bottom: 0;
}

.price-table [role="columnheader"] {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-table strong {
  color: var(--red-dark);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
}

.final-cta {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 84px);
  background: var(--green);
  color: white;
}

.final-cta p {
  max-width: 760px;
}

footer {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 26px clamp(20px, 6vw, 84px);
  color: var(--muted);
}

footer strong,
footer a {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .hero,
  .split,
  .comparison-grid,
  .three,
  .four {
    grid-template-columns: 1fr;
  }

  .strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .note-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 9px;
    padding: 9px 12px;
  }

  .brand {
    font-size: 14px;
  }

  nav {
    width: 100%;
    border-radius: 8px;
    justify-content: flex-start;
  }

  nav a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .language-switch a {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .strip {
    grid-template-columns: 1fr;
  }

  .price-table [role="row"] {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  h1 {
    font-size: 44px;
  }
}
