/* ─── Variables ──────────────────────────────── */
:root {
  --red: #DB0011;
  --red-dark: #b0000d;
  --black: #111111;
  --graphite: #2B2F33;
  --gray-light: #F4F4F4;
  --gray-200: #e5e7eb;
  --gray-text: #6B7280;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ─── Keyframes ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ─── Layout ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section Tag ────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}
.tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.tag-center::before { display: none; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); }
.btn-red:hover .arrow-icon { transform: translateX(4px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}
.arrow-icon { transition: transform 200ms ease; }

/* ══════════════════════════════════════════════ */
/*  LOGO                                          */
/* ══════════════════════════════════════════════ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo svg { width: 32px; height: 32px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  margin-top: 3px;
}
.logo-dark .logo-name  { color: var(--black); }
.logo-dark .logo-sub   { color: var(--gray-text); }
.logo-light .logo-name { color: var(--white); }
.logo-light .logo-sub  { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════════ */
/*  NAVBAR                                        */
/* ══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 64px;
  transition: background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
#navbar.nav-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}
#navbar.nav-scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 200ms;
}
#navbar.nav-transparent .nav-links a { color: rgba(255,255,255,0.78); }
#navbar.nav-transparent .nav-links a:hover { color: var(--white); }
#navbar.nav-scrolled .nav-links a { color: var(--gray-text); }
#navbar.nav-scrolled .nav-links a:hover { color: var(--black); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 200ms;
}
.nav-cta:hover { background: var(--red-dark); color: var(--white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--white);
  line-height: 0;
  transition: color 200ms;
}
#navbar.nav-scrolled .hamburger { color: var(--graphite); }
.hamburger svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite);
  transition: color 200ms, background 200ms;
}
.mobile-menu a:hover { color: var(--red); background: var(--gray-light); }
.mobile-menu .mobile-cta {
  display: inline-flex;
  margin: 8px 24px 0;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 200ms;
}
.mobile-menu .mobile-cta:hover { background: var(--red-dark); color: var(--white); }

/* ══════════════════════════════════════════════ */
/*  HERO                                          */
/* ══════════════════════════════════════════════ */
#inicio {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #111111 0%, #2B2F33 60%, #1a1e21 100%);
  overflow: hidden;
  padding: 112px 0 88px;
}
.hero-red-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.04;
  pointer-events: none;
}
.hero-network {
  position: absolute;
  right: 0; top: 0;
  height: 100%; width: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content { max-width: 720px; }

.hero-pretag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.1s;
}
.hero-pretag-line { display: block; width: 32px; height: 2px; background: var(--red); }
.hero-pretag-text {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}

.hero-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}
.hero-h1 span { color: var(--red); }

.hero-p1 {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 620px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}
.hero-p2 {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.6s;
}
.stat-value {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.8s;
}
.hero-scroll-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
}
.hero-scroll-icon {
  color: rgba(255,255,255,0.35);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ══════════════════════════════════════════════ */
/*  ABOUT                                         */
/* ══════════════════════════════════════════════ */
#quienes-somos {
  background: var(--white);
  padding: 96px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-h2 {
  font-size: clamp(1.625rem, 2.8vw, 2.375rem);
  color: var(--black);
  margin-bottom: 20px;
}
.about-p {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.78;
  margin-bottom: 14px;
}
.about-check-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
}
.about-check-list svg {
  width: 18px; height: 18px;
  stroke: var(--red);
  fill: none;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-img-block {
  position: relative;
  padding-bottom: 36px;
  padding-left: 28px;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1e21 0%, #2B2F33 100%);
  border-radius: 4px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
}
.about-accent-card {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--red);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 4px;
  z-index: 10;
}
.about-accent-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.about-accent-text {
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 150px;
  line-height: 1.45;
}
.about-corner {
  position: absolute;
  top: -12px; right: -12px;
  width: 48px; height: 48px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

/* ══════════════════════════════════════════════ */
/*  SERVICES                                      */
/* ══════════════════════════════════════════════ */
#servicios {
  background: var(--gray-light);
  padding: 96px 0;
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.services-h2 {
  font-size: clamp(1.625rem, 2.8vw, 2.375rem);
  color: var(--black);
  margin-bottom: 14px;
}
.services-sub {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.72;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--gray-200);
  padding: 24px;
  transition: border-color 200ms, box-shadow 200ms;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
}
.svc-icon {
  width: 40px; height: 40px;
  background: var(--gray-light);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background 200ms;
}
.service-card:hover .svc-icon { background: var(--red); }
.svc-icon svg { width: 20px; height: 20px; stroke: var(--graphite); fill: none; transition: stroke 200ms; }
.service-card:hover .svc-icon svg { stroke: var(--white); }
.svc-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.45;
  transition: color 200ms;
}
.service-card:hover .svc-title { color: var(--red); }
.svc-desc { font-size: 0.75rem; color: var(--gray-text); line-height: 1.65; }

