  :root {
    --bg: #ffffff;
    --bg-cream: #faf8f3;
    --bg-soft: #f6f6f3;
    --bg-deep: #0a0a0a;
    --ink: #0e0e0e;
    --ink-2: #1f1f1d;
    --muted-1: #ededea;
    --muted-2: #d8d8d4;
    --muted-3: #8c8c87;
    --muted-4: #515150;
    --accent: #C2F902;
    --accent-2: #D4FF44;
    --accent-soft: rgba(194, 249, 2, 0.18);
    --accent-ink: #1a2200;
    --hairline: rgba(14, 14, 14, 0.08);
    --hairline-strong: rgba(14, 14, 14, 0.14);
    --hairline-d: rgba(255, 255, 255, 0.08);

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'Inter', system-ui, -apple-system, sans-serif;

    --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);

    --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-pill: 999px;
    --container: 1280px;
    --gutter: clamp(20px, 4vw, 48px);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg-cream); }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: var(--font-sans); font-size: 16px; line-height: 1.55;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv11'; overflow-x: hidden;
  }
  /* Antes-Geist-Mono: ahora todo Geist. Mantenemos números alineados donde importa */
  .stat__num, .caps__metric .num, .arch__metric .num,
  .uptime-bar, .dash__tile .v, .mock__bar, .console__top-left,
  .console__top-right, .console__foot, .footer__bottom,
  .footer__status, .tr__who, .tr__time, .mock__foot,
  .ch__sub, .ch__meta, .wf__sub, .wf__icon, .alerts__time,
  .dash__tile .lbl, .marquee__item, .integ__cat, .ind__cases,
  .how-progress, .how-phase__num { font-variant-numeric: tabular-nums; }
  img, svg, video { display: block; max-width: 100%; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--accent); color: #fff; }

  .container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

  /* ——— Cursor glow ——— */
  .cursor-glow {
    position: fixed; pointer-events: none; z-index: 5;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(194,249,2,0.10), transparent 70%);
    filter: blur(40px);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .8s var(--ease-soft);
    mix-blend-mode: multiply;
  }
  body.is-cursor .cursor-glow { opacity: 1; }
  @media (max-width: 980px), (hover: none) { .cursor-glow { display: none; } }

  /* ——— Nav pill ——— */
  .nav-wrap { position: fixed; top: 18px; left: 0; right: 0; z-index: 90; display: flex; justify-content: center; pointer-events: none; }
  .nav {
    pointer-events: auto;
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 8px 6px 18px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: var(--r-pill);
    box-shadow: 0 1px 2px rgba(14,14,14,0.04), 0 8px 32px -8px rgba(14,14,14,0.12), inset 0 0 0 1px rgba(255,255,255,0.7);
    transition: transform .55s var(--ease-soft);
  }
  .brand { display: inline-flex; align-items: center; margin-right: 14px; }
  .brand img { height: 20px; width: auto; display: block; }
  .footer__brand-block .brand img { height: 26px; }
  .nav__links { display: inline-flex; gap: 2px; }
  .nav__link { font-size: 13px; color: var(--muted-4); padding: 8px 14px; border-radius: var(--r-pill); transition: color .25s var(--ease-soft), background .25s var(--ease-soft); }
  .nav__link:hover { color: var(--ink); background: rgba(14,14,14,0.04); }
  .nav__link.is-active { color: var(--ink); background: rgba(14,14,14,0.06); }

  /* Burger (mobile only) */
  .nav__burger {
    display: none;
    width: 38px; height: 38px;
    border-radius: 999px;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 4px;
    margin-left: 4px;
    background: transparent;
    transition: background .2s var(--ease-soft);
  }
  .nav__burger:hover { background: rgba(14,14,14,0.05); }
  .nav__burger span {
    display: block; width: 18px; height: 1.6px;
    background: var(--ink); border-radius: 2px;
    transition: transform .3s var(--ease-soft), opacity .25s var(--ease-soft);
  }

  @media (max-width: 880px) {
    .nav { padding: 4px 4px 4px 14px; }
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__burger { display: inline-flex; }
  }

  /* Mobile sheet menu */
  .nav-sheet {
    position: fixed; inset: 0;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s var(--ease-soft);
  }
  .nav-sheet.is-open { pointer-events: auto; opacity: 1; }
  .nav-sheet__back {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .nav-sheet__panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: var(--bg);
    padding: 22px 24px 28px;
    display: flex; flex-direction: column;
    transform: translateX(102%);
    transition: transform .42s var(--ease-spring);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.18);
    overflow-y: auto;
  }
  .nav-sheet.is-open .nav-sheet__panel { transform: translateX(0); }
  .nav-sheet__top {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 22px; margin-bottom: 22px;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-sheet__top .brand img { height: 22px; }
  .nav-sheet__close {
    width: 38px; height: 38px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink);
    transition: background .2s var(--ease-soft);
  }
  .nav-sheet__close:hover { background: rgba(14,14,14,0.05); }
  .nav-sheet__close svg { width: 20px; height: 20px; }
  .nav-sheet__links {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column;
  }
  .nav-sheet__links li { border-bottom: 1px solid var(--hairline); }
  .nav-sheet__links li:last-child { border-bottom: 0; }
  .nav-sheet__links a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0;
    font-size: 17px; font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .nav-sheet__links a::after {
    content: '↗';
    font-size: 14px; color: var(--muted-3);
    transition: transform .25s var(--ease-soft), color .25s var(--ease-soft);
  }
  .nav-sheet__links a:hover { color: var(--ink); }
  .nav-sheet__links a:hover::after { color: var(--accent); transform: translate(2px, -2px); }
  .nav-sheet__links a.is-active { color: var(--ink); }
  .nav-sheet__links a.is-active::before {
    content: ''; display: inline-block;
    width: 6px; height: 6px; border-radius: 999px;
    background: var(--accent);
    margin-right: 10px;
  }
  .nav-sheet__cta {
    margin-top: auto;
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--hairline);
  }
  .nav-sheet__cta .btn { justify-content: center; padding: 13px 18px; }
  .nav-sheet__phone {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--muted-4); font-family: var(--font-mono); font-size: 13.5px;
    padding: 6px 0;
  }
  .nav-sheet__phone svg { width: 14px; height: 14px; }
  .nav-sheet__email {
    color: var(--muted-3); font-size: 12.5px;
    font-family: var(--font-mono);
    padding: 2px 0;
  }
  @media (min-width: 881px) {
    .nav-sheet { display: none; }
  }

  /* ——— Buttons ——— */
  .btn {
    --b-bg: var(--ink); --b-c: #fff;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px; background: var(--b-bg); color: var(--b-c);
    border-radius: var(--r-pill);
    font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
    transition: background .3s var(--ease-soft), transform .3s var(--ease-soft);
    position: relative;
  }
  .btn:hover { background: var(--ink-2); }
  .btn:active { transform: scale(0.98); }
  .btn--accent { --b-bg: var(--accent); --b-c: var(--ink); box-shadow: 0 8px 24px -10px rgba(194,249,2,0.7); }
  .btn--accent:hover { background: var(--accent-2); box-shadow: 0 12px 28px -10px rgba(194,249,2,0.85); }
  /* Texto-acento: subrayado lime fino debajo de descenders (p, g, j) */
  /* Accent: contraste por peso (resto h1/h2 va a 300, palabra accent a 500) */
  .hero__h1 .accent,
  .section__h .accent,
  .demo__copy h2 .accent,
  .cta-final h2 .accent,
  .sv-hero__h1 .accent,
  .svp-hero__h1 .accent {
    color: var(--ink);
    font-weight: 500;
    font-style: normal;
  }
  /* En arquitectura (sección oscura) lime puro */
  .arch .section__h .accent { color: var(--accent); font-weight: 500; }
  /* Iconos sobre accent-soft: texto ink para contraste */
  .ind__icon, .wf__icon { color: var(--ink); }
  .ch__icon--call { color: var(--ink); }
  .btn--ghost { --b-bg: transparent; --b-c: var(--ink); box-shadow: inset 0 0 0 1px var(--hairline-strong); }
  .btn--ghost:hover { background: var(--muted-1); }
  .btn--sm { padding: 8px 14px; font-size: 13px; }
  .btn__arrow { width: 14px; height: 14px; opacity: 0.85; transition: transform .35s var(--ease-soft); }
  .btn:hover .btn__arrow { transform: translateX(3px); }
  .btn__play {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 999px;
    background: var(--accent); color: var(--ink);
    padding-left: 2px; flex-shrink: 0;
    transition: transform .35s var(--ease-soft);
  }
  .btn__play svg { width: 10px; height: 10px; }
  .btn:hover .btn__play { transform: scale(1.08); }

  /* ——— Video modal ——— */
  .vm {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: clamp(16px, 4vw, 48px);
    opacity: 0; pointer-events: none;
    transition: opacity .35s var(--ease-soft);
  }
  .vm.is-open { opacity: 1; pointer-events: auto; }
  .vm__back {
    position: absolute; inset: 0;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .vm__inner {
    position: relative; z-index: 1;
    width: 100%; max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
    transform: scale(0.96);
    transition: transform .4s var(--ease-soft);
  }
  .vm.is-open .vm__inner { transform: scale(1); }
  .vm__video { width: 100%; height: 100%; display: block; object-fit: cover; }
  .vm__close {
    position: absolute; top: 16px; right: 16px;
    width: 44px; height: 44px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s var(--ease-soft), transform .35s var(--ease-soft);
    box-shadow: 0 4px 14px -2px rgba(0,0,0,0.4);
    z-index: 5;
  }
  .vm__close:hover { background: var(--accent); color: var(--ink); transform: scale(1.06); }
  .vm__close svg { width: 18px; height: 18px; }

  /* ——— Eyebrow ——— */
  .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--muted-4); letter-spacing: 0.02em; text-transform: uppercase; }
  .eyebrow__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); animation: pulse 2.4s var(--ease-soft) infinite; }
  @keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px var(--accent-soft); } 50% { box-shadow: 0 0 0 9px transparent; } }

  /* ——— Hero ——— */
  .hero {
    position: relative;
    padding-top: clamp(96px, 12vw, 180px);
    padding-bottom: clamp(56px, 9vw, 110px);
    overflow: hidden;
  }
  .hero__bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  }
  .hero__bg::before {
    content: ''; position: absolute;
    width: 1200px; height: 1000px;
    top: -300px; right: -350px;
    background:
      radial-gradient(closest-side, rgba(194, 249, 2, 0.22), transparent 65%),
      radial-gradient(closest-side at 70% 60%, rgba(214, 240, 80, 0.16), transparent 60%);
    filter: blur(50px);
    animation: floatBlob 18s ease-in-out infinite alternate;
  }
  .hero__bg::after {
    content: ''; position: absolute;
    width: 900px; height: 900px;
    bottom: -500px; left: -300px;
    background: radial-gradient(closest-side, rgba(30, 30, 200, 0.08), transparent 70%);
    filter: blur(60px);
    animation: floatBlob 22s ease-in-out infinite alternate-reverse;
  }
  @keyframes floatBlob {
    0%   { transform: translate(0,0) rotate(0deg) scale(1); }
    100% { transform: translate(40px, -30px) rotate(8deg) scale(1.08); }
  }
  .hero__mesh {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(14,14,14,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(14,14,14,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.6), transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.6), transparent 70%);
    opacity: 0.7;
  }
  .hero__inner { position: relative; z-index: 1; }
  .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
  }
  @media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }
  .hero__h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08; letter-spacing: -0.028em;
    margin: 22px 0 22px; font-weight: 300;
    color: var(--ink); max-width: 22ch;
  }
  .hero__h1 .scramble { display: inline-block; min-width: 5ch; }
  .hero__sub { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.55; color: var(--muted-4); max-width: 50ch; margin: 0 0 28px; }
  .hero__sub strong { color: var(--ink); font-weight: 500; }
  .hero__ctas { display: inline-flex; flex-wrap: wrap; gap: 10px; }

  /* ——— Console panel ——— */
  .console {
    background: var(--bg);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow:
      0 1px 2px rgba(14,14,14,0.05),
      0 8px 20px -8px rgba(14,14,14,0.1),
      0 30px 80px -20px rgba(14,14,14,0.22);
    border: 1px solid var(--hairline);
    position: relative;
  }
  .console::before {
    content: ''; position: absolute; inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(194,249,2,0.4), transparent 30%, transparent 70%, rgba(194,249,2,0.2));
    z-index: -1;
    opacity: 0.4;
    filter: blur(8px);
  }
  .console__top {
    padding: 14px 18px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--hairline);
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(247,247,243,0.6));
  }
  .console__top-left { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); }
  .console__top-right { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); }
  .live-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 999px; animation: pulse 1.8s var(--ease-soft) infinite; flex-shrink: 0; }
  .console__channels { padding: 8px; }
  .ch {
    padding: 14px;
    display: grid; grid-template-columns: 28px 1fr auto; gap: 14px; align-items: center;
    border-radius: 14px;
    transition: background .3s var(--ease-soft);
    cursor: default;
  }
  .ch + .ch { margin-top: 2px; }
  .ch:hover { background: var(--bg-soft); }
  .ch__icon { width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
  .ch__icon svg { width: 14px; height: 14px; }
  .ch__icon--call { background: var(--accent); }
  .ch__icon--wa { background: #25d366; }
  .ch__icon--ops { background: #2a2a26; }
  .ch__icon--ok { background: #2bb673; }
  .ch__body { min-width: 0; }
  .ch__title { font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.2; }
  .ch__sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); margin-top: 3px; line-height: 1.3; }
  .ch__meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
  .mini-wave { display: inline-flex; align-items: center; gap: 2px; height: 16px; }
  .mini-wave span { width: 2px; background: var(--accent); border-radius: 999px; animation: miniWave 1.2s var(--ease-soft) infinite; }
  .mini-wave span:nth-child(1) { animation-delay: 0s; }
  .mini-wave span:nth-child(2) { animation-delay: 0.15s; }
  .mini-wave span:nth-child(3) { animation-delay: 0.3s; }
  .mini-wave span:nth-child(4) { animation-delay: 0.45s; }
  .mini-wave span:nth-child(5) { animation-delay: 0.6s; }
  @keyframes miniWave { 0%, 100% { height: 4px; } 50% { height: 14px; } }
  .typing-dot { display: inline-block; width: 4px; height: 4px; background: var(--muted-3); border-radius: 999px; margin: 0 1px; animation: typing 1.4s var(--ease-soft) infinite; }
  .typing-dot:nth-child(2) { animation-delay: 0.2s; }
  .typing-dot:nth-child(3) { animation-delay: 0.4s; }
  @keyframes typing { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
  .console__foot {
    padding: 14px 18px; border-top: 1px solid var(--hairline);
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg-soft);
    font-family: var(--font-mono); font-size: 11px; color: var(--muted-3);
  }
  .console__foot strong { color: var(--ink); font-weight: 500; }
  .uptime-bar { display: inline-flex; gap: 2px; align-items: flex-end; }
  .uptime-bar span { width: 3px; background: #2bb673; border-radius: 999px; opacity: 0.8; }

  /* ——— Marquee ——— */
  .marquee {
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: var(--bg);
  }
  .marquee__track {
    display: flex; gap: 56px;
    animation: marqueeRoll 38s linear infinite;
    width: max-content;
    white-space: nowrap;
  }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  @keyframes marqueeRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee__item {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--font-mono); font-size: 13px;
    color: var(--muted-4); text-transform: uppercase; letter-spacing: 0.06em;
  }
  .marquee__item::before {
    content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 999px;
  }

  /* ——— Stats row ——— */
  .stats { padding-block: 56px; border-bottom: 1px solid var(--hairline); }
  .stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; justify-items: center; }
  @media (max-width: 720px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
  .stat { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .stat__num { font-family: var(--font-mono); font-size: clamp(32px, 3.6vw, 44px); font-weight: 400; line-height: 1; letter-spacing: -0.025em; color: var(--ink); }
  .stat__num .accent { color: var(--accent); }
  .stat__num .unit { color: var(--muted-3); font-size: 0.55em; margin-left: 2px; }
  .stat__lbl { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-3); text-transform: uppercase; letter-spacing: 0.06em; }

  /* ——— Trust strip (logos) ——— */
  .trust { padding-block: 48px; border-bottom: 1px solid var(--hairline); }
  .trust__lbl { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; text-align: center; }
  .trust__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px, 5vw, 56px); }
  .trust__logos img.brand-logo {
    height: 26px; width: auto; max-width: 140px;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.68;
    transition: opacity .3s var(--ease-soft);
  }
  .trust__logos img.brand-logo:hover { opacity: 1; }

  /* ——— Section heads ——— */
  .section__head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 760px; }
  .section__h { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.06; letter-spacing: -0.025em; margin: 14px 0 14px; font-weight: 300; }
  .section__sub { font-size: 16.5px; line-height: 1.55; color: var(--muted-4); max-width: 580px; }

  /* ——— ¿Te suena? (dolores) ——— */
  .pain {
    padding-block: clamp(72px, 9vw, 110px);
    background: var(--bg-cream);
    position: relative;
  }
  .pain__head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .pain__head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 300;
    letter-spacing: -0.028em;
    line-height: 1.04;
    margin: 12px 0 0;
    max-width: 18ch;
  }
  .pain__head h2 .q { color: var(--accent-ink); }
  .pain__head p {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    max-width: 36ch;
    padding-bottom: 6px;
  }
  .pain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  @media (max-width: 880px) { .pain__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .pain__grid { grid-template-columns: 1fr; } }
  .pain__item {
    position: relative;
    padding: 22px 22px 24px;
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    transition: border-color .3s var(--ease-soft), transform .3s var(--ease-soft);
    overflow: hidden;
    display: flex; flex-direction: column; gap: 12px;
    min-height: 140px;
  }
  .pain__item::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(260px circle at var(--mx, -100px) var(--my, -100px), rgba(194,249,2,0.10), transparent 45%);
    opacity: 0; transition: opacity .3s var(--ease-soft);
    pointer-events: none;
  }
  .pain__item:hover { border-color: var(--hairline-strong); transform: translateY(-2px); }
  .pain__item:hover::before { opacity: 1; }
  .pain__top {
    display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 1;
  }
  .pain__icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--ink); color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .pain__icon svg { width: 14px; height: 14px; }
  .pain__cat {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--muted-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .pain__quote {
    font-size: 15.5px;
    line-height: 1.4;
    color: var(--ink);
    font-weight: 500;
    margin: 0;
    position: relative; z-index: 1;
  }

  /* ——— Capabilities ——— */
  .caps { padding-block: clamp(80px, 11vw, 140px); position: relative; }
  .caps__tabs { display: flex; flex-wrap: wrap; gap: 4px; padding: 6px; background: var(--bg-soft); border-radius: var(--r-pill); width: max-content; max-width: 100%; margin-bottom: 36px; }
  @media (max-width: 560px) {
    .caps__tabs {
      flex-wrap: nowrap; width: 100%;
      overflow-x: auto; scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .caps__tabs::-webkit-scrollbar { display: none; }
    .caps__tab { flex-shrink: 0; }
  }
  .caps__tab { padding: 9px 18px; font-size: 13.5px; font-weight: 500; color: var(--muted-4); border-radius: var(--r-pill); cursor: pointer; transition: background .3s var(--ease-soft), color .3s var(--ease-soft); white-space: nowrap; }
  .caps__tab:hover { color: var(--ink); }
  .caps__tab[aria-selected="true"] { background: var(--ink); color: #fff; }
  .caps__panel { display: none; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
  .caps__panel.is-active { display: grid; animation: fadeUp .6s var(--ease-soft); }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
  @media (max-width: 880px) { .caps__panel { grid-template-columns: 1fr; } }
  .caps__panel-h { font-size: clamp(20px, 2.1vw, 28px); line-height: 1.18; letter-spacing: -0.022em; margin: 8px 0 14px; font-weight: 300; }
  .caps__panel-desc { font-size: 16px; line-height: 1.55; color: var(--muted-4); margin: 0 0 24px; max-width: 50ch; }
  .caps__bullets { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
  .caps__bullets li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink); }
  .caps__bullets .bul { width: 10px; height: 10px; background: var(--accent); border-radius: 3px; flex-shrink: 0; }
  .caps__metrics { display: flex; gap: 36px; padding-top: 22px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
  .caps__metric .num { font-family: var(--font-mono); font-size: 26px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); display: block; }
  .caps__metric .lbl { font-size: 12px; color: var(--muted-3); margin-top: 4px; }

  /* Mockup base con tilt */
  .mock {
    background: var(--bg); border-radius: var(--r-xl); overflow: hidden;
    box-shadow: 0 1px 2px rgba(14,14,14,0.04), 0 4px 14px -4px rgba(14,14,14,0.06), 0 30px 60px -22px rgba(14,14,14,0.18);
    border: 1px solid var(--hairline);
    transition: transform .4s var(--ease-soft);
    transform-style: preserve-3d;
    will-change: transform;
  }
  .mock__bar { padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--hairline); font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); background: var(--bg-soft); }
  .mock__bar-left { display: inline-flex; align-items: center; gap: 8px; }
  .mock__body { padding: 24px; }
  .mock__foot { padding: 12px 16px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); }
  .mock__foot strong { color: var(--ink); font-weight: 500; }

  /* Transcript */
  .tr { display: grid; gap: 14px; }
  .tr__line { display: grid; grid-template-columns: 78px 1fr; gap: 16px; font-size: 13.5px; line-height: 1.5; }
  .tr__who { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-3); text-transform: uppercase; letter-spacing: 0.06em; padding-top: 3px; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .tr__line.is-ai .tr__who { color: var(--ink); font-weight: 500; }
  .tr__text { color: var(--ink-2); min-width: 0; }
  .tr__time { font-family: var(--font-mono); font-size: 9.5px; color: var(--muted-3); margin-left: 0; opacity: 0.75; font-weight: 400; }

  /* Chat */
  .chat { display: flex; flex-direction: column; gap: 10px; }
  .chat__msg { padding: 12px 16px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; max-width: 80%; }
  .chat__msg--user { background: var(--bg-soft); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
  .chat__msg--ai { background: var(--ink); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; margin-left: auto; }
  .chat__msg--ai .who { font-family: var(--font-mono); font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 4px; }

  /* Workflow */
  .wf { display: grid; gap: 0; }
  .wf__step { display: flex; align-items: center; gap: 14px; padding: 14px 0; }
  .wf__step + .wf__step { border-top: 1px solid var(--hairline); }
  .wf__icon { width: 32px; height: 32px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 12px; font-weight: 500; flex-shrink: 0; }
  .wf__txt { flex: 1; }
  .wf__title { font-size: 14px; color: var(--ink); font-weight: 500; display: block; }
  .wf__sub { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-3); margin-top: 2px; display: block; }
  .wf__check { color: var(--accent); font-size: 14px; }

  /* Alerts */
  .alerts { display: grid; gap: 8px; }
  .alerts__row { display: grid; grid-template-columns: 16px 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; background: var(--bg-soft); border-radius: 10px; font-size: 13px; }
  .alerts__row .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
  .alerts__row .dot.ok { background: #2bb673; }
  .alerts__row .dot.warn { background: #f5b50d; }
  .alerts__time { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); }

  /* Dashboard */
  .dash { display: grid; gap: 16px; }
  .dash__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .dash__tile { padding: 14px; background: var(--bg-soft); border-radius: 10px; }
  .dash__tile .lbl { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
  .dash__tile .v { font-family: var(--font-mono); font-size: 22px; color: var(--ink); font-weight: 500; letter-spacing: -0.02em; }
  .dash__tile .v .delta { color: var(--accent); font-size: 12px; margin-left: 6px; }
  .dash__chart { height: 140px; background: var(--bg-soft); border-radius: 10px; padding: 14px; position: relative; }
  .dash__chart svg { width: 100%; height: 100%; overflow: visible; }
  .chart-line { fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .chart-area { fill: url(#chartGrad); opacity: 0; transition: opacity 1s var(--ease-soft); }
  .is-in .chart-area { opacity: 1; transition-delay: 0.6s; }
  .chart-dot { fill: var(--accent); r: 0; transition: r .4s var(--ease-spring); transition-delay: 1.3s; }
  .is-in .chart-dot { r: 4; }
  .chart-pulse { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: 0; transform-origin: center; }
  .is-in .chart-pulse { animation: chartPulse 2s ease-out infinite 1.4s; }
  @keyframes chartPulse { 0% { r: 4; opacity: 0.8; } 100% { r: 18; opacity: 0; } }

  /* ——— Industrias ——— */
  .industries { padding-block: clamp(80px, 11vw, 140px); background: var(--bg-cream); position: relative; }
  .ind__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  @media (max-width: 880px) { .ind__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .ind__grid { grid-template-columns: 1fr; } }
  .ind {
    padding: 28px;
    background: var(--bg); border-radius: var(--r-lg);
    border: 1px solid var(--hairline);
    transition: border-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
    display: flex; flex-direction: column; gap: 16px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
  }
  .ind::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(400px circle at var(--mx, -100px) var(--my, -100px), rgba(194, 249, 2, 0.08), transparent 40%);
    opacity: 0; transition: opacity .35s var(--ease-soft);
    pointer-events: none;
  }
  .ind:hover { border-color: var(--hairline-strong); box-shadow: 0 18px 50px -25px rgba(14,14,14,0.18); }
  .ind:hover::before { opacity: 1; }
  .ind__icon { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
  .ind__icon svg { width: 18px; height: 18px; }
  .ind__name { font-size: 16px; font-weight: 300; letter-spacing: -0.012em; margin: 0; }
  .ind__cases { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); text-transform: uppercase; letter-spacing: 0.04em; }
  .ind__desc { font-size: 14.5px; color: var(--muted-4); line-height: 1.55; margin: 0; flex: 1; }

  /* ——— Cómo trabajamos (scroll-pin) ——— */
  .how { background: var(--bg); padding-block: clamp(80px, 11vw, 140px); }
  .how__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
  .how__head .section__h { max-width: none; margin-inline: auto; }
  .how__head .section__sub { max-width: 56ch; margin: 14px auto 0; }
  .how__cta { text-align: center; margin-top: 56px; }

  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 48px);
  }
  .timeline__phase { display: flex; flex-direction: column; }
  .timeline__row {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 22px;
  }
  .timeline__num {
    width: 44px; height: 44px;
    background: var(--ink); color: var(--accent);
    border-radius: 12px;
    font-family: var(--font-mono); font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 22px -10px rgba(14,14,14,0.4);
  }
  .timeline__line {
    flex: 1; height: 2px;
    background: linear-gradient(to right, var(--accent), var(--hairline-strong));
    border-radius: 999px;
  }
  .timeline__sub {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--muted-3);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .timeline__h {
    font-size: clamp(20px, 1.8vw, 26px); line-height: 1.12; letter-spacing: -0.02em;
    margin: 0 0 14px; font-weight: 400;
  }
  .timeline__desc {
    font-size: 14.5px; line-height: 1.55;
    color: var(--muted-4); margin: 0 0 18px;
  }
  .timeline__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }

  .tag { display: inline-flex; padding: 5px 12px; background: var(--bg); color: var(--muted-4); font-family: var(--font-mono); font-size: 11.5px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hairline); }
  .tag--accent { color: var(--ink); background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(194,249,2,0.5); }

  @media (max-width: 980px) {
    .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
    .timeline__phase:nth-child(2) .timeline__line { display: none; }
  }
  @media (max-width: 600px) {
    .timeline { grid-template-columns: 1fr; row-gap: 40px; }
    .timeline__line { display: none; }
  }

  /* ——— Arquitectura (oscura) ——— */
  .arch { padding-block: clamp(80px, 11vw, 140px); background: var(--bg-deep); color: #fff; position: relative; overflow: hidden; }
  .arch__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,0.9), transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,0.9), transparent);
    animation: dotsBreathe 12s ease-in-out infinite;
  }
  @keyframes dotsBreathe { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
  .arch::after {
    content: ''; position: absolute;
    width: 800px; height: 800px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(closest-side, rgba(194,249,2,0.18), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
  }
  .arch > .container { position: relative; z-index: 1; }
  .arch .eyebrow { color: rgba(255,255,255,0.55); }
  .arch .section__h { color: #fff; }
  .arch .section__sub { color: rgba(255,255,255,0.6); }
  .arch__metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
  @media (max-width: 720px) { .arch__metrics { grid-template-columns: repeat(2, 1fr); } }
  .arch__metric .num { font-family: var(--font-mono); font-size: clamp(36px, 4.2vw, 56px); font-weight: 400; line-height: 1; color: #fff; letter-spacing: -0.03em; display: block; }
  .arch__metric .num .accent { color: var(--accent); }
  .arch__metric .lbl { font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 10px; }
  .arch__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
  @media (max-width: 880px) { .arch__cards { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .arch__cards { grid-template-columns: 1fr; } }
  .arch__card {
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    position: relative; overflow: hidden;
    transition: border-color .35s var(--ease-soft), background .35s var(--ease-soft);
  }
  .arch__card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(400px circle at var(--mx, -100px) var(--my, -100px), rgba(194, 249, 2, 0.18), transparent 40%);
    opacity: 0; transition: opacity .35s var(--ease-soft);
    pointer-events: none;
  }
  .arch__card:hover { border-color: rgba(194,249,2,0.4); background: rgba(255,255,255,0.05); }
  .arch__card:hover::before { opacity: 1; }
  .arch__card svg { width: 20px; height: 20px; color: var(--accent); margin-bottom: 14px; position: relative; z-index: 1; }
  .arch__card h4 { font-size: 16px; font-weight: 500; margin: 0 0 8px; letter-spacing: -0.01em; position: relative; z-index: 1; }
  .arch__card p { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.55); margin: 0; position: relative; z-index: 1; }

  /* ——— Integraciones (network) ——— */
  .ints { padding-block: clamp(80px, 11vw, 140px); position: relative; overflow: hidden; }
  .ints__bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(14,14,14,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(14,14,14,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,0,0,0.7), transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,0,0,0.7), transparent);
    opacity: 0.6;
  }
  .ints > .container { position: relative; z-index: 1; }
  .ints__network {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1;
    margin: 40px auto 0;
  }
  .ints__network::before,
  .ints__network::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }
  .ints__network::before {
    width: 80%; height: 80%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(14,14,14,0.10);
    animation: orbitRotate 60s linear infinite;
  }
  .ints__network::after {
    width: 56%; height: 56%;
    transform: translate(-50%, -50%);
    border: 1px dotted rgba(14,14,14,0.08);
    animation: orbitRotate 90s linear infinite reverse;
  }
  @keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
  }
  @media (max-width: 760px) { .ints__network { display: none; } }
  .network-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 1; }
  .network-line { stroke: rgba(14,14,14,0.10); stroke-width: 1; fill: none; }
  .network-flow {
    stroke: var(--accent); stroke-width: 2; fill: none;
    stroke-dasharray: 10 90; stroke-linecap: round;
    filter: drop-shadow(0 0 3px rgba(194,249,2,0.55));
    animation: flowDash 2.8s linear infinite;
  }
  @keyframes flowDash { to { stroke-dashoffset: -200; } }
  .network-orbit {
    fill: none;
    stroke: rgba(14,14,14,0.06);
    stroke-width: 1;
    stroke-dasharray: 2 6;
  }
  .network-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 82px; height: 82px;
    background: var(--ink); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
    z-index: 3;
    box-shadow:
      0 0 0 1px rgba(14,14,14,0.1),
      0 0 0 9px rgba(194,249,2,0.05),
      0 18px 44px -12px rgba(14,14,14,0.4);
    animation: centerPulse 3.6s var(--ease-soft) infinite;
  }
  @keyframes centerPulse {
    0%, 100% { box-shadow: 0 0 0 1px rgba(14,14,14,0.1), 0 0 0 10px rgba(194,249,2,0.10), 0 0 38px rgba(194,249,2,0.18), 0 18px 44px -12px rgba(14,14,14,0.4); }
    50%      { box-shadow: 0 0 0 1px rgba(14,14,14,0.1), 0 0 0 24px rgba(194,249,2,0.04), 0 0 68px rgba(194,249,2,0.32), 0 18px 44px -12px rgba(14,14,14,0.4); }
  }
  .network-center img { width: 46px; height: 15px; }
  .network-center__sub {
    font-family: var(--font-mono); font-size: 9px;
    color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .network-center__sub::before { content: ''; width: 5px; height: 5px; border-radius: 999px; background: var(--accent); animation: pulse 2s var(--ease-soft) infinite; }
  .network-node {
    position: absolute;
    width: 64px; height: 64px;
    transform: translate(-50%, -50%);
    background: var(--bg);
    border: 1px solid var(--hairline-strong);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    padding: 14px;
    box-shadow:
      0 1px 2px rgba(14,14,14,0.04),
      0 8px 22px -8px rgba(14,14,14,0.12);
    transition: border-color .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
    z-index: 2;
    animation: nodeFloat 5.6s ease-in-out infinite;
  }
  @keyframes nodeFloat {
    0%, 100% { transform: translate(-50%, calc(-50% - 0px)); }
    50%      { transform: translate(-50%, calc(-50% - 7px)); }
  }
  .network-node[data-i="0"]  { animation-delay: -0.0s; }
  .network-node[data-i="1"]  { animation-delay: -0.45s; }
  .network-node[data-i="2"]  { animation-delay: -0.9s; }
  .network-node[data-i="3"]  { animation-delay: -1.35s; }
  .network-node[data-i="4"]  { animation-delay: -1.8s; }
  .network-node[data-i="5"]  { animation-delay: -2.25s; }
  .network-node[data-i="6"]  { animation-delay: -2.7s; }
  .network-node[data-i="7"]  { animation-delay: -3.15s; }
  .network-node[data-i="8"]  { animation-delay: -3.6s; }
  .network-node[data-i="9"]  { animation-delay: -4.05s; }
  .network-node[data-i="10"] { animation-delay: -4.5s; }
  .network-node[data-i="11"] { animation-delay: -4.95s; }
  .network-node img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s var(--ease-soft); }
  .network-node:hover {
    animation-play-state: paused;
    border-color: var(--accent);
    box-shadow: 0 14px 30px -12px rgba(194,249,2,0.45);
    z-index: 4;
  }
  .network-node:hover img { transform: scale(1.14); }
  .network-node__tip {
    position: absolute;
    bottom: -28px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 11px;
    color: var(--ink); white-space: nowrap;
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 0 0 1px var(--hairline), 0 4px 12px -4px rgba(14,14,14,0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease-soft);
  }
  .network-node:hover .network-node__tip { opacity: 1; }

  /* Mobile fallback grid */
  .ints__grid-mobile { display: none; }
  @media (max-width: 760px) {
    .ints__grid-mobile {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 40px;
    }
  }
  @media (max-width: 480px) { .ints__grid-mobile { grid-template-columns: 1fr; } }
  .integ {
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: var(--r-lg);
  }
  .integ__logo { width: 32px; height: 32px; margin-bottom: 14px; display: inline-flex; align-items: center; justify-content: center; }
  .integ__logo img { width: 28px; height: 28px; object-fit: contain; }
  .integ__name { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 4px; }
  .integ__cat { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); text-transform: uppercase; letter-spacing: 0.04em; }

  /* ——— Demo viva ——— */
  .demo { padding-block: clamp(80px, 11vw, 140px); background: var(--bg-soft); position: relative; overflow: hidden; }
  .demo::before {
    content: ''; position: absolute;
    width: 700px; height: 700px;
    top: 50%; right: -300px; transform: translateY(-50%);
    background: radial-gradient(closest-side, rgba(194,249,2,0.14), transparent 70%);
    filter: blur(70px);
    pointer-events: none;
  }
  .demo > .container { position: relative; z-index: 1; }
  .demo__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
  @media (max-width: 880px) { .demo__inner { grid-template-columns: 1fr; } }
  .demo__copy h2 { font-size: clamp(24px, 2.9vw, 36px); line-height: 1.1; letter-spacing: -0.025em; margin: 14px 0 18px; font-weight: 300; }
  .demo__copy p { font-size: 16px; line-height: 1.55; color: var(--muted-4); margin: 0 0 28px; max-width: 46ch; }
  .demo__phone {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 18px;
    background: var(--bg);
    border-radius: var(--r-pill);
    font-family: var(--font-mono); font-size: 14px;
    box-shadow: inset 0 0 0 1px var(--hairline);
  }
  .demo__phone .lbl { color: var(--muted-3); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
  .demo__phone strong { color: var(--ink); font-weight: 500; }

  /* ——— CTA final · ink card sobre cream ——— */
  .cta-final {
    padding: clamp(48px, 7vw, 88px) clamp(16px, 3vw, 40px) clamp(16px, 2vw, 24px);
    background: var(--bg-cream);
    border-top: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .cta-final > .container {
    position: relative;
    background: var(--ink);
    color: #fff;
    border-radius: clamp(20px, 3vw, 36px);
    padding: clamp(56px, 9vw, 120px) clamp(28px, 6vw, 80px);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 80px -40px rgba(14,14,14,0.45);
  }
  .cta-final > .container::before {
    content: ''; position: absolute; z-index: -1;
    width: 1200px; height: 1200px;
    bottom: -820px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(194,249,2,0.22), transparent 72%);
    filter: blur(50px);
    pointer-events: none;
  }
  .cta-final > .container::after {
    content: ''; position: absolute; z-index: -1; inset: 0;
    background:
      radial-gradient(circle at 12% 18%, rgba(255,255,255,0.06), transparent 32%),
      radial-gradient(circle at 88% 12%, rgba(194,249,2,0.08), transparent 38%);
    pointer-events: none;
  }
  .cta-final .eyebrow { color: rgba(255,255,255,0.7); }
  .cta-final .eyebrow__dot { background: var(--accent); }
  .cta-final h2 { font-size: clamp(32px, 4.6vw, 56px); line-height: 1.04; letter-spacing: -0.028em; margin: 14px 0 18px; font-weight: 300; max-width: 18ch; margin-inline: auto; color: #fff; }
  .cta-final h2 .accent { color: var(--accent) !important; font-weight: 500; }
  .cta-final p { font-size: 16.5px; color: rgba(255,255,255,0.65); max-width: 56ch; margin: 0 auto 32px; }
  .cta-final__btns { display: inline-flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .cta-final .btn--ghost { --b-bg: transparent; --b-c: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18); color: #fff; }
  .cta-final .btn--ghost:hover { background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.32); }

  /* ——— Footer · white card sobre cream ——— */
  .footer {
    position: relative;
    background: var(--bg-cream);
    border-top: none;
    padding: clamp(16px, 2vw, 24px) clamp(16px, 3vw, 40px) 0;
    overflow: visible;
  }
  .footer::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: -80px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-cream));
    pointer-events: none;
    z-index: 1;
  }
  .footer__card {
    background: var(--bg);
    border-radius: clamp(20px, 3vw, 36px);
    padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px) clamp(20px, 3vw, 32px);
    position: relative;
    z-index: 2;
    border: 1px solid var(--hairline);
  }

  /* Grid */
  .footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 48px; padding: 0 0 32px; }
  @media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) {
    .footer__grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px 22px;
      padding-bottom: 30px;
    }
    .footer__brand-block {
      flex: 0 0 100%;
      padding-bottom: 30px;
      margin-bottom: 2px;
      border-bottom: 1px solid var(--hairline);
    }
    .footer__brand-block p { max-width: none; margin-bottom: 0; }
    .footer__col { flex: 1 1 calc(50% - 11px); min-width: 130px; }
    .footer__col h4 { margin-bottom: 12px; }
  }
  .footer__brand-eyebrow { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); text-transform: uppercase; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 8px; }
  .footer__brand-block p { font-size: 13.5px; color: var(--ink); margin: 14px 0 22px; max-width: 32ch; line-height: 1.55; }
  .footer__social { display: flex; gap: 8px; }
  .footer__social a { width: 32px; height: 32px; border-radius: 8px; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .3s var(--ease-soft); }
  .footer__social a:hover { background: var(--accent); color: var(--ink); }
  .footer__social svg { width: 14px; height: 14px; }
  .footer__col h4 { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; font-weight: 500; }
  .footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .footer__col a { font-size: 14px; color: var(--ink); transition: color .25s var(--ease-soft); display: inline-flex; align-items: center; gap: 8px; }
  .footer__col a:hover { color: var(--accent-ink); }
  .footer__pill { background: var(--accent-soft); color: var(--accent-ink); font-family: var(--font-mono); font-size: 10.5px; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em; }

  /* ── Footer · presencia global (compacto, esquina sup. izq.) ──────────── */
  .footer__reach { margin: 0 0 22px; }
  .reach__route {
    --node: 24px;
    position: relative;
    display: inline-flex; gap: 16px; align-items: center;
    list-style: none; margin: 0 0 11px; padding: 0;
  }
  .reach__route::before,
  .reach__route::after {
    content: ''; position: absolute;
    top: calc(var(--node) / 2);
    left: calc(var(--node) / 2);
    right: calc(var(--node) / 2);
    height: 2px; transform: translateY(-50%);
    pointer-events: none;
  }
  .reach__route::before {
    background-image: radial-gradient(circle, var(--hairline-strong) 1px, transparent 1.5px);
    background-size: 6px 2px; background-repeat: repeat-x;
  }
  .reach__route::after {
    background: linear-gradient(90deg, transparent 0%, rgba(194,249,2,0) 36%, var(--accent) 50%, rgba(194,249,2,0) 64%, transparent 100%);
    background-size: 42% 100%; background-repeat: no-repeat;
    filter: drop-shadow(0 0 5px rgba(194,249,2,0.8));
    animation: reachSweep 4.2s linear infinite;
  }
  @keyframes reachSweep {
    0%   { background-position: -45% 0; }
    100% { background-position: 145% 0; }
  }
  .reach__stop { position: relative; z-index: 1; display: block; }
  .reach__node {
    display: block;
    width: var(--node); height: var(--node);
    border-radius: 50%; overflow: hidden;
    background-color: var(--bg);
    background-size: cover; background-position: center; background-repeat: no-repeat;
    box-shadow: 0 0 0 1px var(--hairline-strong), 0 3px 8px -4px rgba(14,14,14,0.4);
    animation: reachGlow 4.2s var(--ease-soft) infinite;
    animation-delay: calc(var(--n) * 1.05s);
    transition: box-shadow .35s var(--ease-soft), transform .35s var(--ease-soft);
  }
  @keyframes reachGlow {
    0%, 18%, 100% { box-shadow: 0 0 0 1px var(--hairline-strong), 0 3px 8px -4px rgba(14,14,14,0.4); }
    7%            { box-shadow: 0 0 0 1px var(--accent), 0 0 0 3px var(--accent-soft), 0 0 14px rgba(194,249,2,0.6), 0 3px 8px -4px rgba(14,14,14,0.4); }
  }
  .reach__stop:hover .reach__node {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px var(--accent), 0 0 0 4px var(--accent-soft), 0 0 16px rgba(194,249,2,0.65), 0 5px 12px -5px rgba(14,14,14,0.45);
  }
  .reach__names {
    font-family: var(--font-mono); font-size: 10px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted-3); margin: 0; line-height: 1.5; max-width: 30ch;
  }
  @media (prefers-reduced-motion: reduce) {
    .reach__route::after, .reach__node { animation: none; }
    .reach__route::after { background-position: 50% 0; opacity: 0.55; }
  }

  /* Meta strip (coords + live time + status) */
  .footer__meta {
    padding: 18px 0 0;
    border-top: 1px solid var(--hairline);
    display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center;
    font-family: var(--font-mono); font-size: 11.5px;
    color: var(--muted-3); text-transform: uppercase; letter-spacing: 0.06em;
  }
  .footer__meta-item { display: inline-flex; align-items: center; gap: 8px; }
  .footer__meta-item + .footer__meta-item::before {
    content: ''; width: 3px; height: 3px; border-radius: 999px; background: var(--hairline-strong);
    margin-right: 20px; margin-left: -8px;
  }
  .footer__meta-label { color: var(--muted-3); opacity: 0.7; }
  #footerLocalTime { color: var(--ink); font-variant-numeric: tabular-nums; min-width: 7ch; }
  .footer__status { margin-left: auto; }
  .footer__status .dot { width: 7px; height: 7px; background: #2bb673; border-radius: 999px; box-shadow: 0 0 0 3px rgba(43,182,115,0.2); animation: pulse 2.4s var(--ease-soft) infinite; }

  /* Wordmark · watermark debajo de la card, half-cropped */
  .footer__wordmark {
    position: relative;
    padding: clamp(24px, 4vw, 56px) 0 0;
    line-height: 0;
    pointer-events: none;
    text-align: center;
    margin-bottom: clamp(-80px, -10vw, -40px);
  }
  .footer__wordmark img {
    display: inline-block;
    width: 92%;
    max-width: 1280px;
    height: auto;
    opacity: 0.06;
    filter: blur(0.4px);
  }
  .footer__baseline {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 14px 16px 22px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  @media (max-width: 760px) {
    .footer { padding: 12px 12px 0; }
    .footer__card { padding: 32px 22px 22px; }
    .footer__meta { gap: 8px 18px; }
    .footer__meta-item + .footer__meta-item::before { margin-right: 12px; margin-left: -4px; }
    .footer__status { margin-left: 0; }
    .footer__wordmark img { width: 100%; }
  }

  /* Reveals */
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal[data-delay="1"] { transition-delay: 0.06s; }
  .reveal[data-delay="2"] { transition-delay: 0.12s; }
  .reveal[data-delay="3"] { transition-delay: 0.18s; }
  .reveal[data-delay="4"] { transition-delay: 0.24s; }
  .reveal[data-delay="5"] { transition-delay: 0.3s; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
  }

/* ============== Página: Servicios (sv-) ============== */
.sv-hero {
  padding: clamp(110px, 14vw, 200px) 0 clamp(48px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.sv-hero::before {
  content: ''; position: absolute;
  width: 900px; height: 700px;
  top: -200px; right: -250px;
  background: radial-gradient(closest-side, rgba(194,249,2,0.22), transparent 65%);
  filter: blur(60px);
  pointer-events: none; z-index: 0;
}
.sv-hero__inner { position: relative; z-index: 1; max-width: 920px; }
.sv-hero__h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04; letter-spacing: -0.028em;
  font-weight: 300; margin: 22px 0 22px; color: var(--ink);
}
.sv-hero__sub {
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.55; color: var(--muted-4);
  max-width: 620px; margin: 0;
}

.sv-list {
  padding-block: clamp(40px, 6vw, 80px) clamp(80px, 11vw, 140px);
}

.sv-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 200px;
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
  padding: clamp(24px, 3.2vw, 40px);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .3s var(--ease-soft), transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.sv-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, -200px) var(--my, -200px), rgba(194,249,2,0.1), transparent 45%);
  opacity: 0; transition: opacity .35s var(--ease-soft);
  pointer-events: none;
}
.sv-card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(14,14,14,0.04), 0 28px 60px -24px rgba(14,14,14,0.18);
}
.sv-card:hover::before { opacity: 1; }
@media (max-width: 880px) {
  .sv-card { grid-template-columns: 1fr; gap: 18px; }
}

