/* ==========================================================================
   FIFA World Cup 2026 Info Site — global stylesheet
   ========================================================================== */

:root {
  /* Brand colours — pitch-green primary, championship gold accent, urgent red CTA */
  --color-primary:        #0a4d2e;
  --color-primary-dark:   #06381f;
  --color-primary-light:  #146e44;
  --color-accent:         #f5b819;
  --color-accent-dark:    #d99a06;
  --color-cta:            #e63946;
  --color-cta-dark:       #c1121f;
  --color-text:           #1a1a1a;
  --color-text-muted:     #5a6470;
  --color-bg:             #ffffff;
  --color-bg-alt:         #f6f8f7;
  --color-bg-dark:        #0f2419;
  --color-border:         #e3e7e4;
  --color-card-shadow:    rgba(10, 77, 46, 0.08);

  /* Layout */
  --container-max: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 6px var(--color-card-shadow);
  --shadow-md: 0 6px 18px var(--color-card-shadow);
  --shadow-lg: 0 12px 32px rgba(10, 77, 46, 0.14);

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color .15s ease;
}
a:hover { color: var(--color-cta); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 18px;
}

.site-logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .2px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.site-logo svg { flex-shrink: 0; }
.site-logo:hover { color: var(--color-accent); }
.site-logo__text { white-space: nowrap; }
.site-logo__year { color: var(--color-accent); margin-left: 4px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle svg { width: 26px; height: 26px; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  transition: background .15s ease;
}
.site-nav a:hover,
.site-nav a.is-current {
  background: rgba(255, 255, 255, .12);
  color: var(--color-accent);
}

.btn-header-cta {
  background: var(--color-cta);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  margin-left: 6px;
  box-shadow: 0 3px 0 var(--color-cta-dark);
  transition: transform .1s ease, box-shadow .1s ease;
  white-space: nowrap;
}
.btn-header-cta:hover {
  background: var(--color-cta) !important;
  color: #fff !important;
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--color-cta-dark);
}

/* ---------- Banner Carousel ---------- */
.banner-carousel {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}
.banner-track {
  position: relative;
  width: 100%;
}
.banner-slide {
  display: none;
  width: 100%;
  position: relative;
  aspect-ratio: 1024 / 248;
}
.banner-slide.is-active { display: block; animation: bannerFade .8s ease; }
@keyframes bannerFade { from { opacity: 0; } to { opacity: 1; } }

.banner-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-slide__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.banner-slide__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.banner-slide__content-inner {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  pointer-events: auto;
}
.banner-slide__headline {
  color: #fff;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}
.banner-slide__subline {
  color: rgba(255,255,255,.9);
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.4;
  margin-bottom: 14px;
  max-width: 50%;
}
.banner-slide__cta {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 0 var(--color-cta-dark);
  transition: transform .1s ease, box-shadow .1s ease;
}
.banner-slide__cta:hover {
  color: #fff;
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--color-cta-dark);
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  justify-content: center;
  z-index: 3;
}
.banner-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .15s ease;
}
.banner-dot.is-active { background: var(--color-accent); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(245, 184, 25, .12), transparent 40%),
                    radial-gradient(circle at 80% 80%, rgba(230, 57, 70, .1), transparent 40%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.hero__inner > div { justify-content: center; }
.hero__inner .hero__eyebrow { margin-left: auto; margin-right: auto; }
.hero__eyebrow {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  opacity: .92;
  margin-bottom: 28px;
  line-height: 1.55;
}

/* Page header (interior pages) */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 50px 0 40px;
  position: relative;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.4px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-header__lead {
  font-size: clamp(16px, 1.8vw, 18px);
  opacity: .92;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
  text-align: center;
}
.breadcrumbs a { color: rgba(255,255,255,.9); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-accent); text-decoration: underline; }
.breadcrumbs span[aria-hidden="true"] { margin: 0 6px; opacity: .6; }

/* ---------- CTA Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 0;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  line-height: 1.2;
}
.btn-primary {
  background: var(--color-cta);
  color: #fff;
  box-shadow: 0 4px 0 var(--color-cta-dark);
}
.btn-primary:hover {
  color: #fff;
  background: var(--color-cta);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--color-cta-dark);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 0 var(--color-accent-dark);
}
.btn-accent:hover {
  color: var(--color-primary-dark);
  background: var(--color-accent);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--color-accent-dark);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-ghost:hover {
  color: var(--color-primary-dark);
  background: #fff;
  border-color: #fff;
}

.cta-block {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  padding: 26px 28px;
  margin: 36px 0;
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.cta-block__text { flex: 1 1 320px; }
.cta-block__title {
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
}
.cta-block__sub {
  color: var(--color-text-muted);
  font-size: 15px;
}
.cta-block .btn { flex-shrink: 0; }

.cta-dark {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-left: 0;
  color: #fff;
}
.cta-dark .cta-block__title { color: var(--color-accent); }
.cta-dark .cta-block__sub { color: rgba(255,255,255,.85); }

/* ---------- Main content layout ---------- */
.main-content {
  padding: 48px 0 24px;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
}
.prose p { margin-bottom: 18px; }
.prose h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-top: 44px;
  margin-bottom: 16px;
  letter-spacing: -.2px;
  line-height: 1.25;
}
.prose h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-top: 30px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.prose h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-top: 22px;
  margin-bottom: 8px;
}
.prose ul, .prose ol { margin: 0 0 20px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { font-weight: 700; color: var(--color-primary-dark); }
.prose blockquote {
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-alt);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-text);
}

