/* ============================================================
   GEP Studio — style.css
   Sitio institucional. Diseño luminoso, minimalista, premium.
   Editable: cambiá los tokens en :root para modificar colores,
   tipografía y radios en todo el sitio.
   ============================================================ */

/* ---------- Tokens de diseño ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-muted: #f8f9fa;
  --color-bg-dark: #0a0a0a;
  --color-text: #0a0a0a;
  --color-text-soft: #4a4a4a;
  --color-text-mute: #8a8a8a;
  --color-border: #ececec;
  --color-border-strong: #1a1a1a;

  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.08);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --nav-h: 72px;
  --container: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Utilidades ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  margin-bottom: 20px;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }

.section {
  padding: 140px 0;
  position: relative;
}
.section--muted { background: var(--color-bg-muted); }
.section--dark { background: var(--color-bg-dark); color: #fff; }

.section__head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.section__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.section__title em { font-style: italic; font-weight: 400; color: var(--color-text-soft); }
.section__title--light { color: #fff; }
.section__title--light em { color: rgba(255,255,255,0.7); }
.section__lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--color-text-soft);
  line-height: 1.7;
}
.section__lead--light { color: rgba(255,255,255,0.72); }
.section__note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-text-mute);
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--dark { background: #0a0a0a; color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: #0a0a0a; }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color .35s var(--ease);
}
.nav.is-scrolled .nav__logo { color: var(--color-text); }
.nav.is-scrolled .nav__logo-mark { background: #0a0a0a; }

.nav__menu {
  display: flex; gap: 36px;
}
.nav__menu a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color .3s var(--ease);
}
.nav.is-scrolled .nav__menu a { color: var(--color-text-soft); }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__menu a:hover { color: var(--color-text); }
.nav.is-scrolled .nav__menu a:hover { color: var(--color-text); }
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: inline-flex; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__toggle span {
  width: 22px; height: 1.5px; background: #fff;
  transition: transform .3s var(--ease), background .3s var(--ease), opacity .3s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--color-text); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  padding: 32px 24px 40px;
  display: flex; flex-direction: column; gap: 20px;
  transform: translateY(-120%);
  transition: transform .5s var(--ease);
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile a { font-size: 20px; font-weight: 500; color: var(--color-text); }
.nav__mobile .btn { margin-top: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__img, .hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.1) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 900px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__title {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.85); }
.hero__subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 620px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 50px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: #fff;
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ============================================================
   TRUST BAR (opcional)
   ============================================================ */
.trust {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust__label {
  text-align: center;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-text-mute); margin-bottom: 28px;
}
.trust__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 48px;
  color: var(--color-text-soft); font-weight: 500; font-size: 15px;
}

/* ============================================================
   SERVICE TYPES (NUEVOS CUADROS)
   ============================================================ */
.service-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.service-type {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-type--highlight {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.service-type--highlight p {
  color: rgba(255,255,255,0.75);
}

.service-type__icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.service-type h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.service-type p {
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin: 0;
}

.service-type--highlight p {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   CARDS (Servicios)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: #0a0a0a; color: #fff;
  border-radius: 12px;
  font-size: 18px;
  margin-bottom: 20px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--color-text-soft); line-height: 1.6; }

/* ============================================================
   SPLIT (Qué incluye / Lo que no hacemos)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.split__content .section__title { text-align: left; margin-top: 0; }
.split__content .section__lead { text-align: left; margin-left: 0; }

.check-list, .cross-list {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.check-list li, .cross-list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  color: var(--color-text);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 18px; height: 10px;
  border-left: 2px solid #0a0a0a;
  border-bottom: 2px solid #0a0a0a;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}
.cross-list li::before {
  content: "×";
  position: absolute; left: 0; top: -2px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border-strong); border-radius: 50%;
  font-size: 14px; font-weight: 500;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  padding: 40px 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat__num {
  font-size: 64px; font-weight: 700;
  letter-spacing: -0.04em;
  display: inline;
}
.stat__suffix {
  font-size: 32px; font-weight: 500;
  color: var(--color-text-mute);
  margin-left: 4px;
}
.stat p {
  margin-top: 18px;
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.6;
}

/* ============================================================
   PROCESO
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.process__step {
  padding: 32px 0;
  border-top: 1px solid var(--color-border-strong);
}
.process__num {
  display: block;
  font-size: 13px; letter-spacing: 0.2em; color: var(--color-text-mute);
  margin-bottom: 40px;
}
.process__step h3 { font-size: 22px; margin-bottom: 12px; }
.process__step p { font-size: 15px; color: var(--color-text-soft); line-height: 1.6; }
.process__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 21 / 9;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SLIDER (Portfolio)
   ============================================================ */
.slider {
  margin-top: 40px;
  overflow: hidden;
}
.slider__track {
  display: flex;
  gap: 24px;
  padding: 20px 24px;
  transition: transform .8s var(--ease);
  will-change: transform;
}
.slide {
  flex: 0 0 clamp(300px, 60vw, 900px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: var(--shadow-md);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.slide:hover img { transform: scale(1.03); }
.slide__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
}
.slide__caption h4 { font-size: 20px; margin-bottom: 4px; }
.slide__caption p { font-size: 13px; opacity: 0.85; }

.slider__controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px;
}
.slider__btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  font-size: 18px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.slider__btn:hover { background: #0a0a0a; color: #fff; transform: scale(1.05); }
.slider__dots { display: flex; gap: 10px; }
.slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-border-strong); opacity: 0.25;
  transition: opacity .3s, width .3s;
}
.slider__dot.is-active { opacity: 1; width: 24px; border-radius: 4px; }