.sv-card__left {
  display: flex; flex-direction: column;
  gap: 16px; align-items: flex-start;
  position: relative; z-index: 1;
}
.sv-card__num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--muted-3);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sv-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.sv-card__icon svg { width: 26px; height: 26px; }

.sv-card__body { position: relative; z-index: 1; }
.sv-card__title {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08; letter-spacing: -0.022em;
  margin: 0 0 12px; font-weight: 300;
}
.sv-card__desc {
  font-size: 15.5px; line-height: 1.55;
  color: var(--muted-4); margin: 0 0 18px;
  max-width: 56ch;
}
.sv-card__bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px;
}
@media (max-width: 600px) { .sv-card__bullets { grid-template-columns: 1fr; } }
.sv-card__bullets li {
  position: relative; padding-left: 18px;
  font-size: 14px; color: var(--ink);
}
.sv-card__bullets li::before {
  content: ''; position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
}

.sv-card__right {
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: flex-end; gap: 24px;
  position: relative; z-index: 1;
}
@media (max-width: 880px) {
  .sv-card__right { flex-direction: row; align-items: center; height: auto; }
}
.sv-card__stat {
  text-align: right;
  display: flex; flex-direction: column;
  gap: 4px;
}
@media (max-width: 880px) { .sv-card__stat { text-align: left; } }
.sv-card__stat-num {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.4vw, 32px); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--ink);
}
.sv-card__stat-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px; color: var(--muted-3);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sv-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 18px;
  background: var(--accent); color: var(--ink);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  transition: background .3s var(--ease-soft), transform .3s var(--ease-soft);
  box-shadow: 0 8px 22px -10px rgba(194,249,2,0.6);
}
.sv-card__cta svg { width: 13px; height: 13px; transition: transform .3s var(--ease-soft); }
.sv-card:hover .sv-card__cta { background: var(--accent-2); }
.sv-card:hover .sv-card__cta svg { transform: translate(3px, -1px); }

