/* ============================================================
   KDK ASESORES INFORMÁTICOS — 2026 EDITION
   Premium static stylesheet · Light editorial + electric blue
   ============================================================ */

/* ---------- 1. RESET & TOKENS ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

:root {
  /* Colors */
  --bg:          #fafbff;
  --bg-2:        #f1f4fb;
  --paper:       #ffffff;
  --ink:         #0a1230;
  --ink-soft:    #1c2547;
  --ink-mute:    #5b6b8c;
  --ink-faint:   #97a3bf;
  --line:        rgba(10, 18, 48, 0.08);
  --line-strong: rgba(10, 18, 48, 0.16);

  --brand:       #1e3a8a;
  --brand-2:     #3b82f6;
  --brand-3:     #06b6d4;
  --accent:      #6366f1;
  --warn:        #f59e0b;
  --ok:          #10b981;

  /* Dark surfaces */
  --dark:        #050a1f;
  --dark-2:      #0a1230;
  --dark-3:      #131b3d;

  /* Typography */
  --f-display:   "Space Grotesk", "Inter", system-ui, sans-serif;
  --f-body:      "Inter", system-ui, -apple-system, sans-serif;
  --f-cn:        "Noto Sans SC", var(--f-body);

  /* Layout */
  --container:   1280px;
  --gutter:      clamp(1.25rem, 4vw, 3rem);
  --radius:      18px;
  --radius-lg:   28px;

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:      .25s;
  --t-med:       .55s;
  --t-slow:      .9s;
}

html[lang="zh"] body { font-family: var(--f-cn); }
html[lang="zh"] .hero-title em,
html[lang="zh"] .section-title em,
html[lang="zh"] .cta-title em { font-style: normal; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- 2. SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 200; pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
  box-shadow: 0 0 16px rgba(59, 130, 246, .55);
  transition: width .15s linear;
}

/* ---------- 3. SPOTLIGHT (mouse follow) ---------- */
.spotlight {
  position: fixed; pointer-events: none; z-index: 1;
  width: 600px; height: 600px;
  left: var(--mx, 50%); top: var(--my, 30%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(6,182,212,0.06) 35%, transparent 65%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity .4s ease;
}
body.has-spotlight .spotlight { opacity: 1; }
@media (hover: none) { .spotlight { display: none; } }

/* ---------- 4. HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .85rem var(--gutter);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast), padding var(--t-fast);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  padding-top: .65rem; padding-bottom: .65rem;
}

.brand {
  display: flex; align-items: center; gap: .75rem;
  margin-right: auto;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  flex: 0 0 48px;
  object-fit: cover;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px -4px rgba(10, 18, 48, .15);
  transition: transform var(--t-fast);
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-tag { font-size: .7rem; color: var(--ink-mute); letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }

.nav { display: flex; gap: .35rem; align-items: center; }
.nav-link {
  position: relative;
  padding: .55rem .85rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { color: var(--brand); background: rgba(59, 130, 246, .08); }
.nav-link.is-active { color: var(--brand); background: rgba(59, 130, 246, .12); }

.header-tools { display: flex; align-items: center; gap: .5rem; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem .8rem;
  font-size: .85rem; font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  transition: all var(--t-fast);
}
.lang-btn:hover { border-color: var(--brand-2); color: var(--brand); }
.lang-menu {
  position: absolute; top: calc(100% + .5rem); right: 0;
  min-width: 160px;
  padding: .35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 50px -10px rgba(10, 18, 48, .15);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-fast) var(--ease);
  z-index: 110;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li button {
  display: flex; align-items: center; gap: .55rem;
  width: 100%;
  padding: .55rem .7rem;
  border-radius: 10px;
  font-size: .9rem; font-weight: 500;
  color: var(--ink-soft);
  text-align: left;
  transition: background var(--t-fast);
}
.lang-menu li button:hover { background: var(--bg-2); color: var(--brand); }
.lang-menu .flag { font-size: 1.05rem; }

/* Menu toggle (mobile) */
.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--t-fast); }

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, #fafbff 0%, #eef2ff 60%, #fafbff 100%);
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  will-change: transform;
}
.orb-1 { width: 520px; height: 520px; left: -120px; top: -80px; background: radial-gradient(circle, #3b82f6 0%, transparent 70%); animation: float-1 22s ease-in-out infinite; }
.orb-2 { width: 460px; height: 460px; right: -100px; top: 20%; background: radial-gradient(circle, #06b6d4 0%, transparent 70%); animation: float-2 26s ease-in-out infinite; }
.orb-3 { width: 380px; height: 380px; left: 30%; bottom: -120px; background: radial-gradient(circle, #6366f1 0%, transparent 70%); animation: float-3 30s ease-in-out infinite; }

@keyframes float-1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(80px,60px) scale(1.1);} }
@keyframes float-2 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-60px,80px) scale(1.15);} }
@keyframes float-3 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(40px,-60px) scale(.95);} }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,18,48,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,18,48,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.grid-overlay.dark {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
}

.noise {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .85rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--brand);
  background: rgba(59, 130, 246, .08);
  border: 1px solid rgba(59, 130, 246, .18);
  border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-3); box-shadow: 0 0 0 4px rgba(6,182,212,.2); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(6,182,212,.4);} 50%{box-shadow:0 0 0 8px rgba(6,182,212,0);} }

.eyebrow-light { color: rgba(255,255,255,.95); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }

.hero-title {
  margin: 1.25rem 0 1.5rem;
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.6vw, 5.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 40%, var(--brand-3) 80%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
}
.hero-title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.05em; height: .12em;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-3) 100%);
  opacity: .25;
  transform-origin: left;
  animation: line-grow 1.2s var(--ease) .8s both;
}
@keyframes line-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub {
  max-width: 540px;
  font-size: 1.125rem;
  color: var(--ink-mute);
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--ink) 0%, var(--brand) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label { font-size: .82rem; color: var(--ink-mute); margin-top: .35rem; display: block; }

/* Hero visual: device mockup */
.hero-visual { position: relative; perspective: 1400px; }
.device {
  position: relative;
  transform: rotateY(-8deg) rotateX(6deg);
  transform-style: preserve-3d;
  transition: transform var(--t-med) var(--ease);
}
.device-frame {
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow:
    0 50px 100px -20px rgba(10, 18, 48, .25),
    0 30px 60px -30px rgba(59, 130, 246, .25),
    0 0 0 1px rgba(10, 18, 48, .03) inset;
  overflow: hidden;
}
.device-bar {
  display: flex; align-items: center; gap: .35rem;
  padding: .65rem .9rem;
  background: linear-gradient(180deg, #f6f8fc, #eef2f8);
  border-bottom: 1px solid var(--line);
}
.device-bar > span:not(.device-search) { width: 11px; height: 11px; border-radius: 50%; background: #ddd; }
.device-bar > span:nth-child(1) { background: #ff5f57; }
.device-bar > span:nth-child(2) { background: #ffbd2e; }
.device-bar > span:nth-child(3) { background: #28ca42; }
.device-search {
  margin-left: .8rem;
  flex: 1;
  padding: .25rem .7rem;
  font-size: .72rem; color: var(--ink-mute);
  background: white; border: 1px solid var(--line);
  border-radius: 6px;
  font-family: ui-monospace, monospace;
}
.device-screen {
  display: grid; grid-template-columns: 70px 1fr;
  min-height: 320px;
}
.dash-side {
  padding: 1rem .6rem;
  background: linear-gradient(180deg, #f9fafe, #f1f4fb);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .55rem;
}
.dash-logo { color: var(--brand); margin-bottom: .35rem; padding: .35rem; }
.dash-item {
  height: 8px; border-radius: 4px;
  background: rgba(10,18,48,0.08);
}
.dash-item.is-active { background: linear-gradient(90deg, var(--brand-2), var(--brand-3)); }
.dash-main { padding: 1rem; display: flex; flex-direction: column; gap: .8rem; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.dash-card {
  padding: .7rem .8rem;
  background: linear-gradient(135deg, #f8faff, #eef3fb);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.dash-card-label { font-size: .68rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .05em; }
.dash-card-num { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-top: .15rem; }
.dash-spark { margin-top: .25rem; height: 26px; }
.dash-spark svg { width: 100%; height: 100%; }
.dash-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 95px;
  padding: .6rem;
  background: linear-gradient(135deg, #f9faff, #f0f4fc);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.chart-bar {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--brand-3), var(--brand-2));
  border-radius: 3px 3px 0 0;
  animation: bar-grow 1.5s var(--ease) both;
  transform-origin: bottom;
}
.chart-bar:nth-child(2) { animation-delay: .08s; }
.chart-bar:nth-child(3) { animation-delay: .16s; }
.chart-bar:nth-child(4) { animation-delay: .24s; }
.chart-bar:nth-child(5) { animation-delay: .32s; }
.chart-bar:nth-child(6) { animation-delay: .40s; }
.chart-bar:nth-child(7) { animation-delay: .48s; }
.chart-bar:nth-child(8) { animation-delay: .56s; }
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.dash-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .7rem;
  background: rgba(16,185,129,.1);
  color: #059669;
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 999px;
  font-size: .72rem; font-weight: 600;
}
.dash-pill i { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: pulse 2s ease-in-out infinite; }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(10,18,48,.18);
  font-size: .85rem;
  z-index: 2;
}
.float-card-1 { top: 12%; left: -8%; animation: float-card 6s ease-in-out infinite; }
.float-card-2 { bottom: 8%; right: -6%; animation: float-card 7s ease-in-out infinite reverse; }
@keyframes float-card { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
.float-icon { font-size: 1.4rem; }
.float-label { font-weight: 600; color: var(--ink); }
.float-meta { font-size: .72rem; color: var(--ink-mute); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 600;
  color: var(--ink-mute); text-transform: uppercase; letter-spacing: .12em;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,8px);} }

/* ---------- 6. BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.6rem;
  font-family: var(--f-body);
  font-size: .95rem; font-weight: 600;
  border-radius: 999px;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
  background-size: 200% 200%;
  box-shadow: 0 10px 30px -8px rgba(59, 130, 246, .55), 0 0 0 1px rgba(255,255,255,.1) inset;
}
.btn-primary::before {
  content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--brand-3), var(--brand-2), var(--brand));
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 100%; box-shadow: 0 15px 40px -10px rgba(59, 130, 246, .65); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { color: var(--brand); border-color: var(--brand-2); background: white; transform: translateY(-2px); }

.btn-white {
  color: var(--brand);
  background: white;
  box-shadow: 0 10px 30px -8px rgba(10,18,48,.3);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 15px 40px -10px rgba(10,18,48,.4); }

.btn-outline {
  color: white;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: white; transform: translateY(-2px); }

/* Shine on primary buttons */
.btn-primary::after, .btn-white::after {
  content: ""; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-25deg);
  transition: left .9s var(--ease);
}
.btn-primary:hover::after, .btn-white:hover::after { left: 125%; }

/* ---------- 7. SECTION HEADS ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-kicker {
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--brand);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-sub { margin-top: 1.25rem; font-size: 1.05rem; color: var(--ink-mute); }
.section-head-light .section-kicker { color: var(--brand-3); }
.section-head-light .section-title { color: white; }
.section-head-light .section-sub { color: rgba(255,255,255,.75); }

/* ---------- 8. SERVICES ---------- */
.services { padding: clamp(5rem, 9vw, 8rem) 0; position: relative; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card-svc {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-fast);
  transform-style: preserve-3d;
  isolation: isolate;
  overflow: hidden;
}
.card-svc::before {
  content:""; position: absolute; inset: -1px; z-index: -1;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3), var(--accent));
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.card-svc::after {
  content:""; position: absolute; inset: 1px; z-index: -1;
  background: var(--paper);
  border-radius: calc(var(--radius-lg) - 1px);
}
.card-svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(59, 130, 246, .25);
  border-color: transparent;
}
.card-svc:hover::before { opacity: 1; }

.card-num {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-family: var(--f-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: .05em;
}
.card-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(6,182,212,.12));
  color: var(--brand);
  margin-bottom: 1.5rem;
  transition: transform var(--t-fast) var(--ease);
}
.card-svc:hover .card-icon { transform: rotate(-8deg) scale(1.1); }
.card-icon svg { width: 30px; height: 30px; }

.card-svc h3 {
  font-family: var(--f-display);
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: .65rem;
  color: var(--ink);
}
.card-svc p { color: var(--ink-mute); margin-bottom: 1.2rem; font-size: .95rem; }

.card-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.4rem; }
.card-tags li {
  padding: .3rem .65rem;
  font-size: .72rem; font-weight: 600;
  color: var(--brand);
  background: rgba(59,130,246,.08);
  border-radius: 999px;
  letter-spacing: .02em;
}

.card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .9rem; font-weight: 600;
  color: var(--brand);
  transition: gap var(--t-fast);
}
.card-link:hover { gap: .65rem; color: var(--brand-3); }

