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

:root {
  --blue:        #1a6fb0;
  --blue-dark:   #0a1e33;
  --blue-glow:   #2196f3;
  --cyan:        #00d4ff;
  --white:       #ffffff;
  --bg:          #f0f6ff;
  --text:        #0d1b2a;
  --muted:       #5a7592;
  --card-bg:     #ffffff;
  --radius:      14px;
  --radius-lg:   20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* Accesibilidad: Navegación por teclado */
*:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ── NAVBAR ─────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,30,51,0.96);
  backdrop-filter: blur(16px);
  padding: 0 56px;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,212,255,0.15);
}

/* ── LOGO NAVBAR ────────────────────────── */
.nav-logo {
  display: flex; 
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  max-height: 38px; /* Altura del logo, ajústalo según tu imagen */
  width: auto;
  object-fit: contain;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-auth { display: flex; gap: 12px; align-items: center; }
.nav-auth a { text-decoration: none; }

/* ── HERO SECTION ───────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 5%;
  overflow: hidden;
}

/* animated background effect (Same as reviews page, slightly lighter) */
.hero-bg-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a2133 0%, #1a3e6b 55%, #0a2642 100%);
  overflow: hidden;
}

.hero-bg-effect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(0,212,255,0.25), transparent 25%),
              radial-gradient(circle at 85% 20%, rgba(99,102,241,0.2), transparent 25%),
              radial-gradient(circle at 70% 75%, rgba(255,255,255,0.1), transparent 25%);
  pointer-events: none;
}

.hero-bg-effect::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 12%;
  width: 130px;
  height: 130px;
  background: rgba(0,212,255,0.12);
  border-radius: 50%;
  filter: blur(18px);
}

/* glow orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 400px; height: 400px; background: #2196f3; top: -100px; left: -100px; }
.orb2 { width: 300px; height: 300px; background: #00d4ff; bottom: -80px; right: 10%; animation-delay: -4s; }
.orb3 { width: 200px; height: 200px; background: #1a6fb0; top: 40%; left: 60%; animation-delay: -2s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  margin-bottom: 28px;
  animation: fadeDown .7s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.hero h1 .highlight {
  color: inherit;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.hero-sub {
  font-size: clamp(20px, 2.5vw, 32px);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: lowercase;
}

.hero p {
  font-size: clamp(16px, 1.2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fadeLeft 1s ease both;
}

.hero-side-box {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.image-container {
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: transform 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
}

.image-container:hover {
  transform: translateY(-10px) scale(1.02);
}

.hero-side-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transform: scale(1.05);
}

.phrase-container {
  margin-top: 12px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-phrase {
  font-size: 20px;
  font-weight: 500;
  color: white;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.btn-glow, .btn-ghost {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
}
.btn-glow {
  background: linear-gradient(135deg, var(--cyan) 0%, #2196f3 100%);
  color: #0a1e33;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(0,212,255,0.4);
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,212,255,0.6); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(0,212,255,0.5); }

.btn-small { padding: 8px 20px; font-size: 13px; border-radius: 20px; }

/* stats bar */
.stats-bar {
  position: relative; z-index: 2;
  display: flex; 
  flex-direction: row;
  justify-content: center; 
  gap: 0;
  margin-top: 80px;
  width: 100%;
  animation: fadeDown .7s .4s ease both;
}

.stat {
  padding: 0 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.stat:first-child { border-left: none; }
.stat-num { font-family: 'Unbounded', sans-serif; font-size: 28px; font-weight: 900; color: var(--cyan); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; letter-spacing: .5px; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WAVE ANIMATION ── */
.wave-container-hero {
  position: relative;
  background: linear-gradient(135deg, #0a2133 0%, #1a3e6b 55%, #0a2642 100%);
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  margin-top: -1px;
}

.waves {
  width: 100%;
  height: 120px;
  display: block;
}

/* Animation for the waves */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px,0,0);
  }
  100% {
    transform: translate3d(85px,0,0);
  }
}