/* Active state en nav__link */
.nav__link.is-active { color: var(--ink); background: var(--muted-1); }

/* ============== Páginas detalle servicio (svp-) ============== */
.svp-hero {
  padding: clamp(110px, 14vw, 200px) 0 clamp(60px, 8vw, 110px);
  position: relative; overflow: hidden;
}
.svp-hero::before {
  content: ''; position: absolute;
  width: 1100px; height: 800px;
  top: -200px; right: -300px;
  background: radial-gradient(closest-side, rgba(194,249,2,0.22), transparent 65%);
  filter: blur(70px);
  pointer-events: none; z-index: 0;
}
.svp-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 980px) { .svp-hero__inner { grid-template-columns: 1fr; } }
.svp-hero__h1 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05; letter-spacing: -0.032em;
  margin: 22px 0 22px; font-weight: 300;
  color: var(--ink); max-width: 22ch;
}
.svp-hero__sub {
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.55; color: var(--muted-4);
  max-width: 50ch; margin: 0 0 32px;
}
.svp-hero__sub strong { color: var(--ink); font-weight: 500; }
.svp-hero__ctas { display: inline-flex; flex-wrap: wrap; gap: 10px; }

/* Bloque genérico para secciones de la página */
.svp-section { padding-block: clamp(80px, 11vw, 140px); }
.svp-section--alt { background: var(--bg-cream); }
.svp-section--dark { background: var(--bg-deep); color: #fff; }
.svp-section--dark .section__h { color: #fff; }
.svp-section--dark .section__h .accent { color: var(--accent); font-weight: 500; }
.svp-section--dark .section__sub { color: rgba(255,255,255,0.6); }
.svp-section--dark .eyebrow { color: rgba(255,255,255,0.55); }

/* Dolores: 2x2 cards */
.svp-dolores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 760px) { .svp-dolores { grid-template-columns: 1fr; } }
.svp-dolor {
  padding: 24px 26px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  display: flex; gap: 16px;
  align-items: flex-start;
}
.svp-dolor__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svp-dolor__icon svg { width: 18px; height: 18px; }
.svp-dolor h3 {
  font-size: 16px; font-weight: 300; letter-spacing: -0.012em;
  margin: 0 0 6px; color: var(--ink);
}
.svp-dolor p {
  font-size: 14.5px; line-height: 1.5; color: var(--muted-4); margin: 0;
}

/* Capacidades del servicio */
.svp-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
  margin-top: 48px;
}
@media (max-width: 760px) { .svp-feats { grid-template-columns: 1fr; gap: 18px; } }
.svp-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
}
.svp-feat__num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--accent-ink);
  background: var(--accent); padding: 2px 8px;
  border-radius: 4px; font-weight: 500;
  flex-shrink: 0; line-height: 1.4;
  margin-top: 2px;
}
.svp-feat h4 {
  font-size: 15.5px; font-weight: 300; letter-spacing: -0.01em;
  margin: 0 0 4px; color: var(--ink);
}
.svp-feat p { font-size: 14px; line-height: 1.5; color: var(--muted-4); margin: 0; }