.services-cta { text-align: center; margin-top: 3.5rem; }

/* ---------- 9. WHY (DARK) ---------- */
.why {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: white;
  isolation: isolate;
  overflow: hidden;
}
.why-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at top, var(--dark-3) 0%, var(--dark-2) 50%, var(--dark) 100%);
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
  will-change: transform;
}
.aurora-1 { width: 600px; height: 600px; top: -200px; left: -150px; background: radial-gradient(circle, var(--brand-2) 0%, transparent 70%); animation: float-1 20s ease-in-out infinite; }
.aurora-2 { width: 500px; height: 500px; bottom: -150px; right: -100px; background: radial-gradient(circle, var(--brand-3) 0%, transparent 70%); animation: float-2 24s ease-in-out infinite; }
.aurora-3 { width: 400px; height: 400px; top: 30%; left: 50%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); animation: float-3 28s ease-in-out infinite; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-feature {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.why-feature::before {
  content:""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.why-feature:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(59,130,246,.4);
  transform: translateY(-4px);
}
.why-feature:hover::before { opacity: 1; }

.why-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, white 0%, var(--brand-3) 60%, var(--brand-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}
.why-feature h3 {
  font-family: var(--f-display);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: .65rem;
  color: white;
  letter-spacing: -0.01em;
}
.why-feature p { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ---------- 10. CLIENTS / MARQUEE ---------- */
.clients { padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem); position: relative; overflow: hidden; }

.marquee {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-l 50s linear infinite;
}
.marquee[data-marquee="right"] .marquee-track { animation-name: marquee-r; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.logo-card {
  flex: 0 0 320px;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 1rem;
  transition: all var(--t-fast) var(--ease);
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,18,48,.18);
  border-color: rgba(59,130,246,.3);
}
.logo-mark {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 1.2rem 1.4rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  overflow: hidden;
}
.logo-mark img {
  max-height: 100%;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  opacity: .92;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.logo-card:hover .logo-mark {
  transform: scale(1.02);
  box-shadow: 0 8px 20px -8px rgba(10,18,48,.15);
  border-color: rgba(59,130,246,.3);
}
.logo-card:hover .logo-mark img {
  opacity: 1;
  transform: scale(1.05);
}

.logo-card h4 {
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo-card p {
  font-size: .82rem;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* ---------- 11. CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
  color: white;
}
.cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
}
.cta-bg .aurora-1 { background: radial-gradient(circle, #6366f1 0%, transparent 70%); opacity: .55; }
.cta-bg .aurora-2 { background: radial-gradient(circle, #06b6d4 0%, transparent 70%); opacity: .5; }
.cta-bg .aurora-3 { background: radial-gradient(circle, white 0%, transparent 70%); opacity: .25; }

.cta-inner { text-align: center; max-width: 780px; }
.cta-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 1.25rem 0 1.25rem;
  color: white;
}
.cta-title em {
  font-style: italic;
  background: linear-gradient(120deg, #fff 0%, #c8eaff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ---------- 12. FOOTER ---------- */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-2), var(--brand-3), transparent);
  opacity: .5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand-footer .brand-name { color: white; }
.brand-footer .brand-tag { color: rgba(255,255,255,.55); }
.footer-addr { margin-top: 1.25rem; font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.6; }

.footer-col h5 {
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 600;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: flex; align-items: center; gap: .55rem;
  padding: .35rem 0;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  transition: color var(--t-fast), gap var(--t-fast);
}
.footer-col a:hover { color: white; gap: .8rem; }
.footer-col svg { color: var(--brand-3); flex: 0 0 auto; }

.footer-socials {
  display: flex; gap: .5rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  width: 40px; height: 40px; padding: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: all var(--t-fast);
}
.footer-socials a:hover {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  color: white;
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  gap: 0;
}

.footer-bar {
  padding: 1.5rem 0;
}
.footer-bar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-bar-links { display: flex; gap: 1.25rem; }
.footer-bar-links a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.footer-bar-links a:hover { color: white; }

/* ---------- 13. REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger inside common parents */
.hero-copy .reveal:nth-child(1) { transition-delay: .05s; }
.hero-copy .reveal:nth-child(2) { transition-delay: .15s; }
.hero-copy .reveal:nth-child(3) { transition-delay: .25s; }
.hero-copy .reveal:nth-child(4) { transition-delay: .35s; }
.hero-copy .reveal:nth-child(5) { transition-delay: .45s; }

.cards-grid .reveal:nth-child(1) { transition-delay: .05s; }
.cards-grid .reveal:nth-child(2) { transition-delay: .15s; }
.cards-grid .reveal:nth-child(3) { transition-delay: .25s; }

.why-grid .reveal:nth-child(1) { transition-delay: .05s; }
.why-grid .reveal:nth-child(2) { transition-delay: .15s; }
.why-grid .reveal:nth-child(3) { transition-delay: .25s; }
.why-grid .reveal:nth-child(4) { transition-delay: .35s; }

/* Defensive: never invisible if JS fails */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- 14. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-header { padding: .65rem 1rem; }
  .brand-text { display: none; }
  .hero { padding: 7rem 0 4rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .float-card-1 { left: 0; }
  .float-card-2 { right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo-card { flex: 0 0 280px; }
}

@media (prefers-reduced-motion: reduce) {
  /* Only kill genuinely intrusive animations */
  .orb, .aurora { animation: none; }
  .marquee-track { animation-duration: 120s; }
  .float-card { animation: none; }
}

/* ============================================================
   QUIÉNES SOMOS PAGE — 2026
   ============================================================ */

/* ---------- AB HERO ---------- */
.ab-hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}
.ab-hero .hero-bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, #fafbff 0%, #eef2ff 60%, #fafbff 100%); }
.ab-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ab-hero-title {
  margin: 1.25rem 0 1.5rem;
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.ab-hero-title .line { display: block; }
.ab-hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 40%, var(--brand-3) 80%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ab-hero-title .big-num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 1.05em;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-right: .35em;
}

.ab-hero-sub {
  max-width: 540px;
  font-size: 1.08rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

.ab-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 540px;
}

/* ---------- COLLAGE ---------- */
.ab-collage {
  position: relative;
  width: 100%;
  height: 560px;
  perspective: 1400px;
}
.collage-frame {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(10,18,48,.2), 0 0 0 1px rgba(10,18,48,.03) inset;
  transition: transform var(--t-med) var(--ease);
}
.collage-1 { width: 58%; height: 64%; top: 5%; right: 8%; transform: rotate(2deg); }
.collage-2 { width: 48%; height: 50%; bottom: 8%; left: 0; transform: rotate(-3deg); }
.collage-3 { width: 38%; height: 38%; bottom: 10%; right: 0; transform: rotate(4deg); }
.ab-collage:hover .collage-frame { transform: rotate(0) scale(1.02); }

.collage-art {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 1.25rem;
}
.art-1 { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%); color: white; }
.art-2 { background: linear-gradient(135deg, #f4f7fc, #e6edf8); color: var(--ink); }
.art-3 { background: linear-gradient(135deg, #fafbff, white); color: var(--ink); }

.art-circle {
  position: absolute; border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.art-circle-1 { width: 200px; height: 200px; top: -40px; right: -40px; background: rgba(255,255,255,.35); animation: float-1 14s ease-in-out infinite; }
.art-circle-2 { width: 140px; height: 140px; bottom: -20px; left: 30%; background: rgba(6,182,212,.45); animation: float-2 18s ease-in-out infinite; }
.art-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
}
.art-wave { position: absolute; inset: auto 0 0 0; height: 100%; opacity: .85; }

.art-label {
  position: relative; z-index: 1;
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.art-2 .art-label, .art-3 .art-label {
  color: var(--brand);
  background: rgba(59,130,246,.08);
  border-color: rgba(59,130,246,.2);
}

/* Mini dashboard inside art-2 */
.dash-mini { position: absolute; inset: 1.25rem 1.25rem 3rem 1.25rem; display: flex; flex-direction: column; gap: .55rem; }
.dash-mini-row { display: flex; gap: .5rem; }
.dash-mini-row span { flex: 1; height: 6px; border-radius: 3px; background: rgba(10,18,48,.1); }
.dash-mini-row span:first-child { background: linear-gradient(90deg, var(--brand-2), var(--brand-3)); }
.dash-mini-bar { height: 12px; background: rgba(10,18,48,.06); border-radius: 4px; overflow: hidden; }
.dash-mini-bar i { display: block; width: var(--w); height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-3)); animation: bar-fill 1.6s var(--ease) both; transform-origin: left; }
@keyframes bar-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.badge-30 {
  position: absolute;
  top: -1rem; left: 8%;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 1.4rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 40px -10px rgba(10,18,48,.18);
  animation: float-card 6s ease-in-out infinite;
}
.badge-num {
  font-family: var(--f-display);
  font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.04em; line-height: 1;
}
.badge-label {
  font-size: .7rem;
  color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: .25rem;
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: white;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.manifesto-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at top, var(--dark-3) 0%, var(--dark-2) 60%, var(--dark) 100%);
}
.manifesto-bg .aurora-1 { width: 700px; height: 700px; top: -250px; left: -200px; background: radial-gradient(circle, var(--brand-2) 0%, transparent 70%); opacity: .35; filter: blur(100px); animation: float-1 22s ease-in-out infinite; border-radius: 50%; position: absolute; }
.manifesto-bg .aurora-2 { width: 600px; height: 600px; bottom: -200px; right: -150px; background: radial-gradient(circle, var(--brand-3) 0%, transparent 70%); opacity: .3; filter: blur(100px); animation: float-2 26s ease-in-out infinite; border-radius: 50%; position: absolute; }

.quote-mark {
  font-family: var(--f-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1; margin: 0 auto;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: .5;
}
.manifesto-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: -1rem 0 1.5rem;
}
.manifesto-title em {
  font-style: italic;
  background: linear-gradient(135deg, white 0%, var(--brand-3) 60%, var(--brand-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 0 .15em;
}
.manifesto-title span:not(em) { color: rgba(255,255,255,.6); font-weight: 300; }
.manifesto-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}
.manifesto-signature {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.sig-line { display: inline-block; width: 60px; height: 1px; background: rgba(255,255,255,.25); }

/* ---------- VALUES ---------- */
.values { padding: clamp(5rem, 9vw, 8rem) 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.val-card {
  position: relative;
  padding: 2.25rem 1.75rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.val-card::before {
  content: ""; position: absolute; inset: -1px; z-index: -1;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.val-card::after {
  content: ""; position: absolute; inset: 1px; z-index: -1;
  background: var(--paper);
  border-radius: calc(var(--radius-lg) - 1px);
}
.val-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(59, 130, 246, .25);
}
.val-card:hover::before { opacity: 1; }

.val-num {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--f-display);
  font-size: .95rem; font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: .05em;
}
.val-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(6,182,212,.12));
  color: var(--brand);
  margin-bottom: 1.25rem;
  transition: transform var(--t-fast) var(--ease);
}
.val-card:hover .val-icon { transform: rotate(-8deg) scale(1.1); }
.val-icon svg { width: 26px; height: 26px; }

.val-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: .5rem;
  color: var(--ink);
}
.val-card p { color: var(--ink-mute); margin-bottom: 1.25rem; font-size: .92rem; line-height: 1.55; }

.val-meta {
  display: flex; align-items: baseline; gap: .35rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.val-meta small {
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 500;
  color: var(--ink-mute);
  background: none; -webkit-text-fill-color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .08em;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  padding: 1.75rem 0;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.trust-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  overflow: hidden;
}
.trust-track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content;
  animation: marquee-l 38s linear infinite;
  font-family: var(--f-display);
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: -0.01em;
}
.trust-track i {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 12px rgba(6,182,212,.6);
}
.trust-track span {
  background: linear-gradient(120deg, white 30%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* ---------- PROCESS / TIMELINE ---------- */
.process { padding: clamp(5rem, 9vw, 8rem) 0; position: relative; }
.timeline {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 0;
}
.timeline-track {
  position: absolute;
  top: 50px; left: 30px; right: 30px;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  z-index: 0;
}
.timeline-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
  width: 0;
  border-radius: 2px;
  transition: width 1s var(--ease);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step { position: relative; z-index: 1; }
.step-num {
  position: relative;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--f-display);
  font-size: 1.25rem; font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  border-radius: 18px;
  box-shadow: 0 10px 30px -8px rgba(59,130,246,.45);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.step-num::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 24px;
  border: 1px dashed rgba(59,130,246,.3);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.step.is-active .step-num,
.step:hover .step-num {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 15px 40px -10px rgba(59,130,246,.6);
}
.step.is-active .step-num::before { opacity: 1; }

.step-body {
  padding: 1.5rem 1.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.step:hover .step-body,
.step.is-active .step-body {
  border-color: rgba(59,130,246,.3);
  box-shadow: 0 15px 35px -15px rgba(10,18,48,.18);
}
.step-body h3 {
  font-family: var(--f-display);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: .55rem;
  color: var(--ink);
}
.step-body p { font-size: .92rem; color: var(--ink-mute); line-height: 1.55; margin-bottom: 1rem; }

.step-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.step-tags li {
  padding: .25rem .55rem;
  font-size: .68rem; font-weight: 600;
  color: var(--brand);
  background: rgba(59,130,246,.08);
  border-radius: 999px;
}

/* ---------- DIFF (DARK) ---------- */
.diff {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: white;
  isolation: isolate;
  overflow: hidden;
}
.diff-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at center, var(--dark-3) 0%, var(--dark-2) 50%, var(--dark) 100%);
}
.diff-bg .aurora-1 { width: 600px; height: 600px; top: -200px; left: -150px; background: radial-gradient(circle, var(--brand-2) 0%, transparent 70%); position: absolute; border-radius: 50%; filter: blur(100px); opacity: .35; animation: float-1 20s ease-in-out infinite; }
.diff-bg .aurora-2 { width: 500px; height: 500px; bottom: -150px; right: -100px; background: radial-gradient(circle, var(--brand-3) 0%, transparent 70%); position: absolute; border-radius: 50%; filter: blur(100px); opacity: .3; animation: float-2 24s ease-in-out infinite; }
.diff-bg .aurora-3 { width: 400px; height: 400px; top: 30%; left: 50%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); position: absolute; border-radius: 50%; filter: blur(100px); opacity: .25; animation: float-3 28s ease-in-out infinite; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.diff-card {
  padding: 2.25rem 1.75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: all var(--t-med) var(--ease);
}
.diff-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(59,130,246,.4);
  transform: translateY(-4px);
}
.diff-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: inline-block;
  filter: drop-shadow(0 4px 16px rgba(59,130,246,.4));
}
.diff-card h4 {
  font-family: var(--f-display);
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: .55rem;
  color: white;
  letter-spacing: -0.01em;
}
.diff-card p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; }

/* ---------- TESTIMONIALS CAROUSEL ---------- */
.testimonials { padding: clamp(5rem, 9vw, 8rem) 0; background: var(--bg-2); }
.tst-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.tst-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.tst-track {
  display: flex;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.tst-card {
  flex: 0 0 100%;
  padding: 3rem 3rem 2.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(10,18,48,.12);
}
.tst-quote {
  font-family: var(--f-display);
  font-size: 4.5rem; line-height: 1;
  position: absolute;
  top: 1rem; right: 2rem;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: .35;
}
.tst-text {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 2rem;
}
.tst-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.tst-avatar {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--f-display);
  font-weight: 700; font-size: .95rem;
  color: white;
  letter-spacing: .03em;
}
.tst-avatar-1 { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.tst-avatar-2 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.tst-avatar-3 { background: linear-gradient(135deg, #6366f1, #3b82f6); }
.tst-avatar-4 { background: linear-gradient(135deg, #06b6d4, #10b981); }
.tst-name { font-family: var(--f-display); font-weight: 700; color: var(--ink); }
.tst-meta { font-size: .85rem; color: var(--ink-mute); margin-top: 2px; }

.tst-controls {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2rem;
}
.tst-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all var(--t-fast);
}
.tst-btn:hover {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  color: white;
  border-color: transparent;
  transform: scale(1.05);
}
.tst-dots { display: flex; gap: .4rem; }
.tst-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: all var(--t-fast);
  cursor: pointer;
  border: 0; padding: 0;
}
.tst-dot.is-active {
  width: 28px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-3));
}

/* ---------- RESPONSIVE EXTRAS ---------- */
@media (max-width: 1080px) {
  .ab-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ab-collage { max-width: 540px; height: 480px; margin: 0 auto; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline-track { display: none; }
}
@media (max-width: 720px) {
  .ab-hero { padding: 7rem 0 4rem; }
  .ab-collage { height: 380px; }
  .ab-hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .timeline { grid-template-columns: 1fr; }
  .tst-card { padding: 2rem 1.5rem; }
  .tst-text { font-size: 1.05rem; }
  .tst-quote { font-size: 3rem; top: .5rem; right: 1rem; }
}

/* ============================================================
   PRECIOS PAGE — 2026
   ============================================================ */

/* ---------- PR HERO ---------- */
.pr-hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.pr-hero .hero-bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, #fafbff 0%, #eef2ff 60%, #fafbff 100%); }
.pr-hero-inner { max-width: 880px; margin: 0 auto; }

.pr-hero-title {
  margin: 1.25rem 0 1.5rem;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.pr-hero-title .line { display: block; }
.pr-hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.pr-hero-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--ink-mute);
  line-height: 1.65;
}

/* Billing toggle */
.pr-billing {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin: 2.75rem auto 1.5rem;
  padding: .5rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 20px 40px -20px rgba(10,18,48,.18), inset 0 0 0 1px rgba(255,255,255,.6);
  position: relative;
}
.bill-opt {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border: 0; cursor: pointer;
  background: transparent;
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -0.005em;
  transition: color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.bill-opt .bill-icon {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.bill-opt .bill-tag {
  font-family: var(--f-body);
  font-size: .72rem; font-weight: 500;
  color: var(--ink-mute);
  text-transform: lowercase;
}
.bill-opt .bill-badge {
  position: absolute;
  top: -10px; right: -8px;
  padding: .15rem .55rem;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  color: white;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(59,130,246,.5);
}
.bill-opt:hover { color: var(--ink); }
.bill-opt.is-active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  color: white;
  box-shadow: 0 12px 30px -10px rgba(59,130,246,.55);
}
.bill-opt.is-active .bill-icon { background: rgba(255,255,255,.18); color: white; }
.bill-opt.is-active .bill-tag { color: rgba(255,255,255,.85); }

.pr-hero-bullets {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem 1.5rem;
  margin-top: 1rem;
  list-style: none; padding: 0;
}
.pr-hero-bullets li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .88rem; color: var(--ink-mute);
}
.pr-hero-bullets svg { color: var(--brand-3); }

/* ---------- MODELOS ---------- */
.pr-models { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-2); }
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}
.model-card {
  position: relative;
  padding: 2.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-fast);
  display: flex; flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(10,18,48,.18);
}
.model-card-featured {
  background: linear-gradient(160deg, #0a1230 0%, #131b3d 60%, #1e3a8a 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 30px 70px -20px rgba(30, 58, 138, .55);
}
.model-card-featured::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 80% -10%, rgba(6,182,212,.25), transparent 60%),
    radial-gradient(circle at 0% 110%, rgba(59,130,246,.3), transparent 50%);
  pointer-events: none;
}
.model-card-featured .model-sub,
.model-card-featured .model-price-label,
.model-card-featured .model-price-meta,
.model-card-featured .model-foot-note { color: rgba(255,255,255,.7); }
.model-card-featured .model-features li { color: rgba(255,255,255,.9); }
.model-card-featured .model-features svg { color: var(--brand-3); }

.model-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: .35rem .75rem;
  font-family: var(--f-display);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: white;
  border-radius: 999px;
  box-shadow: 0 8px 24px -6px rgba(6,182,212,.5);
}

.model-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
}
.model-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(6,182,212,.12));
  color: var(--brand);
  flex: 0 0 auto;
}
.model-card-featured .model-icon {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.18);
}
.model-head h3 {
  font-family: var(--f-display);
  font-size: 1.45rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 .15rem;
}
.model-sub { font-size: .9rem; color: var(--ink-mute); }

