/* =========================================================
   Winnerz — winnerzs.de
   Bespoke stylesheet. Hybrid casino + sportsbook, DACH.
   Palette: purple #7c21e8 / #6d08e5, pink-red #ed0055, black/white.
   ========================================================= */

:root {
  --purple: #7c21e8;
  --purple-deep: #6d08e5;
  --pink: #ed0055;
  --pink-soft: #ff2e75;
  --ink: #0a080e;
  --ink-2: #131019;
  --ink-3: #1c1826;
  --line: #2c2536;
  --white: #ffffff;
  --paper: #f6f4fa;
  --muted: #b6aec4;
  --muted-2: #8b8299;
  --good: #21e88f;

  --grad-brand: linear-gradient(115deg, var(--purple-deep) 0%, var(--purple) 45%, var(--pink) 100%);
  --grad-brand-soft: linear-gradient(115deg, rgba(109,8,229,0.22) 0%, rgba(237,0,85,0.16) 100%);
  --grad-text: linear-gradient(100deg, #ffd9e8 0%, #ffffff 35%, #e6d1ff 100%);

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 24px;
  --shadow-card: 0 12px 30px -14px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 50px -20px rgba(124,33,232,0.55);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font);
  font-display: swap;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius-s);
  z-index: 999;
  transition: top .15s ease;
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,8,14,0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__mark { height: 30px; width: auto; }
.brand__word {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.main-nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav__link:hover,
.main-nav__link.is-current {
  color: var(--white);
  border-color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Locale switch — segmented control, reused desktop + mobile */
.locale-switch {
  display: inline-flex;
  align-items: center;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.locale-switch__item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted-2);
  padding: 6px 12px;
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.locale-switch__item:hover { color: var(--white); }
.locale-switch__item.is-active {
  color: var(--white);
  background: var(--grad-brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--ghost {
  color: var(--white);
  border-color: var(--line);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--muted-2); background: rgba(255,255,255,0.04); }

.btn--primary {
  color: var(--white);
  background: var(--grad-brand);
  box-shadow: 0 8px 22px -8px rgba(237,0,85,0.55);
}
.btn--primary:hover { box-shadow: 0 10px 26px -6px rgba(237,0,85,0.7); }

.btn--block { width: 100%; }
.btn--lg { padding: 14px 26px; font-size: 15px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  flex-shrink: 0;
}
.burger__box {
  position: relative;
  width: 18px;
  height: 12px;
}
.burger__box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { top: 5px; }
.burger__box span:nth-child(3) { top: 10px; }
.burger[aria-expanded="true"] .burger__box span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__box span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* Mobile slide-menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  background: rgba(6,5,9,0.6);
}
.mobile-nav.is-open { display: block; }
.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: var(--ink-2);
  border-left: 1px solid var(--line);
  padding: 18px 22px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slideIn .18s ease;
}
@keyframes slideIn {
  from { transform: translateX(24px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav__close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav__links a {
  font-size: 17px;
  font-weight: 700;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav__section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav .locale-switch {
  width: 100%;
  justify-content: space-between;
}
.mobile-nav .locale-switch__item {
  flex: 1;
  text-align: center;
  min-height: 38px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 64px 0 76px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background: var(--grad-brand);
  filter: blur(0px);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 0 100%);
  opacity: 0.94;
}
.hero::after {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), rgba(255,255,255,0) 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--good); }

.hero__title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--white);
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, #fff2c9, #ffffff 55%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: 17px;
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
  margin: 0 0 30px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__meta-item .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.hero__meta-item .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.hero__panel {
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-l);
  padding: 26px;
  box-shadow: var(--shadow-glow);
}
.hero__panel-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 16px;
}
.hero__panel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__panel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.hero__panel-row .ico {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
}
.hero__panel-row .ico svg { width: 18px; height: 18px; }
.hero__panel-row .txt { display: flex; flex-direction: column; }
.hero__panel-row .txt .t1 { font-weight: 700; font-size: 14px; color: var(--white); }
.hero__panel-row .txt .t2 { font-size: 12.5px; color: var(--muted); }

/* ---------- Category chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -40px 0 46px;
  position: relative;
  z-index: 2;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  box-shadow: var(--shadow-card);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.chip:hover, .chip.is-active {
  color: var(--white);
  border-color: var(--purple);
  background: linear-gradient(180deg, rgba(124,33,232,0.22), rgba(237,0,85,0.12));
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); }

/* ---------- Section shell ---------- */
.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.section__kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin: 0 0 8px;
}
.section__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--white);
}
.section__sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 60ch;
  margin: 10px 0 0;
}

