/* ============================================================
   BISION CONSULTING — Sitio Corporativo
   Tokens del Manual de Marca 2026
   ============================================================ */

:root {
  /* Paleta oficial */
  --orange:   #F36708;
  --orange-h: #D95A06;
  --orange-10: rgba(243, 103, 8, 0.10);
  --orange-20: rgba(243, 103, 8, 0.20);

  --black:    #000000;
  --dark:     #353535;
  --gray:     #A2A5AA;
  --gray-lt:  #CDCDCD;
  --gray-pl:  #F2F2F2;
  --white:    #FFFFFF;

  --ink-90: rgba(0,0,0,0.92);
  --ink-60: rgba(0,0,0,0.60);
  --ink-40: rgba(0,0,0,0.40);
  --ink-15: rgba(0,0,0,0.15);
  --ink-08: rgba(0,0,0,0.08);

  --on-dark-80: rgba(255,255,255,0.80);
  --on-dark-60: rgba(255,255,255,0.60);
  --on-dark-40: rgba(255,255,255,0.40);
  --on-dark-15: rgba(255,255,255,0.15);
  --on-dark-08: rgba(255,255,255,0.08);

  /* Tipografía */
  --font: 'Montserrat', 'Arial', system-ui, sans-serif;
  --mono: 'Montserrat', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Escala — ajustada para densidad editorial */
  --fs-display: clamp(40px, 5vw, 72px);    /* Hero */
  --fs-h1: clamp(28px, 3.4vw, 44px);
  --fs-h2: clamp(24px, 2.6vw, 34px);        /* Section titles */
  --fs-h3: 18px;
  --fs-body: 15px;
  --fs-body-sm: 13.5px;
  --fs-caption: 12px;
  --fs-label: 10.5px;
  --fs-kpi: clamp(40px, 4.4vw, 60px);

  /* Espaciado base 8 */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* Layout */
  --max: 1280px;
  --pad-x: clamp(24px, 4vw, 48px);

  /* Radios — versión con esquinas redondas */
  --r-0: 0;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--orange); color: #fff; }

/* ============================================================
   Tipografía / utilitarias
   ============================================================ */
.t-display {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.t-h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.t-h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.1;  letter-spacing: -0.015em; }
.t-h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.25; letter-spacing: -0.005em; }
.t-body { font-size: var(--fs-body); line-height: 1.55; }
.t-body-sm { font-size: var(--fs-body-sm); line-height: 1.55; }
.t-lede { font-size: clamp(14.5px, 1vw, 16.5px); line-height: 1.55; color: var(--dark); max-width: 60ch; }
.t-mono { font-family: var(--mono); font-feature-settings: "tnum"; }
.t-cap {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.t-label {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.t-kpi {
  font-size: var(--fs-kpi);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.on-orange { color: var(--orange); }
.on-dark   { color: var(--white); }
.muted     { color: var(--gray); }
.dim       { color: var(--ink-60); }

/* ============================================================
   Layout
   ============================================================ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section {
  padding: clamp(72px, 8vw, 120px) 0;
  position: relative;
}
.section--dark   { background: var(--black); color: var(--white); }
.section--gray   { background: var(--gray-pl); color: var(--dark); }
.section--white  { background: var(--white); color: var(--dark); }

.rule { height: 1px; width: 100%; background: var(--gray-lt); }
.rule--dark { background: var(--on-dark-15); }
.rule--orange { background: var(--orange); height: 3px; width: 56px; }

/* ============================================================
   Section header (number · label · title · lede)
   ============================================================ */
.s-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.s-head__title { margin: 0; }
.s-head__lede { margin: 0; }
.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--sp-5);
}
.s-eyebrow__num {
  width: 36px; height: 36px;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: -0.01em;
  border-radius: var(--r-sm);
}
.section--dark .s-eyebrow__num { background: var(--orange); }
.s-eyebrow__label {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

@media (max-width: 880px) {
  .s-head { grid-template-columns: 1fr; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .2s ease;
  cursor: pointer;
}
.btn .arrow { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-h); border-color: var(--orange-h); }
.btn-dark {
  background: var(--black); color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--orange); border-color: var(--orange); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink-15);
  color: var(--dark);
}
.btn-ghost:hover { border-color: var(--black); color: var(--black); }
.btn-ghost-dark {
  background: transparent;
  border-color: var(--on-dark-15);
  color: var(--white);
}
.btn-ghost-dark:hover { border-color: var(--white); color: var(--white); }
.btn-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
}
.btn-link:hover { color: var(--orange); }

.btn-sm { padding: 9px 13px; font-size: 11.5px; gap: 8px; }

