/*
Theme Name:  Expacom 2027
Theme URI:   https://expacom.com
Author:      Expacom Sistemas, S.L.
Description: Tema corporativo Expacom 2027 — soporte informático, ciberseguridad y cloud para empresas en Madrid.
Version:     1.0.1
Text Domain: expacom2027
*/

/* ════════════════════════════════════════════════════════════════
   DESIGN TOKENS — fuente de verdad: home.html
   ════════════════════════════════════════════════════════════════ */
:root {
  /* Brand — colores oficiales del logo */
  --logo-dark: #0C2A38;
  --logo-cyan: #14B4CC;
  --logo-teal: #36D4A4;
  /* Escala basada en logo-dark */
  --ink-900: #07151C;
  --ink-800: #0C2A38;
  --ink-700: #143A4D;
  --ink-600: #1F4F66;
  --ink-500: #2E6680;
  --ink-400: #4A88A6;
  --ink-300: #7FA8BD;
  --ink-200: #B6CCD8;
  --ink-100: #E1EAEF;
  --ink-50:  #F3F7F9;
  /* Acentos */
  --teal-50:  #E8FBF4;
  --teal-100: #C2F4DF;
  --teal-300: #6FE2BC;
  --teal-500: #36D4A4;
  --teal-700: #1FA683;
  --teal-900: #136A55;
  --cyan-50:  #E5F8FB;
  --cyan-100: #BFEEF5;
  --cyan-500: #14B4CC;
  --cyan-700: #0E8A9D;
  /* Neutrales */
  --white: #FFFFFF;
  --bg: #FAFBFC;
  --line: #E6EBF0;
  --line-soft: #F0F3F6;
  /* Tipografía */
  --font-logo: 'Montserrat', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  /* Espaciado */
  --container: 1200px;
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 28px;
  --shadow-1: 0 1px 3px rgba(12, 42, 56, 0.06), 0 1px 2px rgba(12, 42, 56, 0.04);
  --shadow-2: 0 4px 16px rgba(12, 42, 56, 0.08);
  --shadow-3: 0 16px 48px rgba(12, 42, 56, 0.12);
  --shadow-glow: 0 0 0 1px rgba(54, 212, 164, 0.2), 0 8px 32px rgba(54, 212, 164, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink-800);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ════════════════════════ LOGO COMPONENT ════════════════════════ */
.logo {
  font-family: var(--font-logo);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--logo-dark);
  display: inline-flex;
  align-items: baseline;
  font-size: 26px;
}
.logo .x {
  background: linear-gradient(90deg, var(--logo-cyan) 50%, var(--logo-teal) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.logo.on-dark { color: #FFFFFF; }

/* ════════════════════════ GLOBAL GRADIENT TEXT ════════════════════════ */
.grad {
  background: linear-gradient(90deg, var(--logo-cyan), var(--logo-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ════════════════════════ NAV ════════════════════════ */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links > a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  transition: all 0.15s;
}
.nav-links > a:hover { color: var(--ink-900); background: var(--ink-50); }
.nav-links > a.nav-active { color: var(--ink-900); font-weight: 600; }

/* Dropdown Servicios */
.nav-dropdown { position: relative; }
.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  background: none;
  border: 0;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
}
.nav-dropdown > button:hover,
.nav-dropdown.open > button { color: var(--ink-900); background: var(--ink-50); }
.nav-dropdown > button svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown.open > button svg { transform: rotate(180deg); }
.dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-3);
  padding: 6px;
  min-width: 230px;
  z-index: 200;
}
.nav-dropdown.open .dd-menu { display: block; }
.dd-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: all 0.15s;
  white-space: nowrap;
}
.dd-menu a:hover { background: var(--ink-50); color: var(--ink-900); }
.dd-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--teal-50);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.dd-icon svg { width: 14px; height: 14px; color: var(--teal-700); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink-900);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.18s;
}
.nav-cta:hover { background: var(--teal-700); transform: translateY(-1px); }
.nav.nav-solid { box-shadow: 0 1px 32px rgba(12,42,56,0.09); border-bottom-color: rgba(230,235,240,0.6); }
.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink-800); border-radius: 1px; }
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ════════════════════════ HERO ════════════════════════ */
.hero {
  background: var(--ink-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 96px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(20, 180, 204, 0.15), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(54, 212, 164, 0.12), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: rgba(54, 212, 164, 0.08);
  border: 1px solid rgba(54, 212, 164, 0.2);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--teal-300);
  letter-spacing: 0.02em;
}
.hero-eyebrow .badge {
  background: var(--teal-500);
  color: var(--ink-900);
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 22px 0 24px;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--logo-cyan), var(--logo-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 38px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  color: var(--ink-900);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(54, 212, 164, 0.35), 0 12px 40px rgba(54, 212, 164, 0.3); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.btn-light { background: var(--white); color: var(--ink-900); }
.btn-light:hover { background: var(--ink-50); transform: translateY(-1px); }
.btn-dark { background: var(--ink-900); color: var(--white); }
.btn-dark:hover { background: var(--ink-700); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--ink-900) !important;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-white:hover { background: var(--ink-100); transform: translateY(-1px); box-shadow: var(--shadow-2); }

/* ── Hero services strip ── */
.hero-services {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0;
  max-width: 760px;
}
.hero-service-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
  transition: color 0.18s;
  white-space: nowrap;
}
.hero-service-item:last-child { border-right: 0; padding-right: 0; margin-right: 0; }
.svc-main {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.2;
  transition: color 0.18s;
}
.svc-sub {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.18s;
}
.hero-service-item:hover .svc-main { color: var(--teal-300); }
.hero-service-item:hover .svc-sub  { color: var(--teal-300); }
@media (max-width: 768px) {
  .hero-services { flex-wrap: wrap; gap: 20px; }
  .hero-service-item { border-right: 0; padding-right: 0; margin-right: 0; }
}