/* Stats row 4 col */
.svp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) { .svp-stats { grid-template-columns: repeat(2, 1fr); } }
.svp-stat .num {
  font-family: var(--font-mono);
  font-size: clamp(36px, 4.6vw, 60px); font-weight: 400;
  line-height: 1; letter-spacing: -0.03em; color: #fff;
}
.svp-stat .num .accent { color: var(--accent); }
.svp-stat .lbl {
  font-family: var(--font-mono);
  font-size: 11.5px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 10px; display: block;
}

/* Casos de uso 4 col */
.svp-uses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 980px) { .svp-uses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svp-uses { grid-template-columns: 1fr; } }
.svp-use {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 200px;
}
.svp-use__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent-soft); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.svp-use__icon svg { width: 16px; height: 16px; }
.svp-use h4 {
  font-size: 16px; font-weight: 300; letter-spacing: -0.012em;
  margin: 0; color: var(--ink);
}
.svp-use p { font-size: 13.5px; line-height: 1.5; color: var(--muted-4); margin: 0; flex: 1; }

/* Stack de tecnologías de la página */
.svp-stack {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(24px, 5vw, 48px);
  margin-top: 36px;
}
.svp-stack img { height: 24px; width: auto; max-width: 130px; opacity: 0.7; filter: brightness(0); transition: opacity .3s var(--ease-soft); }
.svp-stack img:hover { opacity: 1; }