.model-price {
  display: flex; flex-direction: column;
  gap: .25rem;
  padding: 1.25rem 0 1.5rem;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 1.5rem;
}
.model-card-featured .model-price { border-color: rgba(255,255,255,.18); }
.model-price-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-mute);
  font-weight: 600;
}
.model-price-num {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.model-card-featured .model-price-num { color: white; }
.model-price-num strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.model-card-featured .model-price-num strong {
  background: linear-gradient(135deg, white 0%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.model-price-quote {
  font-size: 2rem;
}
.model-price-meta {
  font-size: .82rem;
  color: var(--ink-mute);
}

.model-features {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: flex; flex-direction: column; gap: .65rem;
  flex: 1;
}
.model-features li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.model-features svg {
  flex: 0 0 auto;
  color: #10b981;
  margin-top: 2px;
}
.model-foot { display: flex; flex-direction: column; gap: .65rem; }
.model-foot-note { font-size: .78rem; color: var(--ink-mute); text-align: center; }

/* ---------- PRODUCTS ---------- */
.pr-products { padding: clamp(5rem, 9vw, 8rem) 0; }
.prod-list {
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.prod-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast);
}
.prod-row:hover {
  border-color: rgba(59,130,246,.2);
  box-shadow: 0 25px 50px -25px rgba(10,18,48,.2);
}

.prod-row-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  margin-bottom: 1.75rem;
}
.prod-id {
  display: flex; align-items: center; gap: 1rem;
}
.prod-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59,130,246,.1), rgba(99,102,241,.08));
  color: var(--brand);
  flex: 0 0 auto;
}
.prod-icon-blue    { background: linear-gradient(135deg, rgba(30,58,138,.12), rgba(59,130,246,.12)); color: var(--brand-2); }
.prod-icon-purple  { background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(139,92,246,.12)); color: #6366f1; }
.prod-icon-cyan    { background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(59,130,246,.12)); color: var(--brand-3); }
.prod-icon-emerald { background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(6,182,212,.12)); color: #10b981; }
.prod-icon-amber   { background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(239,68,68,.1)); color: #f59e0b; }