/* ============================================================
   Cards / surfaces
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-pl);
  border-radius: var(--r-md);
  padding: clamp(20px, 2vw, 28px);
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.04); }
.card--bordered { border-color: var(--gray-lt); }
.card--dark { background: #0a0a0a; border-color: var(--on-dark-08); color: var(--white); }
.card-accent-top { border-top: 3px solid var(--orange); }

/* hoverable */
.card-h:hover { border-color: var(--dark); }
.card--dark.card-h:hover { border-color: var(--orange); }

/* ============================================================
   Number badges
   ============================================================ */
.num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 700;
  border-radius: var(--r-sm);
}
.num-badge--lg { width: 56px; height: 56px; font-size: 20px; border-radius: var(--r-md); }
.num-badge--muted { background: var(--gray); }
.num-badge--outline {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
}

/* ============================================================
   Logo wall marquee
   ============================================================ */
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex; gap: 80px;
  animation: ticker 40s linear infinite;
  flex-shrink: 0; padding-right: 80px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) both; }

[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@keyframes drift {
  0% { transform: translate(0,0); }
  50% { transform: translate(8px, -10px); }
  100% { transform: translate(0,0); }
}

/* ============================================================
   Grid / pattern backgrounds
   ============================================================ */
.grid-bg-dark {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.grid-bg-light {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s, border-color .25s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid transparent;
}
.nav.on-light { color: var(--dark); }
.nav.on-dark  { color: var(--white); }
.nav.scrolled.on-light {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
}
.nav.scrolled.on-light .nav-inner { border-bottom-color: var(--gray-pl); }
.nav.scrolled.on-dark {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
}
.nav.scrolled.on-dark .nav-inner { border-bottom-color: var(--on-dark-08); }

.nav-links {
  display: flex; gap: 32px;
  font-size: 13.5px;
  font-weight: 600;
}
.nav-links a { opacity: 0.78; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--orange); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================================
   Tag pill / chips (small)
   ============================================================ */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gray-lt);
  border-radius: var(--r-pill);
  color: var(--dark);
  background: var(--white);
}
.tag--dark { background: transparent; border-color: var(--on-dark-15); color: var(--white); }
.tag--orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.tag--dark .tag-dot { background: var(--orange); }

/* ============================================================
   Misc
   ============================================================ */
.count { display: inline-block; font-variant-numeric: tabular-nums; }

.divider-asterisk {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--orange);
  font-size: 24px;
}

/* Bision isotipo (asterisk inline) */
.iso {
  display: inline-block;
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   Floating contact / scroll-progress
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--orange);
  z-index: 200;
  transition: width .1s linear;
}

/* ============================================================
   HERO EDITORIAL · Light · Nexora-style
   ============================================================ */
:root {
  --cream:        #F2EFE9;     /* fondo principal */
  --cream-2:      #ECE7DE;     /* fondo barra inferior */
  --hairline:     rgba(0,0,0,0.08);
  --text-ink:     #0B0B0C;
  --text-mute:    #6E6E70;
}

.hero-ed {
  position: relative;
  min-height: 100vh;
  background: var(--cream);
  color: var(--text-ink);
  padding: clamp(56px, 7vw, 96px) 0 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

/* tick naranja flotante margen izquierdo */
.hero-ed__tick {
  position: absolute;
  left: 0; top: 36%;
  width: 6px; height: 56px;
  background: var(--orange);
  z-index: 2;
}

/* hairlines verticales decorativas */
.hero-ed__rules {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.hero-ed__rules span {
  position: absolute;
  top: 0; bottom: 88px;
  width: 1px;
  background: var(--hairline);
}

/* grid principal: texto izquierda · escultura derecha */
.hero-ed__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 56px) clamp(48px, 6vw, 96px) clamp(40px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.hero-ed__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  padding-top: clamp(20px, 3vw, 40px);
}

.hero-ed__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.hero-ed__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-ed__title {
  font-family: var(--font);
  font-size: clamp(48px, 6.8vw, 104px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: var(--text-ink);
}

.hero-ed__lede {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
  color: var(--text-mute);
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  max-width: 38ch;
}

.hero-ed__ctas {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
}

/* ---------- CTA PILL (orange filled) ---------- */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 26px;
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.cta-pill:hover { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-1px); }
.cta-pill__circle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.cta-pill--ghost {
  background: transparent;
  color: var(--text-ink);
  border: 1px solid rgba(0,0,0,0.18);
  padding: 6px 6px 6px 24px;
}
.cta-pill--ghost:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.4); }
.cta-pill__circle--ghost {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--text-ink);
}