/* ── Dashboard visual ── */
.expacom-dash {
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.expacom-dash::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(140deg, rgba(54,212,164,.4), transparent 35%, transparent 65%, rgba(20,180,204,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.expacom-dash__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.expacom-dash__bar-left { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.expacom-dash__bar-left svg { width: 14px; height: 14px; color: var(--teal-500); }
.expacom-dash__bar-live { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: rgba(255,255,255,0.4); font-weight: 500; }
.expacom-dash__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 8px var(--teal-500);
  animation: pulse 2s infinite;
}
.expacom-dash__gauge { display: flex; align-items: center; justify-content: center; gap: 32px; padding: 30px 24px 26px; }
.expacom-dash__ring { position: relative; width: 140px; height: 140px; flex-shrink: 0; }
.expacom-dash__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.expacom-dash__ring-bg { fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 7; }
.expacom-dash__ring-fill {
  fill: none; stroke: url(#gGrad); stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: 339.3; stroke-dashoffset: 339.3;
  animation: ringIn 1.4s .5s cubic-bezier(.16,1,.3,1) forwards;
}
.expacom-dash__ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.expacom-dash__ring-val { font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.expacom-dash__ring-sub { font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; }
.expacom-dash__kpis { display: flex; flex-direction: column; gap: 18px; }
.expacom-dash__kpi { display: flex; align-items: center; gap: 10px; }
.expacom-dash__kpi-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.expacom-dash__kpi-dot--teal { background: var(--teal-500); box-shadow: 0 0 6px rgba(54,212,164,.4); }
.expacom-dash__kpi-dot--cyan { background: var(--cyan-500); box-shadow: 0 0 6px rgba(20,180,204,.4); }
.expacom-dash__kpi-dot--muted { background: rgba(255,255,255,.3); }
.expacom-dash__kpi-name { font-size: 12px; color: rgba(255,255,255,0.45); flex: 1; }
.expacom-dash__kpi-val { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.expacom-dash__icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.05); }
.expacom-dash__icon-cell { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 8px; background: rgba(7,21,28,0.3); transition: background .2s; }
.expacom-dash__icon-cell:hover { background: rgba(54,212,164,0.04); }
.expacom-dash__ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; position: relative; }
.expacom-dash__ic svg { width: 18px; height: 18px; }
.expacom-dash__ic--ok { background: rgba(54,212,164,0.08); border: 1px solid rgba(54,212,164,0.18); color: var(--teal-500); }
.expacom-dash__ic--warn { background: rgba(255,180,50,0.08); border: 1px solid rgba(255,180,50,0.18); color: #ffc66f; }
.expacom-dash__badge { position: absolute; top: -3px; right: -3px; width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--ink-900); display: grid; place-items: center; }
.expacom-dash__badge--ok { background: var(--teal-500); }
.expacom-dash__badge--warn { background: #ffb432; }
.expacom-dash__badge svg { width: 6px; height: 6px; color: var(--ink-900); stroke-width: 3.5; }
.expacom-dash__icon-label { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; }
.expacom-dash__spark { padding: 16px 22px 18px; border-top: 1px solid rgba(255,255,255,0.04); }
.expacom-dash__spark-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.expacom-dash__spark-title { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.expacom-dash__spark-tag { font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: 100px; background: rgba(54,212,164,0.1); color: var(--teal-300); }
.expacom-dash__spark-svg { width: 100%; height: 48px; display: block; }
.expacom-dash__spark-area { fill: url(#sGrad); opacity: 0; animation: fadeIn .8s .8s ease forwards; }
.expacom-dash__spark-line {
  fill: none; stroke: url(#sLine); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 400; stroke-dashoffset: 400;
  animation: draw 1.2s .6s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes ringIn { to { stroke-dashoffset: 6.8; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 968px) {
  .hero { padding: 64px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-services { gap: 16px; flex-wrap: wrap; }
  .hero-service-item { border-right: 0; padding-right: 0; margin-right: 0; }
}
@media (max-width: 580px) {
  .hero-services { gap: 14px; }
  .expacom-dash__gauge { flex-direction: column; gap: 20px; }
  .expacom-dash__kpis { flex-direction: row; gap: 16px; flex-wrap: wrap; }
  .expacom-dash__icons { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════ SECTION ════════════════════════ */
.section { padding: 100px 0; position: relative; }
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section.alt { background: #F5F5F7; border-radius: 20px 20px 0 0; }
.section.dark { background: var(--ink-900); color: var(--white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 14px;
}
.section.dark .eyebrow { color: var(--teal-300); }
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin-bottom: 18px;
}
.section.dark h2 { color: var(--white); }
.section h2 .grad {
  background: linear-gradient(90deg, var(--logo-cyan), var(--logo-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head p { font-size: 17px; color: var(--ink-500); line-height: 1.6; }
.section.dark .section-head p { color: rgba(255,255,255,0.7); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 16px;
}
.section-head h2 .grad {
  background: linear-gradient(90deg, var(--logo-cyan), var(--logo-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lead { font-size: 17px; color: var(--ink-500); line-height: 1.65; font-weight: 300; }
@media (max-width: 768px) { .section { padding: 64px 0; } .section-head { margin-bottom: 40px; } }

/* ════════════════════════ WHY / TRUST BAR ════════════════════════ */
.why-section { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-top: 40px; overflow: hidden; }
.trust-bar-inner { padding-bottom: 40px; overflow: hidden; }
.trust-bar-head { text-align: center; margin-bottom: 28px; }
.trust-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-300); }
.trust-carousel { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }
.trust-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: scroll-logos 38s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
@keyframes scroll-logos { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-img { height: 36px; width: auto; object-fit: contain; opacity: 0.85; filter: grayscale(0); transition: opacity 0.25s, filter 0.25s; flex-shrink: 0; }
.trust-img:hover { opacity: 1; }
.why-divider { max-width: var(--container); margin: 0 auto 56px; padding: 0 24px; border-top: 1px solid var(--line-soft); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; padding: 0 24px 80px; }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.why-card:hover { border-color: var(--teal-500); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.why-icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: linear-gradient(135deg, var(--cyan-50), var(--teal-50)); display: grid; place-items: center; margin-bottom: 22px; }
.why-icon svg { width: 24px; height: 24px; color: var(--teal-700); }
.why-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink-900); letter-spacing: -0.015em; margin-bottom: 10px; line-height: 1.25; }
.why-card p { font-size: 14.5px; color: var(--ink-500); line-height: 1.6; }
@media (max-width: 968px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .why-grid { grid-template-columns: 1fr; } }

/* ════════════════════════ EXTRA SERVICES ════════════════════════ */
.extra-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.extra-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; transition: all 0.25s; }
.extra-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.extra-card.dark { background: linear-gradient(135deg, var(--ink-900), var(--ink-700)); color: var(--white); border-color: var(--ink-700); }
.extra-card.dark::after { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(54,212,164,0.15), transparent 65%); }
.extra-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-700); align-self: flex-start; }
.extra-card.dark .extra-tag { color: var(--teal-300); }
.extra-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.extra-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; line-height: 1.2; color: inherit; }
.extra-card p { font-size: 15px; line-height: 1.6; color: var(--ink-500); }
.extra-card.dark p { color: rgba(255,255,255,0.75); }
.extra-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin: 4px 0; }
.extra-list li { font-size: 13.5px; display: flex; align-items: center; gap: 8px; color: var(--ink-700); }
.extra-card.dark .extra-list li { color: rgba(255,255,255,0.85); }
.extra-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-500); }
.extra-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); position: relative; z-index: 1; }
.extra-card.dark .extra-foot { border-top-color: rgba(255,255,255,0.12); }
.extra-foot .price-tag { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink-900); }
.extra-card.dark .extra-foot .price-tag { color: var(--white); }
.extra-foot a { font-size: 14px; font-weight: 600; color: var(--teal-700); display: inline-flex; align-items: center; gap: 6px; }
.extra-card.dark .extra-foot a { color: var(--teal-300); }
.extra-foot a:hover { gap: 10px; }
@media (max-width: 768px) { .extra-grid { grid-template-columns: 1fr; } .extra-list { grid-template-columns: 1fr; } }

/* ════════════════════════ EXPACOM 365 / PROCESS ════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-content h2 { margin-bottom: 22px; }
.split-content p { font-size: 16px; color: var(--ink-500); line-height: 1.65; margin-bottom: 18px; }
.split-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--ink-700); line-height: 1.55; }
.split-list li .num { width: 30px; height: 30px; border-radius: 50%; background: var(--ink-900); color: var(--white); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.dashboard-mock { background: var(--ink-900); border-radius: var(--r-xl); padding: 8px; box-shadow: var(--shadow-3), 0 0 0 1px rgba(255,255,255,0.04); position: relative; }
.dashboard-mock::before { content: ''; position: absolute; inset: -30px; background: radial-gradient(ellipse at center, rgba(54,212,164,0.08), transparent 70%); z-index: -1; }
.dm-bar { display: flex; gap: 6px; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dm-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.dm-bar span:first-child { background: #ff5f57; }
.dm-bar span:nth-child(2) { background: #febc2e; }
.dm-bar span:nth-child(3) { background: #28c840; }
.dm-content { padding: 22px 24px; color: var(--white); }
.dm-row { display: flex; gap: 12px; margin-bottom: 16px; }
.dm-row:last-child { margin-bottom: 0; }
.dm-stat { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px; }
.dm-stat .l { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.dm-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--white); letter-spacing: -0.02em; }
.dm-stat .v .pos { color: var(--teal-300); font-size: 14px; font-weight: 500; margin-left: 4px; }
.dm-bar-chart { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px; }
.dm-bar-chart .l { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.dm-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.dm-bars span { flex: 1; background: linear-gradient(180deg, var(--teal-500), var(--cyan-500)); border-radius: 3px; opacity: 0.9; animation: barGrow 0.6s ease-out backwards; }
.dm-bars span:nth-child(1) { animation-delay: 0.1s; }
.dm-bars span:nth-child(2) { animation-delay: 0.15s; }
.dm-bars span:nth-child(3) { animation-delay: 0.2s; }
.dm-bars span:nth-child(4) { animation-delay: 0.25s; }
.dm-bars span:nth-child(5) { animation-delay: 0.3s; }
.dm-bars span:nth-child(6) { animation-delay: 0.35s; }
.dm-bars span:nth-child(7) { animation-delay: 0.4s; }
@media (max-width: 968px) { .split { grid-template-columns: 1fr; gap: 48px; } .dashboard-mock { order: -1; } }

/* ════════════════════════ SECTORES ════════════════════════ */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sector { background-size: cover; background-position: center; background-color: var(--ink-900); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md); padding: 24px 20px; display: flex; flex-direction: column; justify-content: space-between; min-height: 170px; position: relative; overflow: hidden; cursor: pointer; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.sector--lg { grid-column: span 2; min-height: 220px; padding: 32px 28px; }
.sector::before { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(7,21,28,0.82) 0%, rgba(12,42,56,0.68) 100%); transition: background 0.3s; z-index: 0; }
.sector:hover::before { background: linear-gradient(150deg, rgba(7,21,28,0.75) 0%, rgba(20,180,204,0.45) 100%); }
.sector > * { position: relative; z-index: 1; }
.sector:hover { border-color: var(--cyan-500); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,180,204,0.18); }
.sector svg { width: 28px; height: 28px; color: rgba(255,255,255,0.9); transition: color 0.3s; }
.sector:hover svg { color: var(--cyan-300); }
.sector .nm { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.95); line-height: 1.25; transition: color 0.3s; }
.sector--lg .nm { font-size: 21px; }
.sector:hover .nm { color: var(--white); }
.sectors-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.sectors-title { flex: 1; }
.sectors-title .eyebrow { margin-bottom: 8px; }
.sectors-title h2 { margin-bottom: 12px; }
.sectors-title p  { margin: 0; }
.sectors-nav { display: flex; gap: 8px; flex-shrink: 0; padding-bottom: 4px; }
.sectors-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); cursor: pointer; display: grid; place-items: center; color: var(--ink-800); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.sectors-btn:hover { background: var(--ink-800); border-color: var(--ink-800); color: var(--white); }
.sectors-carousel { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scrollbar-width: none; }
.sectors-carousel::-webkit-scrollbar { display: none; }
.sector-card { flex: 0 0 300px; height: 340px; scroll-snap-align: start; border-radius: var(--r-lg); background-size: cover; background-position: center; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s ease; }
.sector-card:hover { transform: translateY(-4px); }
.sector-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,21,28,0.80) 0%, rgba(7,21,28,0.15) 60%, transparent 100%); border-radius: var(--r-lg); }
.sector-card svg { position: absolute; top: 20px; left: 20px; width: 28px; height: 28px; stroke: rgba(255,255,255,0.85); fill: none; z-index: 1; }
.sector-card .nm { position: absolute; bottom: 20px; left: 20px; right: 20px; color: var(--white); font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.3; z-index: 1; }
@media (max-width: 968px) { .sectors { grid-template-columns: repeat(2, 1fr); } .sector--lg { grid-column: span 2; } }
@media (max-width: 480px) { .sectors { grid-template-columns: 1fr; } .sector--lg { grid-column: span 1; } }
@media (max-width: 768px) { .sectors-header { flex-direction: column; align-items: flex-start; } .sector-card { flex: 0 0 240px; height: 280px; } }

