/* 1Red UK Casino - Styles */
:root {
  --bg: #0c0c0f;
  --bg-soft: #121217;
  --text: #f3f4f6;
  --muted: #c9cbd1;
  --primary: #e11d2e;
  --primary-600: #c8102e;
  --outline: #ffffff22;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: #fff; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: 3rem 0; }
.section-header { margin-bottom: 1.5rem; }
.section-header h2 { margin: 0 0 .5rem; font-size: 1.75rem; }
.section-header p { margin: 0; color: var(--muted); }

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  background: rgba(12,12,15,.95); 
  border-bottom: 1px solid rgba(255,255,255,.08); 
  backdrop-filter: saturate(180%) blur(20px); 
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: all 0.3s ease;
}
.header-inner { 
  display: grid; 
  grid-template-columns: auto 1fr auto; 
  align-items: center; 
  gap: 1.5rem; 
  padding: 1rem 0; 
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 1rem;
}
.brand { 
  transition: transform 0.2s ease;
}
.brand:hover {
  transform: scale(1.05);
}
.brand img { 
  filter: drop-shadow(0 2px 8px rgba(225,29,46,.3));
  transition: filter 0.3s ease;
}
.primary-nav ul { 
  display: flex; 
  list-style: none; 
  gap: .25rem; 
  padding: 0; 
  margin: 0; 
}
.primary-nav a { 
  color: var(--muted); 
  padding: .75rem 1rem; 
  border-radius: .75rem; 
  font-size: 0.9rem; 
  font-weight: 500;
  white-space: nowrap; 
  position: relative;
  transition: all 0.3s ease;
}

.primary-nav a:hover { 
  color: var(--text); 
  background: rgba(225,29,46,.1); 
  border: 1px solid rgba(225,29,46,.2);
  text-decoration: none; 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225,29,46,.2);
}
.header-cta { 
  display: none; 
  padding: .6rem 1.2rem; 
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(225,29,46,.3);
  transition: all 0.3s ease;
}
.header-cta:hover {
  box-shadow: 0 6px 20px rgba(225,29,46,.4);
  transform: translateY(-2px);
}

/* Mobile nav toggle */
.nav-toggle { position: absolute; left: -9999px; }
.nav-toggle-label { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--outline); border-radius: .5rem; cursor: pointer; }
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: .2s ease; }
.nav-toggle-label span::before { position: absolute; top: -6px; }
.nav-toggle-label span::after { position: absolute; top: 6px; }

/* Hide nav on mobile by default */
.primary-nav { display: none; }
#nav-toggle:checked ~ .primary-nav { display: block; grid-column: 1 / -1; }
#nav-toggle:checked ~ .primary-nav ul { flex-direction: column; padding: .75rem 0; }
#nav-toggle:checked ~ .primary-nav a { display: block; }

/* Buttons */
.btn { display: inline-block; padding: .5rem .75rem; border-radius: .5rem; font-weight: 600; border: 1px solid transparent; transition: background .2s ease, border-color .2s ease, transform .05s ease; font-size: 0.9rem; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-600)); border-color: #000; box-shadow: 0 3px 10px rgba(225,29,46,.25); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-outline { background: transparent; border-color: var(--outline); color: var(--text); }
.btn-lg { padding: .75rem 1rem; font-size: 1rem; }