.prod-titles h3 {
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .15rem;
}
.prod-titles p {
  color: var(--brand);
  font-weight: 600;
  font-size: .92rem;
}
.prod-desc {
  color: var(--ink-mute);
  font-size: .98rem;
  align-self: center;
  line-height: 1.5;
}

.prod-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: opacity .35s var(--ease);
}
.prod-side {
  padding: 1.5rem 1.5rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  transition: opacity .35s var(--ease), transform .35s var(--ease), border-color var(--t-fast);
}
.prod-side-head {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.05rem; font-weight: 700;
  font-family: var(--f-display);
  color: var(--ink);
}
.prod-side-icon {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(16,185,129,.12);
  color: #10b981;
  flex: 0 0 auto;
}
.prod-side-rent .prod-side-icon { background: rgba(59,130,246,.12); color: var(--brand-2); }

.prod-tier { padding: .25rem 0; }
.prod-tier-corp { padding-top: .75rem; border-top: 1px dashed var(--line); margin-top: .25rem; }
.prod-tier-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  margin-bottom: .35rem;
}
.prod-tier-name {
  font-weight: 700;
  font-family: var(--f-display);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.prod-tier-price {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: -0.02em;
}
.prod-tier-price strong {
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.prod-tier-meta {
  font-size: .82rem;
  color: var(--brand);
  font-weight: 500;
}
.prod-tier-mant {
  font-size: .84rem;
  color: var(--ink-mute);
  margin-top: .15rem;
}

.prod-rent-lead {
  font-size: .9rem;
  color: var(--ink-mute);
}
.prod-rent-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .35rem;
}
.prod-rent-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.prod-rent-list .check {
  color: #10b981;
  font-weight: 700;
}

.prod-cta { margin-top: auto; }

/* Billing toggle dim effect on prod-side */
[data-billing-mode="buy"]  .prod-side-rent { opacity: .42; transform: scale(.985); }
[data-billing-mode="rent"] .prod-side-buy  { opacity: .42; transform: scale(.985); }
[data-billing-mode="buy"]  .prod-side-buy { border-color: rgba(16,185,129,.4); box-shadow: 0 0 0 3px rgba(16,185,129,.08); }
[data-billing-mode="rent"] .prod-side-rent { border-color: rgba(59,130,246,.4); box-shadow: 0 0 0 3px rgba(59,130,246,.08); }
.prod-side:hover { opacity: 1 !important; transform: scale(1) !important; }

.prod-feats {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.prod-feats h4 {
  font-family: var(--f-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .85rem;
  letter-spacing: -0.01em;
}
.prod-feats-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .55rem 1.5rem;
}
.prod-feats-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.prod-feats-list svg { color: #10b981; flex: 0 0 auto; }

/* ---------- COMPARATIVA ---------- */
.pr-compare { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-2); }
.cmp-table {
  max-width: 980px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,18,48,.15);
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.cmp-row:last-child { border-bottom: 0; }
.cmp-row-head {
  background: var(--bg);
  padding: .75rem 0;
}
.cmp-row:not(.cmp-row-head):hover { background: var(--bg); }
.cmp-cell {
  padding: 1.1rem 1.5rem;
  font-size: .95rem;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
}
.cmp-cell:last-child { border-right: 0; }
.cmp-cell-label {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
}
.cmp-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .9rem;
  background: rgba(16,185,129,.12);
  color: #059669;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
}
.cmp-pill-rent {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  color: white;
  box-shadow: 0 6px 16px -4px rgba(59,130,246,.4);
}
.cmp-strong {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}
.cmp-col-rent { background: linear-gradient(180deg, rgba(59,130,246,.04), transparent); }
[data-billing-mode="buy"] .cmp-col-buy   { background: rgba(16,185,129,.06); }
[data-billing-mode="rent"] .cmp-col-rent { background: rgba(59,130,246,.07); }

/* ---------- CONDICIONES ---------- */
.pr-terms { padding: clamp(5rem, 9vw, 8rem) 0; }
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.term-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-fast);
  isolation: isolate;
  overflow: hidden;
}
.term-card::before {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.12), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
}
.term-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -25px rgba(59,130,246,.25);
  border-color: rgba(59,130,246,.3);
}
.term-card:hover::before { opacity: 1; }
.term-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59,130,246,.1), rgba(6,182,212,.1));
  color: var(--brand);
  margin-bottom: 1.25rem;
  transition: transform var(--t-fast) var(--ease);
}
.term-card:hover .term-icon { transform: rotate(-5deg) scale(1.06); }
.term-card h3 {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1rem;
}
.term-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.term-list li {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink-mute);
}
.term-list li strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: .25rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .model-grid { grid-template-columns: 1fr; }
  .prod-row-head { grid-template-columns: 1fr; }
  .prod-prices { grid-template-columns: 1fr; }
  .cmp-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .cmp-cell { padding: .9rem 1rem; font-size: .88rem; }
}
@media (max-width: 720px) {
  .pr-billing { display: flex; flex-direction: column; padding: .35rem; border-radius: 22px; }
  .bill-opt { width: 100%; justify-content: flex-start; padding: .75rem 1rem; }
  .bill-opt .bill-badge { top: 6px; right: 8px; }
  .pr-hero-bullets { gap: .35rem 1rem; }
  .prod-row { padding: 1.5rem 1.25rem; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .cmp-cell:last-child { border-bottom: 0; }
  .cmp-cell-label { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
  .cmp-row-head { display: none; }
}

/* ============================================================
   DOWNLOADS PAGE - 2026
   ============================================================ */

/* ---------- DL HERO ---------- */
.dl-hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.dl-hero .hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, #fafbff 0%, #eef2ff 60%, #fafbff 100%);
}
.dl-hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }

.dl-hero-title {
  margin: 1.25rem 0 1.5rem;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.dl-hero-title .line { display: block; }
.dl-hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.dl-hero-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--ink-mute);
  line-height: 1.65;
}

/* Floating decorations */
.dl-floats {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.dl-float {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  padding: 1rem .75rem .75rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(10,18,48,.18);
  color: var(--brand-2);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .12em;
  animation: dlFloat 6s var(--ease) infinite;
  transform: rotate(-8deg);
}
.dl-float-1 { top: 18%; left: 7%; animation-delay: 0s; }
.dl-float-2 { top: 28%; right: 9%; animation-delay: -2s; transform: rotate(7deg); color: var(--brand-3); }
.dl-float-3 { top: 65%; left: 12%; animation-delay: -4s; transform: rotate(-12deg); color: var(--accent); }
@keyframes dlFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -8deg)); }
  50% { transform: translateY(-14px) rotate(var(--rot, -8deg)); }
}
@media (max-width: 900px) { .dl-floats { display: none; } }

.dl-hero-stats {
  display: inline-flex; flex-wrap: wrap;
  gap: 0;
  margin: 2.5rem auto 0;
  padding: 1rem 1.5rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 20px 40px -20px rgba(10,18,48,.18);
  list-style: none;
}
.dl-hero-stats li {
  display: flex; flex-direction: column;
  padding: 0 1.5rem;
  position: relative;
  text-align: center;
  min-width: 120px;
}
.dl-hero-stats li + li::before {
  content: "";
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: var(--line);
}
.dl-hero-stats li strong {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.dl-hero-stats li span {
  font-size: .72rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}

/* ---------- DL GRID SECTION ---------- */
.dl-grid-sec { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-2); }

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) { .dl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .dl-grid { grid-template-columns: 1fr; } }

.dl-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 2rem 1.85rem 1.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-fast);
}
.dl-card-glow {
  position: absolute;
  top: -40%; right: -30%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow, rgba(59,130,246,.18)), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
}
.dl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(10,18,48,.22);
  border-color: var(--card-border, rgba(59,130,246,.35));
}
.dl-card:hover .dl-card-glow { opacity: 1; }