/* ============== Páginas legales (legal-*) ============== */
main.legal-page {
  padding: clamp(68px, 6vw, 88px) 0 clamp(72px, 9vw, 110px);
  background: var(--bg);
  color: var(--ink);
}
.legal-container {
  max-width: 760px; margin: 0 auto;
  padding-inline: var(--gutter);
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.65;
  color: var(--muted-4);
}
.legal-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--muted-3);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.legal-title {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04; letter-spacing: -0.028em;
  font-weight: 300; color: var(--ink);
  margin: 0 0 18px;
}
.legal-subtitle {
  font-size: 18px; line-height: 1.5;
  color: var(--muted-4); margin: 0 0 18px;
  max-width: 60ch;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--muted-3);
  margin: 0 0 36px;
}
.legal-id {
  padding: 22px 24px; margin: 0 0 40px;
  background: var(--bg-cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
}
.legal-id__label {
  display: block;
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--muted-3); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.legal-id dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 20px; margin: 0;
  font-size: 14.5px;
}
.legal-id dt {
  font-family: var(--font-mono);
  font-size: 11.5px; color: var(--muted-3);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding-top: 2px;
}
.legal-id dd {
  margin: 0; color: var(--ink);
}
@media (max-width: 600px) {
  .legal-id dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-id dd { margin-bottom: 10px; }
}
.legal-section {
  margin: 0 0 44px;
}
.legal-section__title {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18; letter-spacing: -0.02em;
  font-weight: 400; color: var(--ink);
  margin: 0 0 14px;
}
.legal-container p { margin: 0 0 14px; }
.legal-container p:last-child { margin-bottom: 0; }
.legal-container ul,
.legal-container ol {
  margin: 0 0 14px; padding-left: 22px;
}
.legal-container ul li,
.legal-container ol li { margin-bottom: 8px; }
.legal-container a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.legal-container a:hover { background: var(--accent-soft); }
.legal-container strong { color: var(--ink); font-weight: 500; }
.legal-container code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--bg-cream);
  padding: 2px 6px; border-radius: 4px;
}
.legal-container table {
  width: 100%; border-collapse: collapse;
  margin: 0 0 24px; font-size: 14.5px;
}
.legal-container th,
.legal-container td {
  text-align: left; padding: 10px 12px;
  border-bottom: 1px solid var(--hairline);
}
.legal-container th {
  font-weight: 500; color: var(--ink);
  background: var(--bg-cream);
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em;
}
.legal-cta {
  margin-top: 56px; padding: 32px;
  background: var(--bg-cream);
  border-radius: var(--r-lg);
  text-align: center;
}
.legal-cta h3 {
  font-size: 20px; font-weight: 500; margin: 0 0 8px;
  color: var(--ink);
}
.legal-cta p {
  font-size: 14.5px; color: var(--muted-4);
  margin: 0 0 16px;
}