/* Hero */
.hero { 
  padding: 2rem 0 3rem; 
  background: linear-gradient(135deg, rgba(225,29,46,.03) 0%, rgba(12,12,15,1) 50%, rgba(225,29,46,.02) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(225,29,46,.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(225,29,46,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { 
  display: grid; 
  gap: 2rem; 
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  text-align: center;
}
.hero-copy h1 { 
  font-size: 2rem; 
  margin: 0 0 1rem; 
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, #c9cbd1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0,0,0,.3);
}
.hero-copy p { 
  color: var(--muted); 
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-bonus {
  background: linear-gradient(135deg, rgba(225,29,46,.1) 0%, rgba(225,29,46,.05) 100%);
  border: 1px solid rgba(225,29,46,.2);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
.hero-bonus strong {
  color: var(--primary);
  font-weight: 600;
}
.hero-benefits { 
  list-style: none; 
  padding: 0; 
  margin: 1.5rem 0 2rem; 
  color: var(--muted);
  display: grid;
  gap: .75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-benefits li { 
  padding-left: 2rem; 
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.hero-benefits li:hover {
  color: var(--text);
  transform: translateX(4px);
}
.hero-benefits li::before { 
  content: "✓"; 
  position: absolute; 
  left: 0; 
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  background: rgba(225,29,46,.1);
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(225,29,46,.2);
}
.hero-actions { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.hero-actions .btn {
  min-width: 160px;
  padding: .875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-actions .btn-primary {
  box-shadow: 0 8px 25px rgba(225,29,46,.3);
  position: relative;
  overflow: hidden;
}
.hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left 0.5s ease;
}
.hero-actions .btn-primary:hover::before {
  left: 100%;
}
.hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(225,29,46,.4);
}
.hero-actions .btn-outline {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(225,29,46,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

/* About features */
.features { 
  display: grid; 
  gap: 1.5rem; 
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
.feature { 
  background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(18,18,23,.8) 100%); 
  border: 1px solid rgba(255,255,255,.08); 
  padding: 2rem 1.5rem; 
  border-radius: 1rem; 
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225,29,46,.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature:hover::before {
  opacity: 1;
}
.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(225,29,46,.2);
  box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 8px 16px rgba(225,29,46,.1);
}
.feature img {
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(225,29,46,.2));
  transition: all 0.3s ease;
}
.feature:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(225,29,46,.4));
}
.feature h3 { 
  margin: 0 0 .75rem; 
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.feature p { 
  margin: 0; 
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.feature:hover p {
  color: #e5e7eb;
}

/* Slots */
.slots-grid { 
  display: grid; 
  gap: 1rem; 
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
.slot { 
  background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(18,18,23,.9) 100%); 
  border: 1px solid rgba(255,255,255,.08); 
  border-radius: 1rem; 
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225,29,46,.1) 0%, rgba(225,29,46,.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.slot:hover::before {
  opacity: 1;
}
.slot:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(225,29,46,.3);
  box-shadow: 0 25px 50px rgba(0,0,0,.4), 0 12px 24px rgba(225,29,46,.2);
}
.slot-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.slot img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}
.slot:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}
.slot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.3) 70%, rgba(0,0,0,.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.slot:hover .slot-overlay {
  opacity: 1;
}
.slot-play-btn {
  background: rgba(225,29,46,.9);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.slot:hover .slot-play-btn {
  transform: scale(1);
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(225,29,46,.4);
}
.slot-info { 
  padding: 1.25rem;
  position: relative;
  z-index: 2;
}
.slot-info h3 { 
  margin: 0 0 .5rem; 
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
}
.slot:hover .slot-info h3 {
  color: #ffffff;
}
.slot-info p { 
  margin: 0; 
  color: var(--muted); 
  font-size: .9rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.slot:hover .slot-info p {
  color: #d1d5db;
}
.slot-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(225,29,46,.9);
  color: white;
  padding: .25rem .75rem;
  border-radius: 1rem;
  font-size: .75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  z-index: 3;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}
.slot:hover .slot-badge {
  transform: translateY(0);
  opacity: 1;
}

/* Bonuses */
.bonus-grid { 
  display: grid; 
  gap: 1.5rem; 
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
.bonus { 
  background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(18,18,23,.95) 100%); 
  border: 1px solid rgba(255,255,255,.1); 
  padding: 2rem 1.5rem; 
  border-radius: 1.25rem; 
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: block;
}
.bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225,29,46,.08) 0%, rgba(225,29,46,.03) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bonus:hover::before {
  opacity: 1;
}
.bonus::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(225,29,46,.5) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}
.bonus:hover::after {
  transform: scaleY(1);
}
.bonus:hover {
  transform: translateY(-8px);
  border-color: rgba(225,29,46,.25);
  box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 8px 16px rgba(225,29,46,.15);
}
.bonus-content { 
  position: relative;
  z-index: 1;
}
.bonus-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #c41e3a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 16px rgba(225,29,46,.3);
  transition: all 0.3s ease;
}
.bonus:hover .bonus-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(225,29,46,.4);
}
.bonus h3 { 
  margin: 0 0 1rem; 
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.bonus:hover h3 {
  color: #ffffff;
}
.bonus p { 
  margin: 0 0 1.5rem; 
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.bonus:hover p {
  color: #e5e7eb;
}
.bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .5rem;
  display: block;
  text-shadow: 0 2px 4px rgba(225,29,46,.3);
  transition: all 0.3s ease;
}
.bonus:hover .bonus-amount {
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(225,29,46,.5);
  transform: scale(1.05);
}
.bonus-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #c41e3a 100%);
  color: white;
  border: none;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bonus-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left 0.5s ease;
}
.bonus:hover .bonus-cta::before {
  left: 100%;
}
.bonus:hover .bonus-cta {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225,29,46,.4);
}

/* Payments */
.payment-logos { display: grid; grid-template-columns: repeat(4, minmax(64px, 1fr)); gap: 1rem; align-items: center; }
.payment-logos img { filter: grayscale(100%) brightness(1.2); opacity: .9; height: 28px; width: auto; justify-self: center; }
.payment-crypto p { margin-top: .5rem; color: var(--muted); font-size: .95rem; }
/* Final CTA */
.final-cta .cta-wrap { display: grid; gap: 1rem; background: linear-gradient(180deg, #15151a, #0f0f12); border: 1px solid var(--outline); border-radius: .75rem; padding: 1.25rem; }
.final-cta .benefits { list-style: none; padding: 0; margin: .5rem 0 0; color: var(--muted); }
.final-cta .benefits li { padding-left: 1.25rem; position: relative; }
.final-cta .benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); }

/* Footer */
.site-footer, .footer { 
  background: linear-gradient(135deg, rgba(12,12,15,.95) 0%, rgba(18,18,23,.98) 100%); 
  border-top: 1px solid rgba(225,29,46,.1); 
  padding: 3rem 0 2rem; 
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before, .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}
.site-footer::after, .footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(225,29,46,.05) 0%, transparent 50%);
  pointer-events: none;
}
.footer-inner { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.footer-brand { 
  display: flex; 
  flex-direction: column;
  align-items: center; 
  gap: 1rem;
  text-align: center;
}
.footer-brand img { 
  height: 32px; 
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(225,29,46,.3));
}
.footer-brand p { 
  margin: 0; 
  font-size: 0.9rem; 
  color: var(--muted);
  max-width: 400px;
  line-height: 1.6;
}
.footer-nav { 
  width: 100%; 
  margin: 1rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-nav ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 1.5rem; 
  font-size: 0.9rem;
}
.footer-nav a { 
  color: var(--muted); 
  padding: 0.5rem 0; 
  display: block; 
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.footer-nav a:hover::after {
  width: 100%;
}
.footer-nav a:hover { 
  color: var(--text); 
  text-decoration: none;
  transform: translateY(-2px);
}
.footer-legal { 
  color: var(--muted); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 1rem; 
  font-size: 0.8rem; 
  text-align: center; 
  width: 100%;
  max-width: 800px;
  line-height: 1.6;
}
.footer-legal img { 
  height: 24px; 
  width: auto; 
  margin-bottom: 0.5rem;
  opacity: .7;
  transition: opacity 0.3s ease;
}
.footer-legal img:hover {
  opacity: 1;
}
.footer-legal p { 
  margin: 0.5rem 0;
}
.footer-legal strong {
  color: var(--text);
}
.footer-disclaimer {
  background: rgba(225,29,46,.05);
  border: 1px solid rgba(225,29,46,.1);
  border-radius: .75rem;
  padding: 1rem;
  margin-top: 1rem;
  font-size: .75rem;
  line-height: 1.5;
}
.footer-responsible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* Copyright line */
.site-footer .copyright, .footer .copyright {
  text-align: center;
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--outline);
  width: 100%;
}

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; padding: .5rem; background: #000; }

/* Responsive */
@media (min-width: 768px) {
  .header-inner { grid-template-columns: auto 1fr auto auto; gap: 1rem; }
  .nav-toggle-label { display: none; }
  .primary-nav { display: block !important; }
  .primary-nav ul { justify-content: center; gap: .75rem; }
  .primary-nav a { font-size: 0.9rem; padding: .5rem .65rem; }
  .header-cta { display: inline-block; }

  .hero { padding-top: 2rem; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 2rem; }
  .hero-copy h1 { font-size: 2.25rem; }

  .features { grid-template-columns: repeat(3, 1fr); }
  .slots-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .final-cta .cta-wrap { grid-template-columns: 1.2fr .8fr; align-items: center; }
  
  /* Footer desktop improvements */
  .footer-inner, .site-footer .footer-inner { 
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .footer-brand { 
    width: 100%;
    justify-content: center;
  }
  .footer-brand img { 
    height: 36px;
  }
  .footer-brand p {
    font-size: 1rem;
  }
  .footer-nav { 
    width: 100%;
  }
  .footer-nav ul { 
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    row-gap: 1rem;
    column-gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
  }
  .footer-legal { 
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }
  .footer-legal img {
    height: 28px;
  }
  
  .payment-logos { grid-template-columns: repeat(8, 1fr); }
}

@media (min-width: 1024px) {
  .hero-copy h1 { font-size: 2.5rem; }
}