:root{
    --navy:#2E3B5C;
    --navy-soft:#5A6580;
    --green:#5FA98D;
    --green-dark:#4C8873;
    --terracotta:#C15B3C;
    --terracotta-light:#D97D4E;
    --paper:#FAF8F4;
    --card:#FFFFFF;
    --ink:#22293A;
    --gray:#8B8F98;
    --line: rgba(46,59,92,0.10);
    --radius:10px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html,body{background:var(--paper); color:var(--ink); font-family:'Inter',sans-serif;}
  body{overflow-x:hidden;}
  .page{max-width:1180px; margin:0 auto; padding:0 28px;}

  /* NAV */
  .nav{display:flex; align-items:center; justify-content:space-between; padding:24px 0; border-bottom:1px solid var(--line); position:sticky; top:0; background:var(--paper); z-index:50; transition:box-shadow .2s;}
  .nav.scrolled{box-shadow:0 2px 12px rgba(46,59,92,0.08);}
  .logo-mark{display:flex; align-items:center; gap:10px; text-decoration:none;}
  .logo-word{font-family:'Space Grotesk'; font-weight:700; font-size:19px; color:var(--navy);}
  .logo-word sub-label{display:block;}
  .logo-sub{font-size:11px; color:var(--gray); letter-spacing:0.04em; margin-top:-2px;}
  .nav-right{display:flex; align-items:center; gap:28px;}
  .nav-links{display:flex; gap:32px; list-style:none; font-size:14px;}
  .nav-links a{color:var(--navy-soft); text-decoration:none;}
  .nav-links a:hover{color:var(--terracotta);}
  .nav-cta{
    font-family:'Inter'; font-weight:600; font-size:13.5px; color:#fff; background:var(--terracotta);
    padding:10px 20px; border-radius:8px; text-decoration:none; white-space:nowrap;
  }
  .nav-cta:hover{background:var(--terracotta-light);}
  .nav-toggle{display:none; flex-direction:column; gap:4px; background:none; border:none; cursor:pointer; padding:6px;}
  .nav-toggle span{width:22px; height:2px; background:var(--navy); border-radius:2px;}

  @media(max-width:860px){
    .nav-links{
      position:fixed; top:73px; left:0; right:0; background:var(--card);
      flex-direction:column; gap:0; padding:8px 28px 18px; border-bottom:1px solid var(--line);
      box-shadow:0 8px 20px rgba(46,59,92,0.08);
      transform:translateY(-8px); opacity:0; pointer-events:none; transition:transform .18s, opacity .18s;
    }
    .nav-links.open{transform:translateY(0); opacity:1; pointer-events:auto;}
    .nav-links a{display:block; padding:12px 0; border-bottom:1px solid var(--line); font-size:15px;}
    .nav-links li:last-child a{border-bottom:none;}
    .nav-cta{display:none;}
    .nav-toggle{display:flex;}
  }

  /* HERO */
  .hero{display:grid; grid-template-columns: 1.15fr 0.85fr; gap:40px; align-items:center; padding:72px 0 84px;}
  @media(max-width:860px){.hero{grid-template-columns:1fr; padding:48px 0 56px;}}

  .eyebrow{
    font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.14em;
    color:var(--green-dark); text-transform:uppercase; display:inline-block; margin-bottom:20px;
  }
  h1{
    font-family:'Space Grotesk'; font-weight:600; font-size:clamp(32px, 4.6vw, 50px);
    line-height:1.12; letter-spacing:-0.01em; margin-bottom:22px; color:var(--navy);
  }
  h1 .accent{color:var(--terracotta);}
  .sub{font-size:16.5px; line-height:1.6; color:var(--navy-soft); max-width:460px; margin-bottom:32px;}

  .cta-row{display:flex; gap:14px; flex-wrap:wrap;}
  .cta-primary, .cta-secondary{
    font-family:'Inter'; font-size:14.5px; font-weight:600; padding:14px 24px;
    border-radius:8px; cursor:pointer; border:1.5px solid transparent;
    display:inline-flex; align-items:center; justify-content:center; text-decoration:none;
  }
  .cta-primary{background:var(--terracotta); color:#fff;}
  .cta-primary:hover{background:var(--terracotta-light);}
  .cta-secondary{background:transparent; border-color:var(--line); color:var(--navy);}
  .cta-secondary:hover{border-color:var(--navy-soft);}

  /* SIGNATURE VISUAL: hexagon drawing itself, echoing the real logo mark */
  .hero-visual{position:relative; height:320px; display:flex; align-items:center; justify-content:center;}
  .hex-draw{position:relative; animation: hexDrawOut 0.6s ease forwards; animation-delay:2.15s;}
  .hex-svg{width:280px; height:280px; display:block;}
  .hex-outline{
    fill:none; stroke-width:5; stroke-linecap:round; stroke-linejoin:round;
    stroke-dasharray:620; stroke-dashoffset:620;
    animation: draw 1.8s cubic-bezier(.4,.1,.2,1) forwards;
  }
  .hex-green{stroke:var(--green);}
  .hex-terracotta{stroke:var(--terracotta); animation-delay:0.35s;}
  .hex-figure{opacity:0; animation: figureIn 0.6s ease forwards;}
  .fig-1{animation-delay:1.1s;}
  .fig-2{animation-delay:1.35s;}
  /* Logo real: se revela al terminar el trazo del hexágono conceptual */
  .hex-real{
    position:absolute; top:50%; left:50%; width:220px; height:220px;
    transform:translate(-50%,-50%) scale(0.94); opacity:0;
    animation: realIn 0.7s ease forwards; animation-delay:2.2s;
  }
  @keyframes draw{ to{stroke-dashoffset:0;} }
  @keyframes figureIn{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }
  @keyframes hexDrawOut{ to{opacity:0;} }
  @keyframes realIn{ to{opacity:1; transform:translate(-50%,-50%) scale(1);} }
  @media (prefers-reduced-motion: reduce){
    .hex-draw{display:none;}
    .hex-real{animation:none; opacity:1; transform:translate(-50%,-50%) scale(1);}
    .hex-outline{animation:none; stroke-dashoffset:0;}
    .hex-figure{animation:none; opacity:1;}
  }

  /* BENTO BENEFITS */
  .bento-section{padding:0 0 90px;}
  .bento-head{margin-bottom:28px;}
  .bento-eyebrow{font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.12em; color:var(--terracotta); text-transform:uppercase;}
  .bento-title{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(23px,3vw,30px); margin-top:10px; color:var(--navy);}

  .bento-grid{
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 126px;
    gap:12px;
  }
  .cell{
    background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
    padding:22px; display:flex; flex-direction:column; justify-content:space-between;
    box-shadow: 0 1px 2px rgba(46,59,92,0.03);
  }
  .cell .stat{font-family:'Space Grotesk'; font-weight:700; font-size:33px; color:var(--terracotta);}
  .cell.green .stat{color:var(--green-dark);}
  .cell .label{font-size:13.5px; color:var(--navy-soft); line-height:1.4;}

  .cell-1{grid-column: span 2; grid-row: span 2;}
  .cell-2{grid-column: span 2; grid-row: span 1;}
  .cell-3{grid-column: span 2; grid-row: span 1;}
  .cell-4{grid-column: span 4; grid-row: span 1; flex-direction:row; align-items:center; gap:20px;}
  .cell-4 p{font-size:14.5px; line-height:1.6; color:var(--navy-soft); max-width:520px;}
  .cell-4 .tag{font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--green-dark); letter-spacing:0.08em; white-space:nowrap;}
  .cell-5{grid-column: span 2; grid-row: span 1;}

  @media(max-width:760px){
    .bento-grid{grid-template-columns: repeat(2,1fr); grid-auto-rows:auto;}
    .cell-1,.cell-2,.cell-3,.cell-4,.cell-5{grid-column:span 2;}
    .cell-4{flex-direction:column; align-items:flex-start; gap:10px;}
  }

  /* ══════════════════════════════════════════
     METODOLOGÍA
     Motivo recurrente: hexágono grande, apenas visible, de fondo —
     el mismo trazo del hero pero estático y sutil (no compite con el contenido).
  ══════════════════════════════════════════ */
  .method-section{position:relative; padding:8px 0 96px; overflow:hidden;}
  .method-watermark{
    position:absolute; top:-60px; right:-120px; width:480px; height:480px;
    opacity:0.05; pointer-events:none; z-index:0;
  }
  .method-head{margin-bottom:44px; max-width:560px; position:relative; z-index:1;}
  .method-eyebrow{font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.12em; color:var(--green-dark); text-transform:uppercase;}
  .method-title{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(23px,3vw,30px); margin-top:10px; color:var(--navy);}
  .method-sub{font-size:15px; line-height:1.65; color:var(--navy-soft); margin-top:14px;}

  .method-row{
    position:relative; z-index:1;
    display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  }
  .method-row::before{
    content:''; position:absolute; top:23px; left:calc(12.5% + 4px); right:calc(12.5% + 4px);
    height:1.5px; background:var(--line); z-index:-1;
  }
  @media(max-width:860px){
    .method-row{grid-template-columns:repeat(2,1fr); row-gap:32px;}
    .method-row::before{display:none;}
  }
  @media(max-width:520px){
    .method-row{grid-template-columns:1fr;}
  }

  .method-step{display:flex; flex-direction:column; gap:16px;}
  .method-num{
    width:46px; height:46px; border-radius:50%; background:var(--card);
    border:1.5px solid var(--line); display:flex; align-items:center; justify-content:center;
    font-family:'Space Grotesk'; font-weight:700; font-size:16px; color:var(--terracotta);
    flex-shrink:0;
  }
  .method-step:nth-child(even) .method-num{color:var(--green-dark);}
  .method-step h3{font-family:'Space Grotesk'; font-weight:600; font-size:17px; color:var(--navy); margin-bottom:2px;}
  .method-step p{font-size:14px; line-height:1.6; color:var(--navy-soft); max-width:230px;}

  /* ══════════════════════════════════════════
     NOSOTROS / EQUIPO
     Sin fotos de stock: el "equipo" se representa con los valores reales
     de la empresa en mini-tarjetas (bento chico), no con imágenes genéricas.
  ══════════════════════════════════════════ */
  .team-section{position:relative; padding:8px 0 96px; overflow:hidden;}
  .team-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;}
  @media(max-width:860px){.team-grid{grid-template-columns:1fr; gap:40px;}}

  .team-eyebrow{font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.12em; color:var(--terracotta); text-transform:uppercase;}
  .team-title{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(23px,3vw,30px); margin-top:10px; color:var(--navy); line-height:1.2;}
  .team-text p{font-size:15px; line-height:1.72; color:var(--navy-soft); margin-top:16px;}
  .team-cta{
    margin-top:26px; display:inline-flex; align-items:center; gap:8px;
    font-family:'Inter'; font-weight:600; font-size:14.5px; color:var(--navy);
    text-decoration:none; border-bottom:1.5px solid var(--terracotta); padding-bottom:3px;
  }
  .team-cta:hover{color:var(--terracotta);}

  .values-grid{position:relative; display:grid; grid-template-columns:1fr 1fr; gap:14px;}
  .values-hex{position:absolute; bottom:-70px; left:-70px; width:220px; height:220px; opacity:0.06; pointer-events:none; z-index:0;}
  .value-chip{
    position:relative; z-index:1;
    background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
    padding:20px 18px; box-shadow:0 1px 2px rgba(46,59,92,0.03);
  }
  .value-chip .vc-icon{
    width:34px; height:34px; border-radius:9px; display:flex; align-items:center; justify-content:center;
    font-size:16px; margin-bottom:12px; color:var(--green-dark); background:rgba(95,169,141,0.12);
  }
  .value-chip:nth-child(2) .vc-icon{color:var(--terracotta); background:rgba(193,91,60,0.10);}
  .value-chip:nth-child(3) .vc-icon{color:var(--navy); background:rgba(46,59,92,0.08);}
  .value-chip:nth-child(4) .vc-icon{color:var(--terracotta); background:rgba(193,91,60,0.10);}
  .value-chip h4{font-family:'Space Grotesk'; font-weight:600; font-size:15px; color:var(--navy); margin-bottom:6px;}
  .value-chip p{font-size:12.5px; line-height:1.55; color:var(--navy-soft);}

  /* ══════════════════════════════════════════
     SERVICIOS
  ══════════════════════════════════════════ */
  .services-section{position:relative; padding:8px 0 96px;}
  .services-head{max-width:600px; margin-bottom:36px;}
  .services-eyebrow{font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.12em; color:var(--green-dark); text-transform:uppercase;}
  .services-title{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(23px,3vw,30px); margin-top:10px; color:var(--navy);}
  .services-sub{font-size:15px; line-height:1.65; color:var(--navy-soft); margin-top:14px;}

  .services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
  @media(max-width:860px){.services-grid{grid-template-columns:1fr 1fr;}}
  @media(max-width:520px){.services-grid{grid-template-columns:1fr;}}

  .service-card{
    background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
    padding:24px 22px; display:flex; flex-direction:column; box-shadow:0 1px 2px rgba(46,59,92,0.03);
    transition:border-color .2s, transform .2s;
  }
  .service-card:hover{border-color:var(--terracotta); transform:translateY(-3px);}
  .service-card .svc-icon{
    width:42px; height:42px; border-radius:11px; display:flex; align-items:center; justify-content:center;
    font-size:19px; color:var(--terracotta); background:rgba(193,91,60,0.10); margin-bottom:16px;
  }
  .service-card:nth-child(2) .svc-icon{color:var(--green-dark); background:rgba(95,169,141,0.12);}
  .service-card:nth-child(3) .svc-icon{color:var(--navy); background:rgba(46,59,92,0.08);}
  .service-card h3{font-family:'Space Grotesk'; font-weight:600; font-size:15.5px; color:var(--navy); line-height:1.35; margin-bottom:10px;}
  .service-card p{font-size:13.5px; line-height:1.62; color:var(--navy-soft); margin-bottom:18px; flex-grow:1;}
  .svc-detail{
    align-self:flex-start; background:none; border:none; padding:0; cursor:pointer;
    font-family:'Inter'; font-weight:600; font-size:13px; color:var(--terracotta);
    display:inline-flex; align-items:center; gap:6px;
  }
  .svc-detail:hover{gap:9px;}

  /* Ver-detalle dialog — nativo, sin Bootstrap */
  dialog.svc-dialog{
    border:none; border-radius:var(--radius); padding:0; width:min(480px,90vw);
    box-shadow:0 20px 60px rgba(34,41,58,0.25);
    position:fixed; top:50%; left:50%; margin:0; transform:translate(-50%,-50%);
    max-height:85vh; overflow-y:auto;
  }
  dialog.svc-dialog::backdrop{background:rgba(34,41,58,0.45);}
  .svc-dialog-inner{padding:28px 30px;}
  .svc-dialog-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:16px;}
  .svc-dialog-head h4{font-family:'Space Grotesk'; font-weight:600; font-size:17px; color:var(--navy);}
  .svc-dialog-close{background:none; border:none; font-size:20px; line-height:1; color:var(--gray); cursor:pointer; padding:4px;}
  .svc-dialog-close:hover{color:var(--navy);}
  .svc-list{list-style:none; margin-bottom:16px;}
  .svc-list li{font-size:14px; color:var(--navy-soft); line-height:1.6; padding:5px 0 5px 20px; position:relative;}
  .svc-list li::before{content:''; position:absolute; left:0; top:13px; width:6px; height:6px; border-radius:50%; background:var(--green);}
  .svc-result{background:var(--paper); border-left:3px solid var(--terracotta); border-radius:0 8px 8px 0; padding:12px 16px; font-size:13.5px; color:var(--ink); line-height:1.55;}
  .svc-result strong{color:var(--navy);}

  /* ══════════════════════════════════════════
     TESTIMONIOS (cinta al pie, antes del footer)
  ══════════════════════════════════════════ */
  .testimonials-section{padding:8px 0 96px;}
  .testimonials-head{margin-bottom:28px;}
  .testimonials-eyebrow{font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.12em; color:var(--terracotta); text-transform:uppercase;}
  .testimonials-title{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(23px,3vw,30px); margin-top:10px; color:var(--navy);}

  .testimonials-scroll{display:flex; gap:14px; overflow-x:auto; padding:4px 2px 10px;}
  .testi-card{
    flex:0 0 auto; width:min(420px,85vw);
    background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
    padding:26px 26px 22px; box-shadow:0 1px 2px rgba(46,59,92,0.03);
  }
  .testi-avatar{
    width:38px; height:38px; border-radius:50%; overflow:hidden; margin-bottom:14px;
    display:flex; align-items:center; justify-content:center; background:var(--paper); border:1px solid var(--line);
    font-family:'Space Grotesk'; font-weight:700; font-size:15px; color:var(--terracotta);
  }
  .testi-avatar img{width:100%; height:100%; object-fit:contain; padding:5px;}
  .testi-quote{font-size:14px; line-height:1.65; color:var(--ink); font-style:italic; margin-bottom:16px;}
  .testi-person strong{display:block; font-family:'Space Grotesk'; font-weight:600; font-size:14px; color:var(--navy);}
  .testi-person span{font-size:12.5px; color:var(--gray);}

  /* ══════════════════════════════════════════
     CONTACTO — sección oscura, rompe el ritmo antes del footer
  ══════════════════════════════════════════ */
  .contact-section{position:relative; background:var(--navy); overflow:hidden; padding:76px 0;}
  .contact-hex{position:absolute; top:-90px; right:-90px; width:340px; height:340px; opacity:0.06; pointer-events:none;}
  .contact-container{max-width:1180px; margin:0 auto; padding:0 28px; position:relative;}
  .contact-grid{position:relative; z-index:1; display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px;}
  @media(max-width:860px){.contact-grid{grid-template-columns:1fr; gap:40px;}}

  .contact-eyebrow{font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.12em; color:var(--green); text-transform:uppercase;}
  .contact-title{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(23px,3vw,30px); margin-top:10px; color:#fff;}
  .contact-text{font-size:15px; line-height:1.7; color:rgba(255,255,255,0.65); margin-top:14px; margin-bottom:28px; max-width:400px;}

  .contact-info-item{display:flex; align-items:center; gap:12px; margin-bottom:16px;}
  .ci-icon{
    width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; color:var(--green); font-size:15px; flex-shrink:0;
  }
  .contact-info-item a, .contact-info-item span{color:rgba(255,255,255,0.82); font-size:14px; text-decoration:none;}
  .contact-info-item a:hover{color:var(--green);}

  .contact-form-box{background:#fff; border-radius:var(--radius); padding:32px;}
  .cf-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
  @media(max-width:520px){.cf-row{grid-template-columns:1fr;}}
  .cf-field label{display:block; font-size:12.5px; font-weight:600; color:var(--navy); margin-bottom:6px;}
  .cf-field label .opt{font-weight:400; color:var(--gray);}
  .cf-field input, .cf-field select, .cf-field textarea{
    width:100%; font-family:'Inter'; font-size:14px; color:var(--ink);
    border:1.5px solid var(--line); border-radius:8px; padding:10px 12px; background:#fff;
  }
  .cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus{outline:none; border-color:var(--terracotta);}
  .cf-field textarea{resize:vertical; min-height:90px; font-family:'Inter';}
  .cf-check{display:flex; align-items:flex-start; gap:9px; margin:4px 0 20px;}
  .cf-check input{margin-top:3px;}
  .cf-check label{font-size:12.5px; color:var(--navy-soft); line-height:1.5;}
  .cf-check a{color:var(--terracotta);}
  .cf-submit{
    width:100%; font-family:'Inter'; font-weight:600; font-size:14.5px; color:#fff;
    background:var(--terracotta); border:none; border-radius:8px; padding:13px 24px; cursor:pointer;
  }
  .cf-submit:hover{background:var(--terracotta-light);}
  .cf-submit:disabled{opacity:0.6; cursor:not-allowed;}
  .cf-alert{margin-top:14px; padding:10px 14px; border-radius:8px; font-size:13px;}
  .cf-alert.info{background:#EEF2FF; color:#3730A3;}
  .cf-alert.ok{background:rgba(95,169,141,0.14); color:var(--green-dark);}
  .cf-alert.err{background:rgba(193,91,60,0.12); color:var(--terracotta);}

  /* ══════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════ */
  footer{background:var(--ink); padding:64px 0 0;}
  .footer-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:36px; padding-bottom:44px;}
  @media(max-width:860px){.footer-grid{grid-template-columns:1fr 1fr; row-gap:32px;}}
  @media(max-width:520px){.footer-grid{grid-template-columns:1fr;}}
  .footer-brand img{height:28px; margin-bottom:14px;}
  .footer-brand p{font-size:13px; line-height:1.65; color:rgba(255,255,255,0.45); max-width:280px;}
  .footer-col h6{font-family:'Space Grotesk'; font-weight:600; font-size:13px; color:#fff; margin-bottom:14px; letter-spacing:0.02em;}
  .footer-col a, .footer-col p{display:block; font-size:13px; color:rgba(255,255,255,0.5); text-decoration:none; margin-bottom:10px; line-height:1.5;}
  .footer-col a:hover{color:var(--green);}
  .footer-social{display:inline-flex; align-items:center; gap:6px; margin-top:2px;}
  .footer-bottom{border-top:1px solid rgba(255,255,255,0.08); padding:20px 0; font-size:12px; color:rgba(255,255,255,0.35); text-align:center;}
  .footer-bottom a{color:rgba(255,255,255,0.35); text-decoration:none;}
  .footer-bottom a:hover{color:var(--green);}

  /* WhatsApp flotante */
  .whatsapp-float{
    position:fixed; bottom:22px; right:22px; width:54px; height:54px; border-radius:50%;
    background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
    font-size:26px; box-shadow:0 6px 18px rgba(0,0,0,0.22); z-index:60; text-decoration:none;
    transition:transform .15s;
  }
  .whatsapp-float:hover{transform:scale(1.08); color:#fff;}

  /* Scroll reveal */
  .fade-up{opacity:0; transform:translateY(16px); transition:opacity .5s ease, transform .5s ease;}
  .fade-up.visible{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .fade-up{opacity:1; transform:none; transition:none;}
  }

  /* ══════════════════════════════════════════
     PÁGINAS SECUNDARIAS — hero simple + secciones de contenido
  ══════════════════════════════════════════ */
  .page-hero{padding:56px 0 52px; text-align:center;}
  .page-hero .eyebrow{margin-bottom:16px;}
  .page-hero h1{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(28px,4.2vw,44px); color:var(--navy); line-height:1.15; letter-spacing:-0.01em; margin-bottom:16px;}
  .page-hero h1 .accent{color:var(--terracotta);}
  .page-hero p{font-size:16px; line-height:1.65; color:var(--navy-soft); max-width:560px; margin:0 auto;}

  .content-section{padding:16px 0 88px;}
  .content-section.alt{background:var(--card); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .content-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
  @media(max-width:860px){.content-grid{grid-template-columns:1fr; gap:32px;}}
  .content-grid.reverse{direction:rtl;}
  .content-grid.reverse > *{direction:ltr;}
  .content-eyebrow{font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.12em; color:var(--terracotta); text-transform:uppercase;}
  .content-grid h2{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(22px,3vw,28px); color:var(--navy); margin:10px 0 16px; line-height:1.25;}
  .content-grid p{font-size:15px; line-height:1.72; color:var(--navy-soft); margin-bottom:14px;}
  .content-grid p:last-child{margin-bottom:0;}

  /* Lista de ítems con ícono (pilares, beneficios de postular) */
  .icon-list-item{display:flex; gap:16px; margin-bottom:22px;}
  .icon-list-item:last-child{margin-bottom:0;}
  .ili-icon{
    width:42px; height:42px; border-radius:11px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center; font-size:18px;
    color:var(--terracotta); background:rgba(193,91,60,0.10);
  }
  .icon-list-item:nth-child(2n) .ili-icon{color:var(--green-dark); background:rgba(95,169,141,0.12);}
  .icon-list-item:nth-child(3n) .ili-icon{color:var(--navy); background:rgba(46,59,92,0.08);}
  .ili-text strong{display:block; font-family:'Space Grotesk'; font-weight:600; font-size:15px; color:var(--navy); margin-bottom:4px;}
  .ili-text p{font-size:13.5px; color:var(--navy-soft); line-height:1.6; margin:0;}

  /* Grilla de valores (página Nosotros — versión completa, 4 cards) */
  .values-grid-full{display:grid; grid-template-columns:repeat(4,1fr); gap:14px;}
  @media(max-width:860px){.values-grid-full{grid-template-columns:1fr 1fr;}}
  @media(max-width:520px){.values-grid-full{grid-template-columns:1fr;}}
  .value-card-full{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:24px 20px; text-align:center;}
  .value-card-full .vc-icon{
    width:44px; height:44px; border-radius:50%; margin:0 auto 14px; display:flex; align-items:center; justify-content:center;
    font-size:19px; color:var(--terracotta); background:rgba(193,91,60,0.10);
  }
  .value-card-full:nth-child(2) .vc-icon{color:var(--green-dark); background:rgba(95,169,141,0.12);}
  .value-card-full:nth-child(3) .vc-icon{color:var(--navy); background:rgba(46,59,92,0.08);}
  .value-card-full:nth-child(4) .vc-icon{color:var(--green-dark); background:rgba(95,169,141,0.12);}
  .value-card-full h4{font-family:'Space Grotesk'; font-weight:600; font-size:15px; color:var(--navy); margin-bottom:8px;}
  .value-card-full p{font-size:13px; color:var(--navy-soft); line-height:1.6;}

  /* ══════════════════════════════════════════
     FORMULARIO DE POSTULACIÓN (trabaja-con-nosotros)
  ══════════════════════════════════════════ */
  .job-form-box{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:36px;}
  @media(max-width:520px){.job-form-box{padding:24px 20px;}}
  .job-form-box h6{font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--terracotta); margin-bottom:14px;}
  .job-form-box hr{border:none; border-top:1px solid var(--line); margin:28px 0;}

  .areas-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:8px;}
  @media(max-width:600px){.areas-grid{grid-template-columns:1fr 1fr;}}
  .areas-grid input[type="radio"]{position:absolute; opacity:0; width:0; height:0;}
  .area-label{
    display:block; text-align:center; padding:16px 10px; border:1.5px solid var(--line); border-radius:8px;
    font-size:12.5px; font-weight:600; color:var(--navy-soft); cursor:pointer; transition:border-color .15s, background .15s;
  }
  .area-label i{font-size:1.2rem;}
  .areas-grid input:checked + .area-label{border-color:var(--terracotta); background:rgba(193,91,60,0.06); color:var(--terracotta);}
  .areas-grid input:focus-visible + .area-label{outline:2px solid var(--terracotta); outline-offset:2px;}

  .file-upload-wrapper{position:relative; border:1.5px dashed var(--line); border-radius:10px; padding:28px 20px; text-align:center; transition:border-color .15s;}
  .file-upload-wrapper.has-file{border-color:var(--green); background:rgba(95,169,141,0.06);}
  .file-upload-wrapper input[type="file"]{position:absolute; inset:0; opacity:0; cursor:pointer; width:100%; height:100%;}
  .file-upload-icon{font-size:1.6rem; color:var(--terracotta); margin-bottom:8px;}
  .file-upload-label{font-size:13px; color:var(--navy-soft);}
  #file-name-display{margin-top:8px; font-size:13px; font-weight:600; color:var(--green-dark);}

  /* ══════════════════════════════════════════
     BLOG — artículo y listado
  ══════════════════════════════════════════ */
  .article-tag{
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--terracotta); background:rgba(193,91,60,0.10); border:1px solid rgba(193,91,60,0.25);
    padding:5px 12px; border-radius:50px; display:inline-block; margin-bottom:18px;
  }
  .article-hero h1{font-family:'Space Grotesk'; font-weight:600; font-size:clamp(26px,3.6vw,38px); color:var(--navy); line-height:1.25; margin-bottom:16px;}
  .article-meta{display:flex; flex-wrap:wrap; gap:20px; color:var(--gray); font-size:13px;}
  .article-meta span{display:flex; align-items:center; gap:6px;}
  .back-link{display:inline-flex; align-items:center; gap:6px; color:var(--gray); font-size:13px; text-decoration:none; margin-bottom:28px;}
  .back-link:hover{color:var(--terracotta);}

  .article-content{max-width:720px; margin:0 auto;}
  .article-content h2{font-family:'Space Grotesk'; font-weight:600; font-size:21px; color:var(--navy); margin:36px 0 14px; padding-bottom:10px; border-bottom:1px solid var(--line);}
  .article-content p{font-size:15px; color:var(--ink); line-height:1.78; margin-bottom:16px;}
  .article-content ul{padding-left:20px; margin-bottom:20px;}
  .article-content li{font-size:15px; color:var(--ink); line-height:1.75; margin-bottom:8px;}
  .article-content strong{color:var(--navy);}
  .article-content .highlight-box{background:var(--paper); border-left:3px solid var(--green); border-radius:0 8px 8px 0; padding:18px 22px; margin:28px 0;}
  .article-content .highlight-box p{margin:0; font-style:italic; color:var(--navy-soft);}
  .article-content .cta-box{background:var(--navy); border-radius:var(--radius); padding:36px; text-align:center; margin-top:40px;}
  .article-content .cta-box h3{font-family:'Space Grotesk'; font-weight:600; color:#fff; font-size:19px; margin-bottom:10px;}
  .article-content .cta-box p{color:rgba(255,255,255,0.65); font-size:14px; margin-bottom:18px;}
  .article-content .cta-box a{display:inline-flex; align-items:center; gap:8px; background:var(--terracotta); color:#fff; font-weight:600; font-size:14px; padding:12px 26px; border-radius:8px; text-decoration:none;}
  .article-content .cta-box a:hover{background:var(--terracotta-light);}

  /* Listado del blog */
  .blog-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  @media(max-width:860px){.blog-grid{grid-template-columns:1fr 1fr;}}
  @media(max-width:560px){.blog-grid{grid-template-columns:1fr;}}
  .blog-card{
    display:block; background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
    padding:24px; text-decoration:none; transition:transform .18s, border-color .18s;
  }
  .blog-card:hover{transform:translateY(-4px); border-color:var(--terracotta);}
  .blog-card.disabled{opacity:0.45; pointer-events:none;}
  .blog-card .tag{font-family:'IBM Plex Mono',monospace; font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--green-dark); margin-bottom:12px; display:block;}
  .blog-card h3{font-family:'Space Grotesk'; font-weight:600; font-size:16px; color:var(--navy); line-height:1.35; margin-bottom:10px;}
  .blog-card p{font-size:13px; color:var(--navy-soft); line-height:1.6; margin-bottom:14px;}
  .blog-card .meta{font-size:12px; color:var(--gray); display:flex; align-items:center; gap:6px;}

  /* ══════════════════════════════════════════
     CALENDARIO
  ══════════════════════════════════════════ */
  .cal-wrap{max-width:760px; margin:0 auto;}
  .month-heading{
    font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--terracotta); display:flex; align-items:center; gap:8px; margin:36px 0 14px;
  }
  .month-heading:first-child{margin-top:0;}
  .date-card{display:flex; gap:18px; background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:18px 20px; margin-bottom:10px;}
  .date-card.cl{border-left:3px solid var(--green);}
  .date-day{flex-shrink:0; width:58px; text-align:center;}
  .date-day .num{display:block; font-family:'Space Grotesk'; font-weight:700; font-size:22px; color:var(--navy);}
  .date-day .mon{display:block; font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.06em; text-transform:uppercase; color:var(--gray);}
  .date-tag{font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--green-dark); display:block; margin-bottom:4px;}
  .date-info h2{font-family:'Space Grotesk'; font-weight:600; font-size:15px; color:var(--navy); margin-bottom:4px; line-height:1.35;}
  .date-info p{font-size:13px; color:var(--navy-soft); line-height:1.6; margin:0;}
  .cal-note{display:flex; gap:10px; font-size:12.5px; color:var(--gray); background:var(--paper); border:1px solid var(--line); border-radius:8px; padding:14px 16px; margin-top:24px; line-height:1.6;}

  /* ══════════════════════════════════════════
     CATÁLOGO DE SOFTWARE
  ══════════════════════════════════════════ */
  .cat-legend{display:flex; flex-wrap:wrap; gap:20px; margin-top:18px;}
  .cat-legend-item{display:flex; align-items:center; gap:7px; font-size:12px; color:var(--navy-soft);}
  .cat-legend-dot{width:8px; height:8px; border-radius:50%; flex-shrink:0;}
  .cat-legend-dot.case{background:var(--green);} .cat-legend-dot.demo{background:#93c5fd;} .cat-legend-dot.dev{background:var(--terracotta);}

  .category-block{margin-bottom:56px;} .category-block:last-child{margin-bottom:0;}
  .category-head{display:flex; align-items:center; gap:14px; margin-bottom:24px;}
  .cat-icon{
    width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    font-size:19px; background:rgba(46,59,92,0.08); color:var(--navy); flex-shrink:0;
  }
  .category-head h2{font-family:'Space Grotesk'; font-weight:600; font-size:17px; color:var(--navy); margin-bottom:3px;}
  .category-head p{font-size:13px; color:var(--navy-soft); margin:0;}

  .products-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
  @media(max-width:900px){.products-grid{grid-template-columns:1fr 1fr;}}
  @media(max-width:600px){.products-grid{grid-template-columns:1fr;}}

  .product-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:24px; display:flex; flex-direction:column; height:100%;}
  .product-icon{width:48px; height:48px; border-radius:13px; display:flex; align-items:center; justify-content:center; font-size:20px; color:#fff; background:var(--navy); margin-bottom:14px; overflow:hidden; flex-shrink:0;}
  .product-icon img{width:100%; height:100%; object-fit:cover; display:block;}
  .product-card h3{font-family:'Space Grotesk'; font-weight:600; font-size:15.5px; color:var(--navy); margin-bottom:8px; line-height:1.35;}
  .product-card h3 .tagline{display:block; font-size:11px; font-weight:500; color:var(--gray); margin-top:2px;}
  .product-desc{font-size:13px; color:var(--navy-soft); line-height:1.6; margin-bottom:14px;}
  .product-features{list-style:none; margin:0 0 14px;}
  .product-features li{display:flex; align-items:flex-start; gap:8px; font-size:12.5px; color:var(--ink); padding:4px 0;}
  .product-features li i{color:var(--green-dark); margin-top:3px; flex-shrink:0;}
  .product-adapt{font-size:12px; color:var(--navy-soft); font-style:italic; border-top:1px dashed var(--line); padding-top:12px; margin-bottom:14px;}
  .product-adapt strong{color:var(--navy); font-style:normal;}
  .product-quote{background:rgba(95,169,141,0.08); border-left:3px solid var(--green); border-radius:0 8px 8px 0; padding:10px 14px; font-size:12px; font-style:italic; color:var(--ink); line-height:1.55; margin-bottom:14px;}
  .product-quote span{display:block; margin-top:6px; font-style:normal; font-weight:600; font-size:11px; color:var(--gray);}
  .product-footer{margin-top:auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px;}
  .status-badge{display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:700; padding:5px 11px; border-radius:50px; text-decoration:none; white-space:nowrap;}
  .status-case{background:rgba(95,169,141,0.14); color:var(--green-dark); border:1px solid rgba(95,169,141,0.35);}
  .status-case:hover{background:rgba(95,169,141,0.24); color:var(--green-dark);}
  .status-demo{background:rgba(147,197,253,0.2); color:#1d4ed8; border:1px solid rgba(147,197,253,0.5);}
  .status-dev{background:rgba(193,91,60,0.10); color:var(--terracotta); border:1px solid rgba(193,91,60,0.3);}
  .btn-demo-request{font-size:11.5px; font-weight:600; color:var(--terracotta); text-decoration:none; display:inline-flex; align-items:center; gap:4px;}
  .btn-demo-request:hover{color:var(--navy);}

  /* Quote card (casos de éxito) */
  .quote-card{position:relative; background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:40px; overflow:hidden; scroll-margin-top:100px;}
  .quote-mark{position:absolute; top:8px; left:24px; font-family:Georgia,serif; font-size:5.5rem; line-height:1; color:rgba(95,169,141,0.12); pointer-events:none;}
  .quote-card .service-tag{position:relative; z-index:1; display:inline-block; background:rgba(95,169,141,0.10); border:1px solid rgba(95,169,141,0.3); color:var(--green-dark); font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.06em; text-transform:uppercase; padding:5px 14px; border-radius:50px; margin-bottom:22px;}
  .quote-card .quote-text{position:relative; z-index:1; font-size:17px; font-weight:500; color:var(--ink); line-height:1.7; margin-bottom:24px;}
  .quote-result-chips{display:flex; flex-wrap:wrap; gap:9px; margin-bottom:24px;}
  .quote-result-chip{display:inline-flex; align-items:center; gap:6px; background:var(--paper); border:1px solid var(--line); color:var(--navy); font-size:12px; font-weight:600; padding:7px 14px; border-radius:50px;}
  .quote-result-chip i{color:var(--green);}
  .quote-footer{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px; border-top:1px solid var(--line); padding-top:20px;}
  .quote-person strong{display:block; font-family:'Space Grotesk'; font-weight:600; color:var(--navy); font-size:15px;}
  .quote-person span{font-size:13px; color:var(--gray);}
  .quote-logo img{height:30px; width:auto; display:block;}

  .update-badge{display:inline-flex; align-items:center; gap:6px; background:rgba(95,169,141,0.12); border:1px solid rgba(95,169,141,0.3); color:var(--green-dark); font-size:12px; font-weight:600; padding:6px 14px; border-radius:50px; margin-bottom:20px;}
