@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --azul:       #0f1f3d;
  --azul-medio: #1a2e5a;
  --azul-claro: #2a4070;
  --naranja:    #e07a30;
  --naranja-2:  #f09040;
  --blanco:     #ffffff;
  --gris-claro: #f5f7fa;
  --gris-texto: #6b7280;
  --texto:      #1a1a2e;
  --sombra:     0 8px 32px rgba(15,31,61,.12);
  --radio:      12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--texto); background: #fff; overflow-x: hidden; }
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,31,61,.08);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(15,31,61,.12); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: .4rem 2rem;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: .6rem; }
.logo img { width: auto; height: 130px; object-fit: contain; margin: -20px 0; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; margin-left: auto; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--texto); padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--naranja); border-color: var(--naranja); }
.btn-cta {
  background: var(--naranja); color: #fff;
  padding: .6rem 1.4rem; border-radius: 6px;
  font-weight: 600; font-size: .9rem;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--naranja-2); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--azul); border-radius: 2px; transition: .3s; }

/* ─── HERO ─── */
.hero {
  position: relative;
  background: #fff;
  padding-top: 72px; /* navbar */
  overflow: visible;
  min-height: 520px;
}

/* Imagen de fondo — ocupa la mitad derecha con fade hacia izquierda */
.hero-img-bg {
  position: absolute;
  top: 0; right: 0;
  width: 65%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  animation: heroZoom 8s ease-out forwards;
}
/* Gradient fade: blanco a transparente, de izquierda a derecha */
.hero-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 10%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 65%);
  z-index: 1;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }

/* Contenido de texto — sobre la imagen */
.hero-left {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 4rem 2rem 4rem 8%;
  animation: fadeLeft .8s ease both;
}
@keyframes fadeLeft { from { opacity:0; transform: translateX(-24px); } to { opacity:1; transform: translateX(0); } }

/* Ya no hay hero-right como panel separado */
.hero-right { display: none; }

.hero-eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--naranja);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height: 1.05; color: var(--azul);
  margin-bottom: 1.2rem;
}
.hero-title em { font-style: normal; color: var(--naranja); }
.hero-sub { font-size: 1rem; color: var(--gris-texto); line-height: 1.6; max-width: 360px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-dark {
  background: var(--azul); color: #fff;
  padding: .7rem 1.5rem; border-radius: 6px;
  font-weight: 600; font-size: .9rem;
  transition: background .2s, transform .2s;
}
.btn-dark:hover { background: var(--azul-medio); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent; color: var(--azul);
  padding: .7rem 1.5rem; border-radius: 6px;
  font-weight: 600; font-size: .9rem;
  border: 2px solid var(--azul);
  transition: all .2s;
}
.btn-outline-dark:hover { background: var(--azul); color: #fff; transform: translateY(-2px); }
.hero-trust { display: flex; align-items: center; gap: 1rem; }
.trust-avatars { display: flex; }
.av { width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -12px; background: var(--azul-medio); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-size: .6rem; font-weight: 700; }
.av:first-child { margin-left: 0; }
.hero-trust strong { display: block; font-size: .88rem; color: var(--azul); font-weight: 700; }
.hero-trust span { font-size: .8rem; color: var(--gris-texto); }

/* ─── HERO WAVE ─── */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 100px;
  display: block;
}

/* ─── SERVICIOS PREVIEW ─── */
.servicios-preview {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 4rem; align-items: start;
  max-width: 1280px; margin: 0 auto;
  padding: 6rem 2rem;
}
.eyebrow-accent {
  font-size: .75rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--naranja);
  margin-bottom: 1rem;
}
.serv-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15; color: var(--azul);
  margin-bottom: 1rem;
}
.serv-left p { color: var(--gris-texto); line-height: 1.7; margin-bottom: 1.5rem; }
.link-arrow { color: var(--naranja); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.link-arrow:hover { gap: .6rem; }
.serv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.serv-card {
  background: #fff; border-radius: var(--radio);
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border-top: 3px solid transparent;
}
.serv-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(15,31,61,.16); border-top-color: var(--naranja); }
.serv-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.serv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.serv-card:hover .serv-card-img img { transform: scale(1.06); }
.serv-icon {
  position: absolute; top: 1rem; left: 1rem;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--azul); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.serv-icon svg { width: 22px; height: 22px; }
.serv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--azul); padding: 1.2rem 1.2rem .4rem;
}
.serv-card p { font-size: .88rem; color: var(--gris-texto); padding: 0 1.2rem 1.2rem; line-height: 1.5; }