/* ---------- Feature / product cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0.9;
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--grad-brand-soft);
  border: 1px solid rgba(124,33,232,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; }
.card__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--white); }
.card__text { font-size: 14.5px; color: var(--muted); margin: 0; }
.card__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

/* ---------- Split promo (casino vs sport balance) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.split__panel {
  border-radius: var(--radius-l);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
}
.split__panel--casino {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(124,33,232,0.55), transparent 60%),
    var(--ink-2);
}
.split__panel--sport {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(237,0,85,0.5), transparent 60%),
    var(--ink-2);
}
.split__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 10px;
}
.split__title { font-size: 24px; font-weight: 800; margin: 0 0 10px; color: var(--white); }
.split__text { font-size: 14.5px; color: var(--muted); margin: 0 0 20px; max-width: 42ch; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px 20px;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-brand);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.step__title { font-weight: 700; font-size: 15px; margin: 0 0 6px; color: var(--white); }
.step__text { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-l);
  background: var(--grad-brand);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.cta-band__title { font-size: 24px; font-weight: 800; margin: 0 0 6px; position: relative; z-index: 1; }
.cta-band__text { font-size: 14.5px; color: rgba(255,255,255,0.88); margin: 0; position: relative; z-index: 1; max-width: 46ch; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .btn--ghost { border-color: rgba(255,255,255,0.5); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--muted-2);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 6px; color: var(--line); }
.breadcrumb .current { color: var(--white); font-weight: 600; }

/* ---------- SEO article block ---------- */
.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 0 70px;
}
.article h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--white);
}
.article h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 40px 0 16px;
  color: var(--white);
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.article h2:first-of-type { border-top: none; padding-top: 0; margin-top: 30px; }
.article h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 26px 0 12px;
  color: var(--white);
}
.article p { color: #cfc7dc; font-size: 15.5px; margin: 0 0 16px; }
.article strong { color: var(--white); }
.article a { color: var(--pink-soft); text-decoration: underline; text-underline-offset: 2px; }
.article a:hover { color: var(--white); }
.article ul, .article ol { margin: 0 0 18px; padding-left: 22px; color: #cfc7dc; font-size: 15.5px; }
.article li { margin-bottom: 8px; }
.article ul { list-style: none; padding-left: 0; }
.article ul li {
  position: relative;
  padding-left: 24px;
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.article ol { padding-left: 22px; }
.article ol li::marker { color: var(--pink-soft); font-weight: 700; }

.article table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 8px 0 22px;
  font-size: 14px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.article th, .article td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
  color: #cfc7dc;
}
.article th {
  background: var(--ink-3);
  color: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.article tr:last-child td { border-bottom: none; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin: 8px 0 22px; }
.faq-item {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
}
.faq-item__q .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-item__q .plus::before, .faq-item__q .plus::after {
  content: "";
  position: absolute;
  background: var(--white);
  transition: transform .18s ease;
}
.faq-item__q .plus::before { width: 10px; height: 2px; }
.faq-item__q .plus::after { width: 2px; height: 10px; }
.faq-item[data-open="true"] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}
.faq-item__a-inner {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14.5px;
}
.faq-item[data-open="true"] .faq-item__a { max-height: 600px; }

/* This block reuses the article's own h3/p from the SEO copy visually via .faq-list wrapper;
   FAQ markup below reuses the same h3+p pairs already present in the article (no duplication). */

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand__word {
  font-weight: 800;
  font-size: 19px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  display: inline-block;
}
.footer-brand__text {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 34ch;
  margin: 0 0 16px;
}
.footer-col__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 14px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 10px; }
.footer-col__links a { font-size: 14px; color: var(--muted); }
.footer-col__links a:hover { color: var(--white); }

.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.footer-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-legal__rg {
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 90ch;
}
.footer-legal__copy {
  font-size: 12.5px;
  color: var(--muted-2);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions .locale-switch,
  .header-actions .btn { display: none; }
  .burger { display: flex; }
  .site-header__row { padding: 10px 0; }
  .wrap { padding: 0 18px; }
  .hero { padding: 40px 0 56px; }
  .hero::before { clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%); }
  .chips { margin-top: -30px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 30px; }
  .hero__meta { gap: 16px; }
}

@media (max-width: 560px) {
  .article table { font-size: 12px; }
  .article th, .article td { padding: 7px 8px; }
  .article h1 { font-size: 26px; }
  .article h2 { font-size: 19px; }
}

@media (max-width: 360px) {
  .wrap { padding: 0 14px; }
  .hero__title { font-size: 30px; }
}
