/* =============================================================================
   ALIEE LANDING PAGE — main.css
   Stack: Bootstrap 5.3.3 · Bootstrap Icons 1.11.3 · Vue 3 · Rubik + Montserrat
   Fondo: siempre #FFFFFF
   ============================================================================= */

/* =============================================================================
   1. CUSTOM PROPERTIES
   ============================================================================= */
:root {
  --orange:       #E95414;
  --orange-light: #FF8F3F;
  --orange-dark:  #D16111;
  --dark:         #272626;
  --gray-700:     #374151;
  --gray-500:     #6B7280;
  --gray-400:     #9CA3AF;
  --gray-300:     #D1D5DB;
  --gray-200:     #E5E7EB;
  --gray-100:     #F3F4F6;
  --gray-50:      #F9FAFB;
  --white:        #FFFFFF;

  --nav-height: 60px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-orange: 0 8px 32px rgba(238,118,30,.30);

  --transition: .25s ease;
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
[v-cloak] { display: none !important; }

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
a   { text-decoration: none; }
address { font-style: normal; }

/* =============================================================================
   3. SHARED UTILITIES
   ============================================================================= */
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  /* text-transform: uppercase; */
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-body {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}

/* =============================================================================
   4. BUTTONS
   ============================================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-primary:hover {
  background: var(--orange);
  transform: scale(1.03);
  box-shadow: var(--shadow-orange);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--orange);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.02);
}

/* =============================================================================
   5. NAVIGATION
   ============================================================================= */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--orange);
  transition: box-shadow var(--transition);
}

.top-nav.scrolled {
  box-shadow: 0 2px 20px rgba(238,118,30,.35);
}

/* Logo */
.nav-logo {
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--white); }

/* Desktop links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav actions container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}
.lang-option {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.75);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  letter-spacing: .05em;
}
.lang-option.active {
  background: var(--white);
  color: var(--orange);
}
.lang-option:not(.active):hover {
  color: var(--white);
  background: rgba(255,255,255,.2);
}

/* Nav CTA pill */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--white);
  color: var(--orange);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { opacity: .88; transform: scale(1.02); }

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Mobile nav panel */
.mobile-nav-panel {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--orange-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s ease;
}
.mobile-nav-panel.open {
  max-height: 420px;
  padding: 16px 0 24px;
}
.mobile-nav-panel a {
  color: rgba(255,255,255,.9);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel a:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

/* =============================================================================
   6. HERO — Dark Cinematic Edition
   ============================================================================= */
.hero {
  background:
    url('https://slm.cloud/background-slm.png') center center / cover no-repeat,
    #070708;
  min-height: 100vh;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Grid texture */
.hero-grid-bg {
  display: none;
}

/* Ambient glow orbs — disabled so the background video stays clean */
.hero-glow { display: none; }

/* Inner layout — text left, Aliee video right */
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── LEFT: Text block ── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: var(--dark);
  border: 1px solid rgba(238,118,30,.22);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  margin-bottom: 32px;
  width: fit-content;
}
.hero-eyebrow i { font-size: 13px; }

/* Slide animation on key change */
.hero-slide-anim {
  animation: heroSlideUp .45s cubic-bezier(.22,1,.36,1);
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-slide-anim h1 {
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 22px;
}

.hero-slide-anim p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #ffffff;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 0;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 52px;
}

/* Light secondary link for dark bg */
.hero-link-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s ease, gap .2s ease;
}
.hero-link-sec:hover { color: var(--white); gap: 12px; }
.hero-link-sec i { font-size: 14px; }

/* Progress navigation */
.hero-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
}

.hero-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.hero-arrow-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.hero-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-progress-track {
  height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  border-radius: 2px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}

