/* ==========================================================
   mavobrightcrew.garden — Scandinavian Minimal Luxury
   World Cup 2026 Group-Stage Preview Hub
   ========================================================== */

/* ---------- Root Variables ---------- */
:root {
  --white: #FFFFFF;
  --charcoal: #1F2937;
  --charcoal-deep: #141C28;
  --beige: #F5F1EA;
  --beige-deep: #ECE5D8;
  --forest: #2F6B4F;
  --forest-deep: #24523D;
  --gold: #D4A373;
  --gold-soft: #E4C49E;
  --text-dark: #1F2937;
  --text-mid: #5B6470;
  --text-light: #F5F1EA;
  --line: rgba(31, 41, 55, 0.12);
  --line-light: rgba(245, 241, 234, 0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 2px;
  --shadow: 0 18px 50px rgba(31, 41, 55, 0.10);
  --transition: 0.35s cubic-bezier(0.25, 0.6, 0.3, 1);
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Layout System ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 860px; }
.center { text-align: center; }
.lead-text { font-size: 1.1rem; color: var(--text-mid); max-width: 680px; margin: 0 auto; }

section { padding: 110px 0; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.center { text-align: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 20px; }

.section-head { max-width: 700px; margin-bottom: 64px; }
.section-head p:not(.eyebrow) { color: var(--text-mid); margin-top: 8px; }
.section-head.light h2 { color: var(--text-light); }
.section-head.light p:not(.eyebrow) { color: rgba(245, 241, 234, 0.7); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 38px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost.light-ghost { border-color: var(--beige); color: var(--beige); }
.btn-ghost.light-ghost:hover { background: var(--beige); color: var(--charcoal); }
.btn-sm { padding: 11px 24px; font-size: 0.72rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--forest);
  border-radius: 50%;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.brand-tld { color: var(--gold); }

.main-nav { display: flex; gap: 36px; }
.main-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--charcoal); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 0; background: var(--charcoal); }
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 640px;
}
.hero-copy {
  background: var(--beige);
  padding: 110px 70px 110px max(70px, calc((100vw - var(--maxw)) / 2 + 32px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 { color: var(--charcoal); margin-bottom: 26px; }
.hero-lead { color: var(--text-mid); font-size: 1.06rem; max-width: 540px; margin-bottom: 42px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.center-actions { justify-content: center; }

.hero-panel {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: 60px; right: 60px;
  width: 90px; height: 90px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.35;
}
.hero-panel-inner {
  border: 1px solid var(--line-light);
  padding: 48px 44px;
  width: 100%;
  max-width: 380px;
}
.hero-panel-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-panel-match {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}
.hero-panel-match span { color: var(--gold); font-size: 1.2rem; padding: 0 6px; }
.hero-panel-group { color: rgba(245, 241, 234, 0.6); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; margin: 8px 0 30px; }
.hero-panel-stats { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.hero-panel-stats div { display: flex; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--line-light); padding-bottom: 12px; }
.hero-panel-stats strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); min-width: 90px; }
.hero-panel-stats span { font-size: 0.8rem; color: rgba(245, 241, 234, 0.65); }
.hero-panel-link { color: var(--beige); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; transition: color var(--transition); }
.hero-panel-link:hover { color: var(--gold); }

/* ---------- About ---------- */
.about { background: var(--white); padding: 120px 0; }
.about h2 { margin-bottom: 26px; }

/* ---------- Match Index Cards ---------- */
.match-index { background: var(--beige); }
.index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.index-card {
  background: var(--white);
  padding: 38px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
  position: relative;
}
.index-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height var(--transition);
}
.index-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.index-card:hover::before { height: 100%; }
.index-card-top { display: flex; justify-content: space-between; align-items: center; }
.group-chip {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius);
}
.match-no { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.index-card h3 { font-size: 1.7rem; color: var(--charcoal); }
.index-rows { display: flex; flex-direction: column; gap: 10px; }
.index-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.index-row .team { font-weight: 600; font-size: 0.92rem; color: var(--charcoal); }
.index-row .vals { font-size: 0.82rem; color: var(--text-mid); }
.index-cta {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest);
  margin-top: auto;
  transition: color var(--transition);
}
.index-card:hover .index-cta { color: var(--gold); }

/* ---------- Title Race ---------- */
.title-race { background: var(--charcoal); }
.title-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.title-card {
  border: 1px solid var(--line-light);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  background: rgba(245, 241, 234, 0.02);
}
.title-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.title-rank {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.title-card h3 { color: var(--text-light); font-size: 1.8rem; }
.title-group { color: rgba(245, 241, 234, 0.55); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin: 6px 0 26px; }
.title-stats { display: flex; gap: 36px; }
.title-stats div { display: flex; flex-direction: column; }
.title-stats strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.title-stats span { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245, 241, 234, 0.55); }

/* ---------- Expanded Previews ---------- */
.previews { background: var(--white); }
.preview-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 60px;
  margin-bottom: 44px;
  background: var(--white);
  transition: var(--transition);
  scroll-margin-top: 110px;
}
.preview-block:hover { box-shadow: var(--shadow); }
.preview-block:nth-child(even) { background: var(--beige); }
.preview-head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 36px; }
.preview-head h3 { font-size: 2.1rem; color: var(--charcoal); }

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
}
.compare-team h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.compare-team ul { display: flex; flex-direction: column; gap: 10px; }
.compare-team li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.compare-team li span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.compare-team li strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--charcoal); }
.compare-vs {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 58px; height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}
.preview-text { color: var(--text-mid); font-size: 1.02rem; max-width: 920px; }

