:root{
    --navy-950:#0B1B30;
    --navy-900:#132A47;
    --navy-800:#1F4E78;
    --navy-700:#2A6392;
    --gold-600:#B8901E;
    --gold-500:#C9A227;
    --gold-200:#EEDFAF;
    --cyan-600:#0E8FA8;
    --cyan-500:#17ABC6;
    --cyan-300:#8FE1EF;
    --paper:#F1F4F9;
    --paper-card:#FFFFFF;
    --line:#DCE3EC;
    --ink:#152238;
    --ink-muted:#54627A;
    --ok:#2E7D52;
    --danger:#B4423C;
    --radius:14px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  html,body{margin:0;padding:0;}
  body{
    background-color:var(--paper);
    background-image:
      radial-gradient(circle at 1px 1px, rgba(31,78,120,.09) 1px, transparent 0);
    background-size:26px 26px;
    color:var(--ink); font-family:'Inter',system-ui,-apple-system,sans-serif; line-height:1.55; -webkit-font-smoothing:antialiased;
  }
  ::selection{background:var(--gold-200);}
  h1,h2,h3,.serif{font-family:'Source Serif 4',Georgia,serif;}
  .mono{font-family:'IBM Plex Mono',monospace;}
  a{color:inherit;}
  section{scroll-margin-top:76px; position:relative;}
  .wrap{max-width:1080px; margin:0 auto; padding:0 24px;}
  .wrap-narrow{max-width:920px; margin:0 auto; padding:0 24px;}
  svg.icon{width:22px; height:22px; flex:none;}

  /* ---------- Nav ---------- */
  .topbar{position:sticky; top:0; z-index:50; background:linear-gradient(180deg,var(--navy-900),var(--navy-800)); color:#fff; box-shadow:0 6px 20px -8px rgba(11,27,48,.45); border-bottom:1px solid rgba(23,171,198,.35);}
  .nav-inner{max-width:1080px; margin:0 auto; padding:14px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px;}
  .brand{display:flex; align-items:center; gap:12px; text-decoration:none;}
  .seal{width:38px; height:38px; border-radius:50%; border:2px solid var(--gold-500); display:flex; align-items:center; justify-content:center; font-family:'Source Serif 4',serif; font-weight:700; font-size:14px; color:var(--gold-200); flex:none; background:radial-gradient(circle at 35% 30%, rgba(201,162,39,.18), transparent 60%); position:relative;}
  .seal::after{content:""; position:absolute; inset:-5px; border-radius:50%; border:1px solid rgba(23,171,198,.5); animation:pulseRing 2.6s ease-out infinite;}
  @keyframes pulseRing{0%{transform:scale(.9); opacity:.9;} 100%{transform:scale(1.35); opacity:0;}}
  .brand-text .kicker{font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-200); opacity:.85;}
  .brand-text .title{font-size:15px; font-weight:700;}
  nav.links{display:flex; gap:26px; font-size:14px; font-weight:500;}
  nav.links a{text-decoration:none; color:#D7E0EC; transition:color .15s;}
  nav.links a:hover{color:var(--cyan-300);}
  .nav-cta{background:var(--gold-500); color:var(--navy-950); font-weight:700; font-size:13.5px; padding:9px 16px; border-radius:9px; text-decoration:none; white-space:nowrap;}
  .nav-toggle{display:none;}
  @media (max-width:840px){
    nav.links{display:none;}
    .nav-toggle{display:block; background:none; border:1px solid rgba(255,255,255,.3); color:#fff; padding:7px 10px; border-radius:8px;}
  }

  /* ---------- Hero ---------- */
  .hero{padding:80px 0 68px; overflow:hidden;}
  .hero::before, .hero::after{content:""; position:absolute; border-radius:50%; filter:blur(70px); z-index:0; pointer-events:none;}
  .hero::before{width:420px; height:420px; background:radial-gradient(circle, rgba(23,171,198,.28), transparent 70%); top:-160px; right:-80px;}
  .hero::after{width:380px; height:380px; background:radial-gradient(circle, rgba(201,162,39,.22), transparent 70%); bottom:-180px; left:-100px;}
  .hero-grid{display:grid; grid-template-columns:1.15fr .85fr; gap:48px; align-items:center; position:relative; z-index:1;}
  @media (max-width:840px){.hero-grid{grid-template-columns:1fr;}}
  .eyebrow{display:inline-flex; align-items:center; gap:8px; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--navy-800); font-weight:700; background:rgba(255,255,255,.75); backdrop-filter:blur(6px); border:1px solid var(--line); padding:6px 12px; border-radius:999px;}
  .eyebrow .dot{width:6px;height:6px;border-radius:50%; background:var(--cyan-500); box-shadow:0 0 0 3px rgba(23,171,198,.25);}
  .hero h1{font-size:clamp(30px,4.4vw,44px); font-weight:600; margin:18px 0 14px; color:var(--navy-950); letter-spacing:-.01em; line-height:1.12;}
  .hero p.lead{color:var(--ink-muted); font-size:17px; max-width:52ch; margin:0 0 26px;}
  .hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
  .btn-primary{appearance:none; border:none; cursor:pointer; text-decoration:none; display:inline-block; background:linear-gradient(180deg,var(--gold-500),var(--gold-600)); color:var(--navy-950); font-family:'Inter'; font-weight:700; font-size:15px; padding:14px 26px; border-radius:11px; box-shadow:0 10px 24px -10px rgba(184,144,30,.55); transition:transform .15s ease, box-shadow .15s ease;}
  .btn-primary:hover{filter:brightness(1.03); transform:translateY(-2px); box-shadow:0 14px 28px -10px rgba(184,144,30,.6);}
  .btn-outline{appearance:none; cursor:pointer; text-decoration:none; display:inline-block; background:#fff; border:1px solid var(--navy-800); color:var(--navy-800); font-weight:600; font-size:15px; padding:13px 24px; border-radius:11px; transition:all .15s ease;}
  .btn-outline:hover{background:var(--navy-800); color:#fff; border-color:var(--cyan-500); box-shadow:0 0 0 3px rgba(23,171,198,.2);}

  .hero-card{background:linear-gradient(165deg,var(--navy-950),#0E2038); border-radius:18px; padding:26px 28px; color:#fff; box-shadow:0 24px 60px -24px rgba(11,27,48,.55); border:1px solid rgba(23,171,198,.25); position:relative; overflow:hidden;}
  .hero-card::before{content:""; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--cyan-500),var(--gold-500),transparent); background-size:200% 100%; animation:scanline 3.5s linear infinite;}
  @keyframes scanline{0%{background-position:200% 0;} 100%{background-position:-200% 0;}}
  .hero-card .hc-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:16px;}
  .hero-card .hc-title{font-family:'Source Serif 4'; font-size:17px; color:#fff; margin:0;}
  .hero-card .hc-status{display:flex; align-items:center; gap:6px; font-family:'IBM Plex Mono',monospace; font-size:10.5px; color:var(--cyan-300); text-transform:uppercase; letter-spacing:.06em;}
  .hero-card .hc-status .led{width:7px; height:7px; border-radius:50%; background:var(--cyan-300); box-shadow:0 0 8px 1px var(--cyan-300); animation:blink 1.8s ease-in-out infinite;}
  @keyframes blink{0%,100%{opacity:1;} 50%{opacity:.35;}}
  .hero-card .stat-row{display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.09);}
  .hero-card .stat-row:last-child{border-bottom:none;}
  .hero-card .stat-label{font-size:12.5px; color:#B9C6D9; display:flex; align-items:center; gap:8px;}
  .hero-card .stat-label svg{width:15px; height:15px; color:var(--cyan-300); flex:none;}
  .hero-card .stat-value{font-family:'IBM Plex Mono',monospace; font-weight:600; color:var(--gold-200); font-size:13.5px;}

  /* ---------- Section heads ---------- */
  .section-head{max-width:640px; margin:0 0 40px;}
  .section-head .eyebrow{margin-bottom:14px;}
  .section-head h2{font-size:clamp(24px,3.4vw,32px); font-weight:600; color:var(--navy-950); margin:0 0 10px;}
  .section-head p{color:var(--ink-muted); font-size:15.5px; margin:0;}

  /* ---------- Servicios ---------- */
  .servicios{padding:78px 0; background:linear-gradient(180deg,rgba(255,255,255,.4),rgba(255,255,255,.85) 120px); border-top:1px solid var(--line); border-bottom:1px solid var(--line); position:relative;}
  .cards3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  @media (max-width:840px){.cards3{grid-template-columns:1fr;}}
  .service-card{
    border:1px solid rgba(31,78,120,.10); border-radius:var(--radius); padding:24px; position:relative;
    background:rgba(255,255,255,.72); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .service-card:hover{transform:translateY(-3px); border-color:rgba(23,171,198,.45); box-shadow:0 18px 34px -20px rgba(14,32,56,.35), 0 0 0 1px rgba(23,171,198,.12);}
  .service-card .icon-badge{width:40px; height:40px; border-radius:10px; background:linear-gradient(160deg,var(--navy-800),var(--navy-950)); display:flex; align-items:center; justify-content:center; margin-bottom:14px; color:var(--cyan-300);}
  .service-card .num{font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--gold-600); font-weight:700; margin-bottom:14px;}
  .service-card h3{font-size:18px; margin:0 0 10px; color:var(--navy-950); font-family:'Source Serif 4'; font-weight:600;}
  .service-card h4{font-size:16.5px; margin:0 0 10px; color:var(--navy-950); font-family:'Source Serif 4'; font-weight:600;}
  .service-card p{font-size:14px; color:var(--ink-muted); margin:0 0 14px;}
  .service-card:last-child p{margin-bottom:0;}

  .pillar{margin-bottom:40px; position:relative;}
  .pillar:last-child{margin-bottom:0;}
  .pillar-head{display:flex; align-items:center; gap:12px; margin-bottom:18px;}
  .pillar-num{font-family:'IBM Plex Mono',monospace; font-size:11.5px; font-weight:700; color:var(--cyan-600); background:rgba(23,171,198,.10); border:1px solid rgba(23,171,198,.35); padding:4px 10px; border-radius:6px; flex:none; letter-spacing:.03em;}
  .pillar-head h3{font-size:19px; margin:0; color:var(--navy-950); font-family:'Source Serif 4'; font-weight:600;}
  .cards2{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
  @media (max-width:700px){.cards2{grid-template-columns:1fr;}}
  .service-card.featured{border-color:var(--gold-500); border-width:2px; background:linear-gradient(180deg,rgba(255,253,246,.85),rgba(255,255,255,.72));}
  .service-card.featured .icon-badge{background:linear-gradient(160deg,var(--gold-500),var(--gold-600)); color:var(--navy-950);}
  .badge-tag{position:absolute; top:-11px; right:20px; background:var(--gold-500); color:var(--navy-950); font-size:11px; font-weight:700; padding:4px 12px; border-radius:999px; text-transform:uppercase; letter-spacing:.06em;}
  .btn-sm{padding:9px 16px; font-size:13.5px; border-radius:9px;}

  /* ---------- Proceso ---------- */
  .proceso{padding:78px 0; background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .proceso-steps{display:grid; grid-template-columns:repeat(4,1fr); gap:0;}
  @media (max-width:840px){.proceso-steps{grid-template-columns:1fr; gap:28px;}}
  .proceso-step{position:relative; padding:0 18px 0 0;}
  .proceso-step:not(:last-child)::after{content:""; position:absolute; top:22px; left:56px; right:0; height:2px; background:linear-gradient(90deg,var(--cyan-500),var(--gold-500)); opacity:.3;}
  @media (max-width:840px){.proceso-step:not(:last-child)::after{display:none;}}
  .proceso-num{width:44px; height:44px; border-radius:50%; background:linear-gradient(160deg,var(--navy-800),var(--navy-950)); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'IBM Plex Mono',monospace; font-weight:700; font-size:16px; margin-bottom:16px; position:relative; z-index:1;}
  .proceso-step h4{font-size:16px; margin:0 0 8px; color:var(--navy-950); font-family:'Source Serif 4'; font-weight:600;}
  .proceso-step p{font-size:13.5px; color:var(--ink-muted); margin:0; line-height:1.55;}

  /* ---------- Rubros ---------- */
  .rubros{padding:60px 0; background:var(--paper);}
  .rubro-grid{display:flex; flex-wrap:wrap; gap:14px;}
  .rubro-chip{display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line); border-radius:999px; padding:11px 20px; font-size:14px; color:var(--ink); font-weight:500;}
  .rubro-chip svg{width:18px; height:18px; color:var(--cyan-600); flex:none;}

  /* ---------- Mision y Vision ---------- */
  .mision-vision{padding:0 0 78px; background:var(--paper);}
  .mv-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
  @media (max-width:700px){.mv-grid{grid-template-columns:1fr;}}
  .mv-card{background:var(--paper-card); border:1px solid var(--line); border-radius:var(--radius); padding:26px; border-top:3px solid var(--gold-500);}
  .mv-card.vision{border-top-color:var(--cyan-500);}
  .mv-card h4{font-size:16px; margin:0 0 10px; color:var(--navy-950); font-family:'Source Serif 4'; font-weight:600;}
  .mv-card p{font-size:14px; color:var(--ink-muted); margin:0; line-height:1.6;}

  /* ---------- FAQ ---------- */
  .faq{padding:78px 0; background:#fff; border-top:1px solid var(--line);}
  .faq-item{border:1px solid var(--line); border-radius:var(--radius); margin-bottom:12px; background:var(--paper-card); overflow:hidden; transition:border-color .15s ease;}
  .faq-item.open{border-color:rgba(23,171,198,.4);}
  .faq-q{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px 22px; cursor:pointer; font-weight:600; color:var(--navy-950); font-size:15px; user-select:none;}
  .faq-item .chevron{width:10px;height:10px;border-right:2px solid var(--ink-muted); border-bottom:2px solid var(--ink-muted); transform:rotate(45deg); transition:transform .2s ease; flex:none;}
  .faq-item.open .chevron{transform:rotate(-135deg);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
  .faq-item.open .faq-a{max-height:300px;}
  .faq-a p{padding:0 22px 18px; margin:0; font-size:14px; color:var(--ink-muted); line-height:1.6;}

  /* ---------- Sobre mi ---------- */
  .sobre{padding:78px 0;}
  .sobre-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:48px; align-items:start;}
  @media (max-width:840px){.sobre-grid{grid-template-columns:1fr;}}
  .photo-frame{width:132px; height:132px; border-radius:50%; overflow:hidden; margin:18px 0 4px; border:3px solid var(--gold-500); position:relative; background:var(--navy-800); box-shadow:0 0 0 5px rgba(23,171,198,.15);}
  .photo-frame img{width:100%; height:100%; object-fit:cover; display:block;}
  .photo-fallback{display:none; width:100%; height:100%; align-items:center; justify-content:center; font-family:'Source Serif 4',serif; font-weight:700; font-size:38px; color:var(--gold-200); position:absolute; top:0; left:0;}
  .credential-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px;}
  .credential-list li{display:flex; gap:12px; align-items:flex-start; font-size:14px; color:var(--ink);}
  .credential-list .tick{flex:none; width:20px; height:20px; border-radius:50%; background:linear-gradient(160deg,var(--cyan-500),var(--cyan-600)); color:#fff; font-size:11px; display:flex; align-items:center; justify-content:center; margin-top:1px;}
  .sobre p{color:var(--ink-muted); font-size:15.5px; margin:0 0 16px;}
  .sobre .quote{border-left:3px solid var(--gold-500); padding-left:18px; font-family:'Source Serif 4'; font-size:19px; color:var(--navy-950); margin:22px 0;}

  /* ---------- Diagnostico ---------- */
  .diag{padding:78px 0; background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(241,244,249,.4)); border-top:1px solid var(--line);}
  .gate-card{max-width:520px; margin:0 auto; background:var(--paper-card); border:1px solid var(--line); border-radius:var(--radius); padding:32px; box-shadow:0 1px 2px rgba(21,34,56,.04), 0 12px 28px -18px rgba(21,34,56,.18);}
  .gate-card h3{font-size:18px; margin:0 0 6px; color:var(--navy-950);}
  .gate-card p.sub{font-size:13.5px; color:var(--ink-muted); margin:0 0 22px;}
  .field{margin-bottom:14px;}
  .field label{display:block; font-size:12.5px; color:var(--ink-muted); margin-bottom:6px; font-weight:500;}
  .field input{width:100%; padding:11px 12px; border:1px solid var(--line); border-radius:9px; font-size:14.5px; font-family:inherit; color:var(--ink); background:#FBFCFE;}
  .field input:focus{outline:2px solid var(--navy-700); outline-offset:1px; border-color:var(--navy-700);}
  .gate-msg{font-size:13px; margin-top:12px; display:none; padding:10px 12px; border-radius:8px;}
  .gate-msg.error{display:block; background:#FBE1DF; color:#8C2E28;}
  .gate-msg.ok{display:block; background:#DCF0E4; color:#1B6B41;}
  .btn-block{width:100%; text-align:center;}
  .gate-step{display:none;}
  .gate-step.active{display:block;}
  .resend-link{display:inline-block; margin-top:14px; font-size:12.5px; color:var(--navy-800); text-decoration:underline; cursor:pointer; background:none; border:none; padding:0; font-family:inherit;}

  .tally-wrap{max-width:600px; margin:0 auto 40px; background:var(--paper-card); border:1px solid var(--line); border-radius:var(--radius); padding:24px; box-shadow:0 1px 2px rgba(21,34,56,.04), 0 12px 28px -18px rgba(21,34,56,.18);}
  .tally-title{font-size:15px; color:var(--navy-950); margin:0 0 14px; font-family:'Source Serif 4'; font-weight:600;}

  /* ---------- Reutilizado del formulario de diagnostico ---------- */
  .progress-strip{display:flex; align-items:center; gap:14px; margin:0 0 28px; padding:14px 18px; background:linear-gradient(135deg,var(--navy-950),#0E2038); color:#fff; border-radius:var(--radius); border:1px solid rgba(23,171,198,.3);}
  .progress-strip .bar-track{flex:1; height:8px; border-radius:999px; background:rgba(255,255,255,.14); overflow:hidden;}
  .progress-strip .bar-fill{height:100%; width:0%; background:linear-gradient(90deg,var(--cyan-500),var(--gold-500)); transition:width .35s ease;}
  .progress-strip .count{font-family:'IBM Plex Mono',monospace; font-size:13px; white-space:nowrap;}
  .category{margin-bottom:16px; border:1px solid rgba(31,78,120,.10); border-radius:var(--radius); background:rgba(255,255,255,.75); backdrop-filter:blur(8px); transition:border-color .15s ease;}
  .category.open{border-color:rgba(23,171,198,.35);}
  .cat-head{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 20px; cursor:pointer; user-select:none;}
  .cat-num{display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:var(--navy-800); color:#fff; font-family:'IBM Plex Mono',monospace; font-size:12px; font-weight:600; flex:none;}
  .cat-title{font-size:15.5px; font-weight:600; color:var(--navy-950); flex:1;}
  .cat-meta{font-size:12px; color:var(--ink-muted); font-family:'IBM Plex Mono',monospace; white-space:nowrap;}
  .chevron{width:11px; height:11px; border-right:2px solid var(--ink-muted); border-bottom:2px solid var(--ink-muted); transform:rotate(45deg); transition:transform .2s ease; flex:none;}
  .category.open .chevron{transform:rotate(-135deg);}
  .cat-body{max-height:0; overflow:hidden; transition:max-height .3s ease;}
  .category.open .cat-body{max-height:2400px;}
  .q-row{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 20px; border-top:1px solid var(--line);}
  .q-text{font-size:14.5px; color:var(--ink); max-width:60ch;}
  .toggle{display:flex; border:1px solid var(--line); border-radius:9px; overflow:hidden; flex:none;}
  .toggle button{border:none; background:#FBFCFE; color:var(--ink-muted); font-family:'Inter'; font-size:12.5px; font-weight:600; padding:8px 14px; cursor:pointer; min-width:52px;}
  .toggle button + button{border-left:1px solid var(--line);}
  .toggle button.sel-si.active{background:var(--navy-800); color:#fff;}
  .toggle button.sel-no.active{background:#E7EBF1; color:var(--ink);}
  .cta-block2{margin-top:32px; text-align:center;}
  .cta-note{font-size:12.5px; color:var(--ink-muted); margin-top:10px;}
  #resultado{display:none; margin-top:40px;}
  .result-grid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; margin-bottom:20px;}
  @media (max-width:640px){.result-grid{grid-template-columns:1fr;}}
  .result-tile{padding:20px; text-align:center; border:1px solid var(--line); border-radius:var(--radius); background:#fff;}
  .result-tile .label{font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-muted); font-weight:700; margin-bottom:8px;}
  .result-tile .value{font-family:'Source Serif 4',serif; font-size:26px; font-weight:600; color:var(--navy-950);}
  .badge{display:inline-block; padding:5px 14px; border-radius:999px; font-size:13px; font-weight:700;}
  .badge.critico{background:#FBE1DF; color:#8C2E28;}
  .badge.basico{background:#FBEFD3; color:#8C6A0F;}
  .badge.desarrollo{background:#FDF3D8; color:#8C6A0F;}
  .badge.gestionado{background:#E0EEE3; color:#1F5C38;}
  .badge.optimizado{background:#DCF0E4; color:#1B6B41;}
  .interpret-card{padding:22px 24px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; border-left:4px solid var(--cyan-500);}
  .interpret-card h3{font-size:14px; margin:0 0 8px; color:var(--navy-950);}
  .interpret-card p{font-size:14px; color:var(--ink); line-height:1.6; margin:0;}
  .export-actions{display:flex; align-items:center; gap:12px; margin-top:12px; flex-wrap:wrap;}
  .btn-ghost{appearance:none; cursor:pointer; background:#fff; border:1px solid var(--navy-800); color:var(--navy-800); font-family:'Inter'; font-weight:600; font-size:13px; padding:9px 16px; border-radius:9px;}
  .btn-ghost:hover{background:var(--navy-800); color:#fff;}
  .copied-msg{font-size:12.5px; color:var(--ok); font-weight:600; opacity:0; transition:opacity .2s ease;}
  .copied-msg.show{opacity:1;}
  .closing{margin-top:22px; padding:24px; border-radius:var(--radius); background:var(--navy-950); color:#fff;}
  .closing h3{font-family:'Source Serif 4'; font-size:19px; margin:0 0 10px; color:#fff;}
  .closing p{font-size:14px; color:#C9D3E0; margin:0 0 4px;}
  .closing .contact{font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--gold-200); margin-top:10px;}

  /* ---------- Contacto ---------- */
  .contacto{
    padding:78px 0; background-color:var(--navy-950); color:#fff; overflow:hidden;
    background-image:radial-gradient(circle at 1px 1px, rgba(23,171,198,.14) 1px, transparent 0);
    background-size:24px 24px;
  }
  .contacto .section-head h2{color:#fff;}
  .contacto .section-head p{color:#B9C6D9;}
  .contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
  @media (max-width:840px){.contact-grid{grid-template-columns:1fr;}}
  .contact-item{background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius); padding:22px; transition:border-color .15s ease, background .15s ease;}
  .contact-item:hover{border-color:rgba(23,171,198,.5); background:rgba(255,255,255,.08);}
  .contact-item .label{font-size:11px; text-transform:uppercase; letter-spacing:.09em; color:var(--gold-200); font-weight:700; margin-bottom:8px;}
  .contact-item a, .contact-item span{font-size:15.5px; color:#fff; text-decoration:none; font-family:'IBM Plex Mono',monospace;}

  /* ---------- Privacidad ---------- */
  .privacidad{padding:70px 0; background:#fff; border-top:1px solid var(--line);}
  .privacy-card{background:var(--paper-card); border:1px solid var(--line); border-radius:var(--radius); padding:32px;}
  .privacy-card p{font-size:14.5px; color:var(--ink); line-height:1.7; margin:0 0 16px;}
  .privacy-card h4{font-size:15px; color:var(--navy-950); margin:22px 0 8px; font-family:'Source Serif 4'; font-weight:600;}
  .privacy-card h4:first-child{margin-top:0;}

  footer{padding:26px 0; text-align:center; font-size:12px; color:var(--ink-muted); background:var(--paper);}
  footer a{color:var(--navy-800); text-decoration:underline;}