.hero-progress-labels {
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.hero-progress-cur {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-progress-tot {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}

/* ── RIGHT: Video frame ── */
.hero-video-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
}

/* Glow behind video */
.hero-video-frame::before {
  content: '';
  position: absolute;
  inset: -28px;
  background: radial-gradient(ellipse, rgba(238,118,30,.42) 0%, transparent 62%);
  filter: blur(32px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0,0,0,.70), 0 0 0 1px rgba(255,255,255,.06);
}

/* Pause/play toggle over the video */
.hero-video-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 11;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(6,6,8,.70);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
}
.hero-video-toggle:hover {
  background: #E95414;
  border-color: transparent;
  transform: scale(1.06);
}
.hero-video-toggle .bi {
  font-size: 20px;
  line-height: 1;
}

/* Floating chips on the video */
.hero-vid-chip {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  white-space: nowrap;
  max-width: 200px;
}

/* "Aliee en línea" — top left, outside frame */
.hero-vid-chip--top {
  top: 24px;
  left: -28px;
  background: rgba(6,6,8,.80);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

/* Slide title — bottom, inside frame with dark overlay */
.hero-vid-chip--bot {
  bottom: 28px;
  left: 12px;
  right: 12px;
  max-width: none;
  background: rgba(6,6,8,.75);
  border: 1px solid rgba(238,118,30,.25);
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  animation: heroSlideUp .4s cubic-bezier(.22,1,.36,1);
}
.hero-vid-chip--bot i {
  font-size: 14px;
  color: var(--orange-light);
  flex-shrink: 0;
}
.hero-vid-chip--bot span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Pulsing green dot */
.hero-vid-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}

/* =============================================================================
   7. WHAT IS ALIEE — Tech AI Edition
   ============================================================================= */
#que-es {
  padding: 110px 0 100px;
  background: var(--white);
  position: relative;
}

/* Subtle left-side gradient wash */
#que-es::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse 80% 70% at 0% 50%, rgba(238,118,30,.04) 0%, transparent 70%);
  pointer-events: none;
}

.what-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left text column */
.what-text { display: flex; flex-direction: column; gap: 0; }

.what-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--gray-500);
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 36px;
  border-left: 3px solid var(--orange);
  padding-left: 18px;
}

/* Numbered feature list */
.what-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.what-feat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.what-feat:first-child { border-top: 1px solid var(--gray-100); }

.what-feat-num {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(238,118,30,.08);
  border: 1px solid rgba(238,118,30,.18);
  border-radius: var(--radius-pill);
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition);
}
.what-feat:hover .what-feat-num {
  background: var(--orange);
  color: var(--white);
}

.what-feat-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.5;
}

/* Visual column with image + floating chips */
.what-visual { position: relative; }

.what-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.visual-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Floating AI metric chips */
.what-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

/* Status chip — online indicator — top left */
.what-chip--status {
  top: 20px;
  left: -16px;
  background: rgba(16, 185, 129, .15);
  border: 1px solid rgba(16, 185, 129, .35);
  color: #059669;
  font-weight: 700;
}

/* Pulsing green dot */
.what-chip-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* Generic metric chip */
.what-chip--metric {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--gray-200);
  color: var(--dark);
}
.what-chip--metric i {
  color: var(--orange);
  font-size: 14px;
}

/* Top-right placement */
.what-chip--tr {
  top: 20px;
  right: -20px;
}

/* Bottom-left placement */
.what-chip--bl {
  bottom: 24px;
  left: -16px;
}

/* =============================================================================
   8. TAGLINE BANNER
   ============================================================================= */
.tagline-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 88px 40px;
  text-align: center;
}

.tagline-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tagline-banner p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================================================
   9. STATS STRIP — WOW Dark Edition
   ============================================================================= */
.stats-strip {
  background: var(--dark);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

/* Grid pattern */
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Orange glow orbs */
.stats-strip::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(238,118,30,.10) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 50%;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 44px 32px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(238,118,30,.08);
  border-color: rgba(238,118,30,.40);
  box-shadow: 0 24px 56px rgba(238,118,30,.18);
}

/* Conic progress ring */
.stat-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: conic-gradient(
    var(--orange) 0% calc(var(--prog, 75) * 1%),
    rgba(255,255,255,.08) calc(var(--prog, 75) * 1%) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(238,118,30,0);
  transition: box-shadow .3s ease, transform .3s ease;
}
.stat-item:hover .stat-ring {
  box-shadow: 0 0 32px rgba(238,118,30,.40);
  transform: scale(1.06);
}