.dl-card-blue    { --card-glow: rgba(59,130,246,.22);  --card-border: rgba(59,130,246,.35);  --card-accent: var(--brand-2); }
.dl-card-purple  { --card-glow: rgba(139,92,246,.22);  --card-border: rgba(99,102,241,.4);   --card-accent: #6366f1; }
.dl-card-cyan    { --card-glow: rgba(6,182,212,.22);   --card-border: rgba(6,182,212,.4);    --card-accent: var(--brand-3); }
.dl-card-emerald { --card-glow: rgba(16,185,129,.22);  --card-border: rgba(16,185,129,.4);   --card-accent: #10b981; }
.dl-card-amber   { --card-glow: rgba(245,158,11,.25);  --card-border: rgba(245,158,11,.45);  --card-accent: #f59e0b; }

.dl-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dl-card-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent, var(--brand)) 14%, transparent), color-mix(in srgb, var(--card-accent, var(--brand)) 4%, transparent));
  color: var(--card-accent, var(--brand));
  flex: 0 0 auto;
  transition: transform var(--t-fast) var(--ease);
}
.dl-card:hover .dl-card-icon { transform: rotate(-6deg) scale(1.06); }

.dl-meta-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .7rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.dl-meta-pill svg { color: var(--card-accent, var(--brand-2)); }

.dl-card-eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--card-accent, var(--brand));
  font-weight: 600;
  margin-bottom: .5rem;
}
.dl-card-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 .85rem;
  line-height: 1.15;
}
.dl-card-desc {
  color: var(--ink-mute);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
  flex: 1;
}

.dl-card-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: .95rem 1.5rem;
  background: linear-gradient(135deg, var(--card-accent, var(--brand-2)), color-mix(in srgb, var(--card-accent, var(--brand-2)) 70%, var(--brand-3)));
  color: white;
  border: 0;
  border-radius: 14px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--card-accent, var(--brand-2)) 60%, transparent);
}
.dl-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px color-mix(in srgb, var(--card-accent, var(--brand-2)) 70%, transparent);
}
.dl-card-btn:active { transform: translateY(0); }
.dl-btn-icon, .dl-btn-arrow {
  display: inline-flex; align-items: center;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.dl-btn-arrow { transform: translateX(-6px); opacity: 0; width: 0; overflow: hidden; }
.dl-card-btn:hover .dl-btn-arrow { transform: translateX(0); opacity: 1; width: 18px; }
.dl-card-btn:hover .dl-btn-icon { transform: translateY(2px); }

/* "New" ribbon */
.dl-ribbon {
  position: absolute;
  top: 14px; left: -38px;
  transform: rotate(-32deg);
  padding: .35rem 3rem;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  font-family: var(--f-display);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -6px rgba(239,68,68,.5);
  z-index: 2;
}

/* Master "all-in-one" card */
.dl-card-master {
  background: linear-gradient(160deg, #0a1230 0%, #131b3d 60%, #1e3a8a 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 30px 70px -20px rgba(30, 58, 138, .55);
  grid-column: span 1;
}
@media (min-width: 1100px) { .dl-card-master { grid-column: span 1; } }
.dl-card-master::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 80% -10%, rgba(6,182,212,.28), transparent 60%),
    radial-gradient(circle at 0% 110%, rgba(99,102,241,.32), transparent 50%);
}
.dl-card-master .dl-card-icon {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
}
.dl-card-master .dl-card-eyebrow { color: var(--brand-3); }
.dl-card-master .dl-card-title { color: white; }
.dl-card-master .dl-card-desc { color: rgba(255,255,255,.78); }
.dl-meta-pill-light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}
.dl-meta-pill-light svg { color: var(--brand-3); }
.dl-card-btn-master {
  background: linear-gradient(135deg, white 0%, #c8eaff 100%);
  color: #0a1230;
  box-shadow: 0 12px 28px -10px rgba(255,255,255,.4);
}
.dl-card-btn-master:hover {
  box-shadow: 0 18px 36px -12px rgba(255,255,255,.5);
}

/* ---------- DL INFO 3 cols ---------- */
.dl-info { padding: clamp(5rem, 9vw, 8rem) 0; }
.section-head-center { text-align: center; }
.section-title-center {
  display: block;
  margin-left: auto; margin-right: auto;
}

.dl-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 800px) { .dl-info-grid { grid-template-columns: 1fr; } }

.dl-info-card {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.75rem 2.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-fast);
}
.dl-info-card::before {
  content: "";
  position: absolute; top: -40%; left: -30%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
}
.dl-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -25px rgba(59,130,246,.25);
  border-color: rgba(59,130,246,.3);
}
.dl-info-card:hover::before { opacity: 1; }

.dl-info-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  margin: 0 auto 1.25rem;
  border-radius: 18px;
  transition: transform var(--t-fast) var(--ease);
}
.dl-info-card:hover .dl-info-icon { transform: rotate(-5deg) scale(1.05); }
.dl-info-icon-blue    { background: linear-gradient(135deg, rgba(59,130,246,.14), rgba(6,182,212,.1));   color: var(--brand-2); }
.dl-info-icon-emerald { background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(6,182,212,.1));   color: #10b981; }
.dl-info-icon-purple  { background: linear-gradient(135deg, rgba(99,102,241,.14), rgba(139,92,246,.1));  color: #6366f1; }

.dl-info-card h3 {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .85rem;
}
.dl-info-card p {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* Hero */
.faq-hero{
  position:relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(60px, 10vw, 120px);
  overflow:hidden;
  isolation:isolate;
}
.faq-hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:920px;
  margin:0 auto;
}
.faq-hero-title{
  font-family:var(--f-display);
  font-weight:700;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height:1.05;
  letter-spacing:-0.025em;
  color:var(--ink);
  margin: 18px 0 22px;
}
.faq-hero-title .line{
  display:block;
}
.faq-hero-title .line-italic{
  font-style:italic;
  font-weight:500;
}
.faq-hero-title .line-grad{
  background: linear-gradient(95deg, var(--brand) 0%, var(--brand-2) 45%, var(--brand-3) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.faq-hero-sub{
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  max-width:680px;
  margin: 0 auto 36px;
  line-height:1.55;
}
.faq-hero-stats{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: clamp(20px, 4vw, 56px);
  list-style:none;
  padding: 22px 36px;
  margin: 0 auto;
  max-width:fit-content;
  background: rgba(255,255,255,0.6);
  border:1px solid color-mix(in srgb, var(--brand) 14%, transparent);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px -10px color-mix(in srgb, var(--brand) 18%, transparent);
}
.faq-hero-stats li{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
}
.faq-hero-stats strong{
  font-family:var(--f-display);
  font-weight:700;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
}
.faq-hero-stats span:not(.eyebrow-dot){
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:500;
}

/* Floating question marks */
.faq-floats{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  overflow:hidden;
}
.faq-float{
  position:absolute;
  font-family:var(--f-display);
  font-weight:700;
  color: color-mix(in srgb, var(--brand) 16%, transparent);
  user-select:none;
  animation: faqFloat 8s ease-in-out infinite;
  text-shadow: 0 6px 20px color-mix(in srgb, var(--brand) 25%, transparent);
}
.faq-float-1{ top:18%; left:8%; font-size:6rem; animation-delay:0s; }
.faq-float-2{ top:62%; left:14%; font-size:4rem; animation-delay:1.4s; color: color-mix(in srgb, var(--brand-3) 22%, transparent);}
.faq-float-3{ top:22%; right:10%; font-size:5rem; animation-delay:2.8s; color: color-mix(in srgb, var(--accent) 20%, transparent);}
.faq-float-4{ top:68%; right:16%; font-size:3.5rem; animation-delay:4.2s; }
@keyframes faqFloat {
  0%,100% { transform: translateY(0) rotate(-6deg); opacity:.7;}
  50%     { transform: translateY(-22px) rotate(6deg); opacity:1; }
}
@media (max-width: 900px){ .faq-floats{ display:none; } }

/* Tools (search + chips) */
.faq-tools{
  padding: 0 0 clamp(24px, 4vw, 40px);
  position:relative;
  z-index:5;
  margin-top: clamp(-32px, -4vw, -16px);
}
.faq-search{
  position:relative;
  max-width: 720px;
  margin: 0 auto 24px;
  display:flex;
  align-items:center;
  background: var(--paper);
  border: 1.5px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: 999px;
  padding: 6px 18px 6px 22px;
  box-shadow:
    0 12px 40px -10px color-mix(in srgb, var(--brand) 18%, transparent),
    0 2px 8px -2px rgba(0,0,0,0.04);
  transition: all .25s var(--ease);
}
.faq-search:focus-within{
  border-color: var(--brand-2);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--brand-2) 18%, transparent),
    0 16px 48px -10px color-mix(in srgb, var(--brand) 28%, transparent);
}
.faq-search-icon{
  color: color-mix(in srgb, var(--ink) 50%, transparent);
  flex-shrink:0;
}
.faq-search input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  padding: 14px 12px;
  font: 500 1rem var(--f-body);
  color: var(--ink);
  min-width:0;
}
.faq-search input::placeholder{
  color: color-mix(in srgb, var(--ink) 45%, transparent);
}
.faq-search-clear{
  border:none;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  width:30px; height:30px;
  border-radius:50%;
  display: none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all .2s var(--ease);
  flex-shrink:0;
}
.faq-search-clear:hover{
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  color: var(--ink);
}
.faq-search.has-value .faq-search-clear{ display:inline-flex; }

.faq-chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid color-mix(in srgb, var(--ink) 10%, transparent);
  background: var(--paper);
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  font: 500 0.9rem var(--f-body);
  cursor:pointer;
  transition: all .22s var(--ease);
}
.faq-chip:hover{
  border-color: color-mix(in srgb, var(--brand) 35%, transparent);
  color: var(--brand);
  transform: translateY(-1px);
}
.faq-chip.is-active{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px -6px color-mix(in srgb, var(--brand) 50%, transparent);
}
.faq-chip-count{
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: color-mix(in srgb, var(--ink) 65%, transparent);
  font-size: 0.72rem;
  font-weight:600;
  padding: 2px 7px;
  border-radius:8px;
  min-width:20px;
  text-align:center;
}
.faq-chip.is-active .faq-chip-count{
  background: rgba(255,255,255,0.22);
  color:#fff;
}