/* ─── CURVAS STATS DARK ─── */
.wave-top, .wave-bottom {
  position: absolute;
  left: 0; right: 0;
  z-index: 2;
  line-height: 0;
  overflow: hidden;
}
.wave-top {
  top: -1px;
}
.wave-bottom {
  bottom: -1px;
}
.wave-top svg, .wave-bottom svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ─── STATS DARK ─── */
.stats-dark {
  background: var(--azul);
  padding: 5rem 2rem;
  position: relative;
  overflow: visible;
}
.stats-dark::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; position: relative;
}
.stat-item { text-align: center; }
.stat-icon { margin: 0 auto 1rem; width: 52px; height: 52px; border: 2px solid var(--naranja); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--naranja); }
.stat-icon svg { width: 24px; height: 24px; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: #fff; line-height: 1;
}
.stat-num span { color: var(--naranja); }
.stat-label { font-weight: 600; font-size: .95rem; color: var(--naranja-2); margin: .4rem 0 .3rem; }
.stat-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ─── NOSOTROS PREVIEW ─── */
.nosotros-preview {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 6rem 2rem;
}
.nos-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15; color: var(--azul);
  margin-bottom: 1rem;
}
.nos-left p { color: var(--gris-texto); line-height: 1.7; margin-bottom: 1.5rem; }
.nos-img-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(15,31,61,.18); }
.nos-img-wrap img { aspect-ratio: 4/3; object-fit: cover; }
.nos-badge {
  position: absolute; bottom: 1.5rem; right: -1rem;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(15,31,61,.18);
  padding: 1rem 1.2rem;
  display: flex; gap: .9rem; align-items: flex-start;
  max-width: 240px;
}
.badge-icon { width: 40px; height: 40px; min-width: 40px; background: var(--naranja); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; }
.badge-icon svg { width: 20px; height: 20px; }
.nos-badge strong { display: block; font-size: .88rem; color: var(--azul); font-weight: 700; margin-bottom: .25rem; }
.nos-badge span { font-size: .78rem; color: var(--gris-texto); line-height: 1.4; }

/* ─── CTA FINAL ─── */
.cta-final {
  background: var(--azul-medio);
  padding: 3.5rem 2rem 2.5rem;
  position: relative;
  overflow: visible;
  margin-top: 0;
}
.cta-wave-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  z-index: 2; line-height: 0;
}
.cta-wave-top svg { width: 100%; height: 70px; display: block; }
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-phone-icon {
  width: 52px; height: 52px; min-width: 52px;
  border: 2px solid var(--naranja); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--naranja);
}
.cta-phone-icon svg { width: 24px; height: 24px; }
.cta-inner h3 { color: #fff; font-size: 1.2rem; font-weight: 700; }
.cta-inner p { color: rgba(255,255,255,.7); font-size: .9rem; }
.cta-inner .btn-cta { margin-left: auto; }

/* ─── FOOTER ─── */
.footer { background: var(--azul); padding: 4rem 2rem 2rem; overflow: hidden; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo img { height: 150px; width: auto; filter: brightness(0) invert(1); margin: 0 0 .5rem 0; }
.footer-col p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; margin-top: 1rem; }
.footer-col h4 { color: var(--naranja); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--naranja); }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all .2s; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--naranja); color: var(--naranja); }
.contact-list li { display: flex; align-items: flex-start; gap: .6rem; color: rgba(255,255,255,.65); font-size: .88rem; margin-bottom: .7rem; }
.contact-list svg { width: 16px; height: 16px; min-width: 16px; margin-top: 2px; color: var(--naranja); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  padding-top: 1.5rem; font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--naranja); }

/* ─── WHATSAPP ─── */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ─── FADE UP ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease var(--d,0s), transform .6s ease var(--d,0s); }
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ─── SERVICES SLIDER ─── */
/* El wrap ocupa exactamente el lugar de .serv-cards en el grid */
.serv-slider-wrap {
  position: relative;
  /* overflow oculto solo en el eje horizontal para cortar cards */
  overflow: hidden;
}
.serv-slider {
  display: flex;
  gap: 1.4rem;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
/* Cada card = 1/3 del ancho del wrap — igual que repeat(3,1fr) */
.serv-slider .serv-card {
  min-width: calc((100% - 2.8rem) / 3);
  max-width: calc((100% - 2.8rem) / 3);
  flex-shrink: 0;
  /* Forzar imagen pequeña igual que el original */
}
.serv-slider .serv-card .serv-card-img {
  aspect-ratio: 4/3;
  max-height: 160px;
}
/* Controls debajo del slider */
.serv-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .8rem;
  margin-top: 1rem;
}
.slider-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--azul); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s, transform .2s; flex-shrink: 0;
}
.slider-btn:hover { background: var(--naranja); transform: scale(1.08); }
.slider-btn svg { width: 15px; height: 15px; }
.slider-dots { display: flex; gap: .4rem; align-items: center; }
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(15,31,61,.2); border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.slider-dot.active { background: var(--naranja); transform: scale(1.3); }