/* ---------- CTA inline (mail) ---------- */
.cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-ink);
  transition: color .2s;
}
.cta-inline:hover { color: var(--orange); }
.cta-inline__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   HERO FOOTER BAR · logo · nav · legales
   ============================================================ */
.hero-ed__footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(48px, 6vw, 96px);
  border-top: 1px solid var(--hairline);
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.02));
  font-size: 13px;
  color: var(--text-ink);
}
.hero-ed__logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.hero-ed__logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: 2px;
  margin-bottom: -10px;
}
.hero-ed__nav {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  justify-content: center;
}
.hero-ed__nav a {
  font-weight: 500;
  color: var(--text-ink);
  transition: color .2s;
}
.hero-ed__nav a:hover { color: var(--orange); }
.hero-ed__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
  color: var(--text-mute);
  font-size: 12.5px;
  line-height: 1.4;
}
.hero-ed__copy { text-align: right; }
.hero-ed__legal a { color: var(--text-ink); font-weight: 500; }
.hero-ed__legal a:hover { color: var(--orange); }

/* ============================================================
   AMBER SCULPTURE · cristal ámbar abstracto (CSS)
   ============================================================ */
.hero-ed__visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: stretch;
}
.amber {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 2px;
}

/* halo cálido posterior */
.amber__halo {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(60% 70% at 65% 55%, rgba(255,200,140,0.85) 0%, rgba(255,170,90,0.55) 30%, rgba(243,103,8,0.18) 55%, transparent 75%),
    radial-gradient(40% 50% at 30% 70%, rgba(255,225,180,0.55) 0%, transparent 70%);
  filter: blur(6px);
}

/* núcleo brillante (sol interior) */
.amber__core {
  position: absolute;
  width: 38%;
  aspect-ratio: 1 / 1.4;
  left: 38%; top: 22%;
  background:
    radial-gradient(60% 50% at 50% 60%, #FFE4B0 0%, #F7A24A 25%, #E5630A 55%, #A33800 100%);
  border-radius: 50% / 60%;
  box-shadow:
    0 0 80px 20px rgba(243,103,8,0.55),
    0 0 200px 40px rgba(243,103,8,0.35),
    inset 0 -30px 60px rgba(120,30,0,0.7),
    inset 0 30px 50px rgba(255,235,200,0.5);
  filter: blur(0.4px);
}

/* anillo lente oscuro */
.amber__lens {
  position: absolute;
  width: 26%;
  aspect-ratio: 1;
  left: 48%; top: 36%;
  border-radius: 50%;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(170,55,0,0.0) 35%, rgba(120,35,0,0.7) 55%, rgba(60,15,0,0.85) 75%, rgba(20,5,0,0.95) 100%);
  mix-blend-mode: multiply;
  filter: blur(1px);
}

/* placas verticales tipo "fin" — vidrio ambar translúcido */
.amber__fin {
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(255,205,150,0.45) 0%,
    rgba(255,160,80,0.30) 35%,
    rgba(243,103,8,0.18) 70%,
    rgba(180,60,5,0.08) 100%
  );
  border: 1px solid rgba(255,200,150,0.45);
  box-shadow:
    inset 0 0 30px rgba(255,220,180,0.25),
    0 10px 40px rgba(243,103,8,0.18);
  backdrop-filter: blur(2px);
}
.amber__fin--1 {
  /* placa izquierda — arco superior plano */
  left: 8%;  top: 8%;
  width: 32%; height: 60%;
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  background: linear-gradient(180deg, rgba(255,210,170,0.6) 0%, rgba(255,170,100,0.3) 50%, rgba(243,103,8,0.12) 100%);
}
.amber__fin--2 {
  /* placa media inclinada */
  right: 22%; top: 6%;
  width: 16%; height: 70%;
  border-radius: 50% 50% 0 0 / 90% 90% 0 0;
  transform: rotate(-2deg);
  background: linear-gradient(180deg, rgba(255,200,150,0.5) 0%, rgba(255,150,80,0.25) 60%, rgba(140,40,0,0.12) 100%);
}
.amber__fin--3 {
  /* placa derecha alta delgada */
  right: 5%; top: -2%;
  width: 10%; height: 88%;
  border-radius: 50% 50% 0 0 / 75% 75% 0 0;
  transform: rotate(1.5deg);
  background: linear-gradient(180deg, rgba(255,215,180,0.65) 0%, rgba(255,160,90,0.3) 55%, rgba(243,103,8,0.1) 100%);
}