/* List */
.faq-list-sec{
  padding: clamp(20px, 4vw, 40px) 0 clamp(80px, 12vw, 140px);
  position:relative;
}
.faq-list{
  max-width: 920px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.faq-item{
  background: var(--paper);
  border: 1.5px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s var(--ease);
  position:relative;
}
.faq-item:hover{
  border-color: color-mix(in srgb, var(--brand) 30%, transparent);
  box-shadow: 0 12px 36px -14px color-mix(in srgb, var(--brand) 28%, transparent);
}
.faq-item[open]{
  border-color: color-mix(in srgb, var(--brand) 45%, transparent);
  box-shadow: 0 18px 44px -16px color-mix(in srgb, var(--brand) 36%, transparent);
}
.faq-item.is-hidden{ display:none; }
.faq-item summary.faq-q{
  list-style: none;
  cursor:pointer;
  padding: 22px 24px;
  display:flex;
  align-items:center;
  gap: 18px;
  user-select:none;
}
.faq-item summary.faq-q::-webkit-details-marker{ display:none; }

.faq-cat-tag{
  flex-shrink:0;
  font-size: 0.68rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
  padding: 5px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
}
.faq-cat-tag.faq-cat-product { background: color-mix(in srgb, #3b82f6 10%, transparent); color:#1d4ed8; border-color: color-mix(in srgb, #3b82f6 22%, transparent); }
.faq-cat-tag.faq-cat-pricing { background: color-mix(in srgb, #8b5cf6 10%, transparent); color:#6d28d9; border-color: color-mix(in srgb, #8b5cf6 22%, transparent); }
.faq-cat-tag.faq-cat-tech    { background: color-mix(in srgb, #06b6d4 10%, transparent); color:#0e7490; border-color: color-mix(in srgb, #06b6d4 22%, transparent); }
.faq-cat-tag.faq-cat-support { background: color-mix(in srgb, #10b981 10%, transparent); color:#047857; border-color: color-mix(in srgb, #10b981 22%, transparent); }
.faq-cat-tag.faq-cat-install { background: color-mix(in srgb, #f59e0b 10%, transparent); color:#b45309; border-color: color-mix(in srgb, #f59e0b 22%, transparent); }

.faq-q-text{
  flex:1;
  font: 600 clamp(1.02rem, 1.45vw, 1.16rem) var(--f-body);
  color: var(--ink);
  line-height:1.4;
}
.faq-q-icon{
  flex-shrink:0;
  width: 38px;
  height: 38px;
  border-radius:12px;
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  color: var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all .35s var(--ease);
}
.faq-item[open] .faq-q-icon{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item:hover .faq-q-icon{
  background: color-mix(in srgb, var(--brand) 16%, transparent);
}

.faq-a{
  padding: 0 24px 24px 24px;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-size: 1rem;
  line-height: 1.65;
  animation: faqOpen .35s var(--ease);
}
@keyframes faqOpen{
  from { opacity:0; transform: translateY(-6px); }
  to   { opacity:1; transform: translateY(0); }
}
.faq-a > p + p,
.faq-a > p + h5,
.faq-a > h5 + ul,
.faq-a > ul + p,
.faq-a > ul + h5{ margin-top: 14px; }
.faq-a strong{
  color: var(--ink);
  font-weight:700;
}
.faq-a-h{
  font: 700 0.95rem var(--f-body);
  color: var(--ink);
  margin: 16px 0 8px;
  letter-spacing:0.005em;
}
.faq-a-list{
  list-style:none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.faq-a-list li{
  position:relative;
  padding-left: 18px;
}
.faq-a-list li::before{
  content:"";
  position:absolute;
  left:4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius:50%;
  background: var(--brand);
}
.faq-a-bullets li::before{
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
}
.faq-link{
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1.5px solid color-mix(in srgb, var(--brand) 35%, transparent);
  transition: all .2s var(--ease);
  font-weight:600;
}
.faq-link:hover{
  color: var(--brand-2);
  border-color: var(--brand-2);
}

/* Empty state */
.faq-empty{
  max-width: 480px;
  margin: 60px auto 0;
  text-align:center;
  padding: 48px 32px;
  background: var(--paper);
  border: 1.5px dashed color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 24px;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}
.faq-empty svg{ color: color-mix(in srgb, var(--ink) 30%, transparent); margin-bottom: 16px; }
.faq-empty h3{
  font: 700 1.4rem var(--f-display);
  color: var(--ink);
  margin: 0 0 8px;
}
.faq-empty p{ margin: 0 0 22px; font-size: 0.98rem; }

.faq-cta{ /* uses .cta-banner base styles */ }

/* Responsive */
@media (max-width: 720px){
  .faq-q-text{ font-size: 0.98rem; }
  .faq-cat-tag{ display:none; }
  .faq-item summary.faq-q{ padding: 18px 18px; gap: 12px; }
  .faq-a{ padding: 0 18px 20px; }
  .faq-hero-stats{ padding: 18px 24px; gap: 18px; }
  .faq-search input{ font-size: 0.95rem; }
  .faq-chips{ gap: 8px; }
  .faq-chip{ padding: 7px 14px; font-size: 0.84rem; }
}

/* =====================================================
   CLIENTES PAGE
   ===================================================== */

/* ---------- Hero ---------- */
.cl-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.cl-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.cl-hero-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 28px;
}
.cl-hero-title .line { display: block; }
.cl-hero-title .italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-3) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cl-hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink);
  opacity: 0.72;
  max-width: 780px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Stats — 4 colored cards */
.cl-hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 920px;
  margin-inline: auto;
}
.cl-stat-card {
  position: relative;
  padding: 26px 18px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
  box-shadow: 0 18px 40px -28px rgba(10, 18, 48, 0.18);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cl-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -28px rgba(10, 18, 48, 0.32);
}
.cl-stat-card strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--stat-from), var(--stat-to));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cl-stat-card span {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.7;
  font-weight: 500;
}
.cl-stat-blue    { --stat-from: #1e3a8a; --stat-to: #3b82f6; }
.cl-stat-emerald { --stat-from: #047857; --stat-to: #10b981; }
.cl-stat-purple  { --stat-from: #6d28d9; --stat-to: #a855f7; }
.cl-stat-amber   { --stat-from: #d97706; --stat-to: #f59e0b; }

/* Floating decorative cards */
.cl-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.cl-float {
  position: absolute;
  width: 120px;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 6%, transparent);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 18px 36px -16px rgba(10, 18, 48, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: cl-float-anim 7s ease-in-out infinite;
}
.cl-float-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.cl-float-bar {
  height: 6px;
  border-radius: 3px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
}
.cl-float-bar-2 { width: 60%; }
.cl-float-1 { top: 14%; left: 4%; transform: rotate(-8deg); animation-delay: 0s; }
.cl-float-2 { top: 22%; right: 5%; transform: rotate(7deg); animation-delay: -2s; width: 100px; }
.cl-float-3 { bottom: 18%; left: 7%; transform: rotate(6deg); animation-delay: -4s; }
.cl-float-4 { bottom: 14%; right: 6%; transform: rotate(-9deg); animation-delay: -1s; width: 100px; }
@keyframes cl-float-anim {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
@media (max-width: 900px) { .cl-floats { display: none; } }

/* ---------- Featured grid ---------- */
.cl-featured {
  padding: 100px 0;
  background: var(--paper);
}
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-inline: auto; }

.cl-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cl-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
  box-shadow: 0 18px 40px -30px rgba(10, 18, 48, 0.16);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  overflow: hidden;
}
.cl-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-tone) 12%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.cl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px color-mix(in srgb, var(--card-tone) 28%, rgba(10,18,48,0.18));
  border-color: color-mix(in srgb, var(--card-tone) 30%, transparent);
}
.cl-card:hover::before { opacity: 1; }

.cl-card-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.cl-card-logo img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1) contrast(1.02);
  transition: transform 0.5s var(--ease);
}
.cl-card:hover .cl-card-logo img { transform: scale(1.05); }
.cl-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-tone) 12%, transparent);
  color: var(--card-tone);
  margin-bottom: 12px;
}
.cl-card-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}
.cl-card-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.7;
  margin: 0 0 18px;
}
.cl-card-since {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.55;
  padding-top: 14px;
  border-top: 1px dashed color-mix(in srgb, var(--ink) 12%, transparent);
  width: 100%;
}
@media (max-width: 980px) { .cl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cl-grid { grid-template-columns: 1fr; } }

/* ---------- Sectors ---------- */
.cl-sectors {
  padding: 100px 0;
  background: var(--bg-2);
}
.cl-sect-grid {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cl-sect-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--ink) 6%, transparent);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.cl-sect-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(10, 18, 48, 0.22);
  border-color: color-mix(in srgb, var(--si) 35%, transparent);
}
.cl-sect-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--si) 12%, transparent);
  color: var(--si);
}
@media (max-width: 1100px) { .cl-sect-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .cl-sect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .cl-sect-grid { grid-template-columns: 1fr; } }

/* ---------- Full client list ---------- */
.cl-list-sec {
  padding: 100px 0;
  background: var(--paper);
}
.cl-search-bar {
  position: relative;
  max-width: 560px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  border-radius: 999px;
  padding: 8px 18px 8px 18px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cl-search-bar:focus-within {
  border-color: color-mix(in srgb, var(--brand) 50%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 12%, transparent);
}
.cl-search-icon { color: var(--brand); display: flex; }
.cl-search-bar input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.cl-search-bar input::placeholder { color: color-mix(in srgb, var(--ink) 50%, transparent); }
.cl-search-count {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--brand);
}

.cl-list {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 22px;
}
.cl-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-2);
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.cl-list-item:hover {
  background: color-mix(in srgb, var(--brand) 8%, var(--bg-2));
  transform: translateX(4px);
}
.cl-list-item.is-hidden { display: none; }
.cl-list-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 18%, transparent), color-mix(in srgb, var(--brand-2) 18%, transparent));
  color: var(--brand);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
}
@media (max-width: 980px) { .cl-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cl-list { grid-template-columns: 1fr; } }

.cl-list-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink);
}
.cl-list-empty svg { color: var(--brand); margin-bottom: 14px; opacity: 0.6; }
.cl-list-empty h3 {
  font-family: var(--f-display);
  font-size: 22px;
  margin: 0 0 8px;
}
.cl-list-empty p { opacity: 0.65; margin: 0; }


/* ==========================================================================
   CONTACTO (Contact page) — .ct-*
   ========================================================================== */

