    /* ── Variables ─────────────────────────────── */
    :root {
      /* AuditScale brand palette */
      --as-blue-deep:   #0D1F6B;
      --as-blue-logo:   #1E40B0;
      --as-blue-light:  #EBF0FF;
      --as-orange:      #F07820;
      --as-orange-warm: #F5A040;
      --as-cream:       #FDD09A;

      /* Aliases legacy → mapeados a la paleta nueva */
      --bg:           #f7f5f0;
      --white:        #ffffff;
      --ink:          #0c0b0a;
      --ink-2:        #6b6866;
      --ink-3:        #aaa8a5;
      --border:       rgba(0, 0, 0, 0.14);
      --border-dark:  rgba(0, 0, 0, 0.22);
      --gold:         var(--as-orange);
      --gold-light:   rgba(240,120,32,0.10);
      --red-light:    rgba(240,120,32,0.08);
      --teal-light:   rgba(30,64,176,0.08);
      --r-card:       16px;
      --r-pill:       9999px;
      --sh-card:      0 2px 8px rgba(13,31,107,0.06), 0 0 0 1px rgba(13,31,107,0.08);
      --sh-hover:     0 8px 32px rgba(13,31,107,0.12), 0 0 0 1px rgba(13,31,107,0.10);
      --sh-float:     0 4px 20px rgba(13,31,107,0.10), 0 0 0 1px rgba(13,31,107,0.08);
    }

    /* ── Reset ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background-color: #F9FAFB;
      background-image: radial-gradient(#E5E7EB 1px, transparent 1px);
      background-size: 24px 24px;
      color: #111111;
      font-family: 'Inter', system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      position: relative;
    }
    ::selection { background: rgba(30,64,176,0.18); }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: #F9FAFB; }
    ::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 3px; }

    /* ── Nav (minimal, solo logo) ───────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 14px 28px;
      display: flex; align-items: center;
      background: transparent;
      border: none;
      box-shadow: none;
    }
    .nav-logo {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 14px 7px 10px;
      background: rgba(255, 255, 255, 0.72);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 100px;
      box-shadow: 0 1px 2px rgba(13, 31, 107, 0.06),
                  0 8px 24px rgba(13, 31, 107, 0.04);
      font-size: 1rem; font-weight: 700; letter-spacing: -0.03em;
      color: #0a0a0a; text-decoration: none;
      transition: background 0.3s ease, border-color 0.3s ease;
    }
    .nav-logo:hover {
      background: rgba(255, 255, 255, 0.88);
      border-color: rgba(255, 255, 255, 0.7);
    }
    .nav-logo-mark {
      width: 22px; height: 18px;
      flex-shrink: 0;
    }
    .nav-logo-text {
      letter-spacing: -0.02em;
    }

    /* ── Buttons (CTA system unificado) ─────────── */
    .btn-primary,
    .btn-dark,
    .btn-dark-lg {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 32px;
      background: #1E40B0; color: #FFFFFF;
      font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.02em;
      border: none; border-radius: 12px; cursor: pointer;
      text-decoration: none; white-space: nowrap;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .btn-primary:hover,
    .btn-dark:hover,
    .btn-dark-lg:hover {
      background: #0D1F6B;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(13,31,107,0.22);
    }

    .btn-ghost,
    .btn-ghost-lg {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 28px;
      background: transparent; color: #111111;
      font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.01em;
      border: 1px solid rgba(0,0,0,0.12); border-radius: 12px; cursor: pointer;
      text-decoration: none; white-space: nowrap;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .btn-ghost:hover,
    .btn-ghost-lg:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.2); }

    /* ── Number font (Apple / Revolut style) ───── */
    /* ui-sans-serif = SF Pro en Mac/iOS (exacto Apple).
       Instrument Sans como fallback Google Font para Windows/Android.
       tabular-nums: todos los dígitos mismo ancho (Revolut).
       lining-nums: números en línea, no con ascendentes/descendentes. */
    .n {
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont,
                   'Instrument Sans', 'Inter', sans-serif;
      font-variant-numeric: tabular-nums lining-nums;
      font-feature-settings: "tnum" 1, "lnum" 1;
    }

    /* ── Floating stat cards ────────────────────── */
    .float-wrapper {
      position: absolute;
      transform: translate(var(--mx, 0px), var(--my, 0px));
      will-change: transform;
      pointer-events: none;
      user-select: none;
    }
    .float-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: var(--sh-float);
      padding: 13px 18px;
      white-space: nowrap;
      animation: floatCard var(--dur, 7s) ease-in-out infinite var(--delay, 0s);
    }
    .fc-label {
      font-size: 0.625rem; font-weight: 600; color: var(--ink-3);
      letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 3px;
    }
    .fc-val {
      font-size: 0.9375rem; font-weight: 700; color: var(--ink);
      letter-spacing: -0.02em;
    }
    .fc-val.red  { color: #F07820; }
    .fc-val.gold { color: var(--gold); }
    .fc-val.green{ color: #1E40B0; }

    @keyframes floatCard {
      0%, 100% { transform: rotate(var(--rot, 0deg)) translateY(0px); }
      50%       { transform: rotate(var(--rot, 0deg)) translateY(var(--rise, -14px)); }
    }

    /* Hide on small screens */
    @media (max-width: 960px) { .float-wrapper { display: none; } }

    /* ── Hero ───────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 130px 24px 80px;
      overflow: hidden;
    }
    .hero-center { position: relative; z-index: 10; max-width: 740px; width: 100%; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 16px;
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r-pill);
      font-size: 0.75rem; font-weight: 500; color: var(--ink-2);
      box-shadow: var(--sh-card); letter-spacing: 0.01em;
      margin-bottom: 36px;
    }
    .eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
    }

    .hero-orient {
      font-size: 0.9375rem; color: var(--ink-3);
      margin-bottom: 10px; line-height: 1.5;
    }

    .hero-num {
      font-size: clamp(4.5rem, 13vw, 10.5rem);
      font-weight: 900; letter-spacing: -0.055em; line-height: 0.88;
      color: var(--ink); margin-bottom: 28px;
    }

    .hero-sub {
      font-size: clamp(1.0625rem, 2vw, 1.25rem);
      font-weight: 400; color: var(--ink-2);
      max-width: 40ch; margin: 0 auto 10px; line-height: 1.55;
    }

    .hero-reframe {
      font-size: 0.8125rem; color: var(--ink-3);
      font-style: italic; margin-bottom: 40px;
    }

    .hero-ctas {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; flex-wrap: wrap; margin-bottom: 56px;
    }

    .hero-stats {
      display: flex; align-items: stretch; justify-content: center;
      flex-wrap: wrap; gap: 0;
    }
    .hero-stat {
      padding: 0 32px; text-align: center;
      border-right: 1px solid var(--border);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-val {
      font-size: 1.375rem; font-weight: 800; letter-spacing: -0.04em; color: var(--ink);
    }
    .hero-stat-lbl {
      font-size: 0.6875rem; color: var(--ink-3); margin-top: 2px;
    }
    @media (max-width: 520px) {
      .hero-stat { border-right: none; padding: 8px 0; }
    }

    /* ── Hero enter animations ──────────────────── */
    .h1 { opacity:0; animation: hUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.1s  forwards; }
    .h2 { opacity:0; animation: hUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.22s forwards; }
    .h3 { opacity:0; animation: hUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.38s forwards; }
    .h4 { opacity:0; animation: hUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.52s forwards; }
    .h5 { opacity:0; animation: hUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.64s forwards; }
    .h6 { opacity:0; animation: hIn  0.7s ease                        0.78s forwards; }
    .h7 { opacity:0; animation: hIn  0.7s ease                        0.88s forwards; }

    @keyframes hUp {
      from { opacity:0; transform: translateY(24px); }
      to   { opacity:1; transform: translateY(0); }
    }
    @keyframes hIn {
      from { opacity:0; } to { opacity:1; }
    }
    @keyframes aurora {
      from { background-position: 50% 50%; }
      to   { background-position: 350% 50%; }
    }

    /* ── Aurora hero glow ───────────────────────── */
    .hero-aurora {
      position: absolute;
      inset: -10px;
      background: repeating-linear-gradient(
        100deg,
        #FDD09A 10%,
        #FDD09A 15%,
        #1E40B0 20%,
        #EBF0FF 25%,
        #F07820 30%,
        #FDD09A 40%,
        #FDD09A 45%
      );
      background-size: 300%;
      background-position: 50% 50%;
      filter: blur(55px);
      opacity: 0.28;
      pointer-events: none;
      will-change: background-position;
      -webkit-mask-image: radial-gradient(ellipse at 88% 4%, black 0%, transparent 62%);
      mask-image:         radial-gradient(ellipse at 88% 4%, black 0%, transparent 62%);
      animation: aurora 60s linear infinite;
      z-index: 0;
    }

    /* ── Section divider ────────────────────────── */
    .divider { height:1px; background: var(--border); border:none; position: relative; z-index: 1; }

    /* ── Section layout ─────────────────────────── */
    .section { padding: 100px 24px; position: relative; z-index: 1; }
    .section-inner { max-width: 960px; margin: 0 auto; }
    .section-inner-sm { max-width: 720px; margin: 0 auto; }
    .section-inner-xs { max-width: 560px; margin: 0 auto; }

    /* ── Section statement (Cosmos-style big text) ─ */
    .statement {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 800; letter-spacing: -0.045em; line-height: 1.04;
      color: var(--ink); text-align: center;
    }
    .statement em { font-style: italic; font-weight: 600; color: var(--ink-2); }

    /* ── Dot grid global + spotlight de cursor ─── */
    .page-dots, .page-spot {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .page-dots {
      background-image: radial-gradient(circle, rgba(12,11,10,0.16) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: 0.55;
    }
    .page-spot {
      background-image: radial-gradient(circle, #F07820 1.4px, transparent 1.4px);
      background-size: 18px 18px;
      -webkit-mask-image: radial-gradient(220px circle at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
              mask-image: radial-gradient(220px circle at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
    }

    /* Highlight animado sobre texto */
    .highlight-text {
      display: inline;
      padding: 2px 8px;
      border-radius: 8px;
      background-image: linear-gradient(to right, #FDD09A, #F5A040);
      background-repeat: no-repeat;
      background-position: left center;
      background-size: 0% 100%;
      transition: background-size 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
      color: inherit;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }
    .highlight-text.is-active { background-size: 100% 100%; }

    /* ── Aurora global (hero → pricing) ─────────── */
    #aurora-track {
      position: absolute;
      top: 0; left: 0; right: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    #aurora-bg {
      position: sticky;
      top: 0;
      width: 100%;
      height: 100vh;
      background: repeating-linear-gradient(
        100deg,
        #FDD09A 10%, #FDD09A 15%, #1E40B0 20%,
        #EBF0FF 25%, #F07820 30%, #FDD09A 40%, #FDD09A 45%
      );
      background-size: 400%;
      background-position: 50% 50%;
      filter: blur(60px);
      opacity: 0;
      will-change: background-position, opacity;
      -webkit-mask-image: radial-gradient(ellipse 130% 90% at 75% 10%, black 0%, rgba(0,0,0,0.6) 40%, transparent 72%);
      mask-image:         radial-gradient(ellipse 130% 90% at 75% 10%, black 0%, rgba(0,0,0,0.6) 40%, transparent 72%);
      animation: aurora 80s linear infinite;
      transition: opacity 0.9s ease;
    }

    /* ── Feature cards (patterns) ───────────────── */
    .feature-card {
      background: var(--white);
      border: 1px solid var(--border); border-radius: var(--r-card);
      box-shadow: var(--sh-card); padding: 28px 28px 32px;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    .feature-card:hover { box-shadow: var(--sh-hover); transform: translateY(-3px); }
    .fc-icon {
      width: 40px; height: 40px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.125rem; margin-bottom: 18px;
    }
    .fc-title {
      font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.025em;
      color: var(--ink); margin-bottom: 8px;
    }
    .fc-body { font-size: 0.875rem; line-height: 1.7; color: var(--ink-2); }

    /* ── Process ────────────────────────────────── */
    .process-step { position:relative; padding-left: 52px; }
    .process-step::before {
      content: attr(data-step);
      position: absolute; left: 0; top: 2px;
      width: 34px; height: 34px; border-radius: 50%;
      border: 1.5px solid var(--border-dark);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; color: var(--ink-2);
      background: var(--white);
    }
    .process-step:not(:last-child)::after {
      content: '';
      position: absolute; left: 16px; top: 40px; bottom: -24px;
      width: 1px;
      background: linear-gradient(to bottom, var(--border-dark), transparent);
    }
    .ps-week {
      font-size: 0.6875rem; font-weight: 600; color: var(--ink-3);
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px;
    }
    .ps-title {
      font-size: 1rem; font-weight: 700; letter-spacing: -0.02em;
      color: var(--ink); margin-bottom: 6px;
    }
    .ps-body { font-size: 0.875rem; line-height: 1.65; color: var(--ink-2); }

    /* ── Guarantee card (modal version, light) ──── */
    .guarantee-card {
      background: #FFFFFF;
      border: 2px solid #84E1BC;
      border-radius: var(--r-card);
      padding: 56px 48px; text-align: center;
      position: relative;
      transform: translateY(20px);
      transition: all 0.4s ease;
      max-width: 800px;
      width: 90%;
      box-shadow: 0 24px 48px rgba(0, 20, 10, 0.15);
    }
    .modal-overlay.active .guarantee-card { transform: translateY(0); }
    .gc-eyebrow {
      font-size: 0.625rem; font-weight: 700; color: #0D1F6B;
      letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
    }
    .gc-title {
      font-size: clamp(1.5rem, 3.5vw, 2.25rem);
      font-weight: 800; letter-spacing: -0.04em; line-height: 1.12;
      color: #111111; margin-bottom: 14px;
    }
    .gc-sub {
      font-size: 0.9375rem; color: #52525B;
      line-height: 1.65; max-width: 42ch; margin: 0 auto 20px;
    }
    .gc-line {
      font-size: 1rem; font-weight: 700; color: #0D1F6B;
      letter-spacing: -0.01em;
    }

    /* Modal Overlay */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      padding: 24px;
    }
    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .close-modal {
      position: absolute;
      top: 24px; right: 24px;
      background: transparent;
      border: none;
      color: #52525B;
      font-size: 1.5rem;
      cursor: pointer;
      transition: color 0.2s ease;
      line-height: 1;
      padding: 4px 8px;
      font-family: inherit;
    }
    .close-modal:hover { color: #0D1F6B; }

    /* Guarantee trigger (bento card 0€ riesgo) */
    .guarantee-trigger {
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .guarantee-trigger:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      border-color: #84E1BC;
    }
    .guarantee-trigger:focus-visible {
      outline: 2px solid #84E1BC;
      outline-offset: 4px;
    }
    .guarantee-hint {
      position: absolute;
      bottom: 12px; right: 16px;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: #9CA3AF;
      opacity: 0.7;
      transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
      pointer-events: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .guarantee-trigger:hover .guarantee-hint {
      opacity: 1;
      color: #0D1F6B;
      transform: translate(-2px, -2px);
    }

    /* ── Case card ──────────────────────────────── */
    .case-card {
      background: var(--white);
      border: 1px solid var(--border); border-radius: var(--r-card);
      box-shadow: var(--sh-card); padding: 40px 40px 44px;
    }
    .case-num {
      font-size: clamp(2.5rem, 7vw, 4.5rem);
      font-weight: 900; letter-spacing: -0.05em; line-height: 1; color: var(--ink);
      margin-bottom: 4px;
    }
    .case-lbl { font-size: 0.8125rem; color: var(--ink-3); margin-bottom: 28px; }
    .case-body {
      font-size: 0.9375rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 28px;
    }
    .case-quote {
      font-size: 1.0625rem; font-style: italic; color: var(--ink);
      line-height: 1.6; margin-bottom: 10px;
      padding-left: 22px; border-left: 2px solid var(--gold);
    }
    .case-cite { font-size: 0.8125rem; color: var(--ink-3); padding-left: 22px; }

    /* ── Pricing card ───────────────────────────── */
    .pricing-card {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border); border-radius: var(--r-card);
      box-shadow: var(--sh-card); overflow: hidden;
      display: flex; flex-direction: column;
    }
    @media (min-width: 768px) { .pricing-card { flex-direction: row; } }

    /* ── Border Beam (sistema unificado, vars overrideables) ──
       Variables expuestas:
         --bb-duration:     velocidad del recorrido (default 8s)
         --bb-light-width:  diámetro del haz de luz (default 200px)
         --bb-light-color:  color del haz (default #FAFAFA)
         --bb-border-width: grosor del borde y ring estático (default 1px)
         --bb-track-color:  color del ring estático bajo el haz */
    .border-beam {
      --bb-duration:     8s;
      --bb-light-width:  200px;
      --bb-light-color:  #FAFAFA;
      --bb-border-width: 1px;
      --bb-track-color:  rgba(0, 0, 0, 0.10);

      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      border-radius: inherit;
      border: var(--bb-border-width) solid transparent;
      /* Recorta la luz al ring del borde (replica `mask-composite: intersect`
         del componente React vía `exclude` — más compatible cross-browser) */
      -webkit-mask:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(#000, #000);
      -webkit-mask-composite: xor;
              mask:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(#000, #000);
              mask-composite: exclude;
    }

    /* Track estático sutil (replica `before:border-black/10` del componente) */
    .border-beam::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      border-radius: inherit;
      border: var(--bb-border-width) solid var(--bb-track-color);
      pointer-events: none;
    }

    .border-beam-light {
      position: absolute;
      top: 0; left: 0;
      width: var(--bb-light-width);
      aspect-ratio: 1;
      background: radial-gradient(
        ellipse at center,
        var(--bb-light-color) 0%,
        transparent 60%,
        transparent 100%
      );
      offset-path: var(--beam-path);
      offset-anchor: center;
      offset-distance: 0%;
      animation: beamTravel var(--bb-duration) linear infinite;
      will-change: offset-distance;
    }
    @keyframes beamTravel {
      from { offset-distance: 0%; }
      to   { offset-distance: 100%; }
    }

    /* Override por contexto: pricing card mantiene el púrpura premium */
    .pricing-card .border-beam {
      --bb-light-color:  #1E40B0;
      --bb-light-width:  280px;
      --bb-duration:     8s;
      --bb-border-width: 1.5px;
      --bb-track-color:  transparent;
    }

    .pc-left {
      padding: 44px 40px;
      display: flex; flex-direction: column; justify-content: space-between;
      gap: 32px;
    }
    @media (min-width: 768px) { .pc-left { width: 40%; } }

    .pc-right {
      background: rgba(0,0,0,0.025);
      border-top: 1px solid var(--border);
      padding: 44px 40px;
    }
    @media (min-width: 768px) {
      .pc-right { width: 60%; border-top: none; border-left: 1px solid var(--border); }
    }

    .pc-eyebrow {
      font-size: 0.625rem; font-weight: 600; color: var(--ink-3);
      letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
    }
    .pc-title {
      font-size: clamp(1.5rem, 3.5vw, 2.25rem);
      font-weight: 800; letter-spacing: -0.04em; line-height: 1.12;
      color: var(--ink); margin-bottom: 8px;
    }
    .pc-desc {
      font-size: 0.9375rem; color: var(--ink-2); line-height: 1.6; margin-bottom: 28px;
    }
    .pc-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
    .pc-num {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 900; letter-spacing: -0.055em; line-height: 0.95; color: var(--ink);
    }
    .pc-sub { font-size: 0.8125rem; color: var(--ink-3); margin-top: 4px; margin-bottom: 32px; }

    .pc-group-title {
      font-size: 0.6875rem; font-weight: 700; color: var(--ink);
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
    }
    .pc-items {
      display: grid; grid-template-columns: 1fr; gap: 10px; list-style: none;
    }
    @media (min-width: 560px) { .pc-items { grid-template-columns: 1fr 1fr; } }
    .pc-item {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 0.875rem; color: var(--ink-2); line-height: 1.5;
    }
    .pc-check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .pc-separator { height: 1px; background: var(--border); margin: 24px 0; }

    /* ── Scroll reveals ─────────────────────────── */
    [data-reveal] {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
                  transform 0.75s cubic-bezier(0.16,1,0.3,1);
    }
    [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
    [data-reveal][data-d="1"] { transition-delay: 0.10s; }
    [data-reveal][data-d="2"] { transition-delay: 0.20s; }
    [data-reveal][data-d="3"] { transition-delay: 0.30s; }

    /* ── Testimonials ───────────────────────────── */
    .testi-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 768px) {
      .testi-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    .testi-dots {
      display: flex; align-items: center; gap: 10px;
      margin-top: 32px;
    }
    .testi-dot {
      height: 8px; border-radius: 99px;
      background: var(--border-dark);
      cursor: pointer; border: none; padding: 0;
      transition: width 0.35s ease, background 0.35s ease;
      width: 8px;
    }
    .testi-dot.active { width: 32px; background: var(--ink); }

    .testi-cards {
      position: relative;
      min-height: 340px;
    }
    .testi-card {
      position: absolute; inset: 0;
      background: var(--white);
      border: 1px solid var(--border); border-radius: var(--r-card);
      box-shadow: var(--sh-hover);
      padding: 32px;
      display: flex; flex-direction: column;
      opacity: 0;
      transform: translateX(48px) scale(0.97);
      transition: opacity 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }
    .testi-card.active {
      opacity: 1; transform: translateX(0) scale(1);
      pointer-events: auto;
    }

    .testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
    .testi-star { font-size: 1rem; color: #f5a623; line-height: 1; }

    .testi-quote {
      font-size: 1.0625rem; color: var(--ink); line-height: 1.65;
      flex: 1; margin-bottom: 24px;
      quotes: "\201C" "\201D";
    }
    .testi-quote::before { content: open-quote; }
    .testi-quote::after  { content: close-quote; }

    .testi-sep { height: 1px; background: var(--border); margin-bottom: 20px; }

    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid var(--border); object-fit: cover;
      flex-shrink: 0; background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 700; color: var(--ink-2);
      overflow: hidden;
    }
    .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testi-name {
      font-size: 0.9375rem; font-weight: 700;
      letter-spacing: -0.02em; color: var(--ink);
    }
    .testi-role { font-size: 0.8125rem; color: var(--ink-3); margin-top: 1px; }

    /* ── Responsive ─────────────────────────────── */
    @media (max-width: 640px) {
      .nav { padding: 16px 20px; }
      .section { padding: 72px 20px; }
      .case-card, .guarantee-card { padding: 28px 24px; }
      .pc-left, .pc-right { padding: 28px 24px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, .h1, .h2, .h3, .h4, .h5, .h6, .h7,
      [data-reveal], .float-card {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ── Floating Dock (Cristal Ámbar) ────────── */
    .floating-dock {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 10px;
      pointer-events: none;
    }
    .floating-dock > * { pointer-events: auto; }

    .dock-pill {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      padding: 6px;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(24px) saturate(150%);
      -webkit-backdrop-filter: blur(24px) saturate(150%);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 9999px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    }

    .dock-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .dock-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      padding: 8px 18px;
      border-radius: 9999px;
      font-size: 0.8125rem;
      font-weight: 500;
      letter-spacing: -0.005em;
      color: #52525B;
      text-decoration: none;
      transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
      white-space: nowrap;
    }
    .dock-links a:hover {
      background: rgba(0, 0, 0, 0.04);
      color: #111111;
    }
    .dock-links a.is-active,
    .dock-links a.is-active:hover {
      background: #FFFFFF;
      color: #111111;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .dock-badge {
      position: absolute;
      top: 6px; right: 6px;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #F07820;
      box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
    }

    .dock-orb {
      position: relative;
      overflow: hidden;
      width: 42px; height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(24px) saturate(150%);
      -webkit-backdrop-filter: blur(24px) saturate(150%);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      display: inline-flex; align-items: center; justify-content: center;
      color: #52525B;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease;
    }
    .dock-orb:hover {
      background: rgba(0, 0, 0, 0.04);
      color: #111111;
    }
    .dock-orb svg { width: 18px; height: 18px; position: relative; z-index: 2; }

    /* Border beam adaptado al dock (tonos claros, tamaño compacto) */
    .dock-pill .border-beam,
    .dock-orb .border-beam {
      --bb-light-color:  rgba(255, 255, 255, 0.95);
      --bb-light-width:  60px;
      --bb-duration:     4s;
      --bb-border-width: 1px;
      --bb-track-color:  rgba(255, 255, 255, 0.18);
    }

    @media (max-width: 560px) {
      .dock-links a { padding: 7px 12px; font-size: 0.75rem; }
      .floating-dock { bottom: 16px; }
    }
    /* ── Tuxedo Hero (fondo transparente, fluye con dots del body) ── */
    .tx-hero {
      background: transparent;
      padding: 140px 16px 80px;
      min-height: calc(100vh - 40px);
      justify-content: flex-start;
    }

    /* Wrapper de contenido */
    .tx-content {
      position: relative;
      z-index: 10;
      max-width: none;
      width: 100%;
      margin: 0 auto;
      text-align: center;
      overflow: visible;
    }

    /* Eyebrow outline pill con chevron */
    .tx-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 20px;
      margin: 0 auto 20px;
      width: fit-content;
      background: linear-gradient(to top right,
        rgba(228,228,231,0.06),
        rgba(156,163,175,0.06),
        transparent);
      border: 2px solid rgba(209,213,219,0.45);
      border-radius: 1.5rem;
      font-size: 0.8125rem;
      color: #4B5563;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      animation: tx-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.1s both;
    }
    .tx-eyebrow svg {
      width: 16px; height: 16px;
      margin-left: 8px;
      transition: transform 0.3s ease;
    }
    .tx-eyebrow:hover svg { transform: translateX(4px); }

    /* H1 edge-to-edge masivo */
    .tx-h1 {
      padding-top: 12px;
      padding-bottom: 0.18em;
      width: 100%;
      max-width: 96vw;
      font-size: clamp(4rem, 11vw, 10rem);
      font-weight: 800;
      line-height: 0.9;
      letter-spacing: -0.05em;
      margin: 0 auto;
      overflow: visible;
      background: linear-gradient(180deg, #111111 18%, #71717A 95%);
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      opacity: 0;
      animation: tx-fade-in 1s cubic-bezier(0.22,1,0.36,1) 0.25s forwards;
    }

    /* Subtítulo (empujado hacia abajo con vacío negativo) */
    .tx-sub {
      margin: 12vh auto 0;
      font-size: clamp(1rem, 1.4vw, 1.1875rem);
      letter-spacing: -0.015em;
      color: #4B5563;
      text-wrap: balance;
      opacity: 0;
      animation: tx-fade-in 1s cubic-bezier(0.22,1,0.36,1) 0.45s forwards;
    }
    .tx-sub strong { color: #111111; font-weight: 700; }

    /* CTA Hero (sistema unificado) */
    .tx-cta {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 40px;
      padding: 16px 32px;
      background: #1E40B0;
      color: #FFFFFF;
      border-radius: 12px;
      font-size: 0.9375rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      position: relative;
      z-index: 20;
      opacity: 0;
      animation: tx-fade-in 1s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
    }
    .tx-cta:hover {
      background: #0D1F6B;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(13,31,107,0.22);
    }
    .tx-cta-arrow {
      width: 16px; height: 16px;
      animation: tx-arrow-bob 1.8s cubic-bezier(0.45,0.05,0.55,0.95) infinite;
    }

    /* ── Hero Trust Band (autoridad + prueba social) ── */
    .hero-trust {
      margin-top: 64px;
      opacity: 0;
      animation: tx-fade-in 1s cubic-bezier(0.22,1,0.36,1) 0.85s forwards;
    }
    .hero-trust-label {
      font-size: 0.75rem;
      color: #9CA3AF;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 500;
      margin: 0;
    }
    .hero-trust-logos {
      display: flex;
      gap: 32px;
      justify-content: center;
      align-items: center;
      margin-top: 16px;
      opacity: 0.5;
      filter: grayscale(100%);
      flex-wrap: wrap;
    }
    .trust-logo {
      font-size: 1.125rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: #111111;
      white-space: nowrap;
    }
    .trust-logo--serif {
      font-family: 'Instrument Sans', Georgia, serif;
      font-style: italic;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .trust-logo--condensed {
      font-weight: 800;
      letter-spacing: -0.05em;
      text-transform: uppercase;
      font-size: 1rem;
    }
    .trust-logo--mono {
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 600;
      letter-spacing: -0.03em;
      font-size: 1rem;
    }
    .trust-logo--accent {
      font-weight: 600;
    }
    .trust-logo--accent::before {
      content: '◆';
      margin-right: 6px;
      font-size: 0.7em;
      vertical-align: 0.15em;
    }
    @media (max-width: 600px) {
      .hero-trust-logos { gap: 22px; }
      .trust-logo { font-size: 0.9375rem; }
    }

    /* Keyframes */
    @keyframes tx-fade-in {
      0%   { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes tx-arrow-bob {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(3px); }
    }
      /* ── Bento layout (3×3 con tall+wide) ───────── */
      .bento-grid {
        display: grid;
        grid-template-columns: 1.18fr 1fr 1fr;
        grid-template-rows: repeat(3, minmax(140px, auto));
        gap: 18px;
      }
      .bento-tall      { grid-column: 1; grid-row: 1 / 4; }
      .bento-top-mid   { grid-column: 2; grid-row: 1; }
      .bento-top-right { grid-column: 3; grid-row: 1; }
      .bento-mid-mid   { grid-column: 2; grid-row: 2; }
      .bento-mid-right { grid-column: 3; grid-row: 2; }
      .bento-wide      { grid-column: 2 / 4; grid-row: 3; }

      .bento-card {
        position: relative;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-card);
        box-shadow: var(--sh-card);
        padding: 24px 26px 26px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
      }
      .bento-card:hover {
        box-shadow: var(--sh-hover);
        transform: translateY(-4px);
        border-color: var(--border-dark);
      }

      /* ── Entrance animation (spring, stagger) ───── */
      @keyframes bento-pop-in {
        0%   { opacity: 0; transform: translateY(44px) scale(0.9); }
        55%  { opacity: 1; transform: translateY(-10px) scale(1.03); }
        78%  { transform: translateY(3px) scale(0.992); }
        100% { opacity: 1; transform: translateY(0) scale(1); }
      }
      .bento-card[data-reveal] {
        opacity: 0; transform: translateY(44px) scale(0.9); transition: none;
      }
      .bento-card[data-reveal].is-visible {
        animation: bento-pop-in 0.95s cubic-bezier(0.34, 1.42, 0.5, 1) both;
      }
      .bento-card[data-reveal][data-d="1"].is-visible { animation-delay: 0.08s; }
      .bento-card[data-reveal][data-d="2"].is-visible { animation-delay: 0.20s; }
      .bento-card[data-reveal][data-d="3"].is-visible { animation-delay: 0.32s; }
      .bento-card[data-reveal][data-d="4"].is-visible { animation-delay: 0.44s; }
      .bento-card[data-reveal][data-d="5"].is-visible { animation-delay: 0.56s; }
      .bento-card[data-reveal][data-d="6"].is-visible { animation-delay: 0.68s; }

      /* ── Icons ─────────────────────────────────── */
      .bento-icon {
        width: 48px; height: 48px; border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 18px;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
      }
      .bento-icon svg { width: 24px; height: 24px; }
      .bento-card:hover .bento-icon {
        transform: scale(1.12) rotate(-4deg);
        box-shadow: 0 4px 14px rgba(0,0,0,0.08);
      }
      .bento-icon.red  { background: var(--red-light);  color: #F07820; }
      .bento-icon.teal { background: var(--teal-light); color: #1E40B0; }
      .bento-icon.gold { background: var(--gold-light); color: var(--gold); }

      /* ── Tall card footer (mirror del Configure+toggle) ── */
      .bento-tall-footer {
        margin-top: auto; padding-top: 26px;
        display: flex; align-items: center; justify-content: space-between;
        border-top: 1px solid var(--border);
      }
      .bento-pill-btn {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 8px 14px; background: transparent;
        border: 1px solid var(--border-dark); border-radius: var(--r-pill);
        font-family: inherit; font-size: 0.8125rem; font-weight: 500;
        color: var(--ink); cursor: pointer;
        text-decoration: none;
        transition: background 0.2s ease, border-color 0.2s ease;
      }
      .bento-pill-btn:hover { background: var(--bg); border-color: var(--ink-2); }
      .bento-pill-btn svg { width: 14px; height: 14px; }
      .bento-pulse {
        position: relative; width: 12px; height: 12px;
        border-radius: 50%; background: #F07820;
      }
      .bento-pulse::after {
        content: ''; position: absolute; inset: -4px; border-radius: 50%;
        background: #F07820; opacity: 0.45;
        animation: bento-pulse-ring 1.8s ease-out infinite;
      }
      @keyframes bento-pulse-ring {
        0%   { transform: scale(0.6); opacity: 0.5; }
        100% { transform: scale(2); opacity: 0; }
      }

      /* ── Erosión bars (mirror Trackers avatares) ─ */
      .bento-bars {
        margin-top: auto; padding-top: 16px;
        display: flex; align-items: flex-end; gap: 6px; height: 56px;
      }
      .bento-bars .bar {
        flex: 1; height: var(--h);
        background: linear-gradient(to top, rgba(30,64,176,0.18), rgba(30,64,176,0.65));
        border-radius: 4px 4px 0 0;
        position: relative;
        transition: transform 0.3s ease;
      }
      .bento-bars .bar::after {
        content: attr(data-y);
        position: absolute; bottom: -16px; left: 0; right: 0;
        text-align: center; font-size: 0.625rem; font-weight: 600;
        color: var(--ink-3); letter-spacing: 0.04em;
      }
      .bento-card:hover .bento-bars .bar { transform: translateY(-2px); }

      /* ── Alcance ledger pills ───────────────────── */
      .bento-scope {
        margin-top: auto;
        padding-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .scope-row {
        display: flex; align-items: center; gap: 8px;
        padding: 3px 9px 3px 6px;
        border-radius: 7px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .scope-row.paid {
        background: rgba(22,163,74,0.07);
        border: 1px solid rgba(22,163,74,0.20);
      }
      .scope-row.missing {
        background: rgba(184,146,42,0.06);
        border: 1px solid rgba(184,146,42,0.25);
      }
      .scope-check {
        width: 13px; height: 13px; flex-shrink: 0;
        display: inline-flex; align-items: center; justify-content: center;
        border-radius: 4px;
      }
      .scope-check svg { width: 8px; height: 8px; stroke-width: 3.2; }
      .scope-row.paid .scope-check { background: #1E40B0; color: var(--white); }
      .scope-row.missing .scope-check { background: var(--gold); color: var(--white); }

      .scope-line {
        flex: 1; height: 8px;
        position: relative;
      }
      .scope-line::before {
        content: '';
        position: absolute; inset: 50% 0 auto 0;
        height: 1.5px;
        background-image: linear-gradient(to right, currentColor 60%, transparent 60%);
        background-size: 7px 1.5px;
        background-repeat: repeat-x;
        transform: translateY(-50%);
      }
      .scope-row.paid .scope-line { color: rgba(22,163,74,0.55); }
      .scope-row.missing .scope-line { color: rgba(184,146,42,0.6); }

      /* Scanning highlight on the line */
      .scope-line::after {
        content: '';
        position: absolute;
        top: 50%; left: 0;
        width: 18px; height: 8px;
        transform: translate(-100%, -50%);
        background: radial-gradient(ellipse at center, currentColor 0%, transparent 70%);
        opacity: 0;
      }
      .bento-card.is-visible .scope-row .scope-line::after {
        animation: scope-scan 1.4s ease-in-out 1;
      }

      .scope-tag {
        min-width: 12px; text-align: center;
        font-size: 0.75rem; font-weight: 800; line-height: 1;
        flex-shrink: 0;
      }
      .scope-row.paid .scope-tag { color: #1E40B0; }
      .scope-row.missing .scope-tag { color: var(--gold); }

      /* Sequential entry animation */
      @keyframes scope-slide-in {
        0%   { opacity: 0; transform: translateX(-14px); }
        100% { opacity: 1; transform: translateX(0); }
      }
      @keyframes scope-scan {
        0%   { opacity: 0; transform: translate(-100%, -50%); }
        25%  { opacity: 0.9; }
        100% { opacity: 0; transform: translate(calc(100% + 18px), -50%); }
      }
      @keyframes scope-tag-pop {
        0%   { transform: scale(0.4); opacity: 0; }
        65%  { transform: scale(1.18); opacity: 1; }
        100% { transform: scale(1); opacity: 1; }
      }
      .bento-card .scope-row { opacity: 0; }
      .bento-card.is-visible .scope-row {
        animation: scope-slide-in 0.55s cubic-bezier(0.34, 1.42, 0.5, 1) both;
      }
      .bento-card.is-visible .scope-row:nth-child(1) { animation-delay: 0.95s; }
      .bento-card.is-visible .scope-row:nth-child(2) { animation-delay: 1.08s; }
      .bento-card.is-visible .scope-row:nth-child(3) { animation-delay: 1.21s; }
      .bento-card.is-visible .scope-row:nth-child(4) { animation-delay: 1.34s; }

      .bento-card.is-visible .scope-row:nth-child(1) .scope-line::after { animation-delay: 1.10s; }
      .bento-card.is-visible .scope-row:nth-child(2) .scope-line::after { animation-delay: 1.23s; }
      .bento-card.is-visible .scope-row:nth-child(3) .scope-line::after { animation-delay: 1.36s; }
      .bento-card.is-visible .scope-row:nth-child(4) .scope-line::after { animation-delay: 1.49s; }

      .bento-card.is-visible .scope-row .scope-tag {
        animation: scope-tag-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }
      .bento-card.is-visible .scope-row:nth-child(1) .scope-tag { animation-delay: 1.32s; }
      .bento-card.is-visible .scope-row:nth-child(2) .scope-tag { animation-delay: 1.45s; }
      .bento-card.is-visible .scope-row:nth-child(3) .scope-tag { animation-delay: 1.58s; }
      .bento-card.is-visible .scope-row:nth-child(4) .scope-tag { animation-delay: 1.71s; }

      .bento-card:hover .scope-row { transform: translateX(2px); }
      .bento-card:hover .scope-row:nth-child(2) { transition-delay: 0.04s; }
      .bento-card:hover .scope-row:nth-child(3) { transition-delay: 0.08s; }
      .bento-card:hover .scope-row:nth-child(4) { transition-delay: 0.12s; }

      /* ── Concentración: client distribution ──── */
      .bento-clients {
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .client-line {
        display: flex; flex-direction: column; gap: 5px;
      }
      .client-meta {
        display: flex; justify-content: space-between;
        align-items: baseline;
        font-size: 0.6875rem;
        font-weight: 600;
      }
      .client-name {
        color: var(--ink-3);
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }
      .client-pct {
        color: var(--ink-2);
        font-weight: 700;
        font-variant-numeric: tabular-nums;
      }
      .client-track {
        height: 6px;
        background: var(--border);
        border-radius: 3px;
        overflow: hidden;
      }
      .client-fill {
        display: block;
        height: 100%;
        width: var(--w);
        background: var(--ink-2);
        border-radius: 3px;
        transform-origin: left;
        transform: scaleX(0);
      }
      .client-line.dominant .client-name {
        color: #F07820;
        font-weight: 700;
      }
      .client-line.dominant .client-pct {
        color: #F07820;
        font-size: 0.9375rem;
        font-weight: 800;
        letter-spacing: -0.02em;
      }
      .client-line.dominant .client-track {
        height: 10px;
        border-radius: 5px;
        background: var(--red-light);
      }
      .client-line.dominant .client-fill {
        background: linear-gradient(90deg, #F07820 0%, #d84747 100%);
        box-shadow: 0 0 0 1px rgba(13,31,107,0.25);
      }

      @keyframes client-fill-grow {
        0%   { transform: scaleX(0); }
        100% { transform: scaleX(1); }
      }
      .bento-card.is-visible .client-fill {
        animation: client-fill-grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      .bento-card.is-visible .client-line:nth-child(1) .client-fill { animation-delay: 0.50s; }
      .bento-card.is-visible .client-line:nth-child(2) .client-fill { animation-delay: 0.65s; }
      .bento-card.is-visible .client-line:nth-child(3) .client-fill { animation-delay: 0.78s; }
      .bento-card.is-visible .client-line:nth-child(4) .client-fill { animation-delay: 0.91s; }
      .bento-card.is-visible .client-line:nth-child(5) .client-fill { animation-delay: 1.04s; }

      /* ── Stat 60 días (mirror 10X) ──────────────── */
      .bento-stat-big {
        align-items: center; justify-content: center;
        text-align: center; padding: 24px;
        background:
          radial-gradient(120% 90% at 100% 0%, rgba(184,146,42,0.05) 0%, transparent 55%),
          var(--white);
      }
      .bento-stat-big::before {
        content: ''; position: absolute; inset: 0;
        background-image: radial-gradient(rgba(0,0,0,0.18) 1px, transparent 1px);
        background-size: 18px 18px; opacity: 0.3;
        -webkit-mask-image: radial-gradient(ellipse 110% 110% at 50% 50%, black 0%, transparent 75%);
                mask-image: radial-gradient(ellipse 110% 110% at 50% 50%, black 0%, transparent 75%);
        pointer-events: none;
      }
      .bento-huge {
        position: relative;
        font-size: 5.25rem; font-weight: 800; letter-spacing: -0.05em;
        color: var(--ink); line-height: 0.95;
      }
      .bento-huge .suffix {
        font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em;
        color: var(--ink-2); margin-left: 4px;
      }
      .bento-huge-sub {
        position: relative; margin-top: 8px;
        font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em;
        text-transform: uppercase; color: var(--ink-3);
      }

      /* ── Stat 0€ riesgo (mirror 42% Focus) ─────── */
      .bento-stat-card {
        padding: 20px 22px;
        justify-content: center;
        gap: 10px;
      }
      .bento-stat-head {
        display: flex; justify-content: space-between; align-items: flex-start;
        gap: 12px;
      }
      .bento-stat-title {
        font-size: 0.95rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
      }
      .bento-stat-deck {
        font-size: 0.8125rem; color: var(--ink-3); margin-top: 2px;
      }
      .bento-badge-amber {
        display: inline-flex; align-items: center; gap: 6px;
        padding: 5px 11px; border-radius: var(--r-pill);
        background: rgba(184,146,42,0.10);
        border: 1px solid rgba(184,146,42,0.35);
        font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.04em;
        color: var(--gold); flex-shrink: 0;
      }
      .bento-num-42 {
        font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em;
        line-height: 1.25; margin: 0;
        padding-bottom: 4px;
        white-space: nowrap;
        background: linear-gradient(110deg, #1E40B0 0%, #22c55e 40%, #1E40B0 60%, #166534 100%);
        background-size: 220% 100%;
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent; color: transparent;
        animation: shimmer-text 4.5s ease-in-out infinite;
      }
      @keyframes shimmer-text {
        0%, 100% { background-position: 0% 50%; }
        50%      { background-position: 100% 50%; }
      }
      .bento-stat-foot {
        display: flex; justify-content: space-between;
        font-size: 0.6875rem; color: var(--ink-3);
        font-weight: 500;
      }

      /* ── Wide recap (mirror Shortcut Keys) ──────── */
      .bento-wide-content {
        display: flex; align-items: center; justify-content: space-between;
        gap: 24px; flex-wrap: wrap; height: 100%;
      }
      .bento-wide-content strong { color: var(--ink); font-weight: 700; }
      .bento-keys {
        display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
      }
      .bento-key {
        display: inline-flex; align-items: center;
        height: 30px; padding: 0 12px;
        background: var(--bg); border: 1px solid var(--border-dark);
        border-radius: 8px;
        font-size: 0.75rem; font-weight: 600;
        color: var(--ink); font-family: 'Inter', monospace;
        box-shadow: 0 2px 0 rgba(0,0,0,0.05), inset 0 -1px 0 rgba(0,0,0,0.04);
      }
      .bento-plus { font-size: 0.875rem; color: var(--ink-3); font-weight: 700; }

      /* ── Responsive ─────────────────────────────── */
      @media (max-width: 900px) {
        .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
        .bento-tall, .bento-top-mid, .bento-top-right,
        .bento-mid-mid, .bento-mid-right, .bento-wide {
          grid-column: 1; grid-row: auto;
        }
        .bento-huge { font-size: 4rem; }
        .bento-num-42 { font-size: 2.25rem; }
      }
      /* ── Process container alineado ──────────── */
      .proc-section-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        width: 100%;
      }
      .proc-headline {
        text-align: left;
        margin-bottom: 64px;
        width: 100%;
      }
      .proc-headline-statement {
        text-align: left !important;
        margin: 0;
      }
      .proc-headline-sub {
        font-size: 1rem;
        color: var(--ink-3);
        margin: 20px 0 0 0;
        max-width: none;
        text-align: left;
        white-space: nowrap;
      }

      /* ── Process Split-Screen Tabs ────────────── */
      .proc-tabs {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
      }
      .proc-tabs-grid {
        display: grid;
        grid-template-columns: 1fr;
        background: #FFFFFF;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04);
      }
      @media (min-width: 900px) {
        .proc-tabs-grid {
          grid-template-columns: 280px 1fr;
          gap: 24px;
          align-items: start;
        }
      }

      /* ── LEFT: pill navigation ───────────────── */
      .proc-tabs-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 24px;
        background: #FAFAFA;
      }
      @media (max-width: 899px) {
        .proc-tabs-nav {
          flex-direction: row;
          overflow-x: auto;
          padding: 16px;
          gap: 8px;
          border-bottom: 1px solid rgba(0,0,0,0.06);
          scrollbar-width: none;
        }
        .proc-tabs-nav::-webkit-scrollbar { display: none; }
      }

      .proc-tab {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 13px 20px;
        border-radius: 9999px;
        background: transparent;
        border: 1px solid rgba(0,0,0,0.08);
        color: #52525B;
        font-family: inherit;
        font-size: 0.875rem;
        font-weight: 500;
        letter-spacing: -0.005em;
        text-align: left;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.35s cubic-bezier(0.22,1,0.36,1),
                    border-color 0.35s cubic-bezier(0.22,1,0.36,1),
                    color 0.35s cubic-bezier(0.22,1,0.36,1);
      }
      .proc-tab:hover {
        border-color: rgba(0,0,0,0.2);
        color: #111111;
      }
      .proc-tab.is-active {
        background: #111111;
        color: #FFFFFF;
        border-color: #111111;
      }
      .proc-tab svg {
        width: 16px; height: 16px;
        flex-shrink: 0;
        opacity: 0.55;
        transition: opacity 0.3s ease;
      }
      .proc-tab.is-active svg { opacity: 1; }

      /* ── RIGHT: dynamic content card ──────────── */
      .proc-tabs-content {
        position: relative;
        padding: 40px 48px;
        display: grid;
        grid-template-areas: 'stack';
        align-items: start;
        overflow: hidden;
      }
      @media (max-width: 899px) {
        .proc-tabs-content {
          padding: 28px 24px;
        }
      }

      @media (max-width: 768px) {
        .proc-section-inner { padding: 0 16px; }
        .proc-headline { margin-bottom: 40px; }
        .proc-headline-statement {
          font-size: clamp(1.875rem, 6vw, 2.5rem) !important;
        }
        .proc-headline-sub {
          font-size: 0.9375rem;
          white-space: normal;
        }
        .proc-panel-deliverable {
          flex-wrap: wrap;
          padding: 14px 18px;
        }
        .dl-content { flex-wrap: wrap; gap: 4px 12px; }
        .dl-text { white-space: normal; }
      }

      /* Big faded number in the background */
      .proc-panel-num {
        position: absolute;
        top: 16px; right: 32px;
        font-size: 11rem;
        font-weight: 800;
        color: rgba(0,0,0,0.035);
        letter-spacing: -0.06em;
        line-height: 0.85;
        pointer-events: none;
        font-variant-numeric: tabular-nums;
      }
      @media (max-width: 899px) {
        .proc-panel-num { font-size: 7rem; top: 8px; right: 16px; }
      }

      .proc-panel {
        grid-area: stack;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
                    transform 0.55s cubic-bezier(0.22,1,0.36,1);
        pointer-events: none;
      }
      .proc-panel.is-active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .proc-panel-eyebrow {
        display: inline-flex;
        align-self: flex-start;
        align-items: center;
        background: #F4F4F5;
        color: #52525B;
        border-radius: 99px;
        padding: 5px 14px;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 14px;
      }

      .proc-panel-title {
        font-size: clamp(1.5rem, 2.5vw, 2.125rem);
        font-weight: 700;
        letter-spacing: -0.03em;
        line-height: 1.15;
        color: #111111;
        margin: 0 0 12px;
        text-wrap: balance;
        max-width: 22ch;
      }

      .proc-panel-body {
        font-size: 1.0625rem;
        line-height: 1.55;
        color: #6B7280;
        margin: 0 0 18px;
        max-width: 56ch;
      }

      /* Deliverable: una sola línea horizontal */
      .proc-panel-deliverable {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 16px 24px;
        background: rgba(22,163,74,0.06);
        border: 1px solid rgba(22,163,74,0.18);
        border-radius: 14px;
        align-self: flex-start;
        max-width: 100%;
      }
      .dl-check {
        width: 22px; height: 22px;
        border-radius: 50%;
        background: #1E40B0;
        color: #FFFFFF;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .dl-check svg { width: 12px; height: 12px; stroke-width: 3; }
      .dl-content { display: inline-flex; align-items: center; gap: 12px; }
      .dl-label {
        font-size: 0.625rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #1E40B0;
        white-space: nowrap;
      }
      .dl-text {
        font-size: 0.875rem;
        color: #111111;
        font-weight: 500;
        line-height: 1.4;
        white-space: nowrap;
      }
    /* ── Feature Spotlight ─────────────────────── */
    .feature-spotlight {
      width: 100%;
      max-width: 72rem;
      margin: 0 auto;
      padding: 32px;
      border-radius: 16px;
      background: rgba(255,255,255,0.55);
      border: 1px solid rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }
    @media (min-width: 768px) {
      .feature-spotlight { padding: 48px; }
    }

    .fs-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }
    @media (min-width: 768px) {
      .fs-grid { grid-template-columns: 1fr 1fr; }
    }

    /* LEFT: text content */
    .fs-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      text-align: center;
      align-items: center;
    }
    @media (min-width: 768px) {
      .fs-content { text-align: left; align-items: flex-start; }
    }

    .fs-preheader {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      font-weight: 500;
      color: #6B7280;
      opacity: 0;
      animation: fs-slide-down 0.7s cubic-bezier(0.22,1,0.36,1) 0s forwards;
    }
    .fs-preheader svg { width: 16px; height: 16px; }

    .fs-heading {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.035em;
      line-height: 1.05;
      color: #111111;
      text-wrap: balance;
      margin: 0;
      opacity: 0;
      animation: fs-slide-down 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
    }
    .fs-heading .fs-accent { color: var(--gold); }

    .fs-description {
      font-size: 1.125rem;
      line-height: 1.6;
      color: #6B7280;
      margin: 0;
      opacity: 0;
      animation: fs-slide-down 0.7s cubic-bezier(0.22,1,0.36,1) 0.30s forwards;
    }

    .fs-cta-wrap {
      opacity: 0;
      animation: fs-slide-down 0.7s cubic-bezier(0.22,1,0.36,1) 0.40s forwards;
    }

    @keyframes fs-slide-down {
      0%   { opacity: 0; transform: translateY(-16px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* RIGHT: animated visual */
    .fs-visual {
      position: relative;
      width: 100%;
      min-height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: fs-zoom-in 0.7s cubic-bezier(0.22,1,0.36,1) 0.20s forwards;
    }
    @media (min-width: 768px) {
      .fs-visual { min-height: 320px; }
    }
    @keyframes fs-zoom-in {
      0%   { opacity: 0; transform: scale(0.95); }
      100% { opacity: 1; transform: scale(1); }
    }

    .fs-report {
      width: 100%;
      max-width: 380px;
      background: #FFFFFF;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 14px;
      padding: 24px 26px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.08), 0 4px 14px rgba(0,0,0,0.04);
      animation: fs-float 6s ease-in-out infinite;
    }
    @keyframes fs-float {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }

    .fs-report-head {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: #6B7280;
      text-transform: uppercase;
    }
    .fs-report-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #1E40B0;
      box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
      animation: fs-pulse 2.2s ease-in-out infinite;
    }
    @keyframes fs-pulse {
      0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
      50%      { box-shadow: 0 0 0 7px rgba(22,163,74,0.04); }
    }

    .fs-report-num {
      font-size: 2.75rem;
      font-weight: 800;
      letter-spacing: -0.045em;
      color: #111111;
      margin-top: 14px;
      line-height: 1;
    }
    .fs-report-sub {
      font-size: 0.8125rem;
      color: #9CA3AF;
      margin-top: 6px;
    }
    .fs-report-divider {
      height: 1px;
      background: rgba(0,0,0,0.08);
      margin: 18px 0 4px;
    }
    .fs-report-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px 0;
      font-size: 0.875rem;
      color: #4B5563;
      font-weight: 500;
    }
    .fs-row-amount {
      font-weight: 700;
      color: #111111;
      font-variant-numeric: tabular-nums;
    }

    /* ════════════════════════════════════════════
       HERO HOME — Dithering Card (index.html)
    ════════════════════════════════════════════ */
    .home-stage {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 56px 24px 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card {
      position: relative;
      width: 100%;
      min-height: 720px;
      border-radius: 48px;
      border: 1px solid rgba(0, 0, 0, 0.10);
      background: #FFFFFF;
      box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 72px 24px;
      isolation: isolate;
    }

    /* Canvas WebGL — fondo del hero card.
       Replica del wrapper del componente React:
         opacity-40 + mix-blend-multiply
       border-radius + clip-path garantizan el clip de esquinas
       redondeadas también en Safari (mix-blend-mode puede romper
       el overflow:hidden del padre). */
    .hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.40;
      mix-blend-mode: multiply;
      border-radius: inherit;
      clip-path: inset(0 round 48px);
    }

    .hero-card-content {
      position: relative;
      z-index: 1;
      max-width: 880px;
      width: 100%;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Eyebrow con punto negro pulsante */
    .home-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 16px;
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.14);
      border-radius: 9999px;
      font-size: 0.8125rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: #111111;
      margin-bottom: 36px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .home-eyebrow-dot {
      position: relative;
      display: inline-flex;
      width: 8px; height: 8px;
    }
    .home-eyebrow-dot .core {
      position: absolute; inset: 0;
      border-radius: 50%;
      background: #111111;
    }
    .home-eyebrow-dot .ping {
      position: absolute; inset: 0;
      border-radius: 50%;
      background: #111111;
      opacity: 0.75;
      animation: home-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
    }
    @keyframes home-ping {
      0%   { transform: scale(1);   opacity: 0.75; }
      75%  { transform: scale(2.4); opacity: 0; }
      100% { transform: scale(2.4); opacity: 0; }
    }

    /* Headline serif premium (estilo "Your words, delivered perfectly") */
    .home-headline {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(2.75rem, 7vw, 6rem);
      font-weight: 400;
      letter-spacing: -0.035em;
      line-height: 1.05;
      color: #111111;
      margin: 0 0 32px;
      text-wrap: balance;
    }
    .home-headline-soft {
      color: rgba(17, 17, 17, 0.55);
      font-style: italic;
    }

    .home-desc {
      font-size: clamp(1rem, 1.4vw, 1.1875rem);
      line-height: 1.6;
      color: #6B7280;
      max-width: 56ch;
      margin: 0 0 48px;
      text-wrap: pretty;
    }

    /* CTA pill compacto */
    .home-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 46px;
      padding: 0 24px;
      background: #111111;
      color: #FFFFFF;
      border-radius: 9999px;
      font-size: 0.9375rem;
      font-weight: 500;
      letter-spacing: 0.005em;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }
    .home-cta:hover {
      background: #1f1f1f;
      transform: scale(1.04);
      box-shadow:
        0 0 0 3px rgba(17, 17, 17, 0.08),
        0 10px 28px rgba(17, 17, 17, 0.16);
    }
    .home-cta:active { transform: scale(0.97); }
    .home-cta svg {
      width: 15px; height: 15px;
      transition: transform 0.3s ease;
    }
    .home-cta:hover svg { transform: translateX(3px); }

    /* ── Social Proof (logo ticker infinito) ───── */
    .social-proof-section {
      padding: 4rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: transparent;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .social-proof-title {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #888888;
      margin: 0 0 2.5rem;
      text-align: center;
    }

    .logo-ticker-wrapper {
      width: 100%;
      max-width: 1200px;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .logo-ticker-track {
      display: flex;
      width: max-content;
      animation: scroll-ticker 35s linear infinite;
    }
    .logo-ticker-track:hover { animation-play-state: paused; }

    .logo-group {
      display: flex;
      align-items: center;
      gap: 6rem;
      padding-right: 6rem;
    }

    .agency-logo {
      height: 28px;
      width: auto;
      fill: currentColor;
      color: #111111;
      opacity: 0.25;
      transition: opacity 0.4s ease, transform 0.4s ease;
      cursor: default;
      flex-shrink: 0;
    }
    .agency-logo:hover {
      opacity: 0.7;
      transform: scale(1.05);
    }

    @keyframes scroll-ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
      .home-stage { padding: 64px 16px 120px; }
      .hero-card { min-height: 520px; padding: 56px 20px; border-radius: 32px; }
      .home-headline { font-size: clamp(2.25rem, 9vw, 3.5rem); }
    }

    /* ════════════════════════════════════════════
       SECCIÓN 2: EL PROBLEMA — Diagnóstico forense
       Editorial Bloomberg-style con counter animado
       y reveals escalonados al scroll.
    ════════════════════════════════════════════ */
    .pain-v2 {
      padding: 5.5rem 2rem;
      background-color: #ffffff;
      color: #111111;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      overflow: hidden;
    }

    .pain-v2-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* Eyebrow forense */
    .pain-v2-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 6px 14px;
      background: rgba(240,120,32,0.06);
      border: 1px solid rgba(240,120,32,0.22);
      border-radius: 99px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #F07820;
      margin-bottom: 32px;
    }
    .pain-v2-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #F07820;
      box-shadow: 0 0 0 0 rgba(240,120,32,0.5);
      animation: pain-v2-pulse 1.8s ease-out infinite;
    }
    @keyframes pain-v2-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(240,120,32,0.5); }
      70%  { box-shadow: 0 0 0 8px rgba(240,120,32,0); }
      100% { box-shadow: 0 0 0 0 rgba(240,120,32,0); }
    }

    /* Headline con counter gigante */
    .pain-v2-headline {
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.035em;
      color: #111111;
      margin: 0 0 24px;
      text-wrap: balance;
    }
    .pain-v2-amount {
      display: inline-flex;
      align-items: baseline;
      color: #F07820;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.045em;
      gap: 0.05em;
    }
    .pain-v2-currency {
      font-weight: 700;
    }
    .pain-v2-italic {
      display: inline-block;
      font-style: italic;
      color: rgba(17, 17, 17, 0.45);
      font-weight: 600;
    }

    .pain-v2-lead {
      font-size: 1.0625rem;
      line-height: 1.6;
      color: #555555;
      max-width: 680px;
      margin: 0 0 48px;
    }
    .pain-v2-lead strong {
      color: #111111;
      font-weight: 700;
    }

    /* Lista de fugas — formato forense */
    .pain-v2-leaks {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid rgba(0, 0, 0, 0.10);
    }

    .leak-row {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 40px;
      padding: 32px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.10);
      align-items: center;
      transition: background-color 0.4s ease;
    }
    .leak-row:hover {
      background-color: rgba(0, 0, 0, 0.015);
    }

    /* Stat column — número monumental */
    .leak-stat {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .leak-pct {
      font-size: clamp(2.75rem, 4.5vw, 3.75rem);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.05em;
      color: #F07820;
      font-variant-numeric: tabular-nums;
      display: inline-flex;
      align-items: baseline;
    }
    .leak-pct-num {
      display: inline-block;
    }
    .leak-pct-sym {
      font-size: 0.55em;
      font-weight: 700;
      margin-left: 2px;
    }
    .leak-stat-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #888888;
      line-height: 1.45;
    }

    /* Content column */
    .leak-content {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .leak-num {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #888888;
    }
    .leak-title {
      font-size: clamp(1.25rem, 1.8vw, 1.5rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: #111111;
      margin: 0;
    }
    .leak-body {
      font-size: 0.9875rem;
      line-height: 1.55;
      color: #555555;
      margin: 0;
      max-width: 640px;
    }
    .leak-body strong {
      color: #111111;
      font-weight: 700;
    }
    .leak-fix {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 10px;
      padding: 14px 18px;
      background: rgba(30,64,176,0.06);
      border: 1px solid rgba(30,64,176,0.22);
      border-radius: 10px;
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #0D1F6B;
    }
    .leak-fix-arrow {
      color: #1E40B0;
      font-weight: 700;
      flex-shrink: 0;
    }
    .leak-fix strong {
      color: #0D1F6B;
      font-weight: 700;
    }

    /* Cierre */
    .pain-v2-close {
      margin-top: 40px;
      padding: 22px 28px;
      background: #faf9f6;
      border-left: 3px solid #111111;
      border-radius: 4px;
    }
    .pain-v2-close p {
      font-size: 1rem;
      line-height: 1.55;
      color: #333333;
      margin: 0;
    }
    .pain-v2-close strong {
      color: #111111;
      font-weight: 700;
    }

    /* Reveals al scroll */
    [data-pain-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    [data-pain-reveal].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .pain-v2 { padding: 5rem 1.5rem; }
      .pain-v2-headline { font-size: 2.25rem; }
      .leak-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0;
      }
      .pain-v2-close { padding: 24px; }
    }

    /* ════════════════════════════════════════════
       SECCIÓN 3: LA SOLUCIÓN (Bento Grid Services)
       ⚠️ Scopeado bajo .services-section / .services-bento
          para no colisionar con el .bento-grid
          existente de auditoria.html (patrones).
    ════════════════════════════════════════════ */
    .services-section {
      padding: 8rem 2rem;
      background-color: #f7f5f0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .services-header {
      text-align: center;
      max-width: 600px;
      margin-bottom: 4rem;
    }

    .services-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin: 0 0 1.5rem;
      letter-spacing: -0.02em;
      color: #111111;
    }

    .services-description {
      font-size: 1.1rem;
      color: #555555;
      line-height: 1.6;
      margin: 0;
    }

    /* Card unificada — 3 pilares en una sola tarjeta editorial */
    .services-unified {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      gap: 0;
      align-items: stretch;
      background: #ffffff;
      border: 1px solid #e8e6e0;
      border-radius: 24px;
      padding: 4rem 1.5rem;
      box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 60px -32px rgba(0,0,0,0.08);
    }
    .services-pillar {
      padding: 0 3rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .services-pillar-tag {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #888;
    }
    .services-pillar-title {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: -0.02em;
      color: #0a0a0a;
      margin: 0;
      line-height: 1.15;
    }
    .services-pillar-text {
      font-family: 'Inter', sans-serif;
      font-size: 0.96rem;
      line-height: 1.6;
      color: #555555;
      margin: 0;
    }
    .services-divider {
      width: 1px;
      background: linear-gradient(to bottom, transparent 0%, #e8e6e0 20%, #e8e6e0 80%, transparent 100%);
      align-self: stretch;
    }
    @media (max-width: 900px) {
      .services-unified {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 0;
      }
      .services-pillar {
        padding: 1.75rem 0.5rem;
      }
      .services-divider {
        width: auto;
        height: 1px;
        background: linear-gradient(to right, transparent 0%, #e8e6e0 20%, #e8e6e0 80%, transparent 100%);
      }
    }

    /* Bento grid scopeado a la sección services (legacy — usado en otras páginas) */
    .services-bento {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
      gap: 1.5rem;
      width: 100%;
      max-width: 1000px;
    }

    .services-bento .bento-card {
      background-color: #ffffff;
      border-radius: 24px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      padding: 3rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      /* Reset overrides del .bento-card de auditoria.html */
      min-width: 0;
      grid-column: auto;
      grid-row: auto;
      animation: none;
    }
    .services-bento .bento-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    }

    .services-bento .bento-large {
      grid-column: span 2;
      flex-direction: row;
      align-items: center;
    }
    .services-bento .bento-small {
      grid-column: span 1;
    }

    .services-bento .bento-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #1E40B0;
      background-color: rgba(20, 140, 120, 0.1);
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }

    .services-bento .bento-heading {
      font-size: 1.75rem;
      font-weight: 500;
      margin: 0 0 1rem;
      letter-spacing: -0.01em;
      color: #111111;
    }

    .services-bento .bento-text {
      font-size: 1rem;
      color: #666666;
      line-height: 1.6;
      margin: 0;
      position: relative;
      z-index: 2;
    }

    .services-bento .bento-large .bento-content {
      max-width: 50%;
    }

    /* Elementos visuales CSS-only (toque tech) */
    .services-bento .bento-visual {
      position: absolute;
      opacity: 0.4;
      transition: opacity 0.3s ease;
      z-index: 1;
    }
    .services-bento .bento-card:hover .bento-visual {
      opacity: 0.8;
    }

    /* Visual: gráfica de barras (Auditoría) */
    .services-bento .visual-chart {
      right: 10%;
      bottom: -20px;
      display: flex;
      align-items: flex-end;
      gap: 12px;
    }
    .services-bento .chart-bar {
      width: 40px;
      background: linear-gradient(to top, #ececec, #d4d4d4);
      border-radius: 8px 8px 0 0;
    }
    .services-bento .bar-1 { height: 80px; }
    .services-bento .bar-2 { height: 120px; }
    .services-bento .bar-3 {
      height: 180px;
      background: linear-gradient(to top, #1E40B0, #20c997);
      opacity: 0.6;
    }

    /* Visual: círculo abstracto (Marca) */
    .services-bento .visual-brand {
      right: -20px;
      bottom: -20px;
    }
    .services-bento .brand-shape {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 2px dashed #cccccc;
      background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.03) 100%);
    }

    /* Visual: líneas de texto (Copy) */
    .services-bento .visual-copy {
      right: 20px;
      bottom: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100px;
    }
    .services-bento .copy-line {
      height: 6px;
      background-color: #dddddd;
      border-radius: 4px;
      width: 100%;
    }
    .services-bento .copy-line.short {
      width: 60%;
    }

    /* Responsive — mobile */
    @media (max-width: 768px) {
      .services-section { padding: 5rem 1.5rem; }
      .services-title { font-size: 2.25rem; }
      .services-bento {
        grid-template-columns: 1fr;
      }
      .services-bento .bento-large {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
      }
      .services-bento .bento-large .bento-content {
        max-width: 100%;
        margin-bottom: 2rem;
      }
      .services-bento .visual-chart {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 1rem;
      }
    }

    /* ════════════════════════════════════════════
       SECCIÓN 4: MANIFIESTO (Dark Mode Break)
       Quiebre tonal: rompe el ritmo claro de la web
       para forzar atención.
    ════════════════════════════════════════════ */
    .manifesto-section {
      padding: 8rem 2rem;
      background: linear-gradient(180deg, #0D1F6B 0%, #07154d 100%);
      color: #ffffff;
    }

    .manifesto-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .manifesto-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    .manifesto-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0 0 1.5rem;
      color: #ffffff;
    }

    .manifesto-description {
      font-size: 1.15rem;
      color: #a0a0a0;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Tabla comparativa Us vs Them */
    .comparison-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      overflow: hidden;
    }

    .comparison-column {
      padding: 4rem 3rem;
      background-color: rgba(7, 21, 77, 0.45);
    }

    .old-way {
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }
    .old-way:hover { opacity: 0.85; }

    .audit-way {
      background: linear-gradient(145deg, rgba(30,64,176,0.28) 0%, rgba(7,21,77,0.55) 100%);
      position: relative;
    }

    .comparison-heading {
      font-family: 'Inter', sans-serif;
      font-size: 1.25rem;
      font-weight: 500;
      margin: 0 0 2rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .old-way .comparison-heading { color: #666666; }
    .audit-way .comparison-heading { color: #ffffff; }

    .comparison-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .comparison-list li {
      font-size: 1.05rem;
      line-height: 1.5;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .old-way   .comparison-list li { color: #888888; }
    .audit-way .comparison-list li { color: #e0e0e0; }

    /* Iconos (cruces / checks) */
    .comparison-list .cross {
      color: #F5A040;
      font-weight: 700;
      font-size: 1.2rem;
      line-height: 1;
      flex-shrink: 0;
    }
    .comparison-list .check {
      color: #FDD09A;
      font-weight: 800;
      font-size: 1.2rem;
      line-height: 1;
      flex-shrink: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .manifesto-section { padding: 5rem 1.5rem; }
      .comparison-box {
        grid-template-columns: 1fr;
      }
      .comparison-column {
        padding: 2.5rem 1.5rem;
      }
    }

    /* ════════════════════════════════════════════
       SECCIÓN 5: CASOS DE ÉXITO (impact metrics)
       Vuelve al blanco — claridad financiera
    ════════════════════════════════════════════ */
    .cases-section {
      padding: 8rem 2rem;
      background-color: #ffffff;
      color: #111111;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .cases-header {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 5rem;
    }

    .cases-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0 0 1.5rem;
      color: #111111;
    }

    .cases-description {
      font-size: 1.15rem;
      color: #555555;
      line-height: 1.6;
      margin: 0;
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .case-card {
      padding: 3rem 2rem;
      background-color: #faf9f6;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }
    .case-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      background-color: #ffffff;
    }

    .case-metric {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 4rem;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: #1E40B0;
      margin-bottom: 0.5rem;
      font-variant-numeric: tabular-nums;
    }

    .case-label {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
      color: #111111;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .case-quote {
      font-size: 1.05rem;
      line-height: 1.6;
      color: #555555;
      font-style: italic;
      margin: 0 0 2rem;
      flex-grow: 1;
    }

    .case-author {
      font-size: 0.9rem;
      color: #333333;
      margin-bottom: 1.5rem;
    }
    .case-author strong { color: #111111; }

    .case-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .case-tags span {
      font-size: 0.75rem;
      padding: 0.25rem 0.6rem;
      background-color: rgba(0, 0, 0, 0.04);
      border-radius: 4px;
      color: #555555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .cases-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .cases-section { padding: 5rem 1.5rem; }
      .cases-grid { grid-template-columns: 1fr; }
      .case-metric { font-size: 3.5rem; }
    }

    /* ════════════════════════════════════════════
       SECCIÓN 6: PRICING (home page)
       ⚠️ Prefijo .home-pricing para no colisionar
          con la .pricing-section / .pricing-card /
          .border-beam ya existentes en auditoria.html
          y en el dock cristal.
    ════════════════════════════════════════════ */
    .home-pricing {
      padding: 8rem 2rem;
      background-color: #f7f5f0;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .home-pricing-header {
      text-align: center;
      max-width: 650px;
      margin-bottom: 5rem;
    }

    .home-pricing-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0 0 1.5rem;
      color: #111111;
    }

    .home-pricing-description {
      font-size: 1.15rem;
      color: #555555;
      line-height: 1.6;
      margin: 0;
    }

    /* Border Beam (conic-gradient rotando) */
    .home-pricing-wrap {
      position: relative;
      width: 100%;
      max-width: 550px;
      border-radius: 24px;
      padding: 1px; /* grosor del rayo */
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .home-pricing-beam {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(
        from 0deg,
        transparent 70%,
        rgba(240,120,32,0.18) 80%,
        #F07820 95%,
        #1E40B0 100%
      );
      animation: home-pricing-spin 4s linear infinite;
      z-index: 0;
      pointer-events: none;
    }

    @keyframes home-pricing-spin {
      to { transform: rotate(360deg); }
    }

    /* Tarjeta blanca por encima del rayo */
    .home-pricing-card {
      position: relative;
      background-color: #ffffff;
      border-radius: 23px; /* 1px menos que el wrap → encaje perfecto */
      padding: 4rem 3rem;
      z-index: 1;
      display: flex;
      flex-direction: column;
    }

    .home-pricing-tier {
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #888888;
      margin: 0 0 1rem;
    }

    .home-pricing-price {
      display: flex;
      flex-direction: column;
      margin-bottom: 1.5rem;
    }

    .home-price-prefix {
      font-size: 0.9rem;
      color: #666666;
      margin-bottom: 0.25rem;
    }

    .home-price-amount {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 4.5rem;
      line-height: 1;
      color: #111111;
      letter-spacing: -0.04em;
      font-weight: 800;
    }

    .home-pricing-subtext {
      font-size: 0.95rem;
      color: #555555;
      line-height: 1.5;
      margin: 0 0 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .home-pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .home-pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 1.05rem;
      color: #333333;
      line-height: 1.4;
    }

    .home-pricing-features .check {
      color: #1E40B0;
      font-weight: 700;
      font-size: 1.2rem;
      line-height: 1;
      flex-shrink: 0;
    }

    /* CTA premium */
    .home-pricing-cta {
      background-color: #1E40B0;
      color: #ffffff;
      border: none;
      border-radius: 100px;
      padding: 1.25rem 2rem;
      font-family: inherit;
      font-size: 1.05rem;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
    }
    .home-pricing-cta:hover {
      background-color: #1E40B0;
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(20, 140, 120, 0.22);
    }

    .home-pricing-arrow {
      transition: transform 0.3s ease;
      display: inline-block;
    }
    .home-pricing-cta:hover .home-pricing-arrow {
      transform: translateX(4px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .home-pricing { padding: 5rem 1.5rem; }
      .home-pricing-card { padding: 3rem 2rem; }
      .home-price-amount { font-size: 3.5rem; }
    }

    /* ════════════════════════════════════════════
       SECCIÓN 7: CIERRE / CTA FINAL + FOOTER
       Anclaje visual oscuro — "el recorrido terminó"
    ════════════════════════════════════════════ */
    .final-cta-section {
      padding: 10rem 2rem;
      background: linear-gradient(180deg, #07154d 0%, #050b2c 100%);
      color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .final-cta-container {
      max-width: 700px;
    }

    .final-cta-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin: 0 0 1.5rem;
      color: #ffffff;
    }

    .final-cta-subtitle {
      font-size: 1.15rem;
      color: #a0a0a0;
      line-height: 1.6;
      margin: 0 0 3rem;
    }

    .final-cta-button {
      display: inline-block;
      background-color: #F07820;
      color: #ffffff;
      font-weight: 600;
      font-size: 1.1rem;
      padding: 1.25rem 2.5rem;
      border-radius: 100px;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease,
                  transform 0.3s ease, box-shadow 0.3s ease;
    }
    .final-cta-button:hover {
      background-color: #F5A040;
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(240,120,32,0.40);
    }

    /* ── Footer ─────────────────────────────────── */
    .site-footer {
      background-color: #050b2c;
      color: #ffffff;
      padding: 3rem 2rem 6rem; /* extra bottom padding para no chocar con el floating dock */
      border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.5rem;
      color: #ffffff;
    }
    .footer-logo .nav-logo-mark {
      width: 28px; height: 24px;
    }
    .footer-logo .nav-logo-mark path {
      fill: #ffffff;
    }

    .footer-copyright {
      font-size: 0.85rem;
      color: #666666;
      margin: 0;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      color: #888888;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }
    .footer-links a:hover { color: #ffffff; }

    @media (max-width: 768px) {
      .final-cta-section { padding: 6rem 1.5rem; }
      .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
      }
      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    /* ════════════════════════════════════════════
       HERO EDITORIAL (sustituye al hero dithering)
       ⚠️ Scopeado bajo .hero-editorial para no
          colisionar con .btn-primary y .hero-stat
          ya existentes en otras secciones/páginas.
    ════════════════════════════════════════════ */
    .hero-editorial {
      width: 100%;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #faf9f6;

      /* Cuadrícula de fondo sutil estilo papel milimetrado */
      background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      background-position: center center;

      padding: 6rem 2rem 4rem;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .hero-editorial .hero-grid-container {
      width: 100%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
    }

    /* Top bar: pill + brand tag */
    .hero-editorial .hero-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(0,0,0,0.10);
      margin-bottom: 4rem;
    }

    .hero-editorial .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.5rem 1rem;
      background-color: #EBF0FF;
      border: 1px solid rgba(30,64,176,0.18);
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: #0D1F6B;
    }

    .hero-editorial .pulse-dot {
      width: 6px;
      height: 6px;
      background-color: #F07820;
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(240,120,32,0.45);
      animation: hero-editorial-pulse 2s infinite;
    }
    @keyframes hero-editorial-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(240,120,32,0.45); }
      70%  { box-shadow: 0 0 0 6px rgba(240,120,32,0); }
      100% { box-shadow: 0 0 0 0 rgba(240,120,32,0); }
    }

    .hero-editorial .hero-brand-tag {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.85rem;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Headline gigante */
    .hero-editorial .hero-main {
      margin-bottom: 5rem;
    }
    .hero-editorial .hero-headline {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(4rem, 8vw, 8rem);
      line-height: 0.95;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #111;
      margin: 0;
    }
    .hero-editorial .hero-italic {
      font-style: italic;
      color: #1E40B0;
      font-weight: 700;
    }

    /* Bottom block: copy + CTA + stats */
    .hero-editorial .hero-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      border-top: 1px solid rgba(0,0,0,0.10);
      padding-top: 3rem;
    }

    .hero-editorial .hero-description {
      font-family: 'Inter', sans-serif;
      font-size: 1.25rem;
      line-height: 1.6;
      color: #444;
      margin: 0 0 2.5rem;
      max-width: 500px;
    }

    /* Botón primario (scopeado para no romper el .btn-primary global) */
    .hero-editorial .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background-color: #1E40B0;
      color: #fff;
      padding: 1.2rem 2.5rem;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease,
                  box-shadow 0.3s ease;
      letter-spacing: normal;
      height: auto;
      border: none;
    }
    .hero-editorial .btn-primary:hover {
      background-color: #0D1F6B;
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(30,64,176,0.32);
    }

    .hero-editorial .arrow {
      transition: transform 0.3s ease;
      display: inline-block;
    }
    .hero-editorial .btn-primary:hover .arrow {
      transform: translateX(4px);
    }

    /* Stats columna derecha (scopeado para no romper .hero-stat global) */
    .hero-editorial .hero-stats-block {
      display: flex;
      justify-content: flex-end;
      gap: 3rem;
    }

    .hero-editorial .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding: 0;
      border: none;
      text-align: left;
    }
    .hero-editorial .hero-stat.border-left {
      padding-left: 3rem;
      border-left: 1px solid rgba(0,0,0,0.10);
    }

    .hero-editorial .stat-number {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 3rem;
      line-height: 1;
      color: #111;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .hero-editorial .stat-text {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: #666;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero-editorial .hero-bottom {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .hero-editorial .hero-stats-block {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .hero-editorial { padding: 4rem 1.5rem 3rem; }
      .hero-editorial .hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .hero-editorial .hero-stat.border-left {
        padding-left: 2rem;
      }
      .hero-editorial .hero-headline {
        font-size: clamp(3rem, 10vw, 4rem);
      }
    }

    /* ════════════════════════════════════════════
       TRUST BAR — proof numbers debajo del hero
    ════════════════════════════════════════════ */
    .trust-bar {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 32px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .trust-bar-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .trust-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .trust-num {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(2rem, 3vw, 2.75rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      color: #111;
      font-variant-numeric: tabular-nums;
    }
    .trust-num small {
      font-size: 0.5em;
      font-weight: 700;
      color: #888;
      letter-spacing: 0;
      margin-left: 2px;
    }
    .trust-lbl {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #6B7280;
      line-height: 1.4;
    }
    @media (max-width: 768px) {
      .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }

    /* CTA secundario sobrio */
    .btn-secondary-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #555;
      font-family: 'Inter', sans-serif;
      font-size: 0.9375rem;
      font-weight: 500;
      text-decoration: none;
      padding: 12px 4px;
      transition: color 0.2s ease;
    }
    .btn-secondary-link:hover { color: #111; }

    .hero-editorial .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    /* ════════════════════════════════════════════
       MÉTODO — Process timeline 8 semanas
    ════════════════════════════════════════════ */
    .method-section {
      padding: 8rem 2rem;
      background-color: #ffffff;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .method-container {
      max-width: 1100px;
      margin: 0 auto;
    }
    .method-header {
      max-width: 720px;
      margin-bottom: 64px;
    }
    .method-eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #1E40B0;
      margin-bottom: 20px;
      padding: 6px 14px;
      background: rgba(20,140,120,0.08);
      border: 1px solid rgba(30,64,176,0.22);
      border-radius: 99px;
    }
    .method-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(2.25rem, 4vw, 3.25rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: #111;
      margin: 0 0 20px;
      text-wrap: balance;
    }
    .method-lead {
      font-size: 1.125rem;
      line-height: 1.65;
      color: #555;
      margin: 0;
      max-width: 600px;
    }

    .method-timeline {
      list-style: none;
      padding: 0;
      margin: 0;
      counter-reset: method-step;
      border-top: 1px solid rgba(0,0,0,0.10);
    }

    .method-step {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 64px;
      padding: 48px 0;
      border-bottom: 1px solid rgba(0,0,0,0.10);
      align-items: start;
      counter-increment: method-step;
      position: relative;
    }
    .method-step::before {
      content: counter(method-step, decimal-leading-zero);
      position: absolute;
      top: 48px;
      right: 0;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 6rem;
      font-weight: 800;
      letter-spacing: -0.05em;
      color: rgba(0,0,0,0.04);
      line-height: 0.85;
      pointer-events: none;
    }
    .method-step-meta {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .method-week {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #6B7280;
    }
    .method-phase {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: #111;
    }
    .method-step-body {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 640px;
      position: relative;
      z-index: 1;
    }
    .method-step-title {
      font-size: clamp(1.375rem, 2vw, 1.75rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: #111;
      margin: 0;
    }
    .method-step-desc {
      font-size: 1.0625rem;
      line-height: 1.6;
      color: #555;
      margin: 0;
    }
    .method-deliv {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 6px;
      padding: 12px 16px;
      background: rgba(30,64,176,0.06);
      border: 1px solid rgba(30,64,176,0.22);
      border-radius: 8px;
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #0D1F6B;
    }
    .method-check {
      color: #1E40B0;
      font-weight: 700;
      flex-shrink: 0;
    }
    .method-deliv strong {
      color: #0D1F6B;
      font-weight: 700;
    }

    @media (max-width: 768px) {
      .method-section { padding: 5rem 1.5rem; }
      .method-step {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 0;
      }
      .method-step::before {
        font-size: 4rem;
        top: 12px;
      }
    }

    /* ════════════════════════════════════════════
       FOUNDER — authority signal
    ════════════════════════════════════════════ */
    .founder-section {
      padding: 6rem 2rem;
      background-color: #faf9f6;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .founder-container {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 56px;
      align-items: center;
    }
    .founder-photo {
      width: 200px; height: 200px;
      border-radius: 50%;
      background: linear-gradient(135deg, #111 0%, #2a2a2a 50%, #111 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 40px rgba(0,0,0,0.10);
      position: relative;
      overflow: hidden;
    }
    .founder-photo::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 50%);
      pointer-events: none;
    }
    .founder-initials {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 4.5rem;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: #fff;
      position: relative;
      z-index: 1;
    }
    .founder-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .founder-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #6B7280;
    }
    .founder-quote {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(1.25rem, 2vw, 1.625rem);
      font-weight: 500;
      letter-spacing: -0.015em;
      line-height: 1.4;
      color: #111;
      margin: 0;
      font-style: italic;
      max-width: 56ch;
    }
    .founder-meta {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid rgba(0,0,0,0.10);
    }
    .founder-name {
      font-size: 1.0625rem;
      font-weight: 700;
      color: #111;
      margin: 0;
      letter-spacing: -0.01em;
    }
    .founder-bio {
      font-size: 0.9375rem;
      line-height: 1.55;
      color: #555;
      margin: 0;
      max-width: 60ch;
    }
    .founder-credentials {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .founder-cred {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #555;
      padding: 4px 10px;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.10);
      border-radius: 6px;
    }
    @media (max-width: 768px) {
      .founder-section { padding: 4rem 1.5rem; }
      .founder-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
      }
      .founder-photo { width: 120px; height: 120px; }
      .founder-initials { font-size: 2.75rem; }
    }

    /* ════════════════════════════════════════════
       GUARANTEE — risk reversal dedicado
    ════════════════════════════════════════════ */
    .guarantee-section {
      padding: 7rem 2rem;
      background-color: #ffffff;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .guarantee-container {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 56px;
      align-items: center;
    }
    .guarantee-stamp {
      width: 160px;
      height: 160px;
      color: #1E40B0;
      animation: guarantee-rotate 24s linear infinite;
    }
    @keyframes guarantee-rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .guarantee-stamp svg {
      width: 100%;
      height: 100%;
    }
    .guarantee-text {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .guarantee-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #1E40B0;
    }
    .guarantee-headline {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.875rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.1;
      color: #111;
      margin: 0;
      text-wrap: balance;
    }
    .guarantee-italic {
      display: inline-block;
      font-style: italic;
      color: rgba(17,17,17,0.55);
      font-weight: 600;
    }
    .guarantee-body {
      font-size: 1.0625rem;
      line-height: 1.65;
      color: #555;
      margin: 0;
      max-width: 60ch;
    }
    .guarantee-body strong { color: #111; font-weight: 700; }
    .guarantee-fineprint {
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1E40B0;
      margin: 8px 0 0;
      letter-spacing: -0.005em;
    }
    @media (max-width: 768px) {
      .guarantee-section { padding: 4rem 1.5rem; }
      .guarantee-container {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .guarantee-stamp {
        width: 100px;
        height: 100px;
      }
    }

    /* ════════════════════════════════════════════
       FAQ — objection handling
    ════════════════════════════════════════════ */
    .faq-section {
      padding: 8rem 2rem;
      background-color: #faf9f6;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .faq-container {
      max-width: 880px;
      margin: 0 auto;
    }
    .faq-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .faq-eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #6B7280;
      margin-bottom: 16px;
    }
    .faq-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.875rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.1;
      color: #111;
      margin: 0;
      text-wrap: balance;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      border-top: 1px solid rgba(0,0,0,0.12);
    }

    .faq-item {
      border-bottom: 1px solid rgba(0,0,0,0.10);
      transition: background-color 0.25s ease;
    }
    .faq-item[open] {
      background-color: rgba(0,0,0,0.015);
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1.0625rem;
      font-weight: 600;
      color: #111;
      letter-spacing: -0.01em;
      line-height: 1.4;
      transition: color 0.2s ease;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:hover { color: #1E40B0; }
    .faq-icon {
      flex-shrink: 0;
      width: 32px; height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(0,0,0,0.04);
      color: #111;
      font-size: 1rem;
      font-weight: 400;
      transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
                  background-color 0.25s ease;
    }
    .faq-item[open] .faq-icon {
      transform: rotate(45deg);
      background: #111;
      color: #fff;
    }
    .faq-answer {
      padding: 0 0 28px;
      font-size: 1rem;
      line-height: 1.65;
      color: #555;
      max-width: 64ch;
    }

    @media (max-width: 768px) {
      .faq-section { padding: 5rem 1.5rem; }
      .faq-item summary { font-size: 1rem; gap: 16px; }
    }
