  :root{
    --navy:#262626;
    --navy-2:#1B1B1B;
    --blue:#79CCEC;
    --blue-light:#B3E4F5;
    --coral:#2E9BC7;
    --coral-dark:#1C7CA3;
    --paper:#FAFBFC;
    --white:#FFFFFF;
    --ink:#1F1F1F;
    --ink-soft:#6B6B6B;
    --line:#E7E9EA;
    --radius:14px;
    --shadow-sm: 0 2px 10px rgba(38,38,38,0.06);
    --shadow-md: 0 12px 30px rgba(38,38,38,0.10);
    --shadow-lg: 0 24px 60px rgba(38,38,38,0.18);
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--paper);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Space Grotesk',sans-serif;
    line-height:1.15;
    letter-spacing:-0.01em;
  }
  a{text-decoration:none;color:inherit;}
  img{max-width:100%;display:block;}
  ul{list-style:none;}
  .container{
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:0 32px;
  }
  section{position:relative;}
  ::selection{background:var(--coral);color:#fff;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    border-radius:100px;
    font-weight:600;
    font-size:15px;
    font-family:'Inter',sans-serif;
    cursor:pointer;
    border:none;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space:nowrap;
  }
  .btn:active{transform:translateY(1px) scale(.98);}
  .btn-coral{
    background:linear-gradient(135deg,var(--coral),var(--coral-dark));
    color:#fff;
    box-shadow:0 10px 24px rgba(63,169,214,.35);
  }
  .btn-coral:hover{box-shadow:0 14px 32px rgba(63,169,214,.5); transform:translateY(-2px);}
  .btn-blue-outline{
    background:rgba(255,255,255,0.08);
    color:#fff;
    border:1.5px solid rgba(255,255,255,0.35);
    backdrop-filter:blur(6px);
  }
  .btn-blue-outline:hover{background:rgba(255,255,255,0.16); border-color:rgba(255,255,255,0.6);}
  .btn-blue-solid{
    background:var(--navy);
    color:var(--blue);
    box-shadow:0 10px 24px rgba(38,38,38,.25);
  }
  .btn-blue-solid:hover{box-shadow:0 14px 30px rgba(38,38,38,.35); transform:translateY(-2px); background:var(--navy-2);}
  .btn-ghost-dark{
    background:transparent;
    color:var(--ink);
    border:1.5px solid var(--line);
  }
  .btn-ghost-dark:hover{border-color:var(--coral); color:var(--coral);}
  .btn-sm{padding:10px 20px; font-size:13.5px;}

  /* ---------- Header ---------- */
  header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(10,30,48,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:76px;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    font-size:17px;
    letter-spacing:0.02em;
  }
  .logo img{
    height:28px;
    width:auto;
    flex-shrink:0;
  }
  .logo em{
    font-style:normal;
    color:#3E9DD1;
  }
  .nav-actions{display:flex; gap:12px; align-items:center;}
  .nav-links{display:flex; gap:32px; align-items:center; margin-right:12px;}
  .nav-links a{
    color:rgba(255,255,255,0.75);
    font-size:14.5px;
    font-weight:500;
    transition:color .2s ease;
  }
  .nav-links a:hover{color:#fff;}

  /* ---------- Botón hamburguesa ---------- */
  .menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:38px;
    height:38px;
    background:transparent;
    border:none;
    padding:0;
    cursor:pointer;
    z-index:110;
    flex-shrink:0;
  }
  .menu-toggle .bar{
    display:block;
    width:22px;
    height:2px;
    background:#fff;
    border-radius:2px;
    transition:transform .3s ease, opacity .2s ease;
  }
  .menu-toggle.open .bar:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .menu-toggle.open .bar:nth-child(2){opacity:0;}
  .menu-toggle.open .bar:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  .nav-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(8,20,32,.55);
    z-index:99;
    opacity:0;
    transition:opacity .3s ease;
  }
  .nav-overlay.open{
    display:block;
    opacity:1;
  }

  /* ---------- Hero ---------- */
  .hero{
    background:
      radial-gradient(ellipse 900px 500px at 15% 15%, rgba(121,204,236,0.35), transparent 60%),
      radial-gradient(ellipse 700px 500px at 90% 10%, rgba(63,169,214,0.18), transparent 55%),
      linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    padding:88px 0 100px;
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:48px;
    align-items:center;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    color:var(--blue-light);
    font-size:13px;
    font-weight:600;
    letter-spacing:0.04em;
    text-transform:uppercase;
    padding:7px 16px;
    border-radius:100px;
    margin-bottom:24px;
  }
  .eyebrow-dot{width:7px;height:7px;border-radius:50%;background:var(--coral); animation:pulse 2s infinite;}
  @keyframes pulse{0%,100%{opacity:1;}50%{opacity:.35;}}

  .hero h1{
    color:#fff;
    font-size:clamp(34px,4.4vw,58px);
    font-weight:700;
    margin-bottom:22px;
  }
  .hero h1 em{
    font-style:normal;
    background:linear-gradient(100deg, var(--blue-light), var(--coral) 90%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .hero p.lead{
    color:rgba(255,255,255,0.72);
    font-size:17.5px;
    line-height:1.65;
    max-width:520px;
    margin-bottom:34px;
  }
  .hero-cta{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px;}

  /* ---------- Signature: fanned slide deck ---------- */
  .deck-wrap{
    position:relative;
    height:460px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .deck{
    position:relative;
    width:340px;
    height:230px;
    transform-style:preserve-3d;
  }
  .slide{
    position:absolute;
    inset:0;
    width:340px;
    height:230px;
    border-radius:16px;
    background:linear-gradient(160deg,#ffffff,#f2f7fa);
    box-shadow:var(--shadow-lg);
    padding:22px;
    transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
    display:flex;
    flex-direction:column;
    gap:10px;
    will-change:transform;
  }
  .slide .bar{height:1px;background:var(--line);}
  .slide-1{transform:rotate(-14deg) translate(-92px,26px);}
  .slide-2{transform:rotate(-4deg) translate(-32px,10px);}
  .slide-3{transform:rotate(7deg) translate(40px,-4px);}
  .slide-4{transform:rotate(17deg) translate(104px,20px); z-index:4;}
  .deck:hover .slide-1{transform:rotate(-20deg) translate(-130px,40px) scale(1.02);}
  .deck:hover .slide-2{transform:rotate(-7deg) translate(-46px,14px) scale(1.02);}
  .deck:hover .slide-3{transform:rotate(10deg) translate(58px,-8px) scale(1.02);}
  .deck:hover .slide-4{transform:rotate(24deg) translate(150px,26px) scale(1.02);}

  .slide.active{z-index:20 !important; box-shadow:0 32px 70px rgba(38,38,38,.4);}
  .slide-1.active{transform:rotate(-14deg) translate(-92px,26px) scale(1.1);}
  .slide-2.active{transform:rotate(-4deg) translate(-32px,10px) scale(1.1);}
  .slide-3.active{transform:rotate(7deg) translate(40px,-4px) scale(1.1);}
  .slide-4.active{transform:rotate(17deg) translate(104px,20px) scale(1.1);}
  .deck:hover .slide-1.active{transform:rotate(-20deg) translate(-130px,40px) scale(1.12);}
  .deck:hover .slide-2.active{transform:rotate(-7deg) translate(-46px,14px) scale(1.12);}
  .deck:hover .slide-3.active{transform:rotate(10deg) translate(58px,-8px) scale(1.12);}
  .deck:hover .slide-4.active{transform:rotate(24deg) translate(150px,26px) scale(1.12);}

  .deck-dots{
    display:flex;
    justify-content:center;
    gap:9px;
    position:absolute;
    bottom:6px;
    left:50%;
    transform:translateX(-50%);
    z-index:30;
  }
  .deck-dots .dot{
    width:8px;height:8px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,0.3);
    cursor:pointer;
    padding:0;
    transition:all .3s ease;
  }
  .deck-dots .dot.active{
    width:22px;
    border-radius:5px;
    background:linear-gradient(90deg,var(--blue-light),var(--blue));
  }

  .slide-head{display:flex; align-items:center; gap:8px;}
  .slide-dot{width:9px;height:9px;border-radius:50%;}
  .slide-dot.c1{background:var(--coral);}
  .slide-dot.c2{background:#FFC94A;}
  .slide-dot.c3{background:#4CD787;}
  .slide-title{font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:13px; color:var(--ink); flex:1;}
  .slide-title-bar{height:10px; width:70%; border-radius:4px; background:linear-gradient(90deg,var(--blue),var(--blue-light));}
  .slide-line{height:6px; border-radius:3px; background:var(--line);}
  .slide-line.w1{width:92%;}
  .slide-line.w2{width:70%;}
  .slide-line.w3{width:55%;}
  .slide-chart{display:flex; align-items:flex-end; gap:6px; height:60px; margin-top:auto;}
  .slide-chart div{flex:1; border-radius:4px 4px 0 0; background:linear-gradient(180deg,var(--blue-light),var(--blue));}
  .slide-donut{
    width:56px;height:56px;border-radius:50%;
    background:conic-gradient(var(--coral) 0 68%, var(--line) 68% 100%);
    display:flex;align-items:center;justify-content:center;
    margin-left:auto;
  }
  .slide-donut::after{
    content:'68%';
    width:38px;height:38px;border-radius:50%;background:#fff;
    display:flex;align-items:center;justify-content:center;
    font-size:11px;font-weight:700;font-family:'Space Grotesk',sans-serif;color:var(--ink);
  }

  .float-chip{
    position:absolute;
    background:#fff;
    border-radius:12px;
    box-shadow:var(--shadow-md);
    padding:10px 14px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12.5px;
    font-weight:600;
    animation:float 5s ease-in-out infinite;
    z-index:5;
  }
  .float-chip svg{width:16px;height:16px;flex-shrink:0;}
  .chip-a{top:14px; right:6px; color:#1C8A4A; animation-delay:.2s;}
  .chip-b{bottom:20px; left:0; color:var(--coral); animation-delay:1.2s;}
  @keyframes float{0%,100%{transform:translateY(0px);}50%{transform:translateY(-10px);}}

  /* ---------- Stat strip ---------- */
  .stat-strip{
    background:var(--white);
    border-bottom:1px solid var(--line);
  }
  .stat-strip .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:36px 32px;
  }
  .stat-item{
    text-align:center;
    padding:0 12px;
    border-right:1px solid var(--line);
    opacity:0;
    transform:translateY(16px);
    transition:opacity .6s ease, transform .6s ease;
  }
  .stat-item.in{opacity:1; transform:translateY(0);}
  .stat-item:nth-child(1){transition-delay:0s;}
  .stat-item:nth-child(2){transition-delay:.1s;}
  .stat-item:nth-child(3){transition-delay:.2s;}
  .stat-item:nth-child(4){transition-delay:.3s;}
  .stat-item:last-child{border-right:none;}
  .stat-item b{
    font-family:'Space Grotesk',sans-serif;
    font-size:32px;
    font-weight:700;
    background:linear-gradient(120deg,var(--blue),var(--coral));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .stat-item span{display:block; color:var(--ink-soft); font-size:13px; margin-top:4px; font-weight:500;}
  .stat-bar-track{
    display:block;
    height:3px;
    width:56px;
    background:var(--line);
    border-radius:3px;
    margin:12px auto 0;
    overflow:hidden;
    font-style:normal;
  }
  .stat-bar-fill{
    display:block;
    height:100%;
    width:0%;
    background:linear-gradient(90deg,var(--blue),var(--coral));
    border-radius:3px;
    transition:width 1.3s cubic-bezier(.2,.8,.2,1);
  }
  .stat-item.in .stat-bar-fill{width:100%;}

  /* ---------- Section headers ---------- */
  .section-pad{padding:100px 0;}
  .sec-head{max-width:640px; margin:0 auto 56px; text-align:center;}
  .sec-eyebrow{
    color:var(--coral);
    font-weight:700;
    font-size:13px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    margin-bottom:12px;
    display:block;
  }
  .sec-head h2{font-size:clamp(28px,3.4vw,40px); color:var(--ink); margin-bottom:14px;}
  .sec-head p{color:var(--ink-soft); font-size:16px; line-height:1.6;}

  /* ---------- Transform / Split feature ---------- */
  .split{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:64px;
    align-items:center;
  }
  .split-copy h2{font-size:clamp(28px,3.2vw,38px); margin-bottom:18px;}
  .split-copy > p{color:var(--ink-soft); font-size:16px; line-height:1.7; margin-bottom:34px;}

  .offer-block{
    padding:24px 0;
    border-top:1px solid var(--line);
  }
  .offer-block:first-of-type{border-top:none; padding-top:0;}
  .offer-block h4{font-size:19px; margin-bottom:10px;}
  .offer-block p{color:var(--ink-soft); font-size:15px; line-height:1.7; margin-bottom:20px;}

  .mock-frame{
    position:relative;
    background:var(--navy);
    border-radius:22px;
    padding:26px;
    box-shadow:var(--shadow-lg);
  }
  .mock-toolbar{display:flex; gap:6px; margin-bottom:18px;}
  .mock-toolbar span{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.2);}
  .mock-canvas{
    background:linear-gradient(155deg,#fff,#eef4f7);
    border-radius:14px;
    padding:28px;
    min-height:320px;
    display:flex;
    flex-direction:column;
    gap:16px;
    position:relative;
    overflow:hidden;
  }
  .mock-canvas .m-title{
    width:60%; height:16px; border-radius:5px;
    background:linear-gradient(90deg,var(--blue),var(--blue-light));
    position:relative; overflow:hidden;
  }
  .mock-canvas .m-title::after{
    content:'';
    position:absolute; inset:0;
    background:linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.65) 50%, transparent 70%);
    transform:translateX(-120%);
    animation:shimmer 3.2s ease-in-out infinite;
  }
  @keyframes shimmer{
    0%{transform:translateX(-120%);}
    55%,100%{transform:translateX(120%);}
  }
  .m-sub-row{display:flex; align-items:center; gap:5px;}
  .mock-canvas .m-sub{width:40%; height:9px; border-radius:4px; background:var(--line);}
  .cursor-blink{
    width:2px;height:11px;
    background:var(--coral);
    animation:blink 1s steps(1) infinite;
  }
  @keyframes blink{0%,49%{opacity:1;} 50%,100%{opacity:0;}}
  .mock-row{display:flex; gap:12px; margin-top:8px;}
  .mock-card{
    flex:1;
    background:#fff;
    border:1px solid var(--line);
    border-radius:10px;
    padding:14px;
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  .mock-card .ic{
    width:26px;height:26px;border-radius:8px;
    background:linear-gradient(135deg,var(--coral),var(--coral-dark));
    animation:icPulse 2.6s ease-in-out infinite;
  }
  .mock-card:nth-child(2) .ic{animation-delay:.3s;}
  .mock-card:nth-child(3) .ic{animation-delay:.6s;}
  @keyframes icPulse{
    0%,100%{transform:scale(1) rotate(0deg);}
    50%{transform:scale(1.12) rotate(-6deg);}
  }
  .mock-card .ln{height:6px;border-radius:3px;background:var(--line);}
  .mock-card .ln.short{width:60%;}
  .mock-bars{display:flex; align-items:flex-end; gap:8px; height:70px; margin-top:auto;}
  .mock-bars div{
    flex:1;border-radius:5px 5px 0 0;
    background:linear-gradient(180deg,var(--blue-light),var(--blue));
    transform-origin:bottom;
    animation:barPulse 2.4s ease-in-out infinite;
  }
  .mock-bars div:nth-child(1){animation-delay:0s;}
  .mock-bars div:nth-child(2){animation-delay:.15s;}
  .mock-bars div:nth-child(3){animation-delay:.3s;}
  .mock-bars div:nth-child(4){animation-delay:.45s;}
  .mock-bars div:nth-child(5){animation-delay:.6s;}
  .mock-bars div:nth-child(6){animation-delay:.75s;}
  @keyframes barPulse{
    0%,100%{transform:scaleY(1);}
    50%{transform:scaleY(.55);}
  }
  .mock-cursor{
    position:absolute;
    width:14px;height:14px;
    border-radius:50%;
    background:var(--coral);
    box-shadow:0 0 0 4px rgba(46,155,199,0.2);
    pointer-events:none;
    animation:cursorMove 10s ease-in-out infinite;
  }
  .mock-cursor::before{
    content:'';
    position:absolute;
    inset:-6px;
    border-radius:50%;
    border:2px solid var(--coral);
    animation:ringPulse 2s ease-out infinite;
  }
  @keyframes ringPulse{
    0%{transform:scale(.4); opacity:.6;}
    70%{transform:scale(1.9); opacity:0;}
    100%{opacity:0;}
  }
  @keyframes cursorMove{
    0%{top:4px; left:58%; opacity:0; transform:scale(.6);}
    4%{opacity:1; transform:scale(1);}
    20%{top:4px; left:58%; opacity:1; transform:scale(1);}
    24%{opacity:0; transform:scale(.6);}
    28%{top:98px; left:12%; opacity:0; transform:scale(.6);}
    32%{opacity:1; transform:scale(1);}
    48%{top:98px; left:12%; opacity:1; transform:scale(1);}
    52%{opacity:0; transform:scale(.6);}
    56%{top:98px; left:48%; opacity:0; transform:scale(.6);}
    60%{opacity:1; transform:scale(1);}
    76%{top:98px; left:48%; opacity:1; transform:scale(1);}
    80%{opacity:0; transform:scale(.6);}
    84%{top:220px; left:68%; opacity:0; transform:scale(.6);}
    88%{opacity:1; transform:scale(1);}
    100%{top:220px; left:68%; opacity:1; transform:scale(1);}
  }
  @media (prefers-reduced-motion: reduce){
    .m-title::after, .cursor-blink, .mock-card .ic, .mock-bars div, .mock-cursor, .mock-cursor::before{
      animation:none !important;
    }
  }

  /* ---------- Why us grid ---------- */
  .why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2px;
    background:var(--line);
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
  }
  .why-card{
    background:#fff;
    padding:34px 36px;
    display:flex;
    gap:20px;
    transition:background .3s ease;
  }
  .why-card:hover{background:#FBFCFD;}
  .why-icon{
    width:52px;height:52px;
    flex-shrink:0;
    border-radius:14px;
    background:linear-gradient(135deg, rgba(121,204,236,0.18), rgba(179,228,245,0.25));
    display:flex;align-items:center;justify-content:center;
    color:var(--blue);
    transition:transform .3s ease;
  }
  .why-card:hover .why-icon{transform:rotate(-6deg) scale(1.06); color:var(--coral);}
  .why-icon svg{width:24px;height:24px;}
  .why-text h4{font-size:16.5px; margin-bottom:6px;}
  .why-text p{color:var(--ink-soft); font-size:14.5px; line-height:1.6;}

  /* ---------- Process ---------- */
  .process-section{
    background:var(--navy);
    position:relative;
  }
  .process-section .sec-head h2{color:#fff;}
  .process-section .sec-head p{color:rgba(255,255,255,0.6);}
  .process-track{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  .process-track::before{
    content:'';
    position:absolute;
    top:30px;
    left:60px;
    right:60px;
    height:1px;
    background:repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 8px, transparent 8px 16px);
    z-index:0;
  }
  .proc-step{
    position:relative;
    z-index:1;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:30px 24px;
    transition:transform .3s ease, background .3s ease;
  }
  .proc-step:hover{transform:translateY(-6px); background:rgba(255,255,255,0.07);}
  .proc-num{
    width:44px;height:44px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--blue-light),var(--blue));
    color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    font-size:16px;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(121,204,236,.45);
  }
  .proc-step h4{color:#fff; font-size:16.5px; margin-bottom:8px;}
  .proc-step p{color:rgba(255,255,255,0.55); font-size:14px; line-height:1.6;}

  /* ---------- CTA band ---------- */
  .cta-band{
    background:linear-gradient(120deg, var(--blue) 0%, #1567A0 55%, var(--navy) 100%);
    border-radius:28px;
    padding:60px 56px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
    margin:0 32px;
    max-width:1176px;
    margin-left:auto;
    margin-right:auto;
    position:relative;
    overflow:hidden;
  }
  .cta-band::before{
    content:'';
    position:absolute;
    width:340px;height:340px;
    background:radial-gradient(circle, rgba(63,169,214,0.35), transparent 70%);
    top:-140px; right:-80px;
  }
  .cta-band h3{color:#fff; font-size:clamp(24px,3vw,32px); max-width:480px; position:relative; z-index:1;}
  .cta-band p{color:rgba(255,255,255,0.75); margin-top:10px; font-size:15px; position:relative; z-index:1;}
  .cta-actions{display:flex; gap:14px; position:relative; z-index:1; flex-wrap:wrap;}

  /* ---------- Footer ---------- */
  footer{
    background:var(--navy);
    padding:64px 0 28px;
    color:rgba(255,255,255,0.6);
  }
  .foot-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:48px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .foot-brand .logo{margin-bottom:16px;}
  .foot-brand p{font-size:14px; line-height:1.7; max-width:320px; color:rgba(255,255,255,0.5);}
  .foot-col h5{color:#fff; font-size:14px; margin-bottom:18px; font-family:'Space Grotesk',sans-serif;}
  .foot-col ul li{margin-bottom:12px; font-size:14px;}
  .foot-col ul li a:hover{color:var(--blue-light);}
  .foot-col ul li{display:flex; align-items:center; gap:8px;}
  .foot-col svg{width:15px;height:15px; flex-shrink:0; opacity:.7;}
  .socials{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap;}
  .socials a{
    width:36px;height:36px;
    border-radius:10px;
    background:rgba(255,255,255,0.06);
    display:flex;align-items:center;justify-content:center;
    transition:background .25s ease, transform .25s ease;
  }
  .socials a:hover{background:var(--blue); transform:translateY(-3px);}
  .socials svg{width:16px;height:16px;}
  .foot-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:26px;
    font-size:13px;
    flex-wrap:wrap;
    gap:12px;
  }
  .foot-bottom .credit{display:flex; align-items:center; gap:8px;}
  .foot-bottom .credit-mark{
    width:20px;height:20px;border-radius:6px;
    background:linear-gradient(135deg,var(--blue-light),var(--blue));
  }

  /* reveal on scroll */
  .reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}

  /* ---------- Floating WhatsApp button ---------- */
  .wa-float{
    position:fixed;
    right:26px;
    bottom:26px;
    z-index:200;
    width:60px;height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 10px 26px rgba(37,211,102,.45);
    transition:transform .25s ease, box-shadow .25s ease;
    animation:wa-pulse 2.6s infinite;
  }
  .wa-float:hover{transform:scale(1.08); box-shadow:0 14px 32px rgba(37,211,102,.6);}
  .wa-float svg{width:30px;height:30px;}
  @keyframes wa-pulse{
    0%{box-shadow:0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5);}
    70%{box-shadow:0 10px 26px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0);}
    100%{box-shadow:0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0);}
  }
  @media (max-width:640px){
    .wa-float{right:16px; bottom:16px; width:54px;height:54px;}
  }

  /* ---------- Responsive ---------- */
  @media (max-width:980px){
    .hero-grid{grid-template-columns:1fr; text-align:center;}
    .hero p.lead{margin-left:auto; margin-right:auto;}
    .hero-cta{justify-content:center;}
    .deck-wrap{height:340px; margin-top:20px;}
    .split{grid-template-columns:1fr;}
    .split .mock-frame{order:-1;}
    .why-grid{grid-template-columns:1fr;}
    .process-track{grid-template-columns:1fr 1fr;}
    .process-track::before{display:none;}
    .foot-grid{grid-template-columns:1fr; gap:32px;}
    .stat-strip .container{grid-template-columns:repeat(2,1fr); row-gap:24px;}
    .stat-item:nth-child(2){border-right:none;}
  }
  @media (max-width:640px){
    .container{padding:0 20px;}
    .cta-band{padding:40px 28px; margin:0 20px;}
    .cta-band{flex-direction:column; align-items:flex-start;}
    .process-track{grid-template-columns:1fr;}
    .deck{transform:scale(0.82);}
  }

  /* ---------- Header compacto + menú hamburguesa ---------- */
  @media (max-width:860px){
    .nav{height:60px;}
    .logo{font-size:14.5px; gap:8px;}
    .logo img{height:22px;}

    .menu-toggle{display:flex;}

    .nav-actions{
      position:fixed;
      top:0;
      right:0;
      height:100vh;
      width:min(80vw,320px);
      background:var(--navy-2);
      flex-direction:column;
      align-items:stretch;
      justify-content:flex-start;
      gap:0;
      padding:84px 28px 28px;
      margin:0;
      transform:translateX(100%);
      transition:transform .35s ease;
      box-shadow:-14px 0 40px rgba(0,0,0,.35);
    }
    .nav-actions.open{transform:translateX(0);}

    .nav-links{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:20px;
      margin:0 0 28px 0;
      width:100%;
    }
    .nav-links a{font-size:16px;}

    .nav-actions .btn{width:100%; text-align:center; margin-bottom:12px;}
  }