/* ============================================================
   PILLS (Clientes ideales)
   ============================================================ */
.pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
  max-width: 900px; margin: 0 auto;
}
.pill {
  padding: 14px 24px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  background: #fff;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.pill:hover { background: #0a0a0a; color: #fff; transform: translateY(-3px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  padding: 24px 28px;
  font-size: 17px; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px; font-weight: 300;
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 28px 24px;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.contact__meta {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact__meta > div { display: flex; flex-direction: column; gap: 4px; }
.contact__meta span {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact__meta a { font-size: 16px; color: #fff; transition: opacity .3s; }
.contact__meta a:hover { opacity: 0.7; }

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0;
  font-family: inherit; font-size: 16px; color: #fff;
  transition: border-color .3s var(--ease);
  resize: none;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: #fff;
}
.contact__ok {
  font-size: 14px; color: #9be59b;
  opacity: 0; transition: opacity .4s;
}
.contact__ok.is-visible { opacity: 1; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
}
.footer__inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px;
}
.footer__tag { color: var(--color-text-soft); font-size: 15px; max-width: 480px; }
.footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  margin-top: 12px;
}
.footer__links a { font-size: 14px; color: var(--color-text-soft); transition: color .3s; }
.footer__links a:hover { color: var(--color-text); }
.footer__copy { font-size: 13px; color: var(--color-text-mute); margin-top: 24px; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  background: #25d366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* Stagger */
.cards .reveal:nth-child(1) { transition-delay: 0.00s; }
.cards .reveal:nth-child(2) { transition-delay: 0.06s; }
.cards .reveal:nth-child(3) { transition-delay: 0.12s; }
.cards .reveal:nth-child(4) { transition-delay: 0.18s; }
.cards .reveal:nth-child(5) { transition-delay: 0.24s; }
.cards .reveal:nth-child(6) { transition-delay: 0.30s; }
.cards .reveal:nth-child(7) { transition-delay: 0.36s; }
.cards .reveal:nth-child(8) { transition-delay: 0.42s; }
.clients .reveal:nth-child(1) { transition-delay: 0.00s; }
.clients .reveal:nth-child(2) { transition-delay: 0.10s; }
.clients .reveal:nth-child(3) { transition-delay: 0.20s; }

/* ============================================================
   CLIENTES IDEALES (3 tarjetas)
   ============================================================ */
.clients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.client {
  position: relative;
  padding: 44px 32px 36px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display: flex; flex-direction: column;
}
.client:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); border-color: transparent; }
.client--featured { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.client--featured .client__desc,
.client--featured .client__need p { color: rgba(255,255,255,0.75); }
.client--featured .client__need span { color: rgba(255,255,255,0.5); }
.client--featured .client__need { border-top-color: rgba(255,255,255,0.15); }
.client__emoji { font-size: 40px; margin-bottom: 20px; line-height: 1; }
.client__num {
  position: absolute; top: 28px; right: 32px;
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--color-text-mute);
}
.client--featured .client__num { color: rgba(255,255,255,0.5); }
.client h3 { font-size: 22px; margin-bottom: 12px; }
.client__desc { color: var(--color-text-soft); font-size: 15px; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.client__need {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}
.client__need span {
  display: block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-text-mute);
  margin-bottom: 8px;
}
.client__need p { font-size: 14px; color: var(--color-text-soft); line-height: 1.55; }

/* ============================================================
   ALIADOS (CODEAR36)
   ============================================================ */
.allies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.allies__logo {
  display: inline-block;
  font-size: 32px; font-weight: 800; letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 24px;
  padding: 14px 26px;
  border: 2px solid #fff;
  border-radius: 12px;
}
.allies__logo span { color: #ff6b35; }
.allies__lead {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.allies__lead strong { color: #fff; font-weight: 700; }
.allies__text {
  color: rgba(255,255,255,0.7);
  font-size: 15.5px; line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.allies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.allies__grid li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.9);
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.allies__grid li:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.allies__grid li::before {
  content: "✓";
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #0a0a0a;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
}

/* ============================================================
   VIDEO SHOWCASE (nuevo bloque full-width)
   ============================================================ */
.video-showcase {
  width: 100%;
  padding: 80px 24px;
  background: var(--color-bg-muted);
  margin-top: 80px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.video-header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.video-header h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.video-header p {
  color: var(--color-text-soft);
  font-size: 16px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.video-item {
  position: relative;
  background: #0a0a0a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  aspect-ratio: 16 / 9;
}

.video-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__media { order: 0; }
  .split__media {
    display: none;
  }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 100px 0; }
  .section__head { margin-bottom: 60px; }
  .clients { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .allies { grid-template-columns: 1fr; gap: 56px; }
  .service-types { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__scroll { display: none; }
  .hero__title { font-size: clamp(38px, 10vw, 60px); }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section__head { margin-bottom: 44px; }
  .contact__form { padding: 28px 22px; }
  .trust__grid { gap: 14px 24px; font-size: 14px; }
  .allies__grid { grid-template-columns: 1fr; }
  .allies__logo { font-size: 26px; padding: 12px 20px; }
  .allies__lead { font-size: 17px; }
  .container { padding: 0 20px; }
  .service-types { grid-template-columns: 1fr; gap: 16px; }
  .service-type { padding: 28px 24px; }

  /* Video responsive */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .video-header h3 {
    font-size: 22px;
  }
  .video-showcase {
    padding: 60px 16px;
  }
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}