/* ==========================================================================
   Rolldorado — rolldorados.de
   Bespoke stylesheet. Dark monochrome (#0E1015) + slate-grey (#A2A5AF).
   Hybrid casino + live-casino + sportsbook brand. DACH market (DE/AT/CH).
   Pure hand-written CSS, no framework.
   ========================================================================== */

:root {
  /* -- brand palette -- */
  --ink: #0E1015;
  --ink-raised: #14171e;
  --ink-card: #191c24;
  --ink-line: #262a34;
  --slate: #A2A5AF;
  --slate-dim: #6f727d;
  --slate-bright: #d3d5db;
  --paper: #F4F4F6;
  --accent: #FFEB33;      /* echoes the logo's yellow flourish — used sparingly */
  --accent-dim: #c9bd3d;
  --win: #57b98a;
  --danger: #e0685a;

  /* -- type -- */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* -- layout -- */
  --wrap: 1180px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --header-h: 72px;
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, p, ul, ol, li, figure, table, th, td { margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  background: var(--ink);
  color: var(--slate-bright);
  font-family: var(--font);
  font-display: swap;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

/* -------------------------------------------------------------------------
   Skip link
   ------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 var(--radius-s) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 16, 21, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--ink-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__logo {
  width: 132px;
  height: 29px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav__link {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--slate);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.main-nav__link:hover,
.main-nav__link.is-current {
  color: var(--paper);
  border-color: var(--accent);
}

.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-raised);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.locale-switch__item {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--slate-dim);
  padding: 6px 12px;
  border-radius: 999px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.locale-switch__item:hover { color: var(--slate-bright); }
.locale-switch__item.is-active {
  background: var(--slate-bright);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-s);
  white-space: nowrap;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--ghost {
  color: var(--slate-bright);
  border: 1px solid var(--ink-line);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--slate); background: var(--ink-raised); }

.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2), 0 6px 18px -8px rgba(255,235,51,0.5);
}
.btn--accent:hover { background: #fff04a; }

.btn--lg { padding: 15px 30px; font-size: 16px; border-radius: var(--radius-m); }
.btn--block { width: 100%; }

/* Burger — hidden on desktop */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-s);
  flex-shrink: 0;
}
.burger:hover { background: var(--ink-raised); }
.burger__box {
  width: 20px;
  height: 14px;
  position: relative;
}
.burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--slate-bright);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}
.burger__line:nth-child(1) { top: 0; }
.burger__line:nth-child(2) { top: 6px; }
.burger__line:nth-child(3) { top: 12px; }
.is-nav-open .burger__line:nth-child(1) { top: 6px; transform: rotate(45deg); }
.is-nav-open .burger__line:nth-child(2) { opacity: 0; }
.is-nav-open .burger__line:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile slide menu */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--ink);
  z-index: 90;
  padding: 20px 24px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: none;
}
.is-nav-open .mobile-nav { transform: translateX(0); }

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 22px;
}
.mobile-nav__link {
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-bright);
  padding: 14px 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink-line);
}
.mobile-nav__link.is-current { color: var(--accent); }

.mobile-nav__section-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dim);
  margin: 22px 0 10px;
}

.mobile-nav .locale-switch { width: 100%; justify-content: space-between; }
.mobile-nav .locale-switch__item { flex: 1; justify-content: center; min-height: 44px; }

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.mobile-nav__actions .btn { min-height: 48px; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 82% -10%, rgba(162,165,175,0.14), transparent 60%),
    radial-gradient(600px 360px at 8% 110%, rgba(255,235,51,0.06), transparent 55%),
    var(--ink);
  border-bottom: 1px solid var(--ink-line);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--win);
  box-shadow: 0 0 0 3px rgba(87,185,138,0.18);
}
.hero__title {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 18px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__lede {
  font-size: 17px;
  color: var(--slate);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero__fineprint {
  font-size: 12.5px;
  color: var(--slate-dim);
}
.hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--slate-dim);
  margin-top: 2px;
}

