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

/* Platforms band */
.platforms-band { background: var(--off-white); padding: 56px 56px; border-top: 1px solid var(--grey-light); border-bottom: 1px solid var(--grey-light); }
.platforms-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.platforms-title {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 28px;
}
.platforms-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 22px 48px;
}
.platform-logo {
  height: 46px; width: auto; display: block;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(35%);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
.platform-logo:hover { opacity: 1; filter: grayscale(0%); transform: translateY(-2px); }
@media (max-width: 700px) {
  .platforms-band { padding: 44px 24px; }
  .platforms-logos { gap: 18px 30px; }
  .platform-logo { height: 38px; }
}

/* REVENUE SIMULATOR */
.simulator-section { background: var(--dark-2); padding: 90px 56px; }
.simulator-inner { max-width: 760px; margin: 0 auto; }
.simulator-section .section-title { color: var(--white); }
.simulator-section .section-subtitle { color: rgba(255,255,255,0.6); }
.sim-card {
  background: var(--white);
  border-radius: 18px;
  padding: 38px 36px;
  margin-top: 40px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.sim-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sim-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.sim-field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--grey); }
.sim-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--dark);
  background: var(--off-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid var(--grey-light); border-radius: 10px;
  padding: 13px 38px 13px 14px; cursor: pointer; width: 100%;
  transition: border-color 0.2s ease;
}
.sim-field select:focus { outline: none; border-color: var(--gold); }
.sim-btn {
  margin-top: 26px; width: 100%;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--dark); background: var(--gold);
  border: none; border-radius: 10px; padding: 16px; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sim-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.sim-result {
  margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--grey-light);
  display: flex; flex-direction: column; align-items: center;
  animation: simFade 0.4s ease;
}
@keyframes simFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.sim-result-main { text-align: center; }
.sim-result-label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); }
.sim-result-value { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--dark); margin: 8px 0 4px; }
.sim-result-sub { display: block; font-size: 0.9rem; font-weight: 600; color: var(--gold-dark); }
.sim-disclaimer { font-size: 0.78rem; color: var(--grey); line-height: 1.6; text-align: center; margin: 20px 0; }
.sim-disclaimer a { color: var(--gold-dark); }
.sim-cta { display: inline-flex; }
@media (max-width: 700px) {
  .simulator-section { padding: 64px 22px; }
  .sim-card { padding: 28px 22px; }
  .sim-fields { grid-template-columns: 1fr; }
  .sim-result-value { font-size: 1.6rem; }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal.reveal-done { will-change: auto; }

/* MICRO-INTERACTIONS */
/* Tactile press feedback on buttons */
.btn-primary:active, .btn-secondary-light:active, .sim-btn:active,
.form-submit:active, .cookie-btn:active, .nav-cta:active {
  transform: scale(0.97);
}
/* Animated underline for nav links (desktop) */
@media (min-width: 901px) {
  .nav-links a:not(.nav-cta) { position: relative; }
  .nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; bottom: -5px;
    width: 100%; height: 1.5px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links a:not(.nav-cta):hover::after,
  .nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }
}
/* Subtle zoom on content photos */
.step-img, .avantages-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.step-img:hover, .avantages-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
/* Smooth focus ring on form fields */
.form-control, .sim-field select {
  transition: border-color 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.6s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
@keyframes wa-pulse {
  0% { box-shadow: 0 6px 22px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 22px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 22px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 24px; bottom: 24px;
  max-width: 420px;
  background: #181C26;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cookie-banner.visible { opacity: 1; transform: none; }
.cookie-text { font-size: 0.85rem; line-height: 1.65; margin: 0 0 16px; }
.cookie-text a { color: #E8C96A; text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; justify-content: flex-end; }
.cookie-btn {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.82rem;
  border: none; border-radius: 9px; padding: 11px 22px; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.cookie-refuse {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-refuse:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cookie-accept { background: #C9A84C; color: #0F1117; }
.cookie-accept:hover { background: #E8C96A; transform: translateY(-2px); }
@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 18px 18px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; }
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --dark: #0F1117;
  --dark-2: #181C26;
  --dark-3: #232840;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --grey: #6B7280;
  --grey-light: #E5E3DC;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

/* Smooth cross-page transitions (modern browsers) */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) { animation-duration: 0.4s; animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }

/* Fallback page fade-in for all browsers */
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageFadeIn 0.45s ease both; }
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  background: rgba(15,17,23,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
nav.scrolled {
  background: rgba(15,17,23,0.98);
  box-shadow: 0 6px 30px rgba(0,0,0,0.28);
  border-bottom-color: rgba(201,168,76,0.28);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img { height: 40px; width: auto; }

.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800; /* ExtraBold */
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-logo-text small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 500; /* Medium */
  letter-spacing: 0.22em; /* tracking 150 */
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(15,17,23,0.2);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.btn-secondary-light:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  padding: 140px 56px 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { max-width: 700px; }

.page-hero .section-label { color: var(--gold); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-subtitle { color: rgba(255,255,255,0.55); }

/* ── SECTION BASE ── */
section { padding: 90px 56px; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  max-width: 540px;
  margin-top: 14px;
  line-height: 1.75;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 14px auto 0; }

/* ── RATINGS BAR ── */
.ratings-bar {
  background: var(--dark);
  padding: 26px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.rating-item { display: flex; align-items: center; gap: 12px; }
.rating-platform { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.rating-logo { height: 24px; width: auto; display: block; object-fit: contain; }
.rating-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.rating-score { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.rating-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 64px 56px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; }
.footer-logo-text span { color: var(--gold); }

.footer-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin: 14px 0 10px;
}
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 270px;
}

.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.footer-col-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 9px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-review-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px; padding: 9px 16px;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 8px;
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.footer-review-btn:hover {
  background: rgba(201,168,76,0.1); border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,0.25); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  padding: 90px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; max-width: 600px; margin: 0 auto; }
.cta-band-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.cta-band-title span { color: var(--gold); }
.cta-band-subtitle { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 36px; }
.cta-band-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--dark);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 26px; height: 26px;
  background: var(--off-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.faq-icon svg { width: 13px; height: 13px; stroke: var(--dark); stroke-width: 2.5; fill: none; }
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--gold-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--grey); font-size: 0.92rem; line-height: 1.8; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15,17,23,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a.nav-cta {
    margin: 14px 24px;
    width: calc(100% - 48px);
    text-align: center;
  }
  section, .page-hero, .ratings-bar, footer, .cta-band { padding-left: 24px; padding-right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rating-divider { display: none; }
  .ratings-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    padding: 28px 24px;
  }
  .rating-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .rating-score { font-size: 1.15rem; }
  .rating-logo { height: 22px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