/* ── SECTIONS ───────────────────────────── */
section.pad { padding: 80px 56px; }
.section-white { background: var(--white); }
.section-blue  { background: var(--bg); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(26,111,176,0.1);
  color: var(--blue);
  border: 1px solid rgba(26,111,176,0.2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-header p { font-size: 16px; color: #334155; max-width: 520px; margin: 0 auto; line-height: 1.75; font-weight: 500; }

/* ── FEATURES ───────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; max-width: 1000px; margin: 0 auto; }
.feat-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: 0;
  transition: opacity .25s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,111,176,0.13); border-color: rgba(26,111,176,0.25); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── ABOUT ──────────────────────────────── */
.about-wrap { max-width: 1000px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }

.about-text-card {
  background: linear-gradient(135deg, #0a1e33 0%, #1a3a5c 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  position: relative; overflow: hidden;
}
.about-text-card::after {
  content: '"';
  position: absolute; bottom: -20px; right: 20px;
  font-family: 'Unbounded', sans-serif;
  font-size: 140px; font-weight: 900;
  color: rgba(0,212,255,0.07);
  line-height: 1;
}
.about-text-card p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.75); position: relative; z-index: 1; }
.about-text-card p + p { margin-top: 16px; }
.about-text-card strong { color: var(--cyan); font-weight: 700; }

.team-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: 20px; font-weight: 700;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1.5px solid rgba(26,111,176,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 14px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,111,176,0.12); }

/* ── IMÁGENES DEL EQUIPO ────────────────── */
.avatar-img {
  width: 72px; 
  height: 72px;
  border-radius: 50%; 
  object-fit: cover; 
  margin: 0 auto 14px;
  display: block;
  border: 3px solid rgba(0, 212, 255, 0.3); 
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.team-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.team-card span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; font-weight: 600; }

/* ── STEPS ──────────────────────────────── */
.steps-wrapper { max-width: 1000px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; position: relative; }

/* connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 56px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: 0.2;
  z-index: 0;
}

.step-card {
  background: var(--white);
  border: 1.5px solid rgba(26,111,176,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative; z-index: 1;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,111,176,0.13); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 16px; font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,212,255,0.35);
}
.step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── CTA BAND ───────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 72px 56px;
  text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid #f0f0f0;
}
.cta-band h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 4vw, 40px); font-weight: 900;
  color: var(--blue-dark); letter-spacing: -1px;
  position: relative; z-index: 1; margin-bottom: 14px;
}
.cta-band h2 span { color: var(--blue); }
.cta-band p { font-size: 16px; color: #334155; max-width: 440px; margin: 0 auto 32px; position: relative; z-index: 1; line-height: 1.7; font-weight: 500; }
.cta-band .btn-glow { position: relative; z-index: 1; color: white; }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: #060f1a;
  color: rgba(255,255,255,0.6);
  padding: 60px 56px 32px;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px; font-weight: 900;
  color: white; margin-bottom: 12px;
}
.footer-brand-name span { color: var(--cyan); }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 240px; }

.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 16px; font-weight: 700;
}
.footer-col p, .footer-col a {
  font-size: 13px; line-height: 2.2; color: rgba(255,255,255,0.45);
  text-decoration: none; display: block; transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  padding: 6px 14px; border-radius: 8px;
  font-size: 12px; text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.social-btn:hover { background: rgba(0,212,255,0.12); color: var(--cyan); border-color: rgba(0,212,255,0.3); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.2);
}

/* ── SCROLL ANIM ────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── HAMBURGER MENU ─────────────────────── */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger-btn span {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ── SIDEBAR MENU ───────────────────────── */
.sidebar-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(10, 30, 51, 0.98);
  backdrop-filter: blur(16px);
  z-index: 199;
  transition: left 0.3s ease;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-menu ul li {
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.sidebar-menu ul li a {
  display: block;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  font-size: 16px;
  font-weight: 500;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li a.active {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
}

.sidebar-menu .nav-auth {
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  padding-top: 12px;
}

.sidebar-menu .nav-auth a {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 20px;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  .hero h1 {
    font-size: clamp(40px, 10vw, 64px);
    letter-spacing: -2px;
  }
  .hero p {
    margin: 0 auto 30px;
    max-width: 600px;
    font-size: 16px;
  }
  .hero-cta {
    justify-content: center;
    width: 100%;
  }
  .hero-image-section {
    justify-content: center;
    order: 2;
  }
  .hero-side-box {
    max-width: 400px;
    margin: 0 auto;
  }
  .phrase-container {
    padding: 16px 20px;
    font-size: 14px;
    border-radius: var(--radius);
    border-left: none;
    border-top: 4px solid var(--cyan);
  }
}

@media (max-width: 768px) {
  nav { 
    padding: 0 20px; 
    height: 70px;
  }
  
  .hamburger-btn {
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }
  
  .nav-links { 
    display: none; 
  }

  .nav-auth {
    display: none; /* Hide support button on mobile nav, it's in sidebar */
  }

  .sidebar-menu {
    top: 70px;
    height: calc(100vh - 70px);
    display: flex;
  }
  
  .hero { 
    padding: 80px 20px 40px; 
    min-height: auto;
    flex-direction: column;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 30px;
  }

  .hero-content {
    order: 1;
    margin: 0 auto;
  }

  .hero-image-section {
    order: 2;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 48px);
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  .hero-cta .btn-glow, .hero-cta .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
  }

  .hero-side-box {
    max-width: 300px;
  }

  .stats-bar {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 24px 20px;
    margin-top: 40px;
    border-left: none;
    padding-left: 0;
    width: 100%;
  }
  .stat {
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 10px; }

  .features-grid, .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  section.pad { padding: 40px 20px; }
  .cta-band { padding: 40px 20px; }
  .cta-band h2 { font-size: 24px; }
  
  footer { padding: 40px 20px 20px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { margin-bottom: 20px; }
  .footer-brand img { margin: 0 auto 15px !important; display: block !important; }
  .footer-brand p { max-width: 100%; font-size: 14px; }
  .footer-cols { 
    gap: 30px; 
    flex-direction: column;
    width: 100%;
  }
  .footer-col { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { 
    text-align: center; 
    justify-content: center; 
    font-size: 12px; 
    flex-direction: column;
    gap: 10px;
  }
  .footer-bottom span {
    width: 100%;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: none; }
}