/* ---------- Group Race Table ---------- */
.groups { background: var(--charcoal-deep); }
.group-table-wrap { overflow-x: auto; border: 1px solid var(--line-light); }
.group-table th, .group-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 0.92rem;
  white-space: nowrap;
}
.group-table thead th {
  background: rgba(212, 163, 115, 0.1);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--line-light);
}
.group-table tbody td { color: rgba(245, 241, 234, 0.82); border-bottom: 1px solid var(--line-light); }
.group-table tbody tr:last-child td { border-bottom: none; }
.group-table tbody tr { transition: background var(--transition); }
.group-table tbody tr:hover { background: rgba(245, 241, 234, 0.05); }
.group-table strong { color: var(--gold); font-family: var(--font-display); font-size: 1.15rem; }
.table-note { margin-top: 28px; color: rgba(245, 241, 234, 0.6); font-size: 0.92rem; max-width: 760px; }
.hosts .table-note { color: var(--text-mid); }

/* ---------- Host Nation Cards ---------- */
.hosts { background: var(--beige); }
.host-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 12px;
}
.host-card {
  background: var(--white);
  border-top: 4px solid var(--forest);
  padding: 44px 40px;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(31, 41, 55, 0.06);
  transition: var(--transition);
}
.host-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--gold); }
.host-flag-letter {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.host-card h3 { font-size: 1.9rem; color: var(--charcoal); }
.host-meta { color: var(--text-mid); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 6px 0 26px; }
.host-stats { display: flex; flex-direction: column; gap: 12px; }
.host-stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.host-stats span { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.host-stats strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--forest); }

/* ---------- Guide ---------- */
.guide { background: var(--white); }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.guide-item {
  background: var(--beige);
  padding: 40px 38px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.guide-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.guide-item h3 { font-size: 1.4rem; color: var(--charcoal); margin-bottom: 12px; }
.guide-item p { color: var(--text-mid); font-size: 0.96rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--beige); }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: var(--transition);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 24px 56px 24px 30px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] { border-color: var(--gold); }
.faq-item p { padding: 0 30px 26px; color: var(--text-mid); max-width: 740px; }

/* ---------- CTA Band ---------- */
.cta-band { background: var(--forest); text-align: center; padding: 100px 0; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(245, 241, 234, 0.78); margin-bottom: 40px; font-size: 1.05rem; }
.cta-band .btn-ghost.light-ghost { border-color: rgba(245, 241, 234, 0.6); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-card {
  background: var(--beige);
  border-left: 3px solid var(--forest);
  padding: 44px 48px;
  border-radius: var(--radius);
  max-width: 480px;
}
.contact-brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; }
.contact-card address { color: var(--text-mid); margin-bottom: 16px; }
.contact-email { color: var(--forest); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); padding-top: 90px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 18px;
}
.footer-brand span { color: var(--gold); }
.footer-note { color: rgba(245, 241, 234, 0.55); font-size: 0.9rem; max-width: 340px; }
.footer-col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(245, 241, 234, 0.7); font-size: 0.92rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-col address { color: rgba(245, 241, 234, 0.7); font-size: 0.92rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 26px 32px;
  text-align: center;
}
.footer-bottom p { color: rgba(245, 241, 234, 0.45); font-size: 0.84rem; }

/* ---------- Legal Pages ---------- */
.legal-page { padding: 90px 0 110px; background: var(--white); }
.legal-page h1 { color: var(--charcoal); margin-bottom: 10px; }
.legal-updated { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 44px; }
.legal-page h2 { font-size: 1.5rem; margin: 42px 0 14px; }
.legal-page p { color: var(--text-mid); margin-bottom: 14px; }
.legal-page ul { list-style: disc; padding-left: 24px; color: var(--text-mid); margin-bottom: 14px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: var(--forest); text-decoration: underline; }
.legal-page code { font-size: 0.88em; background: var(--beige); padding: 2px 6px; border-radius: 2px; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  justify-content: center;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-inner {
  background: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 32px;
  max-width: 760px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.cookie-inner p { color: rgba(245, 241, 234, 0.85); font-size: 0.9rem; flex: 1; }
.cookie-inner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn-ghost { border-color: var(--beige); color: var(--beige); }
.cookie-actions .btn-ghost:hover { background: var(--beige); color: var(--charcoal); }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   Responsive Breakpoints
   ========================================================== */

@media (max-width: 1200px) {
  .hero-copy { padding: 90px 50px; }
  .hero-panel { padding: 70px 40px; }
  .title-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 22px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 28px; }
  .main-nav a::after { display: none; }

  .hero-split { grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 28px; }
  .hero-panel { padding: 60px 28px; }
  .hero-panel::before { display: none; }

  .index-grid { grid-template-columns: 1fr; }
  .index-card { padding: 32px 26px; }

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

  .preview-block { padding: 40px 28px; }
  .compare { grid-template-columns: 1fr; gap: 24px; }
  .compare-vs { margin: 0 auto; }

  .host-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 38px; }

  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .header-inner { padding: 0 18px; height: 72px; }
  .main-nav { top: 72px; }
  .brand-text { font-size: 1.15rem; }
  .hero-copy { padding: 64px 20px; }
  .hero-panel { padding: 48px 20px; }
  .hero-panel-inner { padding: 32px 26px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .container { padding: 0 18px; }
  .preview-block { padding: 32px 20px; }
  .preview-head h3 { font-size: 1.6rem; }
  .group-table th, .group-table td { padding: 12px 14px; font-size: 0.82rem; }
  .faq-item summary { font-size: 1.1rem; padding: 20px 48px 20px 20px; }
  .faq-item p { padding: 0 20px 22px; }
  .contact-card { padding: 32px 24px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-inner { padding: 20px; }
}