/* HERO */
.ct-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(110px, 14vh, 170px) 0 clamp(60px, 8vh, 100px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(99,102,241,.18), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(6,182,212,.14), transparent 55%),
    linear-gradient(180deg, #0a1230 0%, #131a45 60%, #1e2a6b 100%);
  color: #fff;
}
.ct-hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.ct-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: ct-float 14s ease-in-out infinite;
}
.ct-orb-1 { width: 380px; height: 380px; top: -80px; left: -90px;
  background: radial-gradient(circle, #3b82f6, transparent 70%); }
.ct-orb-2 { width: 320px; height: 320px; bottom: -60px; right: -60px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  animation-delay: -4s; animation-duration: 17s; }
.ct-orb-3 { width: 260px; height: 260px; top: 50%; left: 55%;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  animation-delay: -7s; animation-duration: 19s; }
@keyframes ct-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.06); }
  66%      { transform: translate(-30px,25px) scale(.96); }
}
.ct-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
}
.ct-hero-inner { position: relative; text-align: center; }
.ct-hero-inner .kicker {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #cdd5ff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.ct-hero-title {
  font-family: var(--f-display, "Space Grotesk"), system-ui, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: -.02em;
}
.ct-hero-title span { display: block; }
.ct-hero-title .italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #93c5fd 0%, #c4b5fd 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ct-hero-sub {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  color: #cfd5ee;
}
.ct-hero-chips {
  list-style: none;
  padding: 0; margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ct-hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #e8ecff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.ct-hero-chips .dot {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}
.ct-hero-chips .dot-green  { background: #10b981; color: #10b981; }
.ct-hero-chips .dot-blue   { background: #3b82f6; color: #3b82f6; }
.ct-hero-chips .dot-violet { background: #a78bfa; color: #a78bfa; }

/* MAIN GRID */
.ct-main { background: linear-gradient(180deg, #f7f8fc 0%, #fff 70%); }
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) {
  .ct-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* INFO COLUMN */
.ct-info-head { margin-bottom: 28px; }
.ct-info-head h2 {
  font-family: var(--f-display, "Space Grotesk"), system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  margin: 8px 0 12px;
  letter-spacing: -.015em;
}
.ct-info-sub { color: #4a5275; line-height: 1.65; max-width: 460px; }

.ct-channels {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.ct-channel {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 20px;
  transition: transform .35s var(--ease, cubic-bezier(.22,1,.36,1)),
              box-shadow .35s var(--ease, cubic-bezier(.22,1,.36,1)),
              border-color .35s var(--ease, cubic-bezier(.22,1,.36,1));
  position: relative;
  overflow: hidden;
}
.ct-channel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ct-tone, #3b82f6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease, cubic-bezier(.22,1,.36,1));
  pointer-events: none;
}
.ct-channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -25px rgba(30, 58, 138, .35);
  border-color: var(--ct-tone, #3b82f6);
}
.ct-channel:hover::before { opacity: .04; }

.ct-channel-addr  { --ct-tone: #3b82f6; }
.ct-channel-phone { --ct-tone: #06b6d4; }
.ct-channel-mail  { --ct-tone: #6366f1; }
.ct-channel-clock { --ct-tone: #f59e0b; }

.ct-channel-ico {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--ct-tone, #3b82f6) 12%, #fff);
  color: var(--ct-tone, #3b82f6);
  flex-shrink: 0;
}
.ct-channel-body h4 {
  margin: 0 0 6px;
  font-family: var(--f-display, "Space Grotesk"), system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink, #0a1230);
}
.ct-channel-body p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.6;
  color: #4a5275;
}
.ct-channel-body a {
  color: var(--brand, #1e3a8a);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.ct-channel-body a:hover { color: var(--ct-tone, #3b82f6); text-decoration: underline; }
.ct-channel-body strong { color: var(--ink, #0a1230); font-weight: 600; }

/* SOCIAL CARD */
.ct-social-card {
  padding: 22px 22px 18px;
  background: linear-gradient(135deg, #f4f6fd 0%, #eef1fb 100%);
  border: 1px solid #e6e9f5;
  border-radius: 20px;
}
.ct-social-card h5 {
  margin: 0 0 14px;
  font-family: var(--f-display, "Space Grotesk"), system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #4a5275;
}
.ct-social-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.ct-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink, #0a1230);
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.ct-social:hover { transform: translateX(4px); background: rgba(255,255,255,.7); }
.ct-fb { color: #1877f2; }
.ct-ig { color: #e1306c; }
.ct-li { color: #0a66c2; }
.ct-yt { color: #ff0000; }
.ct-wa { color: #25d366; }

/* FORM CARD */
.ct-form-wrap { display: flex; flex-direction: column; gap: 14px; }
.ct-form-card {
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border: 1px solid #e6e9f5;
  border-radius: 28px;
  box-shadow: 0 40px 80px -50px rgba(30, 58, 138, .35);
  position: relative;
  overflow: hidden;
}
.ct-form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #6366f1, #06b6d4);
  background-size: 200% 100%;
  animation: ct-bar-flow 6s linear infinite;
}
@keyframes ct-bar-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.ct-form-head { margin-bottom: 24px; }
.ct-form-head h2 {
  font-family: var(--f-display, "Space Grotesk"), system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  margin: 8px 0 10px;
  letter-spacing: -.01em;
}
.ct-form-sub { color: #4a5275; font-size: .95rem; line-height: 1.6; margin: 0; }

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) {
  .ct-row { grid-template-columns: 1fr; }
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.ct-field label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink, #0a1230);
  letter-spacing: .01em;
}
.ct-req { color: #ef4444; font-weight: 700; }

.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #f7f8fc;
  border: 1.5px solid #e6e9f5;
  border-radius: 12px;
  font-family: var(--f-body, "Inter"), system-ui, sans-serif;
  font-size: .96rem;
  color: var(--ink, #0a1230);
  transition: all .2s ease;
  -webkit-appearance: none; appearance: none;
}
.ct-field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.ct-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a1230' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #9aa1bf; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-2, #3b82f6);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .12);
}
.ct-field input:invalid:not(:placeholder-shown),
.ct-field textarea:invalid:not(:placeholder-shown) {
  border-color: #fca5a5;
  background: #fef6f6;
}
.ct-field input:valid:not(:placeholder-shown),
.ct-field textarea:valid:not(:placeholder-shown) {
  border-color: #86efac;
}

.ct-counter {
  position: absolute;
  bottom: 8px; right: 12px;
  font-size: .75rem;
  color: #9aa1bf;
  pointer-events: none;
  background: rgba(255,255,255,.85);
  padding: 2px 6px;
  border-radius: 6px;
}

.ct-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.ct-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #f7f8fc;
  border-radius: 12px;
  font-size: .88rem;
  line-height: 1.5;
  color: #4a5275;
  cursor: pointer;
  transition: background .2s ease;
}
.ct-check:hover { background: #f0f2f9; }
.ct-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--brand-2, #3b82f6);
  width: 16px; height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.ct-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.ct-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ct-submit[disabled] { opacity: .6; cursor: progress; pointer-events: none; }
.ct-recaptcha-note {
  font-size: .76rem;
  color: #9aa1bf;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.ct-status {
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: .92rem;
  line-height: 1.5;
  border: 1px solid transparent;
  animation: ct-status-in .35s var(--ease, cubic-bezier(.22,1,.36,1));
}
@keyframes ct-status-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ct-status[data-state="success"] {
  background: #ecfdf5; border-color: #6ee7b7; color: #065f46;
}
.ct-status[data-state="error"] {
  background: #fef2f2; border-color: #fca5a5; color: #991b1b;
}
.ct-status[data-state="info"] {
  background: #eff6ff; border-color: #93c5fd; color: #1e3a8a;
}

.ct-meta-note {
  font-size: .86rem;
  color: #6b718e;
  text-align: center;
  margin: 0;
  padding: 12px 18px;
  background: #eef1fb;
  border-radius: 12px;
  line-height: 1.55;
}
.ct-meta-note strong { color: var(--ink, #0a1230); }

/* MAP SECTION */
.ct-map-sec { background: #fff; }
.ct-map-card {
  width: 100%;
  height: clamp(360px, 50vh, 480px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e6e9f5;
  box-shadow: 0 40px 80px -50px rgba(30, 58, 138, .3);
  margin: 32px 0 24px;
  position: relative;
}
.ct-map-card iframe { width: 100%; height: 100%; display: block; }
.ct-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.ct-map-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* CTA STRIP */
.ct-cta {
  padding: clamp(60px, 9vh, 110px) 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(6,182,212,.25), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(99,102,241,.25), transparent 50%),
    linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ct-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) {
  .ct-cta-inner { grid-template-columns: 1fr; text-align: center; }
}
.ct-cta-text .kicker {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #c7d2fe;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ct-cta-text h2 {
  font-family: var(--f-display, "Space Grotesk"), system-ui, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -.01em;
}
.ct-cta-text h2 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #93c5fd 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ct-cta-text p {
  color: #cfd5ee;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
}
@media (max-width: 860px) { .ct-cta-text p { margin: 0 auto; } }

.ct-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
}

/* btn-outline-light (new) */
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}


/* ============================================================================
   DISTRIBUIDORES PAGE  (.di-*)
   ============================================================================ */

/* ---------- HERO ---------- */
.di-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background:
    radial-gradient(1200px 600px at 50% -100px, rgba(99,102,241,.18), transparent 60%),
    linear-gradient(180deg, #f4f5fb 0%, #fbfcfd 100%);
  isolation: isolate;
}
.di-hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.di-mesh {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px) 0 0/40px 40px,
    linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px) 0 0/40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
}
.di-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  animation: di-float 16s ease-in-out infinite;
}
.di-orb-1 { width: 480px; height: 480px; left: -120px; top: -100px; background: radial-gradient(circle, #6366f1, transparent 70%); }
.di-orb-2 { width: 420px; height: 420px; right: -100px; top: 80px;  background: radial-gradient(circle, #06b6d4, transparent 70%); animation-delay: -5s; }
.di-orb-3 { width: 360px; height: 360px; left: 38%; bottom: -120px; background: radial-gradient(circle, #f59e0b, transparent 70%); animation-delay: -10s; }
@keyframes di-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.05); }
  66%     { transform: translate(-30px,20px) scale(.95); }
}
.di-rings {
  position: absolute; right: -200px; top: 40%;
  width: 600px; height: 600px;
  background:
    radial-gradient(circle, transparent 38%, rgba(99,102,241,.08) 39%, transparent 41%),
    radial-gradient(circle, transparent 28%, rgba(99,102,241,.06) 29%, transparent 31%),
    radial-gradient(circle, transparent 18%, rgba(99,102,241,.05) 19%, transparent 21%);
  animation: di-spin 60s linear infinite;
}
@keyframes di-spin { to { transform: rotate(360deg); } }

.di-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.di-hero-left .kicker {
  color: #6366f1;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 14px;
}
.di-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 20px;
  color: #0a1230;
  letter-spacing: -0.02em;
}
.di-hero-title span { display: block; }
.di-hero-title .grad {
  background: linear-gradient(120deg, #6366f1, #06b6d4 50%, #f59e0b);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
}
.di-hero-sub {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 28px;
}
.di-hero-stats {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-wrap: wrap;
}
.di-hero-stats li {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 28px;
  border-right: 1px solid rgba(15,23,42,.08);
}
.di-hero-stats li:last-child { border-right: 0; padding-right: 0; }
.di-stat-num {
  font-size: 2rem; font-weight: 700;
  background: linear-gradient(120deg, #6366f1, #06b6d4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.di-stat-lbl {
  font-size: .85rem; color: #64748b; font-weight: 500;
}
.di-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ---------- HERO BADGE CARD ---------- */
.di-hero-right {
  display: flex; justify-content: center; align-items: center;
  perspective: 1200px;
}
.di-badge-card {
  position: relative;
  width: 100%; max-width: 380px;
  background: linear-gradient(160deg, #ffffff 0%, #f7f8ff 100%);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 24px;
  box-shadow:
    0 30px 60px -20px rgba(99,102,241,.25),
    0 10px 30px -10px rgba(15,23,42,.1);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform .5s ease, box-shadow .5s ease;
}
.di-badge-card:hover {
  transform: rotate(0) translateY(-8px);
  box-shadow:
    0 40px 80px -20px rgba(99,102,241,.35),
    0 20px 40px -10px rgba(15,23,42,.12);
}
.di-badge-ribbon {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(120deg, #6366f1, #4f46e5);
  color: #fff; font-weight: 600; font-size: .9rem;
  letter-spacing: .02em;
}
.di-badge-body { padding: 24px 22px 18px; }
.di-badge-name {
  font-size: 1.1rem; font-weight: 700; color: #0a1230;
  margin: 0 0 4px;
}
.di-badge-tag {
  font-size: .85rem; color: #64748b; font-style: italic;
  margin: 0 0 14px;
}
.di-badge-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.3), transparent);
  margin: 14px 0;
}
.di-badge-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.di-badge-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: #334155;
}
.di-badge-list li svg { color: #10b981; flex-shrink: 0; }
.di-badge-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  background: rgba(99,102,241,.06);
  border-top: 1px solid rgba(99,102,241,.12);
  font-size: .8rem; color: #64748b; font-weight: 500;
}
.di-badge-pulse {
  position: relative;
  width: 10px; height: 10px;
}
.di-badge-pulse span {
  position: absolute; inset: 0;
  background: #10b981;
  border-radius: 50%;
  animation: di-pulse 1.6s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(16,185,129,.5);
}
@keyframes di-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* ---------- BENEFITS ---------- */
.di-benefits { padding: 100px 0; background: #fbfcfd; }
.di-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.di-ben-card {
  --di-tone: #6366f1;
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.di-ben-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--di-tone), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.di-ben-card:hover {
  transform: translateY(-6px);
  border-color: var(--di-tone);
  box-shadow: 0 25px 50px -20px color-mix(in srgb, var(--di-tone) 35%, transparent);
}
.di-ben-card:hover::before { opacity: .06; }
.di-ben-ico {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--di-tone) 12%, white);
  color: var(--di-tone);
  margin-bottom: 18px;
  transition: transform .35s ease;
}
.di-ben-card:hover .di-ben-ico { transform: scale(1.08) rotate(-4deg); }
.di-ben-card h3 {
  font-size: 1.1rem; font-weight: 700; color: #0a1230;
  margin: 0 0 8px;
}
.di-ben-card p {
  font-size: .95rem; color: #64748b; line-height: 1.5; margin: 0;
}

/* ---------- PRODUCTS ---------- */
.di-prods { padding: 100px 0; background: linear-gradient(180deg, #fbfcfd 0%, #f4f5fb 100%); }
.di-prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.di-prod-card {
  --di-tone: #6366f1;
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-top: 4px solid var(--di-tone);
  border-radius: 16px;
  padding: 24px 20px 22px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.di-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px color-mix(in srgb, var(--di-tone) 30%, transparent);
}
.di-prod-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--di-tone) 12%, white);
  color: var(--di-tone);
  font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.di-prod-card h3 {
  font-size: 1.3rem; font-weight: 700; color: #0a1230;
  margin: 0 0 10px;
}
.di-prod-card p {
  font-size: .88rem; color: #64748b; line-height: 1.5; margin: 0;
}

/* ---------- PROCESS ---------- */
.di-process { padding: 100px 0; background: #fbfcfd; }
.di-steps {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 0;
  counter-reset: di-step;
  position: relative;
}
.di-steps::before {
  content: ""; position: absolute;
  left: 8%; right: 8%; top: 32px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.25), rgba(6,182,212,.25), rgba(245,158,11,.25), transparent);
  z-index: 0;
}
.di-step {
  position: relative; z-index: 1;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 28px 22px 22px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.di-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(99,102,241,.2);
}
.di-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff; font-weight: 700; font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px -5px rgba(99,102,241,.4);
}
.di-step:nth-child(2) .di-step-num { background: linear-gradient(135deg, #06b6d4, #0891b2); box-shadow: 0 10px 20px -5px rgba(6,182,212,.4); }
.di-step:nth-child(3) .di-step-num { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 10px 20px -5px rgba(139,92,246,.4); }
.di-step:nth-child(4) .di-step-num { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 10px 20px -5px rgba(245,158,11,.4); }
.di-step h3 {
  font-size: 1.05rem; font-weight: 700; color: #0a1230;
  margin: 0 0 6px;
}
.di-step p {
  font-size: .88rem; color: #64748b; line-height: 1.5; margin: 0;
}

/* ---------- SECTORS ---------- */
.di-sectors { padding: 100px 0; background: linear-gradient(180deg, #fbfcfd 0%, #f4f5fb 100%); }
.di-sector-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; list-style: none; padding: 0; margin: 48px 0 0;
}
.di-sector-chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: #334155;
  transition: all .25s ease;
  cursor: default;
}
.di-sector-chips li:hover {
  background: linear-gradient(120deg, #6366f1, #4f46e5);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99,102,241,.4);
}
.di-sector-chips li svg { color: #10b981; transition: color .25s ease; }
.di-sector-chips li:hover svg { color: #fff; }

/* ---------- APPLY FORM ---------- */
.di-apply { padding: 100px 0; background: #fbfcfd; }
.di-apply-wrap { max-width: 920px; margin: 0 auto; }
.di-apply-head { text-align: center; margin-bottom: 40px; }
.di-form-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px -25px rgba(15,23,42,.15);
  overflow: hidden;
}
.di-form-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #06b6d4, #f59e0b, #6366f1);
  background-size: 200% 100%;
  animation: di-bar-flow 6s linear infinite;
}
@keyframes di-bar-flow { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }

.di-fs {
  border: 0; padding: 0; margin: 0 0 28px;
}
.di-fs legend {
  font-size: .85rem; font-weight: 700;
  color: #6366f1;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 14px;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(99,102,241,.15);
  width: 100%;
}
.di-fs-help {
  font-size: .85rem; color: #64748b;
  margin: -6px 0 14px;
}

/* ---------- PRODUCT PICKERS (checkboxes) ---------- */
.di-prods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.di-prod-pick {
  position: relative;
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px 14px 46px;
  background: #f7f8fc;
  border: 1.5px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all .25s ease;
}
.di-prod-pick:hover {
  background: #eef0fb;
  border-color: rgba(99,102,241,.3);
}
.di-prod-pick input {
  position: absolute; opacity: 0; pointer-events: none;
}
.di-pick-box {
  position: absolute; left: 14px; top: 14px;
  width: 22px; height: 22px;
  background: #fff;
  border: 2px solid rgba(99,102,241,.35);
  border-radius: 6px;
  transition: all .2s ease;
}
.di-pick-box::after {
  content: ""; position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border: solid #fff; border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .2s ease;
}
.di-prod-pick input:checked ~ .di-pick-box {
  background: #6366f1;
  border-color: #6366f1;
}
.di-prod-pick input:checked ~ .di-pick-box::after { transform: rotate(45deg) scale(1); }
.di-prod-pick input:checked ~ .di-pick-label,
.di-prod-pick input:checked ~ .di-pick-sub {
  color: #6366f1;
}
.di-prod-pick:has(input:checked) {
  background: #eef0fb;
  border-color: #6366f1;
}
.di-pick-label {
  font-size: .95rem; font-weight: 700; color: #0a1230;
}
.di-pick-sub {
  font-size: .78rem; color: #64748b;
}

/* ---------- DI submit / status ---------- */
.di-submit { width: 100%; }
.ct-submit-row { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }

/* ---------- NOTE ---------- */
.di-note {
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: 24px;
  padding: 18px 22px;
  background: linear-gradient(120deg, rgba(99,102,241,.08), rgba(6,182,212,.05));
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 14px;
  font-size: .9rem; color: #475569; line-height: 1.55;
}
.di-note svg { color: #6366f1; flex-shrink: 0; margin-top: 2px; }
.di-note p { margin: 0; }
.di-note strong { color: #0a1230; }

/* ---------- FAQ ---------- */
.di-faq { padding: 100px 0; background: linear-gradient(180deg, #fbfcfd 0%, #f4f5fb 100%); }
.di-faq-list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.di-faq-item {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.di-faq-item[open] {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 15px 30px -15px rgba(99,102,241,.2);
}
.di-faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600; color: #0a1230;
  font-size: .98rem;
}
.di-faq-item summary::-webkit-details-marker { display: none; }
.di-faq-chevron {
  transition: transform .3s ease;
  color: #6366f1;
  flex-shrink: 0;
}
.di-faq-item[open] .di-faq-chevron { transform: rotate(180deg); }
.di-faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: .95rem; color: #64748b; line-height: 1.6;
}

/* ---------- CTA STRIP ---------- */
.di-cta {
  padding: 80px 0;
  background: linear-gradient(120deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.di-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 80% 50%, rgba(6,182,212,.18), transparent 70%),
    radial-gradient(400px 200px at 20% 80%, rgba(245,158,11,.12), transparent 70%);
  pointer-events: none;
}
.di-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.di-cta-text .kicker {
  color: #c4b5fd;
  letter-spacing: .04em; text-transform: uppercase;
  font-weight: 600; font-size: .8rem;
  margin-bottom: 12px;
}
.di-cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.1;
}
.di-cta-text h2 em {
  display: block;
  background: linear-gradient(120deg, #c4b5fd, #67e8f9);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
}
.di-cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}
.di-cta-buttons {
  display: flex; flex-direction: column; gap: 12px;
}
.di-cta-buttons .btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 24px;
}
.btn-white {
  background: #fff; color: #1e1b4b;
  border-radius: 12px; font-weight: 600; text-decoration: none;
  transition: all .25s ease;
}
.btn-white:hover {
  background: #f4f5fb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(0,0,0,.3);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .di-hero { padding: 110px 0 70px; }
  .di-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .di-badge-card { transform: rotate(0); margin: 0 auto; }
  .di-ben-grid { grid-template-columns: repeat(2, 1fr); }
  .di-prod-grid { grid-template-columns: repeat(3, 1fr); }
  .di-steps { grid-template-columns: repeat(2, 1fr); }
  .di-steps::before { display: none; }
  .di-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .di-cta-text p { margin: 0 auto; }
  .di-cta-buttons { align-items: stretch; }
}
@media (max-width: 640px) {
  .di-hero-stats { gap: 16px; }
  .di-hero-stats li { padding-right: 16px; }
  .di-stat-num { font-size: 1.6rem; }
  .di-ben-grid { grid-template-columns: 1fr; }
  .di-prod-grid { grid-template-columns: 1fr 1fr; }
  .di-steps { grid-template-columns: 1fr; }
  .di-form-card { padding: 28px 22px; }
  .di-prods-grid { grid-template-columns: 1fr; }
  .di-faq-item summary { padding: 16px 18px; font-size: .92rem; }
}