.stat-ring-inner {
  width: 78px;
  height: 78px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange-light);
  transition: color .3s ease;
}
.stat-item:hover .stat-ring-inner { color: var(--white); }

.stat-num {
  font-family: "Rubik", sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.stat-item:hover .stat-num {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.50);
  max-width: 160px;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Progress bar at the bottom */
.stat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.07);
}
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  border-radius: 0 3px 3px 0;
  transition: width 1s cubic-bezier(.4,0,.2,1);
}

/* =============================================================================
   10. SOLUTIONS / AUDIENCE GRID — WOW Edition
   ============================================================================= */
#soluciones {
  background: var(--white);
  padding: 100px 0;
}

.audiences-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 56px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s cubic-bezier(.4,0,.2,1),
              border-color .3s ease;
  cursor: default;
  position: relative;
  display: flex;
  flex-direction: column;
}
.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(238,118,30,.16), 0 4px 12px rgba(0,0,0,.06);
  border-color: var(--orange);
}

/* Image wrapper for zoom + overlay effect */
.audience-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.audience-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.audience-card:hover .audience-image {
  transform: scale(1.06);
}

/* Orange overlay gradient on hover */
.audience-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(238,118,30,.0) 0%, rgba(209,97,17,.55) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.audience-card:hover .audience-card-img-wrap::after {
  opacity: 1;
}

/* Sector icon badge — floats over image bottom-left */
.audience-card-badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(238,118,30,.4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.audience-card:hover .audience-card-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Card body */
.audience-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  transition: color var(--transition);
}
.audience-card:hover h3 { color: var(--orange); }

.audience-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* "Ver más" footer link — slides up on hover */
.audience-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.audience-card:hover .audience-card-link {
  opacity: 1;
  transform: translateY(0);
}
.audience-card-link i { font-size: 15px; transition: transform .2s ease; }
.audience-card-link:hover i { transform: translateX(3px); }

/* =============================================================================
   11. CAPABILITIES / PRODUCTS — WOW Edition
   ============================================================================= */
.products-section {
  background: #16181A;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern on dark bg */
.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow orbs */
.products-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(238,118,30,.12) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Override section text colors for dark bg */
.products-section .section-label  { color: var(--orange); }
.products-section .section-title  { color: var(--white); }
.products-section .section-body   { color: rgba(255,255,255,.60); }

.products-header {
  margin-bottom: 48px;
}

/* Tabs — centrados, grandes, con iconos */
.channels-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-pill);
  padding: 6px;
  border: 1px solid rgba(255,255,255,.12);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.50);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .2s ease;
  user-select: none;
  letter-spacing: .01em;
  white-space: nowrap;
}
.tab-icon {
  font-size: 18px;
  transition: transform .25s ease;
}
.tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(238,118,30,.45);
  transform: scale(1.02);
}
.tab.active .tab-icon { transform: scale(1.15); }
.tab:not(.active):hover {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
}
.tab:not(.active):hover .tab-icon { transform: scale(1.1); }

/* ── Channels tab view: 2×2 grid ── */
.channels-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.channel-card {
  background: rgb(22 24 26);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity .25s ease;
}
.channel-card:hover {
  background: rgba(238,118,30,.08);
  border-color: rgba(238,118,30,.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(238,118,30,.15);
}
.channel-card:hover::before { opacity: 1; }

.channel-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(238,118,30,.25), rgba(255,143,63,.12));
  border: 1px solid rgba(238,118,30,.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--orange-light);
  transition: background .25s, box-shadow .25s, color .25s;
  flex-shrink: 0;
}
.channel-card:hover .channel-card-icon {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(238,118,30,.50);
}

.channel-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -.01em;
}
.channel-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}

/* ── Integrations tab view: 3 columns ── */
.integrations-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.integration-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
}