/* ════════════════════════ TESTIMONIOS ════════════════════════ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 16px; left: 24px; font-family: var(--font-display); font-size: 80px; font-weight: 700; color: var(--teal-100); line-height: 1; pointer-events: none; }
.testimonial p { font-size: 16px; line-height: 1.6; color: var(--ink-700); margin-bottom: 24px; position: relative; padding-top: 32px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan-500), var(--teal-500)); display: grid; place-items: center; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.t-info .nm { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink-900); }
.t-info .role { font-size: 12.5px; color: var(--ink-500); }
.testimonial-logo { height: 26px; width: auto; max-width: 120px; object-fit: contain; filter: grayscale(100%); opacity: 0.45; display: block; margin-bottom: 14px; transition: opacity 0.25s, filter 0.25s; }
.testimonial:hover .testimonial-logo { opacity: 0.85; filter: grayscale(20%); }
@media (max-width: 968px) { .testimonials { grid-template-columns: 1fr; } }

/* ════════════════════════ KIT DIGITAL BANNER ════════════════════════ */
.kit-banner { background: linear-gradient(135deg, #FFF8E5, #FFE9B8); border-radius: var(--r-xl); padding: 56px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.kit-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,180,50,0.15), transparent 70%); }
.kit-banner .eu-flag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.5); border: 1px solid rgba(0,0,0,0.05); padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; color: #6B5400; margin-bottom: 18px; }
.kit-banner h2 { color: #3D2F00 !important; margin-bottom: 14px; }
.kit-banner p { color: #5C4500; font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.kit-amount { font-family: var(--font-display); font-size: clamp(48px, 7vw, 88px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #3D2F00; text-align: center; }
.kit-amount-sub { font-size: 14px; color: #6B5400; text-align: center; margin-top: 8px; font-weight: 500; }
@media (max-width: 768px) { .kit-banner { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; text-align: center; } }

/* ════════════════════════ CTA FINAL + CONTACT FORM ════════════════════════ */
.cta-final { background: var(--ink-900); color: var(--white); position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 45% at 85% 10%, rgba(20,180,204,0.25), transparent 55%), radial-gradient(ellipse 50% 55% at 15% 85%, rgba(54,212,164,0.20), transparent 55%), radial-gradient(ellipse 35% 40% at 45% 45%, rgba(20,180,204,0.08), transparent 65%); pointer-events: none; }
.cta-final-inner { max-width: var(--container); margin: 0 auto; padding: 96px 24px; position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.cta-final h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4vw, 50px); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 18px; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 500px; }
.contact-form { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-xl); padding: 40px; backdrop-filter: blur(16px); box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.10); }
.contact-form h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.contact-form .sub { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-bottom: 24px; letter-spacing: 0.01em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.80); letter-spacing: 0.02em; }
.form-field input, .form-field textarea { padding: 12px 15px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-sm); color: var(--white); font-family: var(--font-body); font-size: 14px; transition: all 0.15s; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.40); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--teal-500); background: rgba(255,255,255,0.11); box-shadow: 0 0 0 3px rgba(54, 212, 164, 0.18); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--teal-500), var(--cyan-500)); color: var(--ink-900); border-radius: var(--r-sm); font-weight: 700; font-size: 15px; margin-top: 12px; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; cursor: pointer; font-family: var(--font-body); }
.form-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-tos { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 12px; line-height: 1.5; }
.form-tos a { color: var(--teal-300); text-decoration: underline; }
.cta-bullets { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.cta-bullet { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.85); }
.cta-bullet::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230C2A38' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--logo-cyan), var(--logo-teal));
  background-size: 11px 11px, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}
