/* ===================================================================
   ZIOM — styles.css
   Blanco premium + azul cielo (tono del logo). Mobile-first. x10.
=================================================================== */

:root {
  --blue: #2E9BF4;
  --blue-600: #1B83E4;
  --blue-700: #1370CC;
  --blue-soft: #E8F3FE;
  --blue-tint: #F2F9FF;
  --grad-btn: linear-gradient(135deg, #36A2F6 0%, #1576D4 100%);
  --ink: #0A0E1A;
  --ink-700: #1C2333;
  --gray: #5B6677;
  --gray-300: #C9D2E0;
  --line: #E8EDF5;
  --white: #FFFFFF;
  --green: #16A34A;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 18px rgba(10, 22, 60, .06);
  --shadow-md: 0 18px 50px rgba(10, 30, 90, .10);
  --shadow-lg: 0 30px 70px rgba(20, 60, 140, .16);
  --shadow-blue: 0 18px 44px rgba(30, 131, 228, .30);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Space Grotesk", "Inter", sans-serif; line-height: 1.08; letter-spacing: -.02em; }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 92px 0; }

.grad {
  background: linear-gradient(100deg, #1E8AEC 0%, #45A6F5 55%, #2E9BF4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-light {
  background: linear-gradient(100deg, #7CC1FB 0%, #BCDFFD 50%, #5BB0F8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.hide-mobile { display: none; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-soft);
  padding: 8px 15px; border-radius: 100px; margin-bottom: 20px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(46,155,244,.20); animation: pulse 2s infinite; }
.eyebrow.light { background: rgba(255,255,255,.08); color: #9CCBFA; }
.eyebrow.light .dot { background: #3BA0F7; box-shadow: 0 0 0 4px rgba(59,160,247,.28); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.section__title { font-size: clamp(1.9rem, 5vw, 3.1rem); font-weight: 700; margin-bottom: 18px; max-width: 18ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 1.02rem; padding: 15px 28px; border-radius: 100px;
  cursor: pointer; border: none; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  white-space: nowrap;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--primary { background: var(--grad-btn); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(30,131,228,.42); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue-600); }

.btn--white { background: #fff; color: var(--blue-700); box-shadow: 0 18px 44px rgba(0,0,0,.18); }
.btn--white:hover { transform: translateY(-3px) scale(1.02); }
.btn--white .wa { width: 22px; height: 22px; color: #25D366; }
.btn--lg { font-size: 1.12rem; padding: 18px 38px; }

/* ===================================================================
   NAV
=================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.nav.scrolled { background: rgba(255,255,255,.82); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 9px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { font-weight: 500; color: var(--ink-700); padding: 9px 13px; border-radius: 100px; font-size: .96rem; transition: color .2s, background .2s; }
.nav__links a:not(.nav__cta):hover { color: var(--blue-600); background: var(--blue-tint); }
.nav__cta { background: var(--grad-btn); color: #fff !important; font-weight: 600; box-shadow: var(--shadow-blue); }
.nav__cta:hover { transform: translateY(-1px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Right-side group + language toggle ---- */
.nav__right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .82rem; line-height: 1;
  letter-spacing: .04em; color: var(--ink-700); background: rgba(255,255,255,.6);
  border: 1.5px solid var(--line); border-radius: 100px; padding: 8px 14px; cursor: pointer;
  transition: border-color .25s, color .25s, transform .25s, background .25s;
}
.lang-toggle:hover { border-color: var(--blue); color: var(--blue-700); transform: translateY(-1px); background: var(--blue-tint); }
.lang-toggle__globe { width: 15px; height: 15px; flex: none; }

/* ===================================================================
   HERO
=================================================================== */
.hero { position: relative; padding: 140px 0 0; overflow: hidden; }

.hero__aurora { position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 1200px; max-width: 140vw; height: 1000px; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(72px); }
.blob--1 { width: 520px; height: 520px; background: #6FBBFB; opacity: .50; top: 2%; left: 6%; animation: float1 15s ease-in-out infinite; }
.blob--2 { width: 460px; height: 460px; background: #A7D5FC; opacity: .55; top: 8%; right: 4%; animation: float2 19s ease-in-out infinite; }
.blob--3 { width: 420px; height: 420px; background: #2E9BF4; opacity: .30; top: 32%; left: 36%; animation: float3 17s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-46px,24px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-30px); } }

.hero__grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(20,40,80,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,40,80,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 28%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 55% at 50% 28%, #000 25%, transparent 75%);
}

.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 940px; margin: 0 auto; padding-bottom: 60px; }
.hero__title { font-size: clamp(2.4rem, 7.2vw, 5rem); font-weight: 700; margin-bottom: 24px; }
.hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.32rem); color: var(--gray); max-width: 680px; margin: 0 auto 34px; }
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero__trust { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; color: var(--gray); font-size: .92rem; font-weight: 500; }
.hero__trust .stars { color: #FFB020; letter-spacing: 2px; }

/* Dashboard glass card */
.dash {
  position: relative; z-index: 1; margin: 54px auto 0; max-width: 760px;
  background: rgba(255,255,255,.72); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.9); border-radius: 22px;
  box-shadow: var(--shadow-lg); padding: 16px;
}
.dash__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 8px 14px; border-bottom: 1px solid var(--line); }
.dash__title { font-size: .85rem; color: var(--gray); font-weight: 600; }
.dash__live { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 600; color: var(--green); background: rgba(22,163,74,.10); padding: 5px 11px; border-radius: 100px; }
.dash__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
.dash__body { padding: 14px 6px 6px; }
.dash__chart svg { width: 100%; height: 150px; display: block; }
.dash__area { opacity: 0; animation: fadeArea 1s ease 1.7s forwards; }
.dash__line { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: draw 2.2s var(--ease) .5s forwards; }
.dash__pulse { animation: pulseDot 1.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeArea { to { opacity: 1; } }
@keyframes pulseDot { 0%,100% { r: 5; opacity: 1; } 50% { r: 8; opacity: .5; } }
.dash__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.kpi { background: rgba(46,155,244,.06); border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; display: flex; flex-direction: column; gap: 2px; }
.kpi__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray); font-weight: 600; }
.kpi__val { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--ink); line-height: 1.1; }
.kpi__delta { font-size: .76rem; font-weight: 600; }
.kpi__delta.up, .kpi__delta.down { color: var(--green); }

/* Marquee */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--blue-tint); overflow: hidden; padding: 16px 0; margin-top: 60px; }
.marquee__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: scroll 30s linear infinite; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.02rem; letter-spacing: .02em; color: var(--ink-700); }
.marquee__track .sep { color: var(--blue); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================================================================
   RESEARCH (dark)
=================================================================== */
.research { background: var(--ink); color: #fff; border-radius: 40px; margin: 0 14px; position: relative; overflow: hidden; }
.research__glow { position: absolute; top: -10%; right: -5%; width: 600px; height: 600px; pointer-events: none; background: radial-gradient(closest-side, rgba(46,155,244,.30), transparent 70%); filter: blur(30px); }
.research__inner { position: relative; display: grid; gap: 40px; align-items: center; }
.research__copy .section__title { color: #fff; }
.research__lead { color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 2.4vw, 1.22rem); margin: 0 0 30px; max-width: 46ch; }
.research__lead strong { color: #fff; font-weight: 600; }
.research__list { list-style: none; display: grid; gap: 14px; }
.ritem { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border: 1px solid rgba(255,255,255,.10); border-radius: 16px; background: rgba(255,255,255,.03); transition: background .35s, border-color .35s, transform .35s var(--ease); }
.ritem:hover { background: rgba(59,160,247,.10); border-color: rgba(59,160,247,.40); transform: translateX(5px); }
.ritem__no { font-family: "Space Grotesk", sans-serif; color: #4DAEF8; font-weight: 700; font-size: 1.1rem; flex: none; padding-top: 2px; }
.ritem h3 { font-size: 1.12rem; margin-bottom: 5px; }
.ritem p { color: rgba(255,255,255,.62); font-size: .95rem; line-height: 1.5; }

/* ===================================================================
   PROBLEM
=================================================================== */
.problem { background: var(--blue-tint); }
.problem__grid { display: grid; gap: 20px; margin: 44px 0 36px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pcard__icon { font-size: 2rem; margin-bottom: 14px; }
.pcard h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pcard p { color: var(--gray); }
.problem__resolve { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 500; max-width: 34ch; line-height: 1.4; }
.problem__resolve strong { color: var(--blue-700); font-weight: 700; }

/* ===================================================================
   SERVICES (bento)
=================================================================== */
.bento { display: grid; gap: 20px; margin-top: 46px; grid-template-columns: 1fr; }
.scard {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
  overflow: hidden;
}
.scard::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--blue), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s;
}
.scard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.scard:hover::before { opacity: 1; }
.scard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.scard__index { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--gray-300); }
.scard__price { font-size: .8rem; font-weight: 600; color: var(--blue-700); background: var(--blue-soft); padding: 6px 12px; border-radius: 100px; }
.scard__badge { font-size: .78rem; font-weight: 700; color: #fff; background: var(--blue-600); padding: 6px 12px; border-radius: 100px; }
.scard__badge.soft { background: rgba(255,255,255,.16); }
.scard h3 { font-size: 1.5rem; margin-bottom: 12px; }
.scard p { color: var(--gray); margin-bottom: 22px; }
.scard__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--blue-600); }
.scard__link .arrow { transition: transform .35s var(--ease); }
.scard:hover .scard__link .arrow { transform: translateX(5px); }
/* Make the whole product card clickable → its own detail page */
.scard { cursor: pointer; }
.scard__link::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.scard--featured { background: linear-gradient(155deg, #0A1330 0%, #1E73D8 135%); border-color: transparent; color: #fff; box-shadow: var(--shadow-md); }
.scard--featured .scard__index { color: rgba(255,255,255,.4); }
.scard--featured p { color: rgba(255,255,255,.82); }
.scard--featured .scard__link { color: #fff; }
.scard--featured .scard__price { background: rgba(255,255,255,.16); color: #fff; }
.scard--featured::before { display: none; }

/* ===================================================================
   STATS
=================================================================== */
.stats { padding: 30px 0 70px; }
.stats__kicker { text-align: center; color: var(--gray); font-weight: 600; letter-spacing: .03em; margin-bottom: 30px; font-size: .96rem; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stat { text-align: center; padding: 22px 12px; border-radius: var(--radius); }
.stat__num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(2.4rem, 7vw, 3.6rem); color: var(--blue-600); letter-spacing: -.03em; line-height: 1; }
.stat__label { color: var(--gray); font-weight: 500; margin-top: 8px; font-size: .98rem; }

/* ===================================================================
   PROCESS
=================================================================== */
.process__steps { display: grid; gap: 20px; margin-top: 46px; }
.pstep { position: relative; padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pstep:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pstep__num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; background: var(--blue-soft); color: var(--blue-700); font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.4rem; margin-bottom: 16px; }
.pstep h3 { font-size: 1.28rem; margin-bottom: 8px; }
.pstep p { color: var(--gray); font-size: .98rem; }

/* ===================================================================
   WHY (dark)
=================================================================== */
.why { background: var(--ink); color: #fff; border-radius: 40px; margin: 0 14px; }
.why .eyebrow { background: rgba(255,255,255,.08); color: #9CCBFA; }
.why .eyebrow .dot { background: #3BA0F7; box-shadow: 0 0 0 4px rgba(59,160,247,.28); }
.why .section__title { color: #fff; }
.why__grid { display: grid; gap: 18px; margin-top: 46px; }
.wcard { border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 30px; background: rgba(255,255,255,.03); transition: background .35s, transform .35s var(--ease), border-color .35s; }
.wcard:hover { background: rgba(59,160,247,.12); border-color: rgba(59,160,247,.45); transform: translateY(-5px); }
.wcard__num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1rem; color: #4DAEF8; margin-bottom: 16px; letter-spacing: .1em; }
.wcard h3 { font-size: 1.24rem; margin-bottom: 9px; }
.wcard p { color: rgba(255,255,255,.66); }

/* ===================================================================
   COMPARE
=================================================================== */
.ctable { margin-top: 46px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.ctable__head, .ctable__row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.ctable__cell { padding: 18px 20px; border-bottom: 1px solid var(--line); font-size: .98rem; display: flex; align-items: center; gap: 9px; }
.ctable__head .ctable__cell { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1rem; }
.ctable__cell--label { color: var(--ink-700); font-weight: 600; }
.ctable__cell--old { color: var(--gray); background: #fff; }
.ctable__cell--ziom { background: rgba(46,155,244,.06); color: var(--ink); font-weight: 600; }
.ctable__head .ctable__cell--ziom { color: var(--blue-700); }
.ctable__head .ctable__cell--label { background: #fff; }
.ctable__mark { width: 18px; height: 18px; color: var(--blue); flex: none; }
.ctable__row .ctable__cell--ziom::before { content: "✓"; color: var(--green); font-weight: 800; flex: none; }
.ctable__row .ctable__cell--old::before { content: "✕"; color: #C2410C; opacity: .55; font-weight: 800; flex: none; }
.ctable__row:last-child .ctable__cell { border-bottom: none; }

/* ===================================================================
   TESTIMONIALS
=================================================================== */
.testi__grid { display: grid; gap: 20px; margin-top: 46px; }
.tcard { background: var(--blue-tint); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.tcard__stars { color: #FFB020; letter-spacing: 2px; margin-bottom: 16px; font-size: 1.05rem; }
.tcard blockquote { font-size: 1.1rem; font-weight: 500; color: var(--ink-700); line-height: 1.5; margin-bottom: 18px; }
.tcard figcaption { color: var(--gray); font-size: .92rem; }
.tcard figcaption strong { color: var(--ink); }

/* ===================================================================
   FAQ
=================================================================== */
.faq__list { margin-top: 40px; max-width: 820px; }
.faq__item { border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; background: #fff; transition: box-shadow .3s, border-color .3s; }
.faq__item[open] { border-color: rgba(46,155,244,.45); box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; color: var(--blue); transition: transform .3s var(--ease); line-height: 1; flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 22px 22px; color: var(--gray); line-height: 1.6; }

/* ===================================================================
   FINAL CTA
=================================================================== */
.cta { position: relative; margin: 0 14px 90px; border-radius: 40px; background: linear-gradient(150deg, #2E9BF4 0%, #135FBF 100%); overflow: hidden; padding: 90px 0; }
.cta__glow { position: absolute; inset: 0; background: radial-gradient(closest-side at 80% 0%, rgba(255,255,255,.22), transparent 60%), radial-gradient(closest-side at 10% 100%, rgba(255,255,255,.14), transparent 55%); pointer-events: none; }
.cta__inner { position: relative; text-align: center; color: #fff; }
.cta__title { font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 700; margin-bottom: 18px; }
.cta__hl { color: #CFE6FF; }
.cta__sub { font-size: clamp(1.05rem, 2.6vw, 1.3rem); color: rgba(255,255,255,.90); max-width: 580px; margin: 0 auto 34px; }
.cta__micro { margin-top: 18px; color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 500; }

/* ===================================================================
   FOOTER
=================================================================== */
.footer { border-top: 1px solid var(--line); padding: 56px 0 30px; }
.footer__inner { display: flex; flex-direction: column; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer__brand p { color: var(--gray); margin-top: 14px; max-width: 40ch; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { color: var(--ink-700); font-weight: 500; transition: color .2s; }
.footer__links a:hover { color: var(--blue-600); }
.footer__bottom { display: flex; flex-direction: column; gap: 10px; padding-top: 24px; color: var(--gray); font-size: .92rem; }
.footer__bottom a { font-weight: 600; color: var(--ink-700); }

/* ===================================================================
   FLOATING WHATSAPP
=================================================================== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: floatIn .6s var(--ease) .8s both;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 38px rgba(37,211,102,.55); }
@keyframes floatIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ===================================================================
   SCROLL REVEAL
=================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dash__line { stroke-dashoffset: 0; }
  .dash__area { opacity: 1; }
}

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (min-width: 540px) {
  .dash__kpis { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 600px) {
  .hide-mobile { display: inline; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .problem__grid { grid-template-columns: repeat(3, 1fr); }
  .testi__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 760px) {
  .section { padding: 110px 0; }
  .research { padding: 96px 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

@media (min-width: 980px) {
  .research__inner { grid-template-columns: 1fr 1fr; gap: 54px; }
}

@media (min-width: 1000px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(4, 1fr); }
  .process__steps { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(80vw, 330px);
    flex-direction: column; align-items: stretch; justify-content: center; gap: 6px;
    background: #fff; padding: 30px; box-shadow: -10px 0 40px rgba(10,22,60,.12);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.12rem; padding: 14px 18px; text-align: center; }
  .nav__cta { margin-top: 10px; }
}

@media (max-width: 540px) {
  .ctable__cell { padding: 13px 12px; font-size: .82rem; gap: 6px; }
  .ctable__head .ctable__cell { font-size: .82rem; }
}

/* ===================================================================
   SERVICE DETAIL PAGES
=================================================================== */

/* ---- Service hero ---- */
.svc-hero { position: relative; padding: 132px 0 18px; overflow: hidden; }
.svc-hero__inner { position: relative; z-index: 1; max-width: 940px; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--gray); margin-bottom: 22px; }
.breadcrumb a { color: var(--blue-600); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-300); }

.svc-hero__title { font-size: clamp(2.2rem, 6.4vw, 4.2rem); font-weight: 700; margin-bottom: 22px; }
.svc-hero__lead { font-size: clamp(1.06rem, 2.4vw, 1.34rem); color: var(--gray); max-width: 640px; margin-bottom: 26px; line-height: 1.55; }
.svc-hero__lead strong { color: var(--ink); font-weight: 600; }

.svc-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.svc-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; font-weight: 600; color: var(--blue-700); background: var(--blue-soft); padding: 8px 15px; border-radius: 100px; }
.svc-tag svg { width: 15px; height: 15px; }

.svc-hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }

.svc-hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; max-width: 720px; }
.svc-hstat { background: rgba(255,255,255,.7); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.svc-hstat__num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.5rem, 4.4vw, 2.1rem); color: var(--blue-600); line-height: 1; letter-spacing: -.02em; }
.svc-hstat__label { color: var(--gray); font-size: .85rem; font-weight: 500; margin-top: 7px; line-height: 1.35; }

/* ---- Prose (text-heavy) ---- */
.prose { max-width: 720px; }
.prose p { color: var(--gray); font-size: clamp(1.02rem, 2.2vw, 1.12rem); margin-bottom: 18px; line-height: 1.7; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose p:last-child { margin-bottom: 0; }
.lead-xl { font-size: clamp(1.3rem, 3.4vw, 1.9rem) !important; color: var(--ink-700) !important; font-weight: 500; line-height: 1.45; }
.lead-xl strong { color: var(--blue-700) !important; }

/* ---- Fun facts / statistics ---- */
.facts { background: var(--blue-tint); }
.facts__grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 46px; }
.fact { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); overflow: hidden; }
.fact::after { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--grad-btn); opacity: 0; transition: opacity .35s; }
.fact:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fact:hover::after { opacity: 1; }
.fact__num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(2.4rem, 6vw, 3.4rem); color: var(--blue-600); line-height: 1; letter-spacing: -.03em; }
.fact__label { font-weight: 700; color: var(--ink); margin: 12px 0 7px; font-size: 1.08rem; font-family: "Space Grotesk", sans-serif; }
.fact__desc { color: var(--gray); font-size: .96rem; line-height: 1.55; }
.fact__src { display: block; margin-top: 14px; font-size: .76rem; color: var(--gray-300); font-weight: 500; letter-spacing: .02em; }

/* ---- Deliverables / "qué incluye" ---- */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 46px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(46,155,244,.4); }
.feat__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 13px; background: var(--blue-soft); color: var(--blue-700); font-size: 1.4rem; margin-bottom: 16px; }
.feat h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feat p { color: var(--gray); font-size: .97rem; line-height: 1.6; }

/* ---- Checklist (para quién es) ---- */
.split { display: grid; gap: 30px; margin-top: 46px; }
.checklist { list-style: none; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-700); font-size: 1.04rem; line-height: 1.5; }
.checklist li::before { content: "✓"; color: var(--green); font-weight: 800; flex: none; margin-top: 1px; }
.checklist.no li::before { content: "✕"; color: #C2410C; opacity: .6; }
.checkbox { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.checkbox h3 { font-size: 1.2rem; margin-bottom: 18px; }
.checkbox--no { background: var(--blue-tint); }

/* ---- Centered section heading helper ---- */
.section--center { text-align: center; }
.section--center .eyebrow { justify-content: center; }
.section--center .section__title { margin-left: auto; margin-right: auto; }
.section__intro { color: var(--gray); font-size: clamp(1.02rem, 2.2vw, 1.15rem); max-width: 60ch; margin: 0 auto; line-height: 1.6; }
.section--center .feat-grid, .section--center .facts__grid { text-align: left; }

/* ---- Related services ---- */
.related { padding: 20px 0 90px; }
.related__grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
.rlink { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; }
.rlink:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(46,155,244,.4); }
.rlink h3 { font-size: 1.12rem; }
.rlink span { color: var(--blue-600); font-weight: 600; flex: none; }

/* ---- Service detail responsive ---- */
@media (min-width: 600px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: repeat(2, 1fr); }
  .related__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .facts__grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 460px) {
  .svc-hero__stats { grid-template-columns: 1fr; gap: 12px; }
}