/* Mini CTA dentro de svp-use para casos con vídeo específico */
.svp-use__video {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding: 10px 12px;
  background: var(--accent-soft);
  color: var(--ink);
  border: 1px solid rgba(194,249,2,0.45);
  border-radius: 999px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  cursor: pointer;
  transition: background .25s var(--ease-soft), border-color .25s var(--ease-soft);
  align-self: flex-start;
}
.svp-use__video svg { width: 11px; height: 11px; }
.svp-use__video:hover { background: var(--accent); border-color: var(--accent); }

/* ============== Página /solicitar (asistente chat) ============== */
body.sol-page {
  background: var(--bg);
  overflow: hidden;
}
.sol-page .site-header,
.sol-page .nav-wrap,
.sol-page .cursor-glow,
.sol-page .footer { display: none !important; }

.sol-stage {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  background: var(--bg);
  z-index: 1; overflow: hidden;
}

/* Atmospheric lime glow */
.sol-stage::before {
  content: ''; position: absolute;
  width: 1100px; height: 1100px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(194,249,2,0.20), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: solOrbBreathe 6s var(--ease-soft) infinite;
}
.sol-stage.is-thinking::before {
  animation-duration: 1.8s;
}
@keyframes solOrbBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* Top bar minimal */
.sol-top {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  flex-shrink: 0;
}
.sol-top__brand img { height: 20px; width: auto; display: block; }
.sol-top__back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--bg);
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px var(--hairline);
  font-size: 13px; color: var(--muted-4);
  transition: color .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.sol-top__back:hover { color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.sol-top__back svg { width: 11px; height: 11px; }

/* Progress */
.sol-progress {
  position: relative; z-index: 2;
  padding: 0 28px 24px;
  flex-shrink: 0;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.sol-progress__track {
  height: 2px; background: var(--hairline);
  border-radius: 999px; overflow: hidden;
  margin-bottom: 14px;
}
.sol-progress__bar {
  height: 100%; background: var(--accent);
  border-radius: 999px;
  width: 0%;
  transition: width .8s var(--ease-soft);
}
.sol-progress__steps {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--muted-3);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.sol-progress__step { transition: color .35s var(--ease-soft); }
.sol-progress__step.is-active { color: var(--ink); }
.sol-progress__step.is-done   { color: var(--muted-4); }
@media (max-width: 640px) {
  .sol-progress__steps { font-size: 9.5px; gap: 6px; flex-wrap: wrap; }
}

/* Conversation thread */
.sol-conv {
  position: relative; z-index: 2;
  flex: 1; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center;
}
.sol-thread {
  flex: 1; overflow-y: auto; width: 100%;
  max-width: 760px;
  padding: 24px 28px 8px;
  scroll-behavior: smooth;
}
.sol-thread::-webkit-scrollbar { width: 6px; }
.sol-thread::-webkit-scrollbar-thumb { background: var(--hairline-strong); border-radius: 3px; }
.sol-thread__inner { display: flex; flex-direction: column; gap: 18px; }

/* Messages (chat.js construye .sol-msg + .sol-msg--user/--assistant + .sol-msg__avatar + .sol-msg__text) */
.sol-msg {
  display: flex; flex-direction: column;
  max-width: 78%; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease-soft), transform .4s var(--ease-soft);
}
.sol-msg.is-visible { opacity: 1; transform: translateY(0); }
.sol-msg--assistant { align-self: flex-start; }
.sol-msg--user      { align-self: flex-end; align-items: flex-end; }
.sol-msg__avatar {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--muted-3);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0 4px;
}
.sol-msg--assistant .sol-msg__avatar { color: var(--accent-ink); }
.sol-msg__text {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 15.5px; line-height: 1.5;
  color: var(--ink);
}
.sol-msg--assistant .sol-msg__text {
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(14,14,14,0.04), 0 8px 24px -12px rgba(14,14,14,0.12);
  border: 1px solid var(--hairline);
  border-top-left-radius: 6px;
}
.sol-msg--user .sol-msg__text {
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.sol-msg__text strong { font-weight: 500; background: linear-gradient(to top, var(--accent) 0.22em, transparent 0.22em); padding: 0 2px; }
.sol-msg--user .sol-msg__text strong { background: linear-gradient(to top, rgba(194,249,2,0.45) 0.22em, transparent 0.22em); }
.sol-msg__text a { color: inherit; border-bottom: 1px solid var(--accent); }

/* Quick replies */
.sol-quick {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px; padding-left: 4px;
  align-self: flex-start; max-width: 78%;
}
.sol-quick__btn {
  padding: 8px 14px;
  background: var(--bg); color: var(--ink);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 400;
  box-shadow: inset 0 0 0 1px var(--hairline-strong);
  cursor: pointer;
  transition: background .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.sol-quick__btn:hover { background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.sol-quick__btn:active { transform: scale(0.97); }

/* Composer */
.sol-composer {
  position: relative; z-index: 3;
  padding: 18px 28px 22px;
  flex-shrink: 0;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.sol-composer__inner {
  display: flex; align-items: flex-end; gap: 10px;
  background: var(--bg);
  border-radius: 22px;
  padding: 8px 8px 8px 18px;
  box-shadow:
    0 1px 2px rgba(14,14,14,0.04),
    0 10px 28px -12px rgba(14,14,14,0.15),
    inset 0 0 0 1px var(--hairline-strong);
}
.sol-input {
  flex: 1;
  border: 0; outline: 0; resize: none;
  background: transparent;
  font: 400 15.5px/1.5 var(--font-sans);
  color: var(--ink);
  padding: 10px 0;
  max-height: 200px;
  min-height: 24px;
}
.sol-input::placeholder { color: var(--muted-3); }
.sol-input:disabled { opacity: .5; cursor: not-allowed; }
.sol-send {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--accent); color: var(--ink);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease-soft), transform .25s var(--ease-soft);
}
.sol-send:hover { background: var(--accent-2); }
.sol-send:active { transform: scale(0.94); }
.sol-send:disabled { background: var(--muted-2); color: var(--muted-3); cursor: not-allowed; }
.sol-send svg { width: 16px; height: 16px; }

.sol-foot {
  text-align: center; margin: 14px 0 0;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted-3); letter-spacing: 0.04em;
}
.sol-foot a { color: var(--muted-4); border-bottom: 1px solid var(--hairline); }
.sol-foot a:hover { color: var(--ink); border-color: var(--ink); }

.sol-stage.is-closed .sol-composer { opacity: .5; pointer-events: none; }

/* Modal proceso (auto-open primera visita) */
.proceso-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-soft);
}
.proceso-modal[data-state="open"] { opacity: 1; pointer-events: auto; }
.proceso-modal__inner {
  position: relative;
  width: 100%; max-width: 1100px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform .4s var(--ease-soft);
}
.proceso-modal[data-state="open"] .proceso-modal__inner { transform: scale(1); }
.proceso-modal__video { width: 100%; height: 100%; display: block; }
.proceso-modal__play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; background: transparent;
  color: #fff; cursor: pointer;
  transition: opacity .3s var(--ease-soft);
}
.proceso-modal__inner.is-playing .proceso-modal__play { opacity: 0; pointer-events: none; }
.proceso-modal__circle {
  width: 84px; height: 84px;
  background: var(--accent); color: var(--ink);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(194,249,2,0.16);
  transition: transform .25s var(--ease-soft);
}
.proceso-modal__play:hover .proceso-modal__circle { transform: scale(1.08); }
.proceso-modal__label {
  font-family: var(--font-mono); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.proceso-modal__skip {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(10,10,10,0.6); color: #fff;
  border-radius: 999px; font-size: 12px;
  backdrop-filter: blur(10px);
  transition: background .25s var(--ease-soft);
  z-index: 3;
}
.proceso-modal__skip:hover { background: rgba(0,0,0,0.8); }
.proceso-modal__skip svg { width: 12px; height: 12px; }

.proceso-replay {
  position: fixed; bottom: 90px; right: 24px; z-index: 90;
  display: none; align-items: center; gap: 10px;
  padding: 10px 16px 10px 12px;
  background: var(--ink); color: #fff;
  border-radius: 999px; font-size: 12.5px; font-weight: 400;
  box-shadow: 0 10px 30px -10px rgba(14,14,14,0.4);
  transition: background .25s var(--ease-soft);
}
.proceso-replay.is-visible { display: inline-flex; }
.proceso-replay:hover { background: var(--ink-2); }
.proceso-replay__icon {
  width: 22px; height: 22px;
  background: var(--accent); color: var(--ink);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}

@media (max-width: 640px) {
  .sol-top, .sol-progress, .sol-thread, .sol-composer { padding-left: 18px; padding-right: 18px; }
  .sol-bubble { max-width: 88%; font-size: 15px; }
  .proceso-replay { bottom: 78px; right: 14px; }
}

  /* ── Página de contacto / reserva de auditoría ───────────────────────── */
  .contact { padding-top: clamp(110px, 13vh, 160px); }
  .contact__hero { padding: 0 0 clamp(30px, 4vw, 52px); }
  .contact__h1 {
    font-size: clamp(30px, 4vw, 46px); font-weight: 300;
    line-height: 1.08; letter-spacing: -0.028em; margin: 18px 0 0; color: var(--ink);
    max-width: 20ch;
  }
  .contact__h1 .accent { color: var(--ink); font-weight: 500; }
  .contact__sub {
    margin: 20px 0 0; max-width: 52ch;
    font-size: clamp(16px, 1.4vw, 18px); line-height: 1.55; color: var(--muted-4);
  }
  .contact__body { padding: 0 0 clamp(64px, 9vw, 120px); }
  .contact__grid {
    display: grid; grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(30px, 5vw, 72px); align-items: start;
  }

  .contact__aside { display: flex; flex-direction: column; gap: 26px; }
  .contact__aside-block { display: flex; flex-direction: column; gap: 6px; }
  .contact__label {
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-3);
  }
  .contact__email, .contact__phone {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 500; color: var(--ink);
    letter-spacing: -0.01em; width: fit-content; transition: color .25s var(--ease-soft);
  }
  .contact__email:hover, .contact__phone:hover { color: var(--accent-ink); }
  .contact__expect {
    list-style: none; margin: 6px 0 0; padding: 24px 0 0;
    border-top: 1px solid var(--hairline); display: grid; gap: 16px;
  }
  .contact__expect li { display: flex; gap: 13px; font-size: 14px; line-height: 1.5; color: var(--muted-4); }
  .contact__expect-n {
    font-family: var(--font-mono); font-size: 11px; font-weight: 600;
    color: var(--accent-ink); background: var(--accent-soft); border-radius: 999px;
    padding: 2px 8px; height: fit-content;
  }

  .contact__form, .contact__success {
    background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-xl);
    padding: clamp(24px, 3.5vw, 40px);
    box-shadow:
      0 1px 2px rgba(14,14,14,0.05),
      0 8px 20px -8px rgba(14,14,14,0.1),
      0 30px 80px -20px rgba(14,14,14,0.22);
  }
  .contact__form-title { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 22px; }
  .contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
  .field label, .field__legend { font-size: 13px; font-weight: 500; color: var(--ink); }
  .field__opt { color: var(--muted-3); font-weight: 400; }
  .field input, .field textarea {
    font: inherit; font-size: 15px; color: var(--ink); background: var(--bg-soft);
    border: 1px solid var(--hairline-strong); border-radius: 12px; padding: 12px 14px; width: 100%;
    outline: none; transition: border-color .2s var(--ease-soft), background .2s var(--ease-soft);
  }
  .field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
  .field input:focus, .field textarea:focus { border-color: var(--ink); background: var(--bg); }
  .field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #d23b3b; background: #fff7f7; }
  .field__err { font-size: 12.5px; color: #c0392b; }

  .contact__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 3px; }
  .contact__chip { position: relative; cursor: pointer; }
  .contact__chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
  .contact__chip span {
    display: inline-block; padding: 9px 15px; border-radius: 999px; font-size: 13.5px;
    background: var(--bg-soft); border: 1px solid var(--hairline-strong); color: var(--muted-4);
    transition: background .2s var(--ease-soft), border-color .2s var(--ease-soft), color .2s var(--ease-soft);
  }
  .contact__chip input:checked + span { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); font-weight: 500; }
  .contact__chip input:focus-visible + span { box-shadow: 0 0 0 3px var(--accent-soft); }

  .contact__submit { width: 100%; justify-content: center; margin-top: 8px; }
  .contact__form-note { margin: 14px 0 0; font-size: 12.5px; color: var(--muted-3); text-align: center; }
  .contact__form-error {
    margin: 0 0 18px; padding: 12px 14px; border-radius: 12px;
    background: #fdecec; color: #a01e1e; border: 1px solid #f3c4c4; font-size: 13.5px; line-height: 1.45;
  }

  .contact__success { text-align: center; }
  .contact__success-mark {
    width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%;
    background: var(--accent); color: var(--accent-ink); display: grid; place-items: center;
  }
  .contact__success-mark svg { width: 28px; height: 28px; }
  .contact__success h2 { font-size: 1.5rem; font-weight: 600; margin: 0 0 10px; }
  .contact__success p { color: var(--muted-4); line-height: 1.6; margin: 0 auto 22px; max-width: 42ch; }

  @media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; gap: 36px; } }
  @media (max-width: 520px) { .contact__row { grid-template-columns: 1fr; gap: 0; } }

  /* ── /contacto · nota de promo (ref=bilbao-centro) ───────────────────── */
  .contact__offer {
    display: flex; align-items: center; gap: 9px;
    margin: 0 0 18px; padding: 11px 14px; border-radius: 12px;
    background: var(--accent-soft); color: var(--accent-ink);
    font-size: 13.5px; font-weight: 600; line-height: 1.4;
  }
  .contact__offer-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px rgba(194,249,2,0.25); flex-shrink: 0; }

  /* ══ Landing campaña Bilbao (/bilbao) ════════════════════════════════════ */
  .bz-head {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hairline);
  }
  .bz-head__in { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
  .bz-head__logo img { height: 22px; width: auto; display: block; }
  .bz-head__right { display: flex; align-items: center; gap: 18px; }
  .bz-head__tel { font-family: var(--font-mono); font-size: 13px; color: var(--ink); font-weight: 500; }
  @media (max-width: 560px) { .bz-head__tel { display: none; } }

  .bz-hero { padding: clamp(48px, 8vw, 90px) 0 clamp(40px, 6vw, 70px); }
  .bz-hero__in { max-width: 880px; }
  .bz-hero__h1 {
    font-size: clamp(32px, 5.2vw, 54px); font-weight: 300; line-height: 1.05;
    letter-spacing: -0.03em; margin: 18px 0 0; color: var(--ink); max-width: 17ch;
  }
  .bz-hero__h1 .accent { color: var(--ink); font-weight: 500; }
  .bz-hero__sub { margin: 22px 0 0; max-width: 56ch; font-size: clamp(16px, 1.5vw, 18.5px); line-height: 1.55; color: var(--muted-4); }
  .bz-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 0; }
  .bz-hero__badge {
    display: inline-flex; flex-direction: column; gap: 2px;
    margin: 30px 0 0; padding: 14px 20px; border-radius: var(--r-lg);
    background: var(--accent-soft); border: 1px solid rgba(194,249,2,0.4);
  }
  .bz-hero__badge strong { font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
  .bz-hero__badge span { font-size: 13px; color: var(--muted-4); }

  /* Banda oferta (oscura) */
  .bz-offer { background: var(--ink); color: #fff; }
  .bz-offer__in { display: flex; align-items: center; gap: clamp(20px, 4vw, 48px); padding: clamp(32px, 4vw, 48px) 0; flex-wrap: wrap; }
  .bz-offer__big { font-size: clamp(48px, 8vw, 90px); font-weight: 300; letter-spacing: -0.04em; color: var(--accent); line-height: 1; flex-shrink: 0; }
  .bz-offer__txt { flex: 1; min-width: 260px; }
  .bz-offer__txt h2 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; margin: 0 0 8px; letter-spacing: -0.02em; }
  .bz-offer__txt p { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.72); max-width: 60ch; }
  .bz-offer__txt strong { color: #fff; }
  .bz-offer .btn--accent { flex-shrink: 0; }

  .bz-services, .bz-why, .bz-for { padding: clamp(56px, 8vw, 100px) 0; }
  .bz-pricing { padding: clamp(56px, 8vw, 100px) 0; background: var(--bg-cream); }

  .bz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bz-card {
    background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-xl);
    padding: clamp(24px, 2.6vw, 34px);
    box-shadow: 0 1px 2px rgba(14,14,14,0.03), 0 16px 40px -28px rgba(14,14,14,0.16);
  }
  .bz-card__n { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--accent-ink); background: var(--accent-soft); border-radius: 999px; padding: 3px 10px; }
  .bz-card h3 { font-size: 19px; font-weight: 500; letter-spacing: -0.015em; margin: 16px 0 8px; }
  .bz-card p { font-size: 14.5px; line-height: 1.55; color: var(--muted-4); margin: 0; }
  .bz-card--accent { background: var(--accent-soft); border-color: rgba(194,249,2,0.4); }

  .bz-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
  .bz-price {
    position: relative; background: var(--bg); border: 1px solid var(--hairline-strong); border-radius: var(--r-xl);
    padding: clamp(24px, 2.6vw, 32px); display: flex; flex-direction: column;
  }
  .bz-price--feat { border-color: var(--ink); box-shadow: 0 20px 50px -28px rgba(14,14,14,0.4); }
  .bz-price__tag { position: absolute; top: -11px; left: 24px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-ink); background: var(--accent); padding: 3px 10px; border-radius: 999px; }
  .bz-price h3 { font-size: 16px; font-weight: 500; color: var(--muted-4); margin: 0 0 10px; }
  .bz-price__num { font-size: 15px; color: var(--muted-3); margin: 0 0 12px; }
  .bz-price__num strong { font-size: clamp(30px, 3.4vw, 40px); font-weight: 300; color: var(--ink); letter-spacing: -0.03em; display: block; }
  .bz-price p { font-size: 14px; line-height: 1.5; color: var(--muted-4); margin: 0; }
  .bz-price-note { text-align: center; margin: 26px auto 0; max-width: 56ch; font-size: 13.5px; color: var(--muted-3); line-height: 1.5; }

  .bz-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 36px); }
  .bz-why__item h4 { font-size: 16px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
  .bz-why__item p { font-size: 14px; line-height: 1.55; color: var(--muted-4); margin: 0; }

  .bz-chips { display: flex; flex-wrap: wrap; gap: 10px; }
  .bz-chip { padding: 10px 18px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--hairline-strong); font-size: 14.5px; color: var(--ink); }

  .bz-final { background: var(--ink); color: #fff; padding: clamp(56px, 8vw, 96px) 0; }
  .bz-final__in { text-align: center; max-width: 680px; margin: 0 auto; }
  .bz-final h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 300; letter-spacing: -0.025em; margin: 0 0 16px; }
  .bz-final p { font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,0.72); margin: 0 auto 28px; max-width: 52ch; }
  .bz-final__ctas { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: center; }
  .bz-final__tel { color: rgba(255,255,255,0.8); font-size: 15px; }
  .bz-final__tel strong { color: #fff; }

  @media (max-width: 760px) {
    .bz-grid, .bz-price-grid, .bz-why-grid { grid-template-columns: 1fr; }
    .bz-offer__in { flex-direction: column; align-items: flex-start; gap: 18px; }
  }
  @media (max-width: 980px) and (min-width: 761px) {
    .bz-why-grid { grid-template-columns: repeat(2, 1fr); }
  }