.cta-direct { display: flex; flex-direction: column; gap: 16px; }
.cta-direct-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md); transition: all 0.18s; color: inherit; }
.cta-direct-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
.cta-direct-item .ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(54,212,164,0.12); display: grid; place-items: center; flex-shrink: 0; }
.cta-direct-item .ic svg { width: 20px; height: 20px; color: var(--teal-500); }
.cta-direct-item .l { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.cta-direct-item .v { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--white); }
@media (max-width: 968px) { .cta-final-inner { grid-template-columns: 1fr; padding: 64px 24px; } .form-grid { grid-template-columns: 1fr; } }

/* ════════════════════════ FOOTER ════════════════════════ */
footer { background: var(--ink-900); color: rgba(255,255,255,0.7); padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 340px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: grid; place-items: center; transition: all 0.15s; color: rgba(255,255,255,0.6); }
.footer-social a:hover { background: var(--teal-500); color: var(--ink-900); border-color: var(--teal-500); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--teal-300); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--teal-300); }
.footer-bottom .legal { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 968px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 580px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ════════════════════════ MOBILE MENU ════════════════════════ */
.mobile-menu { position: fixed; inset: 0; background: var(--ink-900); z-index: 200; display: none; flex-direction: column; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mm-head { padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mm-close { color: var(--white); font-size: 24px; padding: 4px 12px; }
.mm-links { display: flex; flex-direction: column; padding: 24px; gap: 4px; flex: 1; }
.mm-links > a { padding: 14px 16px; color: var(--white); font-size: 18px; font-family: var(--font-display); font-weight: 500; border-radius: var(--r-sm); display: block; }
.mm-links > a:hover { background: rgba(255,255,255,0.05); }
.mm-accordion-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 16px; color: var(--white); font-size: 18px; font-family: var(--font-display); font-weight: 500; border-radius: var(--r-sm); background: none; border: 0; cursor: pointer; text-align: left; }
.mm-accordion-btn:hover { background: rgba(255,255,255,0.05); }
.mm-accordion-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.mm-accordion-btn.open svg { transform: rotate(180deg); }
.mm-sub { display: none; flex-direction: column; gap: 2px; padding: 4px 16px 8px; }
.mm-sub.open { display: flex; }
.mm-sub a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; color: rgba(255,255,255,0.75); font-size: 15px; font-family: var(--font-body); font-weight: 500; border-radius: var(--r-sm); }
.mm-sub a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.mm-sub .dd-icon { background: rgba(255,255,255,0.06); }
.mm-sub .dd-icon svg { color: var(--teal-300); }
.mm-foot { padding: 24px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ════════════════════════ SCROLL PROGRESS BAR ════════════════════════ */
#scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--logo-cyan), var(--logo-teal)); transform-origin: left center; transform: scaleX(0); z-index: 9999; transition: transform 0.08s linear; pointer-events: none; }

/* ════════════════════════ REVEAL ANIMATIONS ════════════════════════ */
@keyframes heroEntry { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroVisualEntry { from { opacity: 0; transform: translateY(40px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-anim { opacity: 0; animation: heroEntry 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-anim-1 { animation-delay: 0.05s; }
.hero-anim-2 { animation-delay: 0.18s; }
.hero-anim-3 { animation-delay: 0.32s; }
.hero-anim-4 { animation-delay: 0.46s; }
.hero-anim-5 { animation-delay: 0.60s; }
.hero-visual-anim { animation: heroVisualEntry 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.94) translateY(14px); transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.in { opacity: 1; transform: scale(1) translateY(0); }
.sd-1 { transition-delay: 0.00s !important; }
.sd-2 { transition-delay: 0.08s !important; }
.sd-3 { transition-delay: 0.16s !important; }
.sd-4 { transition-delay: 0.24s !important; }
.sd-5 { transition-delay: 0.32s !important; }
.sd-6 { transition-delay: 0.40s !important; }
.svc-copy .eyebrow   { transition-delay: 0s; }
.svc-copy h2         { transition-delay: 0.07s; }
.svc-copy p          { transition-delay: 0.14s; }
.svc-copy .svc-features { transition-delay: 0.21s; }
.svc-copy .svc-ctas  { transition-delay: 0.28s; }
@keyframes eyebrowIn { from { opacity: 0; transform: translateX(-10px); letter-spacing: 0.04em; } to { opacity: 1; transform: translateX(0); letter-spacing: 0.12em; } }
.section-head.in .eyebrow, .svc-section.in .eyebrow { animation: eyebrowIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }
.svc-section { opacity: 0; transform: translateY(16px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.svc-section.in { opacity: 1; transform: translateY(0); }

/* ════════════════════════ BLOG ════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: all 0.25s; cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); border-color: transparent; }
.blog-cover { aspect-ratio: 16/9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-cover.cv-cyber { background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.4), transparent 60%), radial-gradient(circle at 70% 80%, rgba(54, 212, 164, 0.3), transparent 60%), linear-gradient(135deg, #1F1B3A, #2D2454); }
.blog-cover.cv-ia { background: radial-gradient(circle at 25% 30%, rgba(54, 212, 164, 0.35), transparent 55%), radial-gradient(circle at 75% 70%, rgba(20, 180, 204, 0.3), transparent 55%), linear-gradient(135deg, #0C2A38, #143A4D); }
.blog-cover.cv-cloud { background: radial-gradient(circle at 70% 30%, rgba(0, 120, 212, 0.35), transparent 55%), radial-gradient(circle at 30% 70%, rgba(20, 180, 204, 0.3), transparent 55%), linear-gradient(135deg, #0A1428, #0C2A38); }
.blog-cover::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.blog-cover svg { width: 56px; height: 56px; color: rgba(255,255,255,0.95); position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.blog-content { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 12px; color: var(--ink-400); }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 9px; border-radius: 4px; }
.blog-cat.cyber { background: #F5F0FF; color: #6B21A8; }
.blog-cat.ia    { background: var(--teal-50); color: var(--teal-900); }
.blog-cat.cloud { background: var(--cyan-50); color: var(--cyan-700); }
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-300); }
.blog-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.3; letter-spacing: -0.015em; color: var(--ink-900); margin-bottom: 10px; }
.blog-excerpt { font-size: 14px; color: var(--ink-500); line-height: 1.55; margin-bottom: 18px; flex: 1; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--teal-700); margin-top: auto; transition: gap 0.18s; }
.blog-card:hover .blog-link { gap: 10px; }
.blog-foot { text-align: center; }
@media (max-width: 968px) { .blog-grid { grid-template-columns: 1fr; } }

/* ════════════════════════ SERVICE SECTIONS ════════════════════════ */
.svc-section { padding: 96px 0; }
.svc-section.alt { background: var(--ink-50); }
.svc-stack { position: relative; }
.svc-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.svc-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.svc-head .eyebrow { margin-bottom: 14px; }
.svc-head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; color: var(--ink-900); margin-bottom: 20px; }
.svc-head p { font-size: 18px; line-height: 1.65; color: var(--ink-500); font-weight: 300; }
.svc-cta-row { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 48px; }
.svc-cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-cap-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; transition: all 0.25s; }
.svc-cap-card:hover { border-color: var(--teal-500); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.svc-cap-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--cyan-50), var(--teal-50)); display: grid; place-items: center; margin-bottom: 18px; }
.svc-cap-icon svg { width: 24px; height: 24px; color: var(--teal-700); }
.svc-cap-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--ink-900); margin-bottom: 8px; line-height: 1.25; }
.svc-cap-card p { font-size: 13.5px; color: var(--ink-500); line-height: 1.55; }
.svc-cloud-flow { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-1); }
.svc-cloud-step { padding: 32px 36px; display: flex; flex-direction: column; gap: 14px; }
.svc-cloud-step.impl { background: linear-gradient(135deg, var(--cyan-50), var(--white) 70%); border-right: 1px solid var(--line); }
.svc-cloud-step.mgmt { background: linear-gradient(135deg, var(--white) 30%, var(--teal-50)); }
.svc-cloud-num { display: inline-flex; align-items: center; gap: 10px; }
.svc-cloud-num .badge { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--white); }
.svc-cloud-step.impl .badge { background: linear-gradient(135deg, var(--cyan-500), var(--cyan-700)); }
.svc-cloud-step.mgmt .badge { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.svc-cloud-num .lbl { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); }
.svc-cloud-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; line-height: 1.2; color: var(--ink-900); margin: 0; }
.svc-cloud-step > p { font-size: 14.5px; color: var(--ink-500); line-height: 1.55; margin: 0; }
.svc-cloud-meta { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.svc-cloud-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink-700); }
.svc-cloud-meta span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.svc-cloud-step.impl .svc-cloud-meta span::before { background: var(--cyan-500); }
.svc-cloud-step.mgmt .svc-cloud-meta span::before { background: var(--teal-500); }
.svc-cloud-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc-cloud-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-1); transition: all 0.25s; }
.svc-cloud-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: transparent; }
.svc-cloud-card .svc-cloud-step { height: 100%; }
.svc-cloud-card .svc-cloud-step.impl { border-right: 0; }
.svc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; margin-bottom: 56px; }
.svc-steps::before { content: ''; position: absolute; top: 58px; left: calc(100% / 6); right: calc(100% / 6); height: 2px; background: linear-gradient(90deg, var(--cyan-500), var(--teal-500)); opacity: 0.3; pointer-events: none; }
.svc-step { text-align: center; padding: 32px 28px; }
.svc-step-num { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan-500), var(--teal-500)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-900); box-shadow: 0 0 0 1px rgba(20,180,204,0.2), 0 8px 32px rgba(20,180,204,0.18); }
.svc-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; color: var(--ink-900); margin-bottom: 10px; }
.svc-step p { font-size: 14.5px; color: var(--ink-500); line-height: 1.55; }
.svc-threats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-threat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 20px; transition: all 0.22s; }
.svc-threat-card:hover { border-color: var(--teal-500); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.svc-threat-card-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--cyan-50), var(--teal-50)); display: grid; place-items: center; margin-bottom: 16px; }
.svc-threat-card-icon svg { width: 20px; height: 20px; color: var(--teal-700); }
.svc-threat-card .nm { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-900); letter-spacing: -0.01em; margin-bottom: 6px; line-height: 1.25; }
.svc-threat-card .ds { font-size: 13px; color: var(--ink-500); line-height: 1.5; }
.svc-link { font-size: 15px; font-weight: 600; color: var(--teal-700); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
.svc-link:hover { gap: 10px; }
@media (max-width: 768px) { .svc-cap-grid { grid-template-columns: repeat(2, 1fr); } .svc-steps { grid-template-columns: 1fr; } .svc-steps::before { display: none; } .svc-cloud-flow { grid-template-columns: 1fr; } .svc-cloud-step.impl { border-right: 0; border-bottom: 1px solid var(--line); } .svc-cloud-cards { grid-template-columns: 1fr; } }
@media (max-width: 968px) { .svc-threats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-cap-grid { grid-template-columns: 1fr; } .svc-threats-grid { grid-template-columns: 1fr; } }

/* ════════════════════════ IA DARK SECTION ════════════════════════ */
.ia-dark { background: var(--ink-900); color: var(--white); opacity: 1 !important; transform: none !important; transition: none !important; position: relative; overflow: hidden; }
.ia-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 90% 5%, rgba(20,180,204,0.28) 0%, transparent 60%), radial-gradient(ellipse 55% 45% at 5% 90%, rgba(54,212,164,0.20) 0%, transparent 55%), radial-gradient(ellipse 40% 35% at 50% 50%, rgba(12,42,56,0.50) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.ia-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 52px; }
.ia-header { text-align: center; }
.ia-eyebrow { color: var(--teal-500) !important; }
.ia-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 40px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; color: var(--white); margin-bottom: 18px; }
.ia-lead { color: var(--ink-300); font-size: 18px; line-height: 1.6; max-width: 600px; margin: 0 auto; }
.ia-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-xl); padding: 44px 48px; }
.ia-claim { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--white); margin-top: 12px; }
.ia-vision-right { display: flex; align-items: center; }
.ia-vision-right p { color: var(--ink-200); font-size: 15.5px; line-height: 1.75; }
.ia-tools { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.ia-tool-chip { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 13px 22px 13px 14px; transition: background 0.2s, border-color 0.2s; }
.ia-tool-chip:hover { background: rgba(255,255,255,0.12); border-color: rgba(54,212,164,0.4); }
.ia-tool-chip img { width: 30px; height: 30px; object-fit: contain; }
.ia-tool-chip span { font-size: 15.5px; font-weight: 500; color: var(--ink-100); white-space: nowrap; }
.ia-ctas { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.ia-link { color: var(--teal-300); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.ia-link:hover { color: var(--teal-500); }
.ia-steps { display: flex; flex-direction: column; gap: 0; width: 100%; }
.ia-step { display: flex; gap: 16px; align-items: flex-start; position: relative; }
.ia-step:not(:last-child)::after { content: ''; position: absolute; left: 15px; top: 32px; bottom: -4px; width: 2px; background: linear-gradient(180deg, rgba(54,212,164,0.3), rgba(20,180,204,0.1)); }
.ia-step-num { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-500), var(--cyan-500)); display: grid; place-items: center; flex-shrink: 0; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink-900); position: relative; z-index: 1; }
.ia-step-body { padding: 4px 0 28px; }
.ia-step:last-child .ia-step-body { padding-bottom: 0; }
.ia-step-body p { color: var(--ink-200); font-size: 15px; line-height: 1.65; margin: 0; }
@media (max-width: 768px) { .ia-vision { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; } .ia-ctas { flex-direction: column; } }