/* Accent glow behind icon */
.integration-card::after {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,118,30,.15) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity .3s ease;
}
.integration-card:hover {
  background: rgba(238,118,30,.07);
  border-color: rgba(238,118,30,.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(238,118,30,.18);
}

.integration-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(238,118,30,.40);
  flex-shrink: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.integration-card:hover .integration-card-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(238,118,30,.55);
}

.integration-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -.01em;
}
.integration-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0;
}

/* ── Cap layout wrapper: cards + image card side by side ── */
.cap-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: stretch;
}

/* Override inner grids to fill height */
.cap-layout .channels-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-content: stretch;
}

.cap-layout .integrations-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Image card */
.cap-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(255,255,255,.10);
}

.cap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.cap-image-card:hover .cap-img { transform: scale(1.04); }

/* Dark overlay */
.cap-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  gap: 10px;
}

.cap-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  box-shadow: 0 4px 14px rgba(238,118,30,.45);
}

.cap-image-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ── How it works / Por qué Aliee — floating cards ── */
.how-section {
  background: var(--white);
  padding: 80px 0;
  position: relative;
}

.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  pointer-events: none;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.how-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.how-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(238,118,30,.14);
  border-color: rgba(238,118,30,.25);
}
.how-card:hover::after { transform: scaleX(1); }

.how-card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(238,118,30,.12), rgba(255,143,63,.06));
  border: 1px solid rgba(238,118,30,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--orange);
  transition: background .25s, box-shadow .25s, color .25s;
}
.how-card:hover .how-card-icon-wrap {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(238,118,30,.35);
}

.how-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  transition: color var(--transition);
}
.how-card:hover h3 { color: var(--orange); }

.how-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* =============================================================================
   12. CTA SECTION
   ============================================================================= */
.cta-section {
  background: #FFF7F0;
  border-radius: var(--radius-xl);
  margin: 60px 40px;
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern (CSS only) */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(238,118,30,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* =============================================================================
   13. FOOTER — Light Gray Professional
   ============================================================================= */
footer {
  background: #F4F4F6;
  border-top: 1px solid #E4E4E7;
  padding: 0;
}

/* ── Footer top: brand | sitemap | contact ── */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  border-bottom: 1px solid #E4E4E7;
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 0; }

.footer-logo {
  font-size: 1.3rem !important;
  color: var(--dark) !important;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--orange) !important; }
.footer-logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500) !important;
  letter-spacing: .04em;
  margin-left: 2px;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(238,118,30,.08);
  border: 1px solid rgba(238,118,30,.20);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  text-decoration: none;
  width: fit-content;
  transition: background var(--transition), box-shadow var(--transition);
}
.footer-email-btn:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

/* Footer nav columns */
.footer-col h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}
.footer-col ul li a:hover { color: var(--orange); }

/* Contact col */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-contact-item i { color: var(--orange); font-size: 15px; flex-shrink: 0; }
.footer-contact-item:hover { color: var(--orange); }

/* ── Footer offices: 4-card row ── */
.footer-offices {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  border-bottom: 1px solid #E4E4E7;
}

.footer-offices-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.footer-offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.footer-office-card {
  background: var(--white);
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-md);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.footer-office-card:hover {
  border-color: rgba(238,118,30,.30);
  box-shadow: 0 6px 20px rgba(238,118,30,.10);
  transform: translateY(-2px);
}

.footer-office-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.footer-office-head i {
  font-size: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.footer-office-card p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.footer-office-card a {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-dark);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-office-card a:hover { color: var(--orange); }

/* ── Footer bottom bar ── */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 13px;
  color: var(--gray-500);
}
.footer-bottom a {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--orange); }

/* =============================================================================
   14. SCROLL-BASED ENHANCEMENTS
   ============================================================================= */
/* Nav scroll class added via JS (optional enhancement) */

/* =============================================================================
   15. RESPONSIVE — TABLET (max 1024px)
   ============================================================================= */
