/* =========================================================
   Ritzo — ritzo1.de
   Bespoke stylesheet. Cozy, retro-elegant, warm-toned casino
   + sportsbook hybrid. Dark chocolate-brown base, warm orange.
   ========================================================= */

:root {
  --brown-950: #141210;
  --brown-900: #1c1512;
  --brown-800: #26190f;
  --brown-700: #41251f;
  --brown-650: #4c2b23;
  --brown-600: #5a3226;
  --brown-line: #573529;
  --cream: #f3e7de;
  --cream-dim: #cbb6a6;
  --orange: #ffa168;
  --orange-deep: #f57d51;
  --orange-soft: #ffc79a;
  --gold: #e7b978;
  --green-ok: #7bbf8e;
  --red-warn: #d97456;
  --shadow-1: 0 12px 30px rgba(10, 6, 4, 0.45);
  --shadow-2: 0 4px 14px rgba(10, 6, 4, 0.35);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--brown-950);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.25; margin: 0 0 0.55em; color: var(--cream); }
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--brown-900) 0%, var(--brown-950) 100%);
  border-bottom: 1px solid var(--brown-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__logo {
  width: 112px;
  height: 44px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-nav__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cream-dim);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.header-nav__link:hover,
.header-nav__link.is-current {
  color: var(--orange);
  border-color: var(--orange);
}

/* Locale switch (segmented control) — reused desktop + mobile */
.locale-switch {
  display: inline-flex;
  align-items: center;
  background: var(--brown-800);
  border: 1px solid var(--brown-line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.locale-switch__item {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--cream-dim);
  padding: 6px 12px;
  border-radius: 999px;
  min-width: 34px;
  text-align: center;
  transition: background .15s ease, color .15s ease;
}
.locale-switch__item:hover { color: var(--cream); }
.locale-switch__item.is-active {
  background: var(--orange);
  color: var(--brown-950);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, border-color .15s ease;
  min-height: 44px;
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--brown-line);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--brown-950);
  box-shadow: var(--shadow-2);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn--block { width: 100%; }
.btn--lg { padding: 14px 28px; font-size: 16px; }

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

/* Mobile slide menu */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 340px);
  height: 100vh;
  background: var(--brown-900);
  border-left: 1px solid var(--brown-line);
  box-shadow: -14px 0 40px rgba(0,0,0,.5);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 28px;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.mobile-nav__close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--brown-line);
  background: transparent;
  color: var(--cream);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}
.mobile-nav__links a {
  padding: 13px 6px;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid var(--brown-line);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav__section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  margin: 6px 0 10px;
}
.mobile-nav .locale-switch { width: 100%; justify-content: space-between; margin-bottom: 18px; }
.mobile-nav .locale-switch__item { flex: 1; min-height: 38px; display: flex; align-items: center; justify-content: center; }
.mobile-nav__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 4, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 150;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 140% at 85% -10%, rgba(255,161,104,0.22) 0%, rgba(255,161,104,0) 55%),
    linear-gradient(160deg, var(--brown-700) 0%, var(--brown-800) 55%, var(--brown-950) 100%);
  border-bottom: 1px solid var(--brown-line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,161,104,0.035) 0 2px, transparent 2px 34px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 20px 56px;
  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: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-soft);
  background: rgba(255,161,104,0.12);
  border: 1px solid rgba(255,161,104,0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(32px, 4.4vw, 50px);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 46ch;
  margin-bottom: 26px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cream-dim);
}
.trust-chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero__panel {
  position: relative;
  background: linear-gradient(160deg, rgba(255,161,104,0.14), rgba(38,25,15,0.5));
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-1);
}
.hero__panel-title {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-soft);
  font-weight: 700;
  margin: 0 0 14px;
}
.wheel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.wheel__cell {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--brown-800);
  border: 1px solid var(--brown-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.wheel__cell--accent {
  background: linear-gradient(150deg, var(--orange) 0%, var(--orange-deep) 100%);
  border-color: transparent;
}
.hero__panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--brown-line);
  font-size: 13px;
  color: var(--cream-dim);
}
.hero__panel-foot strong { color: var(--orange-soft); font-size: 20px; display: block; font-family: var(--font-serif); }

/* =========================================================
   SECTIONS (generic)
   ========================================================= */
.section {
  padding: 56px 0;
}
.section--tight { padding: 40px 0; }
.section--alt {
  background: var(--brown-900);
  border-top: 1px solid var(--brown-line);
  border-bottom: 1px solid var(--brown-line);
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section__kicker {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 0 0 8px;
}
.section__title {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0;
}
.section__sub {
  color: var(--cream-dim);
  max-width: 62ch;
  margin: 10px 0 0;
}

/* Category chips (casino/sport balance) */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--brown-800);
  border: 1px solid var(--brown-line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cream-dim);
  min-height: 44px;
}
.chip--active {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--brown-950);
  border-color: transparent;
}

/* Balance split: casino + sportsbook */
.balance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.balance-card {
  background: var(--brown-800);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.balance-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,161,104,0.18), transparent 70%);
}
.balance-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.balance-card__title {
  font-family: var(--font-serif);
  font-size: 21px;
  margin: 0 0 8px;
  color: var(--cream);
}
.balance-card__text {
  color: var(--cream-dim);
  font-size: 14.5px;
  margin: 0 0 16px;
}
.balance-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.balance-card__list li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 14px;
  color: var(--cream-dim);
}
.balance-card__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--brown-800);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.feature-card__num {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--orange-soft);
  margin-bottom: 10px;
}
.feature-card__title {
  font-weight: 700;
  font-size: 15.5px;
  margin: 0 0 6px;
  color: var(--cream);
}
.feature-card__text {
  font-size: 13.5px;
  color: var(--cream-dim);
  margin: 0;
}