/* ════════════════════════ ÉXITO CONJUNTO (tabs) ════════════════════════ */
.exito-tabs { display: flex; background: var(--white); border: 1px solid var(--line); border-radius: 40px; padding: 3px; gap: 1px; margin: 0 auto 40px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; box-shadow: var(--shadow-1); width: fit-content; max-width: 100%; }
.exito-tabs::-webkit-scrollbar { display: none; }
.exito-tab { flex: none; display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 36px; border: none; background: transparent; color: var(--ink-400); font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: background .2s, color .2s; white-space: nowrap; }
.exito-tab svg { width: 14px; height: 14px; flex-shrink: 0; }
.exito-tab:hover { background: var(--ink-50); color: var(--ink-800); }
.exito-tab.active { background: var(--ink-800); color: var(--white); }
.exito-panel { display: none; }
.exito-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; animation: exitoFade .3s ease; }
@keyframes exitoFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.exito-left .eyebrow { margin-bottom: 10px; }
.exito-left h3 { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; color: var(--ink-800); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 16px; }
.exito-desc { font-size: 16px; color: var(--ink-500); line-height: 1.65; margin-bottom: 20px; }
.exito-link { display: inline-block; font-size: 15px; font-weight: 600; color: var(--teal-700); text-decoration: none; transition: color .2s; }
.exito-link:hover { color: var(--teal-500); }
.exito-client-logo { display: block; height: 28px; width: auto; max-width: 160px; object-fit: contain; opacity: 0.75; margin-bottom: 20px; }
.exito-quote { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--line); }
.exito-quote blockquote { font-size: 15.5px; color: var(--ink-700); line-height: 1.65; margin: 0 0 20px; font-style: normal; }
.exito-author { display: flex; gap: 12px; align-items: center; }
.exito-img-wrap { position: relative; padding-top: 28px; padding-right: 28px; }
.exito-img-bg { position: absolute; top: 0; right: 0; bottom: 28px; left: 28px; border-radius: var(--r-xl); background: linear-gradient(140deg, var(--cyan-100) 0%, var(--teal-300) 100%); }
.exito-img-card { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 56px rgba(12,42,56,0.22), 0 4px 16px rgba(12,42,56,0.10); background: linear-gradient(150deg, #E5EEF3 0%, #D0DEE8 100%); }
.exito-img-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,255,255,0.40) 0%, transparent 55%); }
.exito-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 968px) { .exito-panel.active { grid-template-columns: 1fr; gap: 32px; } .exito-right { order: -1; } .exito-img-card { aspect-ratio: 16 / 9; } }
@media (max-width: 640px) { .exito-tab { min-width: calc(50% - 4px); flex: none; } }

/* ════════════════════════ WORDPRESS HELPERS ════════════════════════ */
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { width: 100%; }
.wp-block-image img { height: auto; }
.wp-block-code { background: var(--ink-900); color: var(--white); padding: 24px; border-radius: var(--r-md); font-size: 14px; overflow-x: auto; }