@media (max-width: 1024px) {
  .top-nav { padding: 0 24px; }

  .hero-inner {
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 80px 24px;
  }
  .hero-video-frame { max-width: 300px; }

  .what-section {
    padding: 0 24px;
    gap: 48px;
  }

  .what-visual .mini-card:nth-child(2),
  .what-visual .mini-card:nth-child(3),
  .what-visual .mini-card:nth-child(4) {
    position: static;
    max-width: 100%;
    margin-top: 12px;
  }
  .what-visual { position: static; }

  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-card-link { opacity: 1; transform: none; }
  .cap-layout { grid-template-columns: 1fr; }
  .cap-image-card { min-height: 260px; }
  .stats-inner { grid-template-columns: 1fr; gap: 20px; }
  .how-cards-row { grid-template-columns: 1fr; gap: 20px; }
  .tab { padding: 13px 24px; font-size: 14px; }
  .tab-icon { font-size: 16px; }

  .footer-offices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { padding: 48px 24px 36px; gap: 40px; }

  .stats-strip { padding: 60px 24px; }
  .stats-inner { gap: 20px; }
}

/* =============================================================================
   16. RESPONSIVE — MOBILE (max 768px)
   ============================================================================= */
@media (max-width: 768px) {
  :root { --nav-height: 56px; }

  .top-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  .nav-cta { display: none; }

  /* Hero: stack text + video on mobile */
  .hero { min-height: auto; padding-top: var(--nav-height); }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 48px 20px 56px;
    gap: 40px;
  }
  .hero-video-side { order: -1; }
  .hero-video-frame { max-width: 260px; margin: 0 auto; }
  .hero-vid-chip--top { left: -10px; }

  .hero-slide-anim h1 { font-size: clamp(30px, 8vw, 44px); }
  .slide p { font-size: 15px; }

  .hero-cta-group { justify-content: flex-start; }

  /* What section */
  .what-section {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 48px;
  }
  .what-chip--tr  { top: 12px; right: 12px; }
  .what-chip--status { top: 12px; left: 12px; }
  .what-chip--bl  { bottom: 16px; left: 12px; }

  /* Tagline */
  .tagline-banner { padding: 56px 20px; }

  /* Stats */
  .stats-strip { padding: 56px 20px; }
  .stats-inner { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 36px;
  }
  .footer-offices { padding: 36px 20px; }
  .footer-offices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }

  /* Audiences */
  #soluciones { padding: 60px 0; }
  .audiences-section { padding: 0 20px; }
  .audience-grid { grid-template-columns: 1fr; }

  /* Capabilities */
  .products-section { padding: 60px 0; }
  .products-inner { padding: 0 20px; }
  .channels-tabs { width: calc(100% - 0px); }
  .tab { padding: 12px 18px; font-size: 13px; gap: 7px; }
  .tab-icon { font-size: 15px; }
  .cap-layout { grid-template-columns: 1fr; }
  .cap-layout .channels-view { grid-template-columns: 1fr; }
  .cap-layout .integrations-view { flex-direction: column; }
  .cap-image-card { min-height: 220px; order: -1; }
  .stats-inner { grid-template-columns: 1fr; }
  .stats-strip { padding: 60px 20px; }
  .stat-ring { width: 96px; height: 96px; }
  .stat-ring-inner { width: 70px; height: 70px; font-size: 24px; }
  .how-inner { padding: 0 20px; }
  .how-cards-row { grid-template-columns: 1fr; }
  .audience-card-link { opacity: 1; transform: none; }
  .audience-card-badge { opacity: 1; transform: none; }
  .product-showcase { padding: 20px; }

  /* CTA */
  .cta-section {
    margin: 32px 16px;
    padding: 64px 24px;
    border-radius: var(--radius-lg);
  }

  /* Footer */
  .footer-offices-grid { grid-template-columns: 1fr; }

  /* Section spacing */
  #que-es { padding: 60px 0; }
  section { padding: 60px 0; }

  .section-title { margin-bottom: 16px; }
  .section-header { margin-bottom: 36px; }

  /* Buttons */
  .btn-primary, .btn-secondary { font-size: 14px; padding: 12px 24px; }
}

/* =============================================================================
   17. RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================================= */
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .hero-arrows { margin-top: 20px; }
}