@media (max-width: 860px) {
  .serv-slider .serv-card { min-width: calc((100% - 1.4rem) / 2); max-width: calc((100% - 1.4rem) / 2); }
}
@media (max-width: 540px) {
  .serv-slider .serv-card { min-width: 80%; max-width: 80%; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .servicios-preview { grid-template-columns: 1fr; }
  .serv-cards { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ── TABLET / MOBILE ── */
@media (max-width: 860px) {
  /* ── Navbar móvil ── */
  .nav-inner {
    padding: .3rem 1.2rem;
    min-height: 68px;
    justify-content: space-between;
    align-items: center;
  }
  .logo img {
    height: 100px;
    margin: -16px 0;
    max-width: 180px;
    width: auto;
  }
  /* Hamburger: empujado al extremo derecho con margin-left auto */
  .hamburger {
    display: flex !important;
    margin-left: auto;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
    gap: 5px;
  }
  .hamburger span { width: 28px; height: 2.5px; background: var(--azul); border-radius: 3px; transition: .3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Menú desplegable — panel completo desde arriba */
  .nav-links {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    padding: 100px 2.5rem 3rem !important;
    gap: 0;
    z-index: 2000 !important;
    overflow-y: auto;
    margin: 0 !important;
  }
  .nav-links.open { display: flex !important; }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(15,31,61,.1);
    list-style: none;
  }
  .nav-links a {
    display: block !important;
    font-size: 1.5rem !important;
    color: var(--azul) !important;
    font-weight: 700 !important;
    padding: 1.2rem 0 !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
  }
  .nav-links a.active { color: var(--naranja) !important; }
  .nav-links a:hover { color: var(--naranja) !important; }
  .nav-cta { display: none; }

  /* ── Hero móvil: 2 columnas igual que PC ── */
  .hero {
    display: grid !important;
    grid-template-columns: 52% 48% !important;
    min-height: 105vw;
    padding-top: 68px;
    position: relative;
  }
  /* Imagen: camión visible y completo */
  .hero-img-bg {
    position: absolute !important;
    top: 0 !important; right: 0 !important;
    width: 70% !important;
    height: 100% !important;
  }
  .hero-img-bg img {
    object-position: 60% 55% !important; /* camión centrado hacia la derecha */
    object-fit: cover !important;
  }
  .hero-img-bg::before {
    background: linear-gradient(to right,
      #ffffff 0%, #ffffff 4%,
      rgba(255,255,255,0.5) 28%,
      rgba(255,255,255,0) 52%
    ) !important;
  }
  /* Texto con margen superior generoso */
  .hero-left {
    width: 100% !important;
    padding: 5.5rem 1rem 2rem 5% !important;
    z-index: 2;
    position: relative;
  }
  .hero-eyebrow { font-size: .7rem; margin-bottom: .9rem; letter-spacing: .15em; }
  .hero-title { font-size: clamp(1.5rem, 4.8vw, 2.5rem); line-height: 1.1; margin-bottom: 1rem; }
  .hero-sub { font-size: .88rem; max-width: 100%; margin-bottom: 1.6rem; line-height: 1.6; }
  .hero-btns { gap: .7rem; flex-direction: column; margin-bottom: 1.4rem; }
  .btn-dark, .btn-outline-dark { padding: .65rem 1.1rem; font-size: .84rem; display: inline-flex; width: fit-content; }
  .hero-trust { gap: .6rem; margin-top: .2rem; }
  .av { width: 32px; height: 32px; }
  .hero-trust strong { font-size: .82rem; }
  .hero-trust span { font-size: .74rem; }
  .hero-wave { display: block !important; }
  .hero-wave svg { height: 55px; }

  /* ── Resto ── */
  .nosotros-preview { grid-template-columns: 1fr; }
  .nos-badge { right: .5rem; bottom: .5rem; }
  .servicios-preview { padding: 3rem 1.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .wave-top svg, .wave-bottom svg { height: 40px; }
  .cta-inner { flex-direction: column; text-align: center; gap: 1.2rem; }
  .cta-inner .btn-cta { margin-left: 0; width: 100%; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .nav-inner { padding: .3rem .8rem; min-height: 60px; }
  .logo img { height: 80px; margin: -10px 0; max-width: 150px; }
  .nav-links { top: 60px; }
  .hero {
    min-height: 95vw;
    padding-top: 56px;
  }
  .hero-left { padding: 1.2rem .6rem 1.2rem 4% !important; }
  .hero-title { font-size: clamp(1.15rem, 4vw, 1.8rem); }
  .hero-eyebrow { font-size: .62rem; }
  .hero-sub { font-size: .76rem; margin-bottom: 1rem; }
  .hero-btns { flex-direction: column; gap: .4rem; margin-bottom: .8rem; }
  .btn-dark, .btn-outline-dark { padding: .45rem .75rem; font-size: .74rem; }
  .av { width: 26px; height: 26px; }
  .hero-trust strong { font-size: .72rem; }
  .hero-trust span { font-size: .65rem; }
  .serv-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: .78rem; }
  .stat-desc { font-size: .72rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .8rem; }
  .footer { padding: 1.5rem 1.5rem 1.5rem; }
  .footer-logo img { margin: 0 !important; }
  .footer-col p { margin-top: .5rem; }
}