  :root {
    --fa-lime:  #3DFF00;
    --fa-yellow:#FFFF00;
    --fa-red:   #E63946;

    --bg:        #0D1424;
    --bg-soft:   #131C32;
    --bg-elev:   #1A2542;
    --bg-deep:   #080E1C;
    --line:      rgba(255,255,255,0.08);
    --line-2:    rgba(255,255,255,0.14);
    --fg:        #F6F8FC;
    --fg-muted:  #A3ADC7;
    --fg-dim:    #8790A9; /* aclarado desde #6E7796 para cumplir contraste WCAG AA (>=4.5:1) en texto pequeño secundario */
    /* Verde corporativo — derivado del logo pero desaturado/maduro
       para no parecer neón cuando se usa en grandes superficies UI */
    --accent:    #B4E61D;
    --accent-2:  #E4FF53;
    --on-accent: #0D1424;

    --f-display: "Futura", "Futura PT", "ITC Futura", "Jost", "Trebuchet MS", system-ui, sans-serif;
    --f-body:    "Futura", "Futura PT", "Jost", "Trebuchet MS", system-ui, sans-serif;
    --f-mono:    "JetBrains Mono", ui-monospace, monospace;

    --radius:    14px;
    --radius-lg: 22px;
    --maxw: 1240px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; overflow-x: hidden; }
  body {
    background: var(--bg); color: var(--fg);
    font-family: var(--f-body);
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  button, input { font-family: inherit; }
  ::selection { background: var(--accent); color: var(--on-accent); }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

  /* ——— NAV ——— */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    background: color-mix(in oklab, var(--bg) 75%, transparent);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
  .brand { display: inline-flex; align-items: center; }
  .nav-links { display: flex; gap: 30px; font-size: 14px; color: var(--fg-muted); }
  .nav-links a:hover { color: var(--fg); }
  .nav-cta { display: flex; gap: 10px; align-items: center; }

  /* ——— BUTTONS ——— */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 44px; padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600; font-size: 14px;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: transform .08s ease, filter .15s ease, background .15s, color .15s, border-color .15s;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--accent); color: var(--on-accent); }
  .btn-primary:hover { filter: brightness(1.06); }
  .btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-2); }
  .btn-ghost:hover { border-color: var(--fg); }
  .btn-lg { height: 56px; padding: 0 28px; font-size: 15.5px; }
  .btn-xl { height: 64px; padding: 0 32px; font-size: 17px; }

  /* ——— ABOVE THE FOLD ——— */
  .hero {
    min-height: calc(100vh - 70px);
    display: grid; align-items: center;
    padding: 60px 0 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; pointer-events: none;
    width: 900px; height: 900px; left: -300px; top: -300px;
    background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%);
    filter: blur(40px);
  }
  .hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
  .seo-tag {
    display: inline-block;
    font-family: var(--f-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase;
    padding: 6px 12px; border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
    border-radius: 999px;
    background: color-mix(in oklab, var(--accent) 8%, transparent);
  }
  h1.h1 {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(38px, 4.4vw, 64px);
    line-height: 1.02; letter-spacing: -0.035em;
    margin: 22px 0 18px;
    text-wrap: balance;
  }
  h1.h1 em {
    font-style: normal;
    color: var(--accent);
  }
  .hero-sub {
    font-size: 18px; line-height: 1.55;
    color: var(--fg-muted);
    max-width: 56ch; margin: 0 0 32px;
  }
  .hero-form {
    display: flex; gap: 8px;
    background: var(--bg-elev); border: 1px solid var(--line-2);
    border-radius: 999px; padding: 6px;
    max-width: 560px;
    box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6);
  }
  .hero-form:focus-within { border-color: var(--accent); }
  .hero-form input {
    flex: 1; min-width: 0;
    background: transparent; border: 0; outline: none;
    color: var(--fg); padding: 0 18px;
    font-size: 15px;
  }
  .hero-form input::placeholder { color: var(--fg-dim); }
  .hero-form .btn { height: 48px; padding: 0 22px; }
  .micro {
    margin-top: 18px;
    display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
    font-size: 13px; color: var(--fg-muted);
  }
  .micro b { color: var(--accent); font-weight: 700; margin-right: 4px; }

  /* Hero search preview */
  .search-preview {
    position: relative;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px -40px rgba(0,0,0,0.7);
  }
  .sp-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    font-family: var(--f-mono); font-size: 11px;
    color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.1em;
  }
  .sp-head .dots { display: flex; gap: 6px; }
  .sp-head .dots span { width: 9px; height: 9px; border-radius: 999px; background: var(--line-2); }
  .sp-search {
    margin: 16px;
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--accent);
    border-radius: 12px;
    background: var(--bg);
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent);
  }
  .sp-search .typed { color: var(--fg); font-size: 16px; }
  .sp-search .caret { width: 2px; height: 18px; background: var(--accent); display: inline-block; animation: bk 1s steps(1) infinite; margin-left: 2px; vertical-align: -4px; }
  @keyframes bk { 50% { opacity: 0; } }
  .sp-search .badge {
    margin-left: auto;
    font-family: var(--f-mono); font-size: 10px;
    color: var(--accent); letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 8px;
    background: color-mix(in oklab, var(--accent) 12%, transparent);
    border-radius: 999px;
  }
  .sp-fix {
    margin: -4px 16px 12px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px; color: var(--fg-muted);
    padding: 8px 12px;
    background: color-mix(in oklab, var(--accent) 8%, transparent);
    border: 1px solid color-mix(in oklab, var(--accent) 22%, transparent);
    border-radius: 8px;
  }
  .sp-fix svg { flex-shrink: 0; color: var(--accent); }
  .sp-fix b { color: var(--fg); font-weight: 600; }
  .sp-list { padding: 4px 10px 14px; display: flex; flex-direction: column; gap: 2px; }
  .sp-row {
    display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center;
    padding: 10px 8px; border-radius: 10px;
  }
  .sp-row.is-on { background: var(--bg-soft); outline: 1px solid var(--line-2); }
  .sp-row .img {
    width: 48px; height: 48px; border-radius: 10px;
    background: linear-gradient(135deg, var(--bg-soft), var(--bg-deep));
    border: 1px solid var(--line);
    display: grid; place-items: center;
    font-family: var(--f-display); font-weight: 700; color: var(--accent); font-size: 16px;
  }
  .sp-row .name { font-weight: 600; font-size: 14px; }
  .sp-row mark {
    background: var(--accent);
    color: var(--on-accent);
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: 700;
  }
  .sp-row .meta { font-size: 12px; color: var(--fg-dim); margin-top: 2px; }
  .sp-row .price { font-family: var(--f-mono); font-size: 13px; }
  .sp-foot {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    font-family: var(--f-mono); font-size: 10.5px;
    color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.1em;
  }
  .sp-foot > div { padding: 14px 14px; border-right: 1px solid var(--line); }
  .sp-foot > div:last-child { border-right: 0; }
  .sp-foot b { display: block; color: var(--fg); font-family: var(--f-body); font-size: 18px; letter-spacing: -0.01em; text-transform: none; margin-top: 2px; font-weight: 700; }

  /* ——— SECTIONS ——— */
  section { padding: 96px 0; position: relative; }
  .eyebrow {
    display: inline-block;
    font-family: var(--f-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 14px;
  }
  h2 {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(32px, 3.4vw, 52px);
    letter-spacing: -0.03em; line-height: 1.04;
    margin: 0; text-wrap: balance;
  }
  .lede {
    color: var(--fg-muted); font-size: 18px; line-height: 1.55;
    max-width: 56ch; margin: 16px 0 0;
  }

  /* ——— SOCIAL PROOF QUICK ——— */
  .sp-band {
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--bg-deep);
    padding: 28px 0;
  }
  .sp-band-grid {
    display: grid; grid-template-columns: 1.1fr 1.6fr; gap: 40px; align-items: center;
  }
  .sp-band-left { display: flex; flex-direction: column; gap: 8px; }
  .sp-band-left .big {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(28px, 2.6vw, 38px); letter-spacing: -0.02em; line-height: 1;
  }
  .sp-band-left .big b { color: var(--accent); }
  .sp-band-left .stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
  .sp-band-left .rating { font-size: 13px; color: var(--fg-muted); }
  .sp-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .sp-quote { display: flex; flex-direction: column; gap: 10px; }
  .sp-quote .stars { color: var(--accent); letter-spacing: 2px; }
  .sp-quote p { margin: 0; font-style: italic; color: var(--fg); font-size: 14.5px; line-height: 1.55; }
  .sp-quote .who { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
  .sp-quote .avatar {
    width: 32px; height: 32px; border-radius: 999px;
    background: var(--bg-elev); border: 1px solid var(--line-2);
    display: grid; place-items: center; font-weight: 700; font-size: 12px;
  }
  .sp-quote .who .name { font-size: 13px; font-weight: 600; }
  .sp-quote .who .role { font-size: 12px; color: var(--fg-dim); }

  /* ——— BENEFITS ——— */
  .benefits {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 56px;
  }
  .benefit {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
  }
  .benefit .ic {
    width: 56px; height: 56px; border-radius: 14px;
    background: color-mix(in oklab, var(--accent) 12%, transparent);
    border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
    display: grid; place-items: center;
    color: var(--accent);
    margin-bottom: 22px;
  }
  .service .ic {
    width: 52px; height: 52px; border-radius: 12px;
    background: color-mix(in oklab, var(--accent) 10%, transparent);
    border: 1px solid color-mix(in oklab, var(--accent) 28%, transparent);
    display: grid; place-items: center;
    color: var(--accent);
    margin-bottom: 22px;
  }
  .flow-card .ic {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--bg-soft); border: 1px solid var(--line);
    display: grid; place-items: center;
    margin: 0 auto 10px;
    color: var(--fg-muted);
  }
  .flow-card.middle .ic {
    background: color-mix(in oklab, var(--accent) 18%, transparent);
    border-color: color-mix(in oklab, var(--accent) 40%, transparent);
    color: var(--accent);
  }
  .benefit h3 {
    font-family: var(--f-display); font-weight: 700; font-size: 22px;
    letter-spacing: -0.02em; margin: 0 0 10px; line-height: 1.15;
  }
  .benefit p { margin: 0; color: var(--fg-muted); font-size: 15px; line-height: 1.55; }
  .benefit .stat {
    margin-top: 24px;
    font-family: var(--f-mono); font-size: 12px;
    color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase;
    padding-top: 16px; border-top: 1px solid var(--line);
  }
  .benefit .stat b { font-family: var(--f-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--fg); display: block; margin-bottom: 2px; }

  /* ——— DIFFERENTIATOR (AntDM) ——— */
  .diff {
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .diff-head { text-align: center; margin-bottom: 56px; }
  .diff-head .eyebrow { color: var(--accent); }
  .diff-head h2 { max-width: 22ch; margin: 0 auto; }
  .diff-head .lede { margin-left: auto; margin-right: auto; }
  .diff-diagram {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    position: relative; overflow: hidden;
  }
  .diff-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 32px;
    max-width: 980px; margin: 0 auto;
  }
  .diff-node {
    background: var(--bg-elev);
    border: 1px solid var(--line-2);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    position: relative;
  }
  .diff-node.is-them { opacity: 0.6; }
  .diff-node.is-us {
    background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 8%, var(--bg-elev)), var(--bg-elev));
    border-color: color-mix(in oklab, var(--accent) 40%, transparent);
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 8%, transparent);
  }
  .diff-node .tag {
    font-family: var(--f-mono); font-size: 10px; color: var(--fg-dim);
    text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px;
  }
  .diff-node.is-us .tag { color: var(--accent); }
  .diff-node h4 {
    font-family: var(--f-display); font-weight: 700; font-size: 20px;
    letter-spacing: -0.01em; margin: 0 0 6px;
  }
  .diff-node p { margin: 0; color: var(--fg-muted); font-size: 13px; line-height: 1.5; }
  .diff-arrow {
    text-align: center;
    font-family: var(--f-mono); font-size: 12px;
    color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
  }
  .diff-arrow svg { display: block; margin: 6px auto; }
  /* Integration flow */
  .diff-flow {
    margin: 56px auto 0; max-width: 880px;
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center; gap: 12px;
  }
  .flow-card {
    background: var(--bg-elev); border: 1px solid var(--line);
    border-radius: 14px; padding: 18px 16px; text-align: center;
  }
  .flow-card.middle {
    background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 14%, var(--bg-elev)), var(--bg-elev));
    border-color: var(--accent);
    box-shadow: 0 12px 40px -10px color-mix(in oklab, var(--accent) 30%, transparent);
  }
  .flow-card .name { font-family: var(--f-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
  .flow-card .sub { font-size: 11px; color: var(--fg-dim); margin-top: 2px; font-family: var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; }
  .flow-arr {
    color: var(--accent); font-family: var(--f-mono); font-size: 16px;
    text-align: center; opacity: 0.8;
  }
  /* VS comparison — antdm-style */
  .vs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    max-width: 1080px; margin: 0 auto 56px;
  }
  .vs-col {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .vs-them { opacity: 0.95; }
  .vs-us {
    border-color: color-mix(in oklab, var(--accent) 50%, transparent);
    background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 4%, var(--bg-elev)), var(--bg-elev));
    box-shadow: 0 30px 80px -30px color-mix(in oklab, var(--accent) 30%, transparent);
  }
  .vs-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .vs-tag { font-family: var(--f-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; color: var(--fg-muted); }
  .vs-us .vs-tag { color: var(--accent); }
  .vs-sub { font-family: var(--f-mono); font-size: 11px; color: var(--fg-dim); letter-spacing: 0.12em; text-transform: uppercase; }
  .vs-search {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 10px;
    background: var(--bg-deep); border: 1px solid var(--line);
    font-size: 14px;
  }
  .vs-search.bad { color: var(--fg-muted); border-color: rgba(230, 57, 70, 0.35); }
  .vs-search.bad svg { color: var(--fg-dim); }
  .vs-search.good { border-color: var(--accent); color: var(--fg); }
  .vs-search.good svg { color: var(--accent); }
  .vs-pill {
    margin-left: auto; font-family: var(--f-mono); font-size: 10px;
    background: var(--accent); color: var(--on-accent);
    padding: 3px 8px; border-radius: 999px;
    letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
  }
  .vs-empty {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 18px; border-radius: 12px;
    background: var(--bg-deep); border: 1px dashed var(--line-2);
    flex: 1;
  }
  .vs-empty-ic {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(230, 57, 70, 0.12); color: var(--fa-red);
    display: grid; place-items: center;
    font-family: var(--f-display); font-weight: 700; font-size: 24px;
    flex-shrink: 0;
  }
  .vs-empty-msg b { display: block; font-family: var(--f-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; color: var(--fg); }
  .vs-empty-msg span { display: block; font-size: 13px; color: var(--fg-dim); margin-top: 2px; }
  .vs-tools {
    display: flex; flex-direction: column; gap: 6px;
    padding: 14px; border-radius: 10px;
    background: var(--bg-deep); border: 1px solid var(--line);
    font-family: var(--f-mono); font-size: 12px;
    color: var(--fg-muted);
  }
  .vs-tools code { color: var(--accent); background: transparent; padding: 0; }
  .vs-args { color: var(--fg-dim); font-size: 11px; }
  .vs-result {
    display: grid; grid-template-columns: 48px 1fr auto; gap: 14px;
    align-items: center; padding: 14px;
    background: var(--bg-deep); border: 1px solid var(--accent);
    border-radius: 12px;
  }
  .vs-result-img {
    width: 48px; height: 48px; border-radius: 10px;
    background: linear-gradient(135deg, var(--bg-soft), var(--bg-elev));
    border: 1px solid var(--line);
    display: grid; place-items: center;
    font-family: var(--f-display); font-weight: 700; font-size: 16px; color: var(--accent);
  }
  .vs-result-name { font-weight: 600; font-size: 14px; }
  .vs-result-name mark { background: var(--accent); color: var(--on-accent); padding: 1px 4px; border-radius: 3px; font-weight: 700; }
  .vs-result-meta { font-size: 12px; color: var(--fg-dim); margin-top: 4px; }
  .vs-result-price { font-family: var(--f-mono); font-size: 14px; font-weight: 600; }
  .vs-outcome {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 10px;
    font-size: 13px; font-weight: 600;
    margin-top: auto;
  }
  .vs-outcome.bad { background: rgba(230, 57, 70, 0.10); color: var(--fa-red); border: 1px solid rgba(230, 57, 70, 0.25); }
  .vs-outcome.good { background: color-mix(in oklab, var(--accent) 12%, transparent); color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); }

  .diff-cta { text-align: center; margin-top: 40px; }

  /* ——— SERVICES ——— */
  .services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
  .service {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex; flex-direction: column; min-height: 320px;
  }
  .service h3 { font-family: var(--f-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin: 0 0 10px; }
  .service p { margin: 0 0 18px; color: var(--fg-muted); font-size: 14.5px; line-height: 1.55; }
  .service .platforms { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
  .service .pf {
    font-family: var(--f-mono); font-size: 11px;
    padding: 5px 10px; border-radius: 999px;
    background: var(--bg-elev); border: 1px solid var(--line);
    color: var(--fg-muted);
  }
  .service .filter-preview {
    margin-top: auto; background: var(--bg-elev); border: 1px solid var(--line);
    border-radius: 10px; padding: 10px 12px; font-size: 12px; color: var(--fg-muted);
    display: flex; flex-direction: column; gap: 6px;
  }
  .service .filter-preview div { display: flex; justify-content: space-between; }
  .service .filter-preview b { color: var(--fg); font-weight: 600; }
  .services-cta { text-align: center; margin-top: 48px; }

  /* ——— STEPS ——— */
  .steps-band { background: var(--bg-deep); }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .step {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column;
    position: relative;
  }
  .step:last-child { border-right: 0; }
  .step .num {
    font-family: var(--f-display); font-weight: 700;
    font-size: 72px; line-height: 1; letter-spacing: -0.04em;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .step .lbl {
    font-family: var(--f-mono); font-size: 11px;
    color: var(--fg-dim); letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .step h3 { font-family: var(--f-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin: 0 0 8px; }
  .step p { margin: 0; color: var(--fg-muted); font-size: 14.5px; line-height: 1.55; }

  /* ——— CASE ——— */
  .case-band { background: var(--bg-deep); padding-top: 0; }
  .case-wrap {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
  }
  .case-top {
    display: grid; grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
  }
  .case-meta {
    padding: 36px;
    border-right: 1px solid var(--line);
  }
  .case-meta .tag { font-family: var(--f-mono); font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em; }
  .case-meta h3 {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(28px, 2.6vw, 36px); letter-spacing: -0.025em;
    margin: 14px 0 12px; line-height: 1.1;
  }
  .case-meta p { margin: 0; color: var(--fg-muted); font-size: 15px; line-height: 1.55; }
  .case-stats {
    padding: 36px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  }
  .case-stats .stat b {
    display: block;
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(36px, 3.6vw, 56px); line-height: 1; letter-spacing: -0.03em;
    color: var(--accent);
  }
  .case-stats .stat span { font-size: 12px; color: var(--fg-dim); font-family: var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; display: block; }
  .case-rsr { display: grid; grid-template-columns: repeat(3, 1fr); }
  .case-rsr > div {
    padding: 32px; border-right: 1px solid var(--line);
  }
  .case-rsr > div:last-child { border-right: 0; }
  .case-rsr .num {
    font-family: var(--f-mono); font-size: 11px; color: var(--accent);
    letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px;
  }
  .case-rsr h4 {
    font-family: var(--f-display); font-weight: 700; font-size: 18px;
    margin: 0 0 8px; letter-spacing: -0.01em;
  }
  .case-rsr p { margin: 0; color: var(--fg-muted); font-size: 14px; line-height: 1.55; }

  /* ——— PRICING ——— */
  .pricing-head { text-align: center; margin-bottom: 56px; }
  .pricing-head h2 { max-width: 22ch; margin: 0 auto; }
  .pricing-head .lede { margin: 16px auto 0; }
  .pricing {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    max-width: 1240px; margin: 0 auto;
    align-items: stretch;
  }
  .plan {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    display: flex; flex-direction: column;
    position: relative;
  }
  .plan.is-feat {
    background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 6%, var(--bg-elev)), var(--bg-elev));
    border-color: color-mix(in oklab, var(--accent) 55%, transparent);
    box-shadow: 0 30px 80px -30px color-mix(in oklab, var(--accent) 30%, transparent);
    transform: scale(1.03);
    z-index: 2;
  }
  .plan .ribbon {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--on-accent);
    font-family: var(--f-mono); font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px;
    white-space: nowrap;
  }
  .plan h3 {
    font-family: var(--f-display); font-weight: 700;
    font-size: 22px; letter-spacing: -0.02em; margin: 0 0 6px;
  }
  .plan .pl-sub { color: var(--fg-muted); font-size: 13.5px; margin: 0 0 24px; min-height: 38px; line-height: 1.45; }
  .plan .pl-price {
    font-family: var(--f-display); font-weight: 700;
    font-size: 48px; line-height: 1; letter-spacing: -0.035em;
    color: var(--fg);
  }
  .plan .pl-price small {
    font-family: var(--f-body); font-size: 14px;
    font-weight: 500; color: var(--fg-muted);
    letter-spacing: 0; margin-left: 6px;
  }
  .plan .pl-price.custom { font-size: 30px; letter-spacing: -0.025em; }
  .plan ul {
    list-style: none; padding: 0; margin: 26px 0 28px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
  }
  .plan li {
    display: grid; grid-template-columns: 18px 1fr; gap: 10px;
    align-items: flex-start;
    font-size: 13.5px; line-height: 1.5; color: var(--fg);
  }
  .plan li .chk {
    width: 18px; height: 18px; flex-shrink: 0;
    border-radius: 999px;
    background: color-mix(in oklab, var(--accent) 18%, transparent);
    color: var(--accent);
    display: grid; place-items: center;
    margin-top: 2px;
  }
  .plan li.dim { color: var(--fg-muted); font-size: 13.5px; padding-top: 12px; border-top: 1px dashed var(--line); margin-top: 4px; }
  .plan li.dim small { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-top: 2px; }
  .plan li.more b { font-weight: 700; color: var(--fg); }
  .plan .plan-cta { width: 100%; }
  .plan .pl-foot {
    font-size: 12px; color: var(--fg-dim);
    text-align: center; margin-top: 14px;
  }

  /* ——— FINAL CTA ——— */
  .final {
    padding: 120px 0;
    background:
      radial-gradient(ellipse at 30% 0%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 60%),
      var(--bg-deep);
    text-align: center;
    border-top: 1px solid var(--line);
  }
  .final h2 { max-width: 24ch; margin: 0 auto 18px; font-size: clamp(36px, 4vw, 60px); }
  .final p { color: var(--fg-muted); font-size: 18px; line-height: 1.55; max-width: 56ch; margin: 0 auto 36px; }
  .final-form {
    display: flex; gap: 8px;
    background: var(--bg-elev); border: 1px solid var(--line-2);
    border-radius: 999px; padding: 6px;
    max-width: 560px; margin: 0 auto;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  }
  .final-form:focus-within { border-color: var(--accent); }
  .final-form input {
    flex: 1; min-width: 0; background: transparent; border: 0; outline: none;
    color: var(--fg); padding: 0 18px; font-size: 15px;
  }
  .final-form input::placeholder { color: var(--fg-dim); }
  .final-form .btn { height: 52px; padding: 0 26px; }
  .final .micro { justify-content: center; margin-top: 22px; }

  /* ——— FOOTER ——— */
  footer { border-top: 1px solid var(--line); padding: 48px 0 32px; font-size: 13px; color: var(--fg-muted); }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
  .foot-grid h3 { font-family: var(--f-display); font-weight: 700; font-size: 13px; color: var(--fg); margin: 0 0 14px; letter-spacing: 0.02em; text-transform: uppercase; }
  .foot-grid a { display: block; padding: 6px 0; color: var(--fg-muted); }
  .foot-grid a:hover { color: var(--fg); }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 24px; font-size: 12px; color: var(--fg-dim); }

  /* ——— RESPONSIVE ——— */
  @media (max-width: 980px) {
    .wrap { padding: 0 20px; }
    .hero-inner, .sp-band-grid, .sp-quotes, .benefits, .services, .steps, .case-top, .case-rsr, .case-stats, .foot-grid, .vs { grid-template-columns: 1fr; }
    .case-meta, .case-rsr > div, .step { border-right: 0; border-bottom: 1px solid var(--line); }
    .pricing { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
    .plan.is-feat { transform: none; }
    .diff-grid { grid-template-columns: 1fr; }
    .diff-flow { grid-template-columns: 1fr; gap: 12px; }
    .diff-flow .flow-arr { transform: rotate(90deg); padding: 0; }
    .nav-links { display: none; }
    section { padding: 72px 0; }
    .hero { padding: 40px 0 60px; min-height: auto; }
    .hero::before { width: 500px; height: 500px; left: -200px; top: -200px; }
  }

  @media (max-width: 640px) {
    .wrap { padding: 0 16px; }
    .nav-inner { height: 60px; }
    .nav-cta { gap: 6px; }
    .nav-cta .btn-ghost { display: none; }
    .nav-cta .btn { height: 38px; padding: 0 14px; font-size: 13px; }

    /* Hero */
    .hero { padding: 24px 0 48px; }
    h1.h1 { font-size: clamp(32px, 9vw, 44px); }
    .hero-sub { font-size: 16px; }
    .hero-form { flex-direction: column; padding: 8px; border-radius: 18px; gap: 6px; }
    .hero-form input { padding: 14px 16px; text-align: center; }
    .hero-form .btn { width: 100%; height: 48px; }
    .micro { gap: 10px 14px; font-size: 12px; }

    /* Sections */
    section { padding: 56px 0; }
    h2 { font-size: clamp(26px, 7vw, 36px); }
    .lede { font-size: 16px; }
    .eyebrow { font-size: 10px; }

    /* Hero search preview */
    .sp-row { grid-template-columns: 40px 1fr auto; gap: 10px; padding: 8px 6px; }
    .sp-row .img { width: 40px; height: 40px; font-size: 14px; }
    .sp-row .name { font-size: 13px; }
    .sp-row .price { font-size: 12px; }
    .sp-foot > div { padding: 10px 12px; font-size: 10px; }
    .sp-foot b { font-size: 15px; }

    /* Social proof */
    .sp-band { padding: 24px 0; }
    .sp-band-left .big { font-size: 22px; }
    .sp-quotes { gap: 18px; }

    /* Benefits / services */
    .benefits, .services { gap: 14px; margin-top: 40px; }
    .benefit, .service { padding: 24px 22px; min-height: auto; }
    .benefit h3, .service h3 { font-size: 19px; }
    .benefit .ic, .service .ic { width: 48px; height: 48px; margin-bottom: 16px; }

    /* Versus */
    .vs { gap: 14px; margin-bottom: 40px; }
    .vs-col { padding: 22px 18px; gap: 12px; }
    .vs-tag { font-size: 16px; }

    /* Steps */
    .steps { margin-top: 40px; }
    .step { padding: 28px 22px; }
    .step .num { font-size: 56px; margin-bottom: 4px; }
    .step .lbl { margin-bottom: 16px; }
    .step h3 { font-size: 20px; }

    /* Case */
    .case-wrap { margin-top: 40px; }
    .case-meta, .case-stats { padding: 26px 22px; }
    .case-stats { gap: 18px; }
    .case-stats .stat b { font-size: 36px; }
    .case-rsr > div { padding: 24px 22px; }
    .case-rsr h4 { font-size: 17px; }

    /* Pricing */
    .pricing { gap: 14px; grid-template-columns: 1fr; max-width: 420px; }
    .plan { padding: 26px 20px; }
    .plan.is-feat { transform: none; }
    .plan .pl-price { font-size: 42px; }
    .plan .pl-price.custom { font-size: 26px; }

    /* Footer */
    .foot-grid { gap: 28px; margin-bottom: 28px; }
    .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; padding-top: 20px; }

    /* Final CTA */
    .final { padding: 72px 0; }
    .final-form { flex-direction: column; padding: 8px; border-radius: 18px; gap: 6px; }
    .final-form input { padding: 14px 16px; text-align: center; }
    .final-form .btn { width: 100%; height: 48px; }

    /* Buttons */
    .btn-lg { height: 50px; padding: 0 22px; font-size: 14px; }
    .btn-xl { height: 56px; padding: 0 26px; font-size: 15px; }

    /* Section heads */
    .services-cta, .diff-cta { margin-top: 32px; }
  }

  /* ═══════════════════════════════════════════════════════════
     PRODUCCIÓN — añadidos sobre el diseño original
     (menú móvil, logo como <img>, scroll suave, footer)
     ═══════════════════════════════════════════════════════════ */

  /* Skip-link: oculto hasta recibir foco por teclado (accesibilidad, WCAG 2.4.1) */
  .skip {
    position: absolute; left: 12px; top: -64px; z-index: 100;
    background: var(--accent); color: var(--on-accent);
    padding: 10px 16px; border-radius: 8px; font-weight: 700; font-size: 14px;
    transition: top .15s ease;
  }
  .skip:focus { top: 12px; }

  /* Foco visible de marca para navegación por teclado (accesibilidad) */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  .btn:focus-visible,
  .nav-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 6px;
  }

  /* Scroll suave con margen para el header sticky */
  html { scroll-behavior: smooth; }
  section[id] { scroll-margin-top: 90px; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  /* Logo (ahora <img> en vez de <svg> inline, para reutilizar y cachear) */
  .brand-logo { height: 30px; width: auto; display: block; }
  .brand-logo-foot { height: 32px; }

  /* Botón hamburguesa — oculto en escritorio */
  .nav-toggle {
    display: none;
    width: 42px; height: 42px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block; width: 18px; height: 2px;
    background: var(--fg); border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Panel del menú móvil — se despliega bajo el header sticky */
  .mobile-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    display: flex; flex-direction: column;
    padding: 12px 20px 20px;
    background: color-mix(in oklab, var(--bg-deep) 97%, transparent);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0,0,0,.45);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a {
    padding: 13px 4px; font-size: 15px; color: var(--fg-muted);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:hover { color: var(--fg); }
  .mobile-menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
  .mobile-menu-cta .btn { width: 100%; height: 48px; }

  /* Footer: enlace "Próximamente" en la columna Legal */
  .foot-soon { color: var(--fg-dim); font-size: 13px; }

  /* Mostrar hamburguesa y ocultar el "Iniciar sesión" del top bar en tablet/móvil */
  @media (max-width: 980px) {
    .nav-toggle { display: inline-flex; }
    .nav-cta > .btn-ghost { display: none; }
  }
  @media (min-width: 981px) {
    .mobile-menu { display: none !important; }
  }
  @media (max-width: 640px) {
    .nav-toggle { width: 38px; height: 38px; }
    .brand-logo { height: 24px; }
  }

  /* ═══════════ Banner de consentimiento de cookies (RGPD) ═══════════ */
  .cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: color-mix(in oklab, var(--bg-deep) 97%, transparent);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border-top: 1px solid var(--line-2);
    box-shadow: 0 -20px 48px rgba(0,0,0,.5);
  }
  .cookie-banner[hidden] { display: none; }
  .cookie-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 18px 20px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px 28px; flex-wrap: wrap;
  }
  .cookie-text { flex: 1 1 320px; min-width: 260px; }
  .cookie-text strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--fg); }
  .cookie-text p { margin: 0; font-size: 13.5px; color: var(--fg-muted); line-height: 1.55; }
  .cookie-text a { color: var(--accent); text-decoration: underline; }
  .cookie-more-btn {
    background: none; border: 0; padding: 0; margin-left: 4px; cursor: pointer;
    color: var(--accent); font: inherit; font-size: 13.5px; text-decoration: underline;
  }
  .cookie-details { margin-top: 10px; }
  .cookie-details[hidden] { display: none; }
  .cookie-details ul { margin: 0; padding-left: 18px; font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
  .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-actions .btn { height: 44px; }
  @media (max-width: 640px) {
    .cookie-inner { padding: 16px; gap: 14px; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; }
  }

  /* ═══════════ Páginas legales (privacidad / términos / cookies) ═══════════ */
  .legal-nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in oklab, var(--bg) 75%, transparent);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid var(--line);
  }
  .legal-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .legal-main { max-width: 800px; margin: 0 auto; padding: 56px 20px 100px; }
  .legal-main .eyebrow { margin-bottom: 12px; }
  .legal-main h1 { font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 5vw, 42px); line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 8px; }
  .legal-main .updated { color: var(--fg-dim); font-size: 13px; margin: 0 0 8px; }
  .legal-note {
    background: var(--bg-soft); border: 1px solid var(--line-2); border-left: 3px solid var(--accent);
    border-radius: 10px; padding: 14px 16px; margin: 24px 0 32px; font-size: 13.5px; color: var(--fg-muted); line-height: 1.6;
  }
  .legal-main h2 { font-family: var(--f-display); font-weight: 700; font-size: 21px; margin: 36px 0 12px; color: var(--fg); }
  .legal-main h3 { font-size: 16px; font-weight: 600; margin: 22px 0 8px; color: var(--fg); }
  .legal-main p, .legal-main li { color: var(--fg-muted); line-height: 1.7; font-size: 15px; }
  .legal-main p { margin: 0 0 14px; }
  .legal-main ul, .legal-main ol { margin: 0 0 16px; padding-left: 22px; }
  .legal-main li { margin-bottom: 7px; }
  .legal-main a { color: var(--accent); text-decoration: underline; }
  .legal-main strong { color: var(--fg); }
  .legal-main .ph { color: var(--fa-yellow); background: rgba(255,255,0,.08); padding: 0 4px; border-radius: 4px; font-family: var(--f-mono); font-size: 0.9em; }
  .legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 13.5px; }
  .legal-table th, .legal-table td { text-align: left; padding: 10px 12px; border: 1px solid var(--line-2); vertical-align: top; color: var(--fg-muted); }
  .legal-table th { background: var(--bg-soft); color: var(--fg); font-weight: 600; }
  .legal-table-wrap { overflow-x: auto; }
  .legal-foot { border-top: 1px solid var(--line); margin-top: 20px; padding: 26px 0; color: var(--fg-dim); font-size: 13px; }
  .legal-foot .wrap { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .legal-foot a { color: var(--fg-muted); }
  .legal-foot a:hover { color: var(--fg); }