/* ---------- Figures ---------- */
figure {
  margin: 30px auto;
  text-align: center;
}
figure img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
figcaption {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}
thead {
  background: var(--color-primary);
  color: #fff;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
th { font-weight: 700; font-size: 14px; letter-spacing: .2px; }
tbody tr:nth-child(even) { background: var(--color-bg-alt); }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- Info cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 26px 0;
}
.info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.info-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.info-card__icon svg { width: 24px; height: 24px; }
.info-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-primary-dark);
}
.info-card p { font-size: 15px; margin: 0; color: var(--color-text-muted); line-height: 1.55; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  margin: 28px 0;
}
.stat {
  text-align: center;
  padding: 6px 8px;
}
.stat__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* ---------- Promo code box ---------- */
.promo-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.promo-box__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.promo-box__code {
  font-size: 24px;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  background: rgba(255,255,255,.08);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
}
.copy-btn {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border: 0;
  padding: 12px 20px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 15px;
  transition: background .15s ease;
}
.copy-btn:hover { background: var(--color-accent-dark); }
.copy-btn.is-copied { background: #4caf50; color: #fff; }

/* ---------- FAQ ---------- */
.faq {
  margin: 36px 0;
}
.faq h2 {
  margin-bottom: 18px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .15s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
  color: var(--color-primary-dark);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-cta);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%); }
.faq-item__answer {
  padding: 0 22px 20px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.65;
}
.faq-item__answer p { margin-bottom: 12px; }
.faq-item__answer p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, .8);
  padding: 50px 0 24px;
  margin-top: 60px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 15px;
}
.footer-col a:hover { color: var(--color-accent); text-decoration: underline; }
.footer-about p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); }

.age-badge {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: .5px;
}

.responsible-note {
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--color-cta);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 18px;
  color: rgba(255,255,255,.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* ---------- Highlight callouts ---------- */
.callout {
  background: linear-gradient(180deg, #fff7e0 0%, #fef3d0 100%);
  border: 1px solid #f3d96b;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 26px 0;
  position: relative;
}
.callout__title {
  font-weight: 800;
  color: #7a5300;
  margin-bottom: 6px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.callout p { margin: 0; color: #5a3e00; font-size: 15px; }

.callout-info {
  background: #eef5f1;
  border-color: #b8d4c5;
}
.callout-info .callout__title { color: var(--color-primary-dark); }
.callout-info p { color: var(--color-primary-dark); }

/* ---------- Pros & cons ---------- */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 26px 0;
}
.proscons__col {
  border-radius: var(--radius-md);
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
}
.proscons__col h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
}
.proscons__pros h3 { color: #1a7f3c; }
.proscons__cons h3 { color: #b3261e; }
.proscons ul {
  list-style: none;
  margin: 0;
}
.proscons li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
}
.proscons__pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #1a7f3c;
}
.proscons__cons li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #b3261e;
}

/* ---------- 404 ---------- */
.notfound {
  text-align: center;
  padding: 80px 20px 60px;
}
.notfound__code {
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -3px;
}
.notfound__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--color-primary-dark);
}
.notfound__text {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.notfound__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.notfound__links a {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
}
.notfound__links a:hover { background: var(--color-primary); color: #fff; }

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  body { font-size: 16px; }
  .site-header__inner { height: 60px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-200%);
    transition: transform .25s ease;
    visibility: hidden;
  }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 0;
  }
  .site-nav a {
    border-radius: 0;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-left: 3px solid transparent;
    font-size: 16px;
  }
  .site-nav a:hover,
  .site-nav a.is-current {
    background: transparent;
    color: var(--color-accent);
    border-left-color: var(--color-accent);
    padding-left: 17px;
  }
  .btn-header-cta {
    margin: 8px 20px !important;
    text-align: center;
    display: block;
  }

  .hero { padding: 44px 0 40px; }
  .page-header { padding: 36px 0 28px; }

  .banner-slide { aspect-ratio: 1024 / 248; }
  .banner-slide__content-inner { padding: 0 14px; }
  .banner-slide__headline { font-size: 13px; line-height: 1.15; margin-bottom: 3px; }
  .banner-slide__subline { font-size: 10px; margin-bottom: 6px; line-height: 1.25; max-width: 55%; }
  .banner-slide__cta { padding: 5px 10px; font-size: 10px; }
  .banner-dots { bottom: 5px; }
  .banner-dot { width: 6px; height: 6px; }

  .main-content { padding: 32px 0 16px; }

  figure img { width: 100%; }

  .prose { font-size: 16px; }
  .prose h2 { margin-top: 32px; }

  .cta-block { padding: 22px 20px; }
  .cta-block .btn { width: 100%; }

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

  .promo-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .promo-box__code { font-size: 20px; }

  .stat-strip { padding: 18px 12px; }
  .stat__num { font-size: 26px; }

  .footer-grid { gap: 28px; }
}

@media (max-width: 480px) {
  .site-logo { font-size: 16px; }
  .site-logo svg { width: 26px; height: 26px; }
  .hero h1 { font-size: 26px; }
  .notfound__code { font-size: 80px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .banner-carousel, .site-footer, .cta-block, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