/* gran arco — cuarto de círculo dominante */
.amber__arc {
  position: absolute;
  left: 18%; top: 14%;
  width: 64%; height: 78%;
  border-radius: 999px 999px 0 0 / 60% 60% 0 0;
  background: linear-gradient(
    160deg,
    rgba(255,200,150,0.55) 0%,
    rgba(255,150,80,0.30) 40%,
    rgba(243,103,8,0.18) 75%,
    rgba(120,40,5,0.10) 100%
  );
  border: 1px solid rgba(255,210,180,0.5);
  box-shadow:
    inset 0 0 80px rgba(255,220,180,0.2),
    inset 0 -40px 60px rgba(120,40,5,0.4),
    0 30px 80px rgba(243,103,8,0.25);
}

/* reflejo en piso */
.amber__floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 16%;
  background: linear-gradient(180deg, rgba(243,103,8,0.15) 0%, rgba(0,0,0,0.18) 100%);
  filter: blur(4px);
  border-top: 1px solid rgba(255,180,120,0.3);
}

/* highlights especulares (bordes brillantes en cristal) */
.amber__spec {
  position: absolute;
  background: linear-gradient(180deg, rgba(255,250,235,0.85), rgba(255,200,150,0.1) 60%, transparent);
  filter: blur(0.5px);
  border-radius: 999px;
}
.amber__spec--a {
  left: 40%; top: 12%;
  width: 2px; height: 70%;
  opacity: 0.7;
  transform: rotate(-1deg);
}
.amber__spec--b {
  right: 27%; top: 8%;
  width: 1.5px; height: 75%;
  opacity: 0.6;
  transform: rotate(2deg);
}

/* ============================================================
   TRUST SECTION · light editorial · stats + logos + visual
   ============================================================ */
.trust-ed {
  position: relative;
  background: var(--cream);
  color: var(--text-ink);
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 72px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--hairline);
}
.trust-ed__tick {
  position: absolute;
  left: 0; top: 26%;
  width: 5px; height: 44px;
  background: var(--orange);
  z-index: 2;
}
.trust-ed__rules {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.trust-ed__rules span {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--hairline);
}
.trust-ed__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.7fr);
  gap: clamp(32px, 4vw, 64px);
  padding: 0 clamp(48px, 6vw, 96px);
  align-items: start;
}
.trust-ed__copy {
  display: flex; flex-direction: column;
  padding-top: clamp(20px, 3vw, 40px);
}
.trust-ed__title {
  font-family: var(--font);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: var(--text-ink);
}
.trust-ed__lede {
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 0 clamp(28px, 3.5vw, 40px);
}

/* centro: logos + stats */
.trust-ed__center {
  display: flex;
  flex-direction: column;
  padding-top: clamp(20px, 3vw, 40px);
}
.trust-ed__chrome {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(20px, 2vw, 28px);
}
.trust-ed__chrome-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-ink);
  white-space: nowrap;
}
.trust-ed__chrome-rule {
  flex: 1;
  height: 1px;
  background: var(--text-ink);
  opacity: 0.85;
}
.trust-ed__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(24px, 3vw, 40px);
  margin-bottom: clamp(40px, 4vw, 56px);
  color: rgba(0,0,0,0.42);
}
.trust-ed__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: color .2s;
}
.trust-ed__logo:hover { color: var(--text-ink); }

.trust-ed__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--hairline);
}
.trust-ed__stat-num {
  color: var(--orange);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.trust-ed__stat p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-mute);
}

/* derecha: visual + tarjeta flotante */
.trust-ed__visual {
  position: relative;
  height: 100%;
  min-height: 420px;
}
.trust-ed__visual .amber {
  min-height: 420px;
  height: 100%;
}
.trust-ed__floatcard {
  position: absolute;
  right: 8px;
  bottom: 32px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  max-width: 200px;
  z-index: 2;
}
.trust-ed__floatcard-hd {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-ink);
  margin-bottom: 8px;
}
.trust-ed__floatcard p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-mute);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .trust-ed__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .trust-ed__visual { grid-column: 1 / -1; min-height: 360px; }
}
@media (max-width: 880px) {
  .hero-ed__grid {
    grid-template-columns: 1fr;
    padding: 16px 24px 32px;
  }
  .hero-ed__visual { min-height: 380px; }
  .hero-ed__footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 20px 24px;
  }
  .hero-ed__nav { flex-wrap: wrap; }
  .hero-ed__legal { justify-content: center; }
  .hero-ed__copy { text-align: center; }
  .trust-ed__grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .trust-ed__logos { grid-template-columns: repeat(2, 1fr); }
  .trust-ed__stats { grid-template-columns: 1fr; }
}