/* ══════════════════════════════════════════════ */
/*  MISSION                                       */
/* ══════════════════════════════════════════════ */
#mision {
  position: relative;
  background: linear-gradient(135deg, #111111 0%, #2B2F33 100%);
  padding: 96px 0;
  overflow: hidden;
}
.mission-left-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.mission-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.04;
  pointer-events: none;
}
.mission-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.mission-icon-ring {
  width: 72px; height: 72px;
  border: 1px solid rgba(219,0,17,0.38);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.mission-icon-ring svg { width: 28px; height: 28px; stroke: var(--red); fill: none; }
.mission-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 24px;
}
.mission-quote {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 28px;
}
.mission-divider {
  width: 48px; height: 2px;
  background: var(--red);
  margin: 0 auto;
}

/* ══════════════════════════════════════════════ */
/*  VALUES                                        */
/* ══════════════════════════════════════════════ */
#valores {
  background: var(--white);
  padding: 96px 0;
}
.values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.values-h2 {
  font-size: clamp(1.625rem, 2.8vw, 2.375rem);
  color: var(--black);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(219,0,17,0.28);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; }
.value-title { font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.value-desc { font-size: 0.8125rem; color: var(--gray-text); line-height: 1.65; }

/* ══════════════════════════════════════════════ */
/*  CAREERS                                       */
/* ══════════════════════════════════════════════ */
#empleos {
  background: var(--gray-light);
  padding: 96px 0;
}
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.careers-h2 {
  font-size: clamp(1.625rem, 2.8vw, 2.375rem);
  color: var(--black);
  margin-bottom: 20px;
}
.careers-p { font-size: 0.9375rem; color: var(--gray-text); line-height: 1.78; margin-bottom: 14px; }

.careers-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 32px;
  border-radius: 4px;
}
.careers-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.careers-icon-box {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.careers-icon-box svg { width: 20px; height: 20px; stroke: var(--white); fill: none; }
.careers-card-title { font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.careers-card-sub { font-size: 0.8125rem; color: var(--gray-text); }

.careers-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-light);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--graphite);
}
.pill-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.careers-card-footer {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.careers-card-footer a {
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 500;
}
.careers-card-footer a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════ */
/*  CONTACT                                       */
/* ══════════════════════════════════════════════ */
#contacto {
  background: var(--white);
  padding: 96px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-h2 {
  font-size: clamp(1.625rem, 2.8vw, 2.375rem);
  color: var(--black);
  margin-bottom: 20px;
}
.contact-p { font-size: 0.9375rem; color: var(--gray-text); line-height: 1.78; margin-bottom: 32px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  border: 1px solid var(--gray-200);
  padding: 20px 24px;
  border-radius: 4px;
}
.contact-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-card-head svg { width: 20px; height: 20px; stroke: var(--red); fill: none; }
.contact-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-text);
}
.contact-card a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
}
.contact-card a:hover { color: var(--red); }

.contact-areas-card {
  background: var(--gray-light);
  padding: 20px 24px;
  border-radius: 4px;
}
.contact-areas-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}
.contact-areas-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.contact-areas-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--graphite);
}
.area-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════════════════════ */
/*  FOOTER                                        */
/* ══════════════════════════════════════════════ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  margin: 14px 0;
}
.footer-email a { font-size: 0.875rem; color: var(--red); }
.footer-email a:hover { text-decoration: underline; }

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 200ms;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.28); }
.footer-deco {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.18);
}
.deco-dash { display: block; width: 16px; height: 1px; background: var(--red); }

/* ══════════════════════════════════════════════ */
/*  RESPONSIVE                                    */
/* ══════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .about-grid,
  .careers-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .about-img-block { padding-left: 16px; padding-bottom: 40px; }
  .about-accent-card { left: -8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 479px) {
  .hero-stats { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .careers-pills { grid-template-columns: 1fr; }
}