/* Hero visual: abstract layered panel stack (casino + live + sport) */
.hero__panel {
  position: relative;
  height: 380px;
  border-radius: var(--radius-l);
  background: linear-gradient(160deg, var(--ink-card), var(--ink-raised));
  border: 1px solid var(--ink-line);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.hero__panel-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,235,51,0.14), transparent 70%);
  top: -80px;
  right: -80px;
}
.hero__panel-rows {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px;
}
.hero__chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(162,165,175,0.08);
  border: 1px solid var(--ink-line);
  color: var(--slate-bright);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
}
.hero__chip-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); }

.hero__panel-card {
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-m);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__panel-card-label { font-size: 12px; color: var(--slate-dim); }
.hero__panel-card-value { font-size: 20px; font-weight: 800; color: var(--paper); margin-top: 3px; }
.hero__panel-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--win);
  background: rgba(87,185,138,0.12);
  padding: 5px 10px;
  border-radius: 999px;
}

/* -------------------------------------------------------------------------
   Section scaffolding
   ------------------------------------------------------------------------- */
.section { padding: 64px 0; }
.section--tight { padding: 44px 0; }
.section--alt { background: var(--ink-raised); border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.section__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 8px;
}
.section__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.section__sub {
  color: var(--slate);
  font-size: 15px;
  max-width: 60ch;
  margin-top: 8px;
}

/* -------------------------------------------------------------------------
   Product pillars (casino / live / sport) — hybrid balance
   ------------------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-l);
  padding: 26px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pillar:hover { border-color: var(--slate-dim); transform: translateY(-3px); }
.pillar__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-m);
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar__title { font-size: 18px; font-weight: 700; color: var(--paper); margin-bottom: 8px; }
.pillar__text { font-size: 14.5px; color: var(--slate); margin-bottom: 16px; }
.pillar__list { display: flex; flex-direction: column; gap: 8px; }
.pillar__list-item {
  font-size: 13.5px;
  color: var(--slate-bright);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillar__list-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   Category chips strip (slot categories)
   ------------------------------------------------------------------------- */
.chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-bright);
}
.chip-strip__count {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background: var(--slate);
  padding: 2px 7px;
  border-radius: 999px;
}

/* -------------------------------------------------------------------------
   Trust / feature grid
   ------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-m);
  padding: 22px 20px;
}
.feature-card__num {
  font-size: 12px;
  font-weight: 800;
  color: var(--slate-dim);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.feature-card__title { font-size: 15.5px; font-weight: 700; color: var(--paper); margin-bottom: 6px; }
.feature-card__text { font-size: 13.5px; color: var(--slate); }

/* -------------------------------------------------------------------------
   Steps (registration / bonus flow)
   ------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-m);
  padding: 24px 20px 20px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.step__title { font-size: 15px; font-weight: 700; color: var(--paper); margin-bottom: 6px; }
.step__text { font-size: 13.5px; color: var(--slate); }

/* -------------------------------------------------------------------------
   CTA banner
   ------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--ink-card), var(--ink-raised) 70%);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-l);
  padding: 42px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,235,51,0.12), transparent 70%);
  right: -60px;
  top: -60px;
}
.cta-banner__title { font-size: 22px; font-weight: 800; color: var(--paper); margin-bottom: 8px; }
.cta-banner__text { font-size: 14.5px; color: var(--slate); max-width: 48ch; }
.cta-banner__actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; }

/* -------------------------------------------------------------------------
   Breadcrumb
   ------------------------------------------------------------------------- */
.breadcrumb {
  padding: 20px 0 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--slate-dim);
}
.breadcrumb__list a { color: var(--slate); }
.breadcrumb__list a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--slate-dim); }
.breadcrumb__current { color: var(--slate-bright); }

/* -------------------------------------------------------------------------
   SEO article block — ONLY place headings appear
   ------------------------------------------------------------------------- */
.seo-article {
  padding: 40px 0 70px;
}
.seo-article__inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-l);
  padding: 44px clamp(20px, 5vw, 56px);
}
.seo-article__inner h1 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--paper);
  line-height: 1.2;
  margin-bottom: 22px;
}
.seo-article__inner h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--paper);
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
}
.seo-article__inner h1 + h2,
.seo-article__inner > h2:first-child {
  border-top: 0;
  padding-top: 0;
}
.seo-article__inner h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--paper);
  margin: 26px 0 12px;
}
.seo-article__inner p {
  font-size: 15.5px;
  color: var(--slate);
  margin-bottom: 16px;
}
.seo-article__inner strong { color: var(--slate-bright); font-weight: 700; }
.seo-article__inner a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.seo-article__inner a:hover { color: var(--accent-dim); }
.seo-article__inner ul,
.seo-article__inner ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--slate);
  font-size: 15px;
}
.seo-article__inner ul { list-style: disc; }
.seo-article__inner ol { list-style: decimal; }
.seo-article__inner li { margin-bottom: 8px; }
.seo-article__inner li strong { color: var(--slate-bright); }

/* Responsive SEO tables — never overflow the viewport */
.seo-article__inner table {
  width: 100%;
  table-layout: fixed;
  margin: 8px 0 26px;
  font-size: 14px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-s);
  overflow: hidden;
}
.seo-article__inner th,
.seo-article__inner td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--ink-line);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.seo-article__inner th {
  background: var(--ink-raised);
  color: var(--paper);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.seo-article__inner td { color: var(--slate); }
.seo-article__inner tbody tr:last-child td { border-bottom: 0; }
.seo-article__inner tbody tr:hover td { background: rgba(162,165,175,0.04); }

.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* FAQ accordion (progressively enhanced by script.js on h3+p pairs under "Häufig gestellte Fragen") */
.seo-article__inner h3.faq-q {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  margin: 10px 0;
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-s);
  user-select: none;
}
.seo-article__inner h3.faq-q:hover { border-color: var(--slate-dim); }
.seo-article__inner h3.faq-q::after {
  content: "+";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  background: var(--slate);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}
.seo-article__inner h3.faq-q.is-open::after {
  content: "\2212";
  background: var(--accent);
}
.faq-a {
  padding: 2px 16px 14px;
  margin-top: -8px;
  margin-bottom: 10px;
}
.faq-a p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   Responsible gaming strip
   ------------------------------------------------------------------------- */
.rg-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  margin-top: 30px;
}
.rg-strip__badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--slate-bright);
}
.rg-strip__text { font-size: 13px; color: var(--slate-dim); }
.rg-strip__text a { color: var(--slate-bright); text-decoration: underline; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-raised);
  border-top: 1px solid var(--ink-line);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-brand__logo { width: 128px; height: 28px; margin-bottom: 16px; }
.footer-brand__text { font-size: 13.5px; color: var(--slate-dim); max-width: 32ch; margin-bottom: 18px; }
.footer-col__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-dim);
  margin-bottom: 16px;
}
.footer-col__list { display: flex; flex-direction: column; gap: 11px; }
.footer-col__list a { font-size: 14px; color: var(--slate); }
.footer-col__list a:hover { color: var(--accent); }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.footer-payments__pill {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--slate-dim);
  border: 1px solid var(--ink-line);
  padding: 5px 10px;
  border-radius: 6px;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-legal {
  font-size: 12px;
  color: var(--slate-dim);
  line-height: 1.7;
}
.footer-legal strong { color: var(--slate); }
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--slate-dim);
}
.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--slate-bright);
}
.footer-age__badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { height: 300px; }
  .pillars { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav,
  .header-actions .locale-switch,
  .header-actions .btn {
    display: none;
  }
  .burger { display: flex; }
  .mobile-nav { display: block; }
  .site-header__inner { justify-content: space-between; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 40px 0 40px; }
  .hero__stats { gap: 20px; }
  .section { padding: 44px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
  .seo-article__inner { padding: 30px 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .seo-article__inner table { font-size: 12.5px; }
  .seo-article__inner th,
  .seo-article__inner td { padding: 8px 8px; }
  .hero__title { font-size: 28px; }
  .hero__panel { height: 260px; padding: 0; }
  .hero__panel-rows { padding: 18px; gap: 10px; }
}

@media (max-width: 400px) {
  .brand__logo { width: 112px; height: 25px; }
  .seo-article__inner table { font-size: 11.5px; }
  .seo-article__inner th,
  .seo-article__inner td { padding: 7px 6px; }
}
