  :root {
    --bg: #FFFFFF;
    --bg-soft: #F4F4F4;
    --bg-soft-2: #FAFAFA;
    --fg: #0A0A0A;
    --fg-mid: #525252;
    --fg-low: #737373;
    --line: #E5E5E5;
    --line-strong: #0A0A0A;
    --accent: #DC2626;
    --accent-deep: #991B1B;
    --col-w: 1320px;
    --pad: 28px;
    --radius: 0;
    --sans: 'Hanken Grotesk', system-ui, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--fg);
    font-family: var(--sans);
    font-size: 16px; line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }

  .container { max-width: var(--col-w); margin: 0 auto; padding: 0 var(--pad); }
  .mono { font-family: var(--mono); font-feature-settings: "tnum"; }
  .meta {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--fg-mid);
  }

  /* ================== STATUS BAR ================== */
  .statusbar {
    background: var(--fg);
    color: var(--bg);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 8px 0;
    overflow: hidden;
  }
  .statusbar .container {
    display: flex; align-items: center; gap: 28px;
    white-space: nowrap;
  }
  .status-dot {
    width: 7px; height: 7px; background: #22C55E; border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: pulse 1.6s infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  }
  .statusbar b { color: #fff; font-weight: 600; }
  .statusbar .sep { opacity: 0.4; }
  .statusbar .red { color: #FCA5A5; }

  /* ================== TOP NAV ================== */
  .topbar {
    border-bottom: 1px solid var(--line-strong);
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
  }
  .topbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 36px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  /* logo */
  .brand {
    display: inline-flex; align-items: baseline; gap: 0;
    font-weight: 800; letter-spacing: -0.04em;
    font-size: 20px;
  }
  .brand .b-no {
    position: relative;
    padding: 0 2px;
    color: var(--fg);
  }
  .brand .b-no::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 50%;
    height: 3px; background: var(--accent);
    transform: translateY(-50%);
  }
  .brand .b-tld { color: var(--fg-low); font-weight: 500; }
  .brand .b-dot { color: var(--accent); }

  .nav {
    display: flex; gap: 28px;
    font-family: var(--mono); font-size: 11.5px;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .nav a { color: var(--fg-mid); transition: color .15s; }
  .nav a:hover { color: var(--fg); }

  .nav-meta {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--fg-low);
  }
  .cta-emergency {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: #fff;
    padding: 10px 16px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 600;
    transition: background .15s;
  }
  .cta-emergency:hover { background: var(--accent-deep); }
  .cta-emergency::before {
    content: ""; width: 8px; height: 8px;
    background: #fff; border-radius: 999px;
    animation: pulse-white 1.6s infinite;
  }
  @keyframes pulse-white {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70%  { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
  }

  @media (max-width: 980px) {
    .topbar .container { grid-template-columns: auto auto; gap: 14px; }
    .nav, .nav-meta { display: none; }
  }

  /* ================== HERO ================== */
  .hero { padding: 80px 0 100px; border-bottom: 1px solid var(--line-strong); }
  .hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: end; }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
  .hero-eyebrow {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--fg-mid);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 36px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ""; height: 1px; background: var(--line-strong); flex: 1; max-width: 32px;
  }
  .hero-eyebrow::after { display: none; }
  h1.hero-h {
    font-family: var(--sans);
    font-weight: 800; font-size: clamp(48px, 8.6vw, 132px);
    line-height: 0.86; letter-spacing: -0.045em;
    margin: 0 0 32px;
  }
  h1.hero-h u {
    text-decoration: none;
    background: var(--accent); color: #fff;
    padding: 0 12px;
  }
  h1.hero-h em { font-style: normal; color: var(--accent); }
  .hero-deck {
    font-size: 19px; line-height: 1.45; color: var(--fg-mid);
    max-width: 50ch; margin: 0 0 36px;
  }
  .hero-deck::before {
    content: "—"; color: var(--accent); margin-right: 10px; font-weight: 700;
  }
  .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 24px;
    font-family: var(--mono); font-size: 11.5px;
    letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--line-strong);
    cursor: pointer; transition: background .15s, color .15s, transform .15s;
  }
  .btn-p { background: var(--fg); color: var(--bg); }
  .btn-p:hover { background: var(--accent); border-color: var(--accent); }
  .btn-s { background: var(--bg); color: var(--fg); }
  .btn-s:hover { background: var(--fg); color: var(--bg); }
  .btn .arr { display: inline-block; transition: transform .2s; }
  .btn:hover .arr { transform: translateX(4px); }

  .hero-aside {
    border: 1px solid var(--line-strong);
    padding: 28px;
    background: var(--bg-soft-2);
  }
  .ha-h {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: 14px; border-bottom: 1px solid var(--line-strong);
    margin-bottom: 18px;
  }
  .ha-h b { font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
  .ha-h .ha-id { font-family: var(--mono); font-size: 11px; color: var(--fg-low); }
  .ha-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; }
  .ha-row:last-child { border-bottom: none; }
  .ha-row span:first-child { color: var(--fg-mid); }
  .ha-row span:last-child { font-family: var(--mono); font-weight: 500; color: var(--fg); }
  .ha-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-strong); }
  .ha-foot .ok { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
  .ha-foot .ok::before { content: ""; width: 8px; height: 8px; background: #22C55E; border-radius: 999px; }
  .ha-foot a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

  /* ================== TRUST STRIP ================== */
  .trust {
    background: var(--bg-soft);
    padding: 22px 0;
    border-bottom: 1px solid var(--line-strong);
    overflow: hidden;
  }
  .trust .container {
    display: flex; align-items: center; gap: 48px;
    font-family: var(--mono); font-size: 12px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--fg-mid);
    flex-wrap: wrap;
  }
  .trust b { color: var(--fg); font-weight: 600; }
  .trust .sep { color: var(--accent); }

  /* ================== STATS ================== */
  .stats { padding: 90px 0; border-bottom: 1px solid var(--line-strong); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-strong); }
  @media (max-width: 980px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .stats-grid { grid-template-columns: 1fr; } }
  .stat {
    padding: 32px 24px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .stat:last-child { border-right: none; }
  @media (max-width: 980px) {
    .stat:nth-child(2n) { border-right: none; }
  }
  .stat .lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-low); margin-bottom: 14px; }
  .stat .num { font-size: clamp(48px, 5vw, 72px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
  .stat .num em { font-style: normal; color: var(--accent); }
  .stat .num small { font-size: 0.45em; font-weight: 500; color: var(--fg-low); margin-left: 4px; vertical-align: 0.4em; }
  .stat .desc { font-size: 13.5px; color: var(--fg-mid); margin-top: 16px; line-height: 1.45; max-width: 28ch; }

  /* ================== SERVICES ================== */
  .services { padding: 100px 0; border-bottom: 1px solid var(--line-strong); }
  .section-h {
    display: grid; grid-template-columns: 1fr auto; gap: 24px;
    align-items: end;
    margin-bottom: 56px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-strong);
  }
  .section-h h2 {
    font-weight: 800; font-size: clamp(34px, 4.4vw, 60px);
    line-height: 0.95; letter-spacing: -0.03em;
    margin: 0; max-width: 14ch;
  }
  .section-h h2 em { font-style: normal; color: var(--accent); }
  .section-h .meta { align-self: end; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
  @media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }
  .svc {
    padding: 28px 28px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .2s;
    position: relative;
    cursor: pointer;
    display: flex; flex-direction: column;
  }
  .svc:hover { background: var(--fg); color: var(--bg); }
  .svc:hover .svc-id, .svc:hover .svc-cat, .svc:hover .svc-desc, .svc:hover .svc-link { color: inherit; opacity: 0.85; }
  .svc:hover .svc-id b { background: var(--accent); color: #fff; }
  .svc:hover .svc-link::after { background: var(--accent); }
  .svc:nth-child(3n) { border-right: none; }
  @media (max-width: 980px) { .svc:nth-child(3n) { border-right: 1px solid var(--line); } .svc:nth-child(2n) { border-right: none; } }
  @media (max-width: 620px) { .svc { border-right: none !important; } }
  .svc-id {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--fg-low);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 22px;
  }
  .svc-id b {
    background: var(--fg); color: var(--bg);
    padding: 3px 7px; font-weight: 600; font-size: 10px;
    transition: all .2s;
  }
  .svc-name {
    font-weight: 800; font-size: 26px; letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 14px;
  }
  .svc-desc { font-size: 14px; line-height: 1.5; color: var(--fg-mid); margin: 0 0 20px; }
  .svc-cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-low); margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; }
  .svc-link::after {
    content: " →"; color: var(--accent); transition: transform .2s, background .2s; display: inline-block;
  }
  .svc:hover .svc-link::after { transform: translateX(4px); }

  /* ================== PROCESS ================== */
  .process { padding: 100px 0; background: var(--bg-soft-2); border-bottom: 1px solid var(--line-strong); }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  @media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }
  .step { padding: 28px 22px 28px 0; border-top: 2px solid var(--fg); position: relative; }
  .step::before {
    content: ""; position: absolute; left: 0; top: -2px;
    width: 22px; height: 2px; background: var(--accent);
  }
  .step .num {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
    color: var(--fg-low); margin: 18px 0 14px;
  }
  .step h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px; line-height: 1.1; }
  .step p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--fg-mid); }
  .step .dur {
    margin-top: 16px;
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent);
  }

  /* ================== CRA SECTION ================== */
  .cra-sec { padding: 110px 0; border-bottom: 1px solid var(--line-strong); background: var(--fg); color: var(--bg); }
  .cra-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
  @media (max-width: 980px) { .cra-grid { grid-template-columns: 1fr; gap: 40px; } }
  .cra-sec .meta { color: rgba(255,255,255,0.55); }
  .cra-sec h2 {
    font-weight: 800; font-size: clamp(36px, 4.6vw, 64px);
    line-height: 0.95; letter-spacing: -0.03em;
    margin: 18px 0 28px;
    max-width: 16ch;
  }
  .cra-sec h2 em { font-style: normal; color: var(--accent); }
  .cra-sec p { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.78); max-width: 56ch; margin: 0 0 18px; }
  .cra-list { list-style: none; padding: 0; margin: 28px 0 0; }
  .cra-list li {
    padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.18);
    font-size: 15px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: baseline;
  }
  .cra-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .cra-list li b { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); font-weight: 600; }
  .cra-list li .v { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.5); }

  .cra-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); padding: 28px; }
  .cra-card .ha-h { border-bottom-color: rgba(255,255,255,0.25); }
  .cra-card .ha-h b { color: #fff; }
  .cra-card .ha-h .ha-id { color: rgba(255,255,255,0.55); }
  .cra-card .ha-row { border-bottom-color: rgba(255,255,255,0.12); }
  .cra-card .ha-row span:first-child { color: rgba(255,255,255,0.65); }
  .cra-card .ha-row span:last-child { color: #fff; }
  .cra-card .ha-foot { border-top-color: rgba(255,255,255,0.25); }

  /* ================== TESTIMONIAL ================== */
  .quote-sec { padding: 110px 0; border-bottom: 1px solid var(--line-strong); }
  .quote-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
  @media (max-width: 980px) { .quote-wrap { grid-template-columns: 1fr; gap: 30px; } }
  blockquote {
    margin: 0; font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 500; line-height: 1.25; letter-spacing: -0.02em;
  }
  blockquote::before { content: "«"; color: var(--accent); margin-right: 8px; font-weight: 700; }
  blockquote::after  { content: "»"; color: var(--accent); margin-left: 4px; font-weight: 700; }
  .quote-by { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line-strong); display: flex; justify-content: space-between; align-items: baseline; }
  .quote-by b { font-weight: 600; }
  .quote-by .meta { color: var(--fg-low); }

  /* ================== CONTACT CTA ================== */
  .cta-final { padding: 110px 0; background: var(--bg-soft); border-bottom: 1px solid var(--line-strong); }
  .cta-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
  @media (max-width: 980px) { .cta-grid { grid-template-columns: 1fr; } }
  .cta-final h2 { font-weight: 800; font-size: clamp(36px, 4.8vw, 64px); line-height: 0.95; letter-spacing: -0.03em; margin: 14px 0 24px; max-width: 16ch; }
  .cta-final h2 em { font-style: normal; color: var(--accent); }
  .cta-final p { font-size: 17px; line-height: 1.55; color: var(--fg-mid); max-width: 50ch; }
  .form { background: var(--bg); border: 1px solid var(--line-strong); padding: 28px; }
  .form .ha-h { padding-bottom: 14px; margin-bottom: 22px; }
  .field { display: block; margin-bottom: 18px; }
  .field label {
    display: block; font-family: var(--mono); font-size: 10.5px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--fg-low); margin-bottom: 6px;
  }
  .field input, .field select, .field textarea {
    width: 100%; font: inherit; font-family: var(--sans); font-size: 15px;
    padding: 12px 0; border: none; border-bottom: 1px solid var(--line-strong);
    background: transparent; color: var(--fg);
    outline: none; transition: border-color .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
  .form-foot { display: flex; gap: 12px; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-strong); flex-wrap: wrap; }
  .form .btn { flex: 1; justify-content: center; }
  .small-print { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--fg-low); margin-top: 10px; }

  /* ================== FOOTER ================== */
  footer { padding: 80px 0 40px; background: var(--fg); color: var(--bg); }
  .ft-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 32px;
  }
  @media (max-width: 980px) { .ft-top { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .ft-top { grid-template-columns: 1fr; } }
  .ft-brand { font-weight: 800; font-size: 28px; letter-spacing: -0.04em; }
  .ft-brand .b-no::before { background: var(--accent); }
  .ft-brand-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 14px; max-width: 36ch; line-height: 1.45; }
  .ft-h { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 18px; }
  .ft-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
  .ft-list a { color: rgba(255,255,255,0.78); font-size: 14px; transition: color .15s; }
  .ft-list a:hover { color: var(--accent); }
  .ft-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
  .ft-bot .meta { color: rgba(255,255,255,0.5); }
  .ft-legal { display: flex; gap: 22px; }
  .ft-legal a { color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

  /* small text utilities */
  .hl { background: var(--accent); color: #fff; padding: 0 6px; }


  /* =========================================================
     PAGE: SERVICE PAGE (used by /soluciones/* pages)
     ========================================================= */
  .crumbs {
    padding: 18px 0; border-bottom: 1px solid var(--line);
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--fg-mid);
  }
  .crumbs a { color: var(--fg-mid); }
  .crumbs a:hover { color: var(--fg); }
  .crumbs span { color: var(--accent); margin: 0 8px; }

  .svc-hero { padding: 70px 0 90px; border-bottom: 1px solid var(--line-strong); }
  .svc-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end; }
  @media (max-width: 980px) { .svc-hero-grid { grid-template-columns: 1fr; gap: 40px; } }
  .svc-hero h1 {
    font-weight: 800; font-size: clamp(40px, 6vw, 84px);
    line-height: 0.92; letter-spacing: -0.035em;
    margin: 0 0 28px; max-width: 18ch;
  }
  .svc-hero h1 em { font-style: normal; color: var(--accent); }
  .svc-hero h1 u { text-decoration: none; background: var(--accent); color: #fff; padding: 0 10px; }
  .svc-hero .deck {
    font-size: 18px; line-height: 1.5; color: var(--fg-mid);
    max-width: 56ch; margin: 0 0 30px;
  }
  .svc-hero .deck::before { content: "—"; color: var(--accent); margin-right: 10px; font-weight: 700; }

  /* "Para quién" */
  .for-who { padding: 90px 0; border-bottom: 1px solid var(--line-strong); background: var(--bg-soft-2); }
  .for-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
  @media (max-width: 980px) { .for-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .for-grid { grid-template-columns: 1fr; } }
  .for-cell {
    padding: 26px 22px;
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--bg);
  }
  .for-cell:last-child { border-right: none; }
  @media (max-width: 980px) { .for-cell:nth-child(2n) { border-right: none; } }
  @media (max-width: 540px) { .for-cell { border-right: none; } }
  .for-cell .lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-low); margin-bottom: 14px; }
  .for-cell h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 10px; }
  .for-cell p { font-size: 14px; line-height: 1.5; color: var(--fg-mid); margin: 0; }

  /* Qué incluye */
  .includes { padding: 100px 0; border-bottom: 1px solid var(--line-strong); }
  .inc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
  @media (max-width: 980px) { .inc-grid { grid-template-columns: 1fr; gap: 30px; } }
  .inc-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-strong); }
  .inc-list li {
    padding: 18px 0; border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: 60px 1fr auto; gap: 18px;
    align-items: baseline;
  }
  .inc-list li b {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
    color: var(--accent); font-weight: 600;
  }
  .inc-list li h4 { font-size: 16px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
  .inc-list li p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--fg-mid); }
  .inc-list li .opt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-low); }

  .inc-side h2 {
    font-weight: 800; font-size: clamp(30px, 3.6vw, 48px);
    line-height: 0.95; letter-spacing: -0.025em;
    margin: 0 0 20px; max-width: 18ch;
  }
  .inc-side h2 em { font-style: normal; color: var(--accent); }
  .inc-side p { font-size: 16px; line-height: 1.55; color: var(--fg-mid); max-width: 52ch; }

  /* FAQ */
  .faq { padding: 100px 0; background: var(--bg-soft-2); border-bottom: 1px solid var(--line-strong); }
  .faq-list { border-top: 1px solid var(--line-strong); }
  details.faq-item {
    border-bottom: 1px solid var(--line-strong);
    padding: 22px 0;
  }
  details.faq-item summary {
    list-style: none; cursor: pointer;
    display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: baseline;
    font-size: 19px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary::after {
    content: "+"; font-family: var(--mono); font-size: 22px; font-weight: 400;
    color: var(--accent); transition: transform .2s;
  }
  details.faq-item[open] summary::after { content: "−"; }
  details.faq-item .ans { padding-top: 14px; font-size: 15.5px; line-height: 1.6; color: var(--fg-mid); max-width: 75ch; }
  details.faq-item .ans p { margin: 0 0 10px; }
  details.faq-item .ans p:last-child { margin: 0; }

  /* Otras soluciones */
  .others { padding: 90px 0 110px; border-bottom: 1px solid var(--line-strong); }
  .others-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
  @media (max-width: 980px) { .others-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .others-grid { grid-template-columns: 1fr; } }
  .other {
    padding: 22px 22px 24px;
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
    transition: background .15s;
    display: block;
  }
  .other:last-child { border-right: none; }
  @media (max-width: 980px) { .other:nth-child(2n) { border-right: none; } }
  @media (max-width: 540px) { .other { border-right: none; } }
  .other:hover { background: var(--fg); color: var(--bg); }
  .other:hover .o-tag, .other:hover .o-arrow { color: inherit; opacity: 0.85; }
  .other:hover .o-arrow { color: var(--accent); opacity: 1; }
  .o-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-low); margin-bottom: 18px; }
  .o-name { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; margin: 0 0 22px; }
  .o-arrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }

  /* Soluciones dropdown nav */
  .nav-drop { position: relative; }
  .nav-drop > a::after { content: "▾"; margin-left: 4px; font-size: 9px; opacity: 0.6; }
  .nav-drop-menu {
    position: absolute; top: calc(100% + 18px); left: -22px;
    background: var(--bg); border: 1px solid var(--line-strong);
    padding: 14px 0; min-width: 280px;
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 60;
  }
  .nav-drop:hover > .nav-drop-menu,
  .nav-drop:focus-within > .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-drop-menu a {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 14px; padding: 10px 22px;
    font-family: var(--sans); font-size: 14px; letter-spacing: -0.005em; text-transform: none;
    color: var(--fg);
  }
  .nav-drop-menu a:hover { background: var(--bg-soft); color: var(--fg); }
  .nav-drop-menu a small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-low); }
  .nav-drop-menu .sep-row {
    height: 1px; background: var(--line); margin: 8px 0;
  }

  /* =========================================================
     PAGE IMAGES (hero / side / spotlight)
     ========================================================= */
  /* 1) Hero banner — between hero and trust strip, full bleed */
  .page-hero-img {
    border-top: 1px solid var(--line-strong);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 6;
    background: var(--bg-soft);
  }
  .page-hero-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .page-hero-img .cap {
    position: absolute; left: 24px; bottom: 18px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 7px 12px;
    background: rgba(255,255,255,0.92);
    color: var(--fg);
    border: 1px solid var(--line-strong);
  }
  @media (max-width: 720px) {
    .page-hero-img { aspect-ratio: 4 / 3; }
    .page-hero-img .cap { font-size: 10px; padding: 5px 9px; left: 14px; bottom: 14px; }
  }

  /* 2) Side image — placed UNDER the side text, inside the LEFT column.
        Keeps the original 2-column .inc-grid intact (text | list).
        Children of .inc-side now: <h2>, <p>, optional <.inc-side-img/>. */
  .inc-side-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line-strong);
    background: var(--bg-soft);
    margin-top: 28px;
    max-width: 460px;
  }
  .inc-side-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .inc-side-img .cap {
    position: absolute; left: 14px; bottom: 14px;
    font-family: var(--mono); font-size: 10.5px;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 6px 10px;
    background: rgba(255,255,255,0.92);
    color: var(--fg);
    border: 1px solid var(--line-strong);
  }
  @media (max-width: 980px) {
    .inc-side-img { max-width: 100%; }
  }

  /* 3) Spotlight banner — between includes and FAQ */
  .spotlight {
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 5;
    background: var(--bg-soft);
  }
  .spotlight img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .spotlight .cap {
    position: absolute; left: 28px; bottom: 22px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 7px 12px;
    background: rgba(255,255,255,0.92);
    color: var(--fg);
    border: 1px solid var(--line-strong);
  }
  @media (max-width: 720px) {
    .spotlight { aspect-ratio: 4 / 3; }
    .spotlight .cap { font-size: 10px; padding: 5px 9px; left: 16px; bottom: 16px; }
  }
