:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #E8000A;
  --red-glow: rgba(204,0,0,0.35);
  --white: #FFFFFF;
  --off-white: #F8F4F0;
  --charcoal: #111214;
  --charcoal-2: #1A1C1F;
  --charcoal-3: #222427;
  --mid: #444;
  --border: rgba(255,255,255,0.07);
  --border-red: rgba(204,0,0,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--charcoal);
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-light); }

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  width: 0%;
  z-index: 200;
  transition: width .1s linear;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(17,18,20,0.97), rgba(17,18,20,0.88));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-red);
  transition: all .3s;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 46px; width: auto; display: block; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  transition: background .2s, box-shadow .3s !important;
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left .5s ease;
}
.nav-cta:hover { background: var(--red-light) !important; color: #fff !important; box-shadow: 0 0 18px rgba(204,0,0,0.45) !important; }
.nav-cta:hover::after { left: 150%; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px 80px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.06) 0px,
    rgba(0,0,0,0.06) 1px,
    transparent 1px,
    transparent 12px
  );
  pointer-events: none;
  z-index: 0;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 120px;
  background: var(--red);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 3;
}
.hero-left > * { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  animation: fadeUp .8s .2s both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 9vw, 120px);
  line-height: .92;
  color: #fff;
  animation: fadeUp .8s .35s both;
}
.hero-title span { color: rgba(255,255,255,0.25); }
.hero-sub {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  animation: fadeUp .8s .5s both;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp .8s .65s both;
}
.btn-primary {
  background: #fff;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left .5s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.btn-primary:hover::after { left: 150%; }
.btn-ghost {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-right {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 80px 80px 120px;
  position: relative;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  max-width: 420px;
  animation: fadeUp .9s .7s both;
}
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.stat-box:hover { background: rgba(204,0,0,0.08); border-color: rgba(204,0,0,0.3); }
.stat-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.stat-box:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 62px;
  line-height: 1;
  color: var(--red);
}
.stat-label {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

.hero-phone {
  margin-top: 32px;
  width: 100%;
  max-width: 420px;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.35);
  border-radius: 4px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp .9s .85s both;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.hero-phone:hover { background: rgba(204,0,0,0.22); transform: translateY(-2px); }
.phone-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.phone-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulse-ring 2s ease-out infinite;
}
.phone-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.phone-num { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: #fff; letter-spacing: .05em; }

/* ── BAND ── */
.band {
  background: var(--red);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.band-track {
  display: flex;
  gap: 80px;
  animation: slide 18s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.band-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 28px;
}
.band-item span { color: #fff; }
.band-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.4); border-radius: 50%; }

/* ── SERVICIOS ── */
.section { padding: 100px 80px; }
.section-label {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  color: #fff;
  margin-bottom: 60px;
}
.section-title em { color: rgba(255,255,255,0.2); font-style: normal; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  cursor: default;
}
.service-card:hover {
  background: rgba(20,22,25,0.9);
  border-color: rgba(204,0,0,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(204,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(204,0,0,0.15);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: background .3s, box-shadow .3s;
}
.service-card:hover .service-icon {
  background: var(--red);
  box-shadow: 0 0 20px rgba(204,0,0,0.5);
}
.service-icon svg path, .service-icon svg rect, .service-icon svg circle { transition: stroke .3s; }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}
.service-num {
  position: absolute;
  top: 20px; right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}

/* ── POR QUÉ ── */
.why-section {
  padding: 100px 80px;
  background: linear-gradient(135deg, rgba(204,0,0,0.04) 0%, rgba(17,18,20,0) 60%);
  border-top: 1px solid rgba(204,0,0,0.1);
  border-bottom: 1px solid rgba(204,0,0,0.1);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual {
  position: relative;
  height: 480px;
}
.why-block {
  position: absolute;
  border-radius: 4px;
  display: flex; align-items: flex-end;
  padding: 28px;
}
.why-block-1 {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  width: 70%; height: 55%;
  top: 0; left: 0;
}
.why-block-2 {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  width: 50%; height: 40%;
  bottom: 0; right: 0;
  backdrop-filter: blur(8px);
}
.why-block-3 {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(204,0,0,0.25);
  width: 38%; height: 45%;
  bottom: 40px; left: 10%;
}
.block-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.7);
}
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px;
  border-left: 3px solid transparent;
  transition: border-color .2s, background .2s;
}
.why-point:hover {
  border-left-color: var(--red);
  border-radius: 4px;
  background: rgba(204,0,0,0.05);
}
.why-point-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.why-point-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}
.why-point-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── PROCESO ── */
.steps-wrapper { position: relative; }
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 60px; }
.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  transition: all .3s;
}
.step:hover { background: rgba(204,0,0,0.07); border-color: rgba(204,0,0,0.25); }
.step::after {
  content: '→';
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: rgba(204,0,0,0.8);
  z-index: 2;
}
.step:last-child::after { display: none; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(204,0,0,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title { font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 10px; }
.step-text { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 80px;
  background: var(--charcoal-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(204,0,0,0.06);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(204,0,0,0.3);
  background: rgba(204,0,0,0.04);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.stars { color: var(--red); font-size: 18px; letter-spacing: 3px; }
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.testimonial-location {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.05) 0px,
    rgba(0,0,0,0.05) 2px,
    transparent 2px,
    transparent 24px
  );
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  color: #fff;
}
.cta-band-title span { color: rgba(255,255,255,0.35); }
.cta-band-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.btn-white {
  background: #fff;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(0,0,0,.3); }
.cta-phone-line { color: rgba(255,255,255,0.65); font-size: 14px; text-align: right; }
.cta-phone-line strong { color: #fff; font-size: 22px; font-family: 'Bebas Neue', sans-serif; letter-spacing: .05em; }

/* ── FOOTER ── */
footer {
  background: #0C0D0E;
  padding: 60px 80px 32px;
  border-top: 3px solid var(--red);
  box-shadow: 0 -4px 30px rgba(204,0,0,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo { height: 50px; margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 240px; }
.footer-heading {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.footer-contact-item strong { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── CALL FAB ── */
.call-fab {
  display: none;
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(204,0,0,0.45);
  z-index: 90;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.call-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulse-ring 2s ease-out infinite;
}
.call-fab:hover { background: var(--red-light); transform: scale(1.06); }

footer .nav-logo { height: 38px; margin-bottom: 18px; }

/* ── ACCESSIBILITY / EXTRAS ── */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── MOBILE (max-width: 900px) ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(17,18,20,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-red);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }
  .nav-links .nav-cta { margin: 12px 24px; text-align: center; border-radius: 100px !important; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 120px 32px 60px; }
  .hero-left::after { display: none; }
  .hero-right { padding: 40px 32px 60px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .section, .why-section, .testimonials-section { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .steps-wrapper::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 24px; grid-template-columns: 1fr; }
  .cta-band-right { align-items: flex-start; }
  footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .call-fab { display: flex; }
}

/* ── EXTRA SMALL (max-width: 480px) ── */
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