/* Steps (how to start) */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--brown-800);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--brown-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step__title { font-weight: 700; font-size: 15px; margin: 0 0 6px; }
.step__text { font-size: 13.5px; color: var(--cream-dim); margin: 0; }

/* Payment icons strip */
.pay-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pay-strip img {
  border-radius: 8px;
  border: 1px solid var(--brown-line);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--brown-700) 0%, var(--brown-800) 100%);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 6px;
}
.cta-banner__text { color: var(--cream-dim); margin: 0; max-width: 50ch; }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb {
  padding: 16px 0 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--cream-dim);
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
}
.breadcrumb__list a { color: var(--cream-dim); }
.breadcrumb__list a:hover { color: var(--orange); }
.breadcrumb__sep { color: var(--brown-line); }
.breadcrumb__current { color: var(--orange-soft); }

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(160deg, var(--brown-700) 0%, var(--brown-900) 100%);
  border-bottom: 1px solid var(--brown-line);
  padding: 34px 0 42px;
}
.page-hero__label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 0 0 10px;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0 0 12px;
  color: var(--cream);
}
.page-hero__text {
  color: var(--cream-dim);
  max-width: 62ch;
  margin: 0;
}

/* =========================================================
   SEO ARTICLE BLOCK
   ========================================================= */
.seo-article {
  max-width: 820px;
  margin: 0 auto;
}
.seo-article h1 {
  font-size: clamp(26px, 3.6vw, 36px);
  margin-bottom: 0.5em;
}
.seo-article h2 {
  font-size: clamp(20px, 2.4vw, 25px);
  margin-top: 1.7em;
  padding-top: 0.2em;
  border-top: 1px solid var(--brown-line);
}
.seo-article h2:first-of-type { border-top: none; margin-top: 0.8em; }
.seo-article h3 {
  font-size: 18px;
  color: var(--orange-soft);
  margin-top: 1.3em;
}
.seo-article p { color: var(--cream-dim); }
.seo-article strong { color: var(--cream); }
.seo-article a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.seo-article a:hover { color: var(--orange-soft); }
.seo-article ul, .seo-article ol {
  list-style: disc;
  padding-left: 1.3em;
  color: var(--cream-dim);
  margin: 0 0 1em;
}
.seo-article ol { list-style: decimal; }
.seo-article li { margin-bottom: 0.5em; }

/* Responsive tables inside SEO article */
.seo-article table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 1.4em 0;
  background: var(--brown-800);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.seo-article th, .seo-article td {
  padding: 11px 13px;
  text-align: left;
  font-size: 13.8px;
  border-bottom: 1px solid var(--brown-line);
  overflow-wrap: anywhere;
  vertical-align: top;
}
.seo-article th {
  background: var(--brown-700);
  color: var(--orange-soft);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
}
.seo-article tr:last-child td { border-bottom: none; }
.seo-article td { color: var(--cream-dim); }

/* FAQ accordion (built from FAQ h3/p pairs via markup below) */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin: 1.4em 0; }
.faq-item {
  background: var(--brown-800);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  min-height: 44px;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: transform .2s ease;
}
.faq-item[data-open="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 18px;
}
.faq-item[data-open="true"] .faq-item__a {
  max-height: 600px;
  padding: 0 18px 16px;
}
.faq-item__a p { margin: 0; color: var(--cream-dim); font-size: 14.5px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--brown-900);
  border-top: 1px solid var(--brown-line);
  padding: 48px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand__logo { width: 100px; height: 39px; margin-bottom: 14px; }
.footer-brand__text {
  color: var(--cream-dim);
  font-size: 13.5px;
  max-width: 32ch;
  margin: 0;
}
.footer-col__title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-soft);
  margin: 0 0 14px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 10px; }
.footer-col__links a { font-size: 14px; color: var(--cream-dim); }
.footer-col__links a:hover { color: var(--orange); }
.footer-legal {
  border-top: 1px solid var(--brown-line);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-legal__age {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--cream-dim);
}
.footer-legal__badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-legal__responsible {
  font-size: 12.5px;
  color: var(--cream-dim);
  opacity: 0.85;
  max-width: 90ch;
}
.footer-legal__copyright {
  font-size: 12.5px;
  color: var(--cream-dim);
  opacity: 0.75;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { max-width: 460px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .balance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .header-nav,
  .header-actions .locale-switch,
  .header-actions .btn { display: none; }
  .burger { display: flex; }
  .site-header__inner { padding: 10px 16px; }
  .brand__logo { width: 96px; height: 38px; }
}

@media (max-width: 640px) {
  .hero__inner { padding: 40px 16px 40px; gap: 28px; }
  .hero__title { font-size: 28px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .section { padding: 40px 0; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .wheel__cell { font-size: 18px; }
}

@media (max-width: 560px) {
  .seo-article table { font-size: 12px; }
  .seo-article th, .seo-article td { padding: 8px 8px; font-size: 12px; }
  .seo-article h1 { font-size: 24px; }
  .seo-article h2 { font-size: 19px; }
  .seo-article h3 { font-size: 16px; }
  .container { padding: 0 16px; }
}

@media (max-width: 360px) {
  .brand__logo { width: 84px; height: 33px; }
  .btn--lg { padding: 12px 18px; font-size: 14.5px; }
}
