
  :root{
    --ink:#111111;
    --paper:#ffffff;
    --surface:#f2f6f2;
    --surface-line:#e3e9e3;
    --green:#38B240;
    --green-deep:#2C8B32;
    --muted:#5b6660;
    --muted-on-dark:#a9b3ac;
    --font-display:'Montserrat',system-ui,-apple-system,sans-serif;
    --font-body:'Montserrat',system-ui,-apple-system,sans-serif;
    --max:1180px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:var(--font-body);
    font-weight:500;
    background:var(--paper);
    color:var(--ink);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  h1,h2,h3{font-family:var(--font-display);text-wrap:balance;margin:0;}
  p{margin:0;}
  ::selection{background:var(--green);color:#fff;}
  :focus-visible{outline:2px solid var(--green);outline-offset:3px;}

  .wrap{max-width:var(--max);margin:0 auto;padding:0 24px;}
  .eyebrow{
    display:block;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:.9rem;
  }

  /* Buttons */
  .btn{
    display:inline-flex;align-items:center;gap:.55rem;
    font-weight:600;font-size:.95rem;
    padding:.85rem 1.5rem;border-radius:999px;
    border:1.5px solid transparent;cursor:pointer;
    transition:background .25s ease, transform .2s cubic-bezier(.22,.61,.36,1), border-color .25s ease, box-shadow .25s ease;
    white-space:nowrap;
  }
  .btn svg{width:1.1em;height:1.1em;flex:none;}
  .btn-primary{background:var(--green);color:#fff;}
  .btn-primary:hover{background:var(--green-deep);transform:translateY(-2px) scale(1.03);box-shadow:0 14px 26px -12px rgba(56,178,64,.55);}
  .btn-outline-dark{border-color:rgba(255,255,255,.35);color:#fff;}
  .btn-outline-dark:hover{background:rgba(255,255,255,.08);border-color:#fff;transform:translateY(-2px) scale(1.03);}
  .btn-dark{background:var(--ink);color:#fff;}
  .btn-dark:hover{background:#000;transform:translateY(-2px) scale(1.03);box-shadow:0 14px 26px -12px rgba(0,0,0,.4);}

  /* Header */
  header{
    position:sticky;top:0;z-index:50;
    background:rgba(17,17,17,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .header-inner{
    display:flex;align-items:center;justify-content:space-between;
    height:68px;
  }
  .brand{display:flex;align-items:center;gap:.6rem;}
  .brand img{height:30px;width:auto;}
  .brand span{color:#fff;font-weight:800;letter-spacing:.03em;font-size:1.1rem;}
  .brand .brand-full-logo{height:34px;width:auto;}
  nav.primary-nav{display:none;align-items:center;gap:2rem;font-size:.92rem;font-weight:500;color:rgba(255,255,255,.8);}
  nav.primary-nav a{position:relative;padding:.3rem 0;transition:color .2s ease;}
  nav.primary-nav a:hover{color:#fff;}
  nav.primary-nav a::before{
    content:"";position:absolute;left:0;right:100%;bottom:-4px;height:2px;background:rgba(255,255,255,.5);border-radius:2px;
    transition:right .25s cubic-bezier(.22,.61,.36,1);
  }
  nav.primary-nav a:hover::before{right:0;}
  nav.primary-nav a.nav-active{color:#fff;}
  nav.primary-nav a.nav-active::after{
    content:"";position:absolute;left:0;right:0;bottom:-4px;height:2px;background:var(--green);border-radius:2px;
  }
  nav.primary-nav a.nav-active:hover::before{content:none;}
  .mobile-nav-inner a.nav-active{color:var(--green);}
  .header-actions{display:flex;align-items:center;gap:.75rem;}
  .header-actions .btn-primary{display:none;font-size:.88rem;padding:.6rem 1.1rem;}
  .menu-btn{
    display:inline-flex;background:none;border:0;color:#fff;padding:.4rem;cursor:pointer;
  }
  .menu-btn svg{width:24px;height:24px;}
  .mobile-nav{
    max-height:0;opacity:0;overflow:hidden;
    background:var(--ink);border-top:1px solid rgba(255,255,255,.1);
    transition:max-height .3s ease, opacity .2s ease;
  }
  .mobile-nav.open{max-height:420px;opacity:1;}
  .mobile-nav-inner{display:flex;flex-direction:column;gap:.9rem;padding:1.2rem 24px;color:rgba(255,255,255,.9);font-weight:500;}
  .mobile-nav .btn-primary{justify-content:center;margin-top:.3rem;}

  @media (min-width:960px){
    nav.primary-nav{display:flex;}
    .header-actions .btn-primary{display:inline-flex;}
    .menu-btn{display:none;}
  }

  /* Hero */
  .hero{background:var(--ink);position:relative;overflow:hidden;}
  .hero-inner{
    padding:48px 0 92px;
    display:grid;gap:40px;
    position:relative;z-index:1;
  }
  @media (min-width:640px){.hero-inner{padding:72px 0 132px;gap:56px;}}
  .hero h1{color:#fff;font-size:clamp(2.1rem,4.4vw,3.1rem);font-weight:800;line-height:1.08;margin-bottom:1.2rem;}
  .hero h1 .accent{color:var(--green);}
  .hero .lede{color:rgba(255,255,255,.72);font-size:1.15rem;max-width:30rem;margin-bottom:.7rem;}
  .hero .sub{color:rgba(255,255,255,.5);max-width:30rem;margin-bottom:2rem;line-height:1.6;}
  .hero-ctas{display:flex;flex-wrap:wrap;gap:.85rem;margin-bottom:2.6rem;}
  .hero-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem;}
  .hero-stat{display:flex;align-items:flex-start;gap:.55rem;}
  .hero-stat svg{width:19px;height:19px;color:var(--green);flex:none;margin-top:.2rem;}
  .hero-stat strong{display:block;color:#fff;font-size:.92rem;font-weight:600;}
  .hero-stat span{color:rgba(255,255,255,.5);font-size:.8rem;}
  @media (min-width:640px){.hero-stats{grid-template-columns:repeat(4,1fr);}}
  @media (min-width:960px){.hero-inner{grid-template-columns:1.05fr 1fr;align-items:center;}}

  .hero-media{position:relative;}
  .hero-media img{
    width:100%;border-radius:20px;box-shadow:0 30px 60px -20px rgba(0,0,0,.6);
    border:1px solid rgba(255,255,255,.1);aspect-ratio:4/3;object-fit:cover;
  }

  .hero-swoosh{
    position:absolute;left:0;right:0;bottom:-1px;height:80px;background:var(--green);
    clip-path:ellipse(70% 100% at 28% 100%);
  }

  /* Interior page header (used on every page except Inicio) */
  .page-hero{background:var(--ink);position:relative;overflow:hidden;}
  .page-hero-inner{padding:56px 0 76px;position:relative;z-index:1;}
  .page-hero .crumbs{color:rgba(255,255,255,.45);font-size:.85rem;margin-bottom:1rem;}
  .page-hero .crumbs a:hover{color:#fff;}
  .page-hero h1{color:#fff;font-size:clamp(1.9rem,3.6vw,2.6rem);font-weight:800;line-height:1.15;margin-bottom:.8rem;}
  .page-hero p{color:rgba(255,255,255,.65);max-width:36rem;line-height:1.6;}
  .page-hero-swoosh{
    position:absolute;left:0;right:0;bottom:-1px;height:48px;background:var(--green);
    clip-path:ellipse(60% 100% at 22% 100%);
  }

  /* Section shells */
  section{padding:44px 0;}
  @media (min-width:640px){section{padding:96px 0;}}
  .section-head{max-width:38rem;margin:0 auto 2.2rem;text-align:center;}
  @media (min-width:640px){.section-head{margin:0 auto 3.5rem;}}
  .section-head h2{font-size:clamp(1.7rem,3.2vw,2.3rem);font-weight:800;line-height:1.2;}
  .on-dark .eyebrow{color:var(--green);}
  .on-dark h2{color:#fff;}
  .on-light .eyebrow{color:var(--green-deep);}

  /* Services grid */
  .services{background:var(--paper);}
  .service-grid{display:grid;gap:1.5rem;grid-template-columns:1fr;}
  @media (min-width:640px){.service-grid{grid-template-columns:repeat(2,1fr);}}
  @media (min-width:960px){.service-grid{grid-template-columns:repeat(4,1fr);}}
  .service-card{
    display:block;
    border:1px solid var(--surface-line);border-radius:14px;overflow:hidden;
    background:var(--paper);cursor:pointer;
    transition:transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
  }
  .service-card:hover, .service-card:focus-visible{
    transform:translateY(-6px) scale(1.035);
    box-shadow:0 26px 48px -20px rgba(17,17,17,.32);
    z-index:2;
  }
  .service-card .service-photo img{transition:transform .5s cubic-bezier(.22,.61,.36,1);}
  .service-card:hover .service-photo img{transform:scale(1.08);}
  .service-photo{height:210px;overflow:hidden;background:var(--surface);}
  @media (min-width:640px) and (max-width:959px){.service-photo{height:180px;}}
  .service-photo img{width:100%;height:100%;object-fit:cover;object-position:top;}
  .service-body{padding:1.3rem 1.3rem 1.5rem;position:relative;}
  .service-icon{
    width:42px;height:42px;border-radius:999px;background:var(--green);
    display:flex;align-items:center;justify-content:center;
    margin-top:-2.6rem;margin-bottom:.85rem;box-shadow:0 10px 20px -8px rgba(0,0,0,.35);
    position:relative;z-index:1;
  }
  .service-icon svg{width:19px;height:19px;color:#fff;}
  .service-card h3{font-size:1.02rem;font-weight:700;margin-bottom:.5rem;}
  .service-card h3 .accent{color:var(--green-deep);}
  .service-card p{color:var(--muted);font-size:.92rem;line-height:1.55;}

  /* Expanded service rows (used on /servicios/) */
  .service-row{display:grid;gap:2.4rem;grid-template-columns:1fr;align-items:center;padding:3.5rem 0;}
  .service-row + .service-row{border-top:1px solid var(--surface-line);}
  .service-row .eyebrow{color:var(--green-deep);}
  .service-row h3{font-size:1.5rem;font-weight:800;margin-bottom:.9rem;line-height:1.25;}
  .service-row h3 .accent{color:var(--green-deep);}
  .service-row p.desc{color:var(--muted);line-height:1.65;margin-bottom:1.4rem;max-width:36rem;}
  .service-row .example-figure{position:relative;border-radius:16px;overflow:hidden;box-shadow:0 20px 44px -24px rgba(17,17,17,.3);}
  .service-row .example-figure img{width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .5s cubic-bezier(.22,.61,.36,1);}
  .service-row:hover .example-figure img{transform:scale(1.06);}
  .service-row .example-figure a{display:block;}
  .service-row .example-tag{
    position:absolute;left:14px;bottom:14px;background:rgba(17,17,17,.78);color:#fff;
    font-size:.72rem;font-weight:600;padding:.4rem .75rem;border-radius:999px;letter-spacing:.02em;
  }
  .service-row-icon{
    width:46px;height:46px;border-radius:12px;background:var(--green);display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;
  }
  .service-row-icon svg{width:22px;height:22px;color:#fff;}
  @media (min-width:860px){
    .service-row{grid-template-columns:1fr 1fr;gap:3.5rem;}
    .service-row.reverse .service-row-media{order:2;}
    .service-row.reverse .service-row-text{order:1;}
  }

  /* Single-service detail page (/servicios/<slug>/) */
  .detail-media{border-radius:18px;overflow:hidden;box-shadow:0 26px 54px -24px rgba(17,17,17,.32);margin-bottom:3rem;}
  .detail-media img{width:100%;max-height:520px;object-fit:cover;display:block;}
  .detail-intro{max-width:44rem;margin:0 auto 3rem;text-align:center;}
  .detail-intro p{color:var(--muted);line-height:1.7;font-size:1.05rem;}
  .detail-features{display:grid;gap:1.4rem;grid-template-columns:1fr;max-width:900px;margin:0 auto;}
  @media (min-width:640px){.detail-features{grid-template-columns:repeat(2,1fr);}}
  .detail-feature{display:flex;gap:.9rem;align-items:flex-start;padding:1.2rem;border:1px solid var(--surface-line);border-radius:12px;background:var(--surface);transition:transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;}
  .detail-feature:hover{transform:translateY(-4px) scale(1.02);box-shadow:0 18px 34px -20px rgba(17,17,17,.3);border-color:var(--green-deep);}
  .detail-feature svg{width:20px;height:20px;color:var(--green-deep);flex:none;margin-top:.15rem;}
  .detail-feature span{color:var(--ink);font-size:.95rem;line-height:1.5;font-weight:500;}
  .detail-crumbs-nav{display:flex;flex-wrap:wrap;gap:.5rem 1rem;justify-content:center;margin-top:3.5rem;}
  .detail-crumbs-nav a{
    font-size:.85rem;font-weight:600;color:var(--muted);padding:.5rem 1rem;border:1px solid var(--surface-line);border-radius:999px;
    transition:color .2s ease, border-color .2s ease;
  }
  .detail-crumbs-nav a:hover{color:var(--green-deep);border-color:var(--green-deep);}
  .detail-crumbs-nav a.current{color:#fff;background:var(--ink);border-color:var(--ink);}

  /* Director / equipo (Nosotros) */
  .director{background:var(--ink);position:relative;overflow:hidden;}
  .director-watermark{
    position:absolute;top:50%;left:50%;transform:translate(-50%,-46%);
    width:min(70vw,620px);height:auto;opacity:.07;pointer-events:none;z-index:0;
  }
  .director .wrap{position:relative;z-index:1;}
  .director-card{
    display:grid;gap:2rem;align-items:center;grid-template-columns:1fr;
    max-width:820px;margin:0 auto;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);
    border-radius:20px;padding:2.4rem 2rem;
    transition:transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, background .3s ease;
  }
  .director-card:hover{transform:translateY(-4px);border-color:rgba(61,205,31,.4);background:rgba(255,255,255,.06);}
  .director-photo{
    width:152px;height:152px;border-radius:999px;object-fit:cover;object-position:50% 15%;margin:0 auto;
    border:3px solid var(--green);box-shadow:0 0 0 6px rgba(61,205,31,.1);
    transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
  }
  .director-card:hover .director-photo{transform:scale(1.06);box-shadow:0 0 0 8px rgba(61,205,31,.18);}
  .director-card .role{color:var(--green);font-weight:700;font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;margin-bottom:.4rem;}
  .director-card h3{color:#fff;font-size:1.4rem;font-weight:800;margin-bottom:1.1rem;}
  .director-card blockquote{color:rgba(255,255,255,.7);font-style:italic;line-height:1.7;margin:0;font-size:1.02rem;}
  @media (min-width:640px){
    .director-card{grid-template-columns:auto 1fr;text-align:left;}
    .director-photo{margin:0;}
  }

  /* Por qué elegirnos */
  .why-grid{display:grid;gap:1.3rem;grid-template-columns:1fr;max-width:1000px;margin:0 auto;}
  @media (min-width:640px){.why-grid{grid-template-columns:repeat(2,1fr);}}
  @media (min-width:960px){.why-grid{grid-template-columns:repeat(3,1fr);}}
  .why-item{display:flex;gap:.9rem;align-items:flex-start;padding:1.3rem;border:1px solid var(--surface-line);border-radius:12px;background:var(--surface);transition:transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;}
  .why-item:hover{transform:translateY(-4px) scale(1.02);box-shadow:0 18px 34px -20px rgba(17,17,17,.3);border-color:var(--green-deep);}
  .why-item svg{width:20px;height:20px;color:var(--green-deep);flex:none;margin-top:.15rem;}
  .why-item h3{font-size:.98rem;font-weight:700;margin-bottom:.35rem;}
  .why-item p{color:var(--muted);font-size:.86rem;line-height:1.5;}

  /* FAQ */
  .faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:.8rem;}
  .faq-item{border:1px solid var(--surface-line);border-radius:12px;background:var(--paper);overflow:hidden;transition:border-color .25s ease, box-shadow .25s ease;}
  .faq-item:hover{border-color:var(--green-deep);box-shadow:0 14px 28px -20px rgba(17,17,17,.28);}
  .faq-item summary{
    list-style:none;cursor:pointer;padding:1.1rem 1.3rem;font-weight:700;font-size:.98rem;
    display:flex;align-items:center;justify-content:space-between;gap:1rem;
    transition:background .25s ease;
  }
  .faq-item summary:hover{background:var(--surface);}
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary .faq-plus{
    flex:none;width:24px;height:24px;border-radius:999px;background:var(--surface);
    display:flex;align-items:center;justify-content:center;color:var(--green-deep);font-weight:800;
    transition:transform .25s ease;
  }
  .faq-item[open] summary .faq-plus{transform:rotate(45deg);}
  .faq-item p{color:var(--muted);font-size:.92rem;line-height:1.6;padding:0 1.3rem 1.2rem;margin:0;}

  /* Prob&aacute; nuestro m&eacute;todo (banner + bot&oacute;n grande) */
  .try-method{background:var(--green);position:relative;overflow:hidden;}
  .try-method::before{
    content:"";position:absolute;top:-40%;right:-10%;width:60%;height:180%;
    background:rgba(255,255,255,.08);transform:rotate(20deg);pointer-events:none;
  }
  .try-method-inner{position:relative;text-align:center;max-width:40rem;margin:0 auto;}
  .try-method .eyebrow{color:rgba(17,17,17,.7);}
  .try-method h2{color:var(--ink);font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:.9rem;line-height:1.2;}
  .try-method p{color:rgba(17,17,17,.75);margin-bottom:2rem;font-size:1.05rem;line-height:1.6;}
  .btn-try{
    display:inline-flex;align-items:center;gap:.7rem;background:var(--ink);color:#fff;
    font-weight:800;font-size:1.1rem;padding:1.2rem 2.4rem;border-radius:999px;
    box-shadow:0 20px 40px -16px rgba(17,17,17,.5);
    transition:transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, background .25s ease;
  }
  .btn-try svg{width:22px;height:22px;}
  .btn-try:hover{transform:translateY(-3px) scale(1.04);box-shadow:0 26px 48px -14px rgba(17,17,17,.55);background:#000;}

  /* Calculá tu inversión (autoanálisis) — banner oscuro, contraparte del banner verde */
  .autoanalisis-cta{background:var(--ink);position:relative;overflow:hidden;}
  .autoanalisis-cta::before{
    content:"";position:absolute;bottom:-50%;left:-10%;width:55%;height:180%;
    background:rgba(56,178,64,.08);transform:rotate(-16deg);pointer-events:none;
  }
  .autoanalisis-cta-inner{position:relative;text-align:center;max-width:40rem;margin:0 auto;}
  .autoanalisis-cta .eyebrow{color:rgba(255,255,255,.6);}
  .autoanalisis-cta h2{color:#fff;font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:.9rem;line-height:1.2;}
  .autoanalisis-cta p{color:rgba(255,255,255,.7);margin-bottom:2rem;font-size:1.05rem;line-height:1.6;}
  .btn-autoanalisis{
    display:inline-flex;align-items:center;gap:.7rem;background:var(--green);color:var(--ink);
    font-weight:800;font-size:1.1rem;padding:1.2rem 2.4rem;border-radius:999px;
    box-shadow:0 20px 40px -16px rgba(56,178,64,.45);
    transition:transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, background .25s ease;
  }
  .btn-autoanalisis svg{width:22px;height:22px;}
  .btn-autoanalisis:hover{transform:translateY(-3px) scale(1.04);box-shadow:0 26px 48px -14px rgba(56,178,64,.6);background:var(--green-deep);color:#fff;}

  /* Pitch (conversaciones que se convierten en ventas) */
  .pitch{
    background:var(--ink);
    background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size:34px 34px;
  }
  .pitch-inner{max-width:44rem;}
  .pitch-badge{
    display:inline-flex;align-items:center;gap:.55rem;padding:.5rem 1.1rem;
    border:1px solid rgba(255,255,255,.18);border-radius:999px;
    font-size:.76rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.8);
    margin-bottom:1.4rem;transition:border-color .25s ease, background .25s ease;
  }
  .pitch-badge:hover{border-color:var(--green);background:rgba(61,205,31,.08);}
  .pitch-badge svg{width:16px;height:16px;color:var(--green);}
  .pitch h2{color:#fff;font-size:clamp(1.9rem,3.6vw,2.7rem);font-weight:800;line-height:1.15;margin-bottom:1.2rem;}
  .pitch h2 .accent{color:var(--green);}
  .pitch p.lede{color:rgba(255,255,255,.62);font-size:1.08rem;line-height:1.7;margin-bottom:2rem;max-width:36rem;}
  .pitch-ctas{display:flex;flex-wrap:wrap;gap:.9rem;}

  /* Clientes */
  .clients{background:var(--ink);}
  .clients-figure{margin:0;border-radius:18px;overflow:hidden;box-shadow:0 26px 54px -24px rgba(0,0,0,.5);transition:box-shadow .3s ease;}
  .clients-figure:hover{box-shadow:0 32px 64px -20px rgba(0,0,0,.6);}
  .clients-figure img{width:100%;height:auto;display:block;transition:transform .4s cubic-bezier(.22,.61,.36,1);}
  .clients-figure:hover img{transform:scale(1.03);}

  /* Motor principal (funnel highlight, home page) */
  .engine{background:var(--ink);position:relative;overflow:hidden;border-top:1px solid rgba(255,255,255,.08);}
  .engine-intro{max-width:42rem;margin:0 auto;color:rgba(255,255,255,.65);line-height:1.75;font-size:1.08rem;}
  .engine-flow{display:flex;flex-direction:column;gap:1.6rem;align-items:stretch;margin-top:3.5rem;}
  .engine-step{
    background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:18px;
    padding:2.2rem 1.9rem 1.9rem;position:relative;flex:1;
    transition:transform .3s ease, border-color .3s ease, background .3s ease;
  }
  .engine-step:hover{transform:translateY(-4px);border-color:rgba(61,205,31,.4);background:rgba(255,255,255,.06);}
  .engine-num{
    position:absolute;top:-18px;left:1.9rem;width:36px;height:36px;border-radius:999px;
    background:var(--green);color:#0c0c0c;font-weight:800;font-size:1rem;
    display:flex;align-items:center;justify-content:center;box-shadow:0 8px 16px -6px rgba(61,205,31,.6);
  }
  .engine-label{color:var(--green);font-weight:700;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:.6rem;}
  .engine-step h3{color:#fff;font-size:1.3rem;font-weight:800;margin-bottom:.9rem;line-height:1.25;}
  .engine-desc{color:rgba(255,255,255,.6);font-size:.92rem;line-height:1.65;margin-bottom:1.3rem;}
  .engine-tags{display:flex;flex-wrap:wrap;gap:.5rem;}
  .engine-tag{
    background:rgba(61,205,31,.12);color:var(--green);font-size:.76rem;font-weight:700;
    padding:.4rem .8rem;border-radius:999px;border:1px solid rgba(61,205,31,.32);white-space:nowrap;
  }
  .engine-arrow{display:flex;align-items:center;justify-content:center;color:var(--green);opacity:.85;}
  .engine-arrow svg{width:26px;height:26px;transform:rotate(90deg);}
  @media (min-width:900px){
    .engine-flow{flex-direction:row;align-items:stretch;}
    .engine-arrow svg{transform:none;}
  }

  /* Process */
  .process{background:var(--ink);}
  .process-grid{display:grid;gap:2.6rem 1.2rem;grid-template-columns:1fr;text-align:center;}
  @media (min-width:640px){.process-grid{grid-template-columns:repeat(2,1fr);}}
  @media (min-width:960px){.process-grid{grid-template-columns:repeat(3,1fr);}}
  .process-grid > .reveal{transition:transform .3s cubic-bezier(.22,.61,.36,1);}
  .process-grid > .reveal:hover{transform:translateY(-4px);}
  .step-icon{
    width:58px;height:58px;border-radius:999px;background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.16);
    display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;position:relative;
    transition:transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, background .3s ease;
  }
  .step-icon svg{width:22px;height:22px;color:var(--green);}
  .process-grid > .reveal:hover .step-icon{transform:scale(1.1);border-color:var(--green);background:rgba(61,205,31,.12);}
  .step-num{
    position:absolute;top:-8px;right:-8px;width:24px;height:24px;border-radius:999px;
    background:var(--green);color:#fff;font-size:.72rem;font-weight:700;
    display:flex;align-items:center;justify-content:center;
  }
  .process-grid h3{color:#fff;font-size:1.02rem;font-weight:700;margin-bottom:.55rem;}
  .process-grid h3 .accent{color:var(--green);}
  .process-grid p{color:rgba(255,255,255,.5);font-size:.88rem;line-height:1.55;}

  .proceso-resultado{
    margin-top:2.8rem;padding:1.6rem 2rem;border-radius:14px;
    background:rgba(56,178,64,.08);border:1px solid rgba(56,178,64,.35);
    text-align:center;
  }
  .proceso-resultado-eyebrow{
    display:block;font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
    color:var(--green);margin-bottom:.5rem;
  }
  .proceso-resultado-texto{color:#fff;font-size:1.3rem;font-weight:700;margin:0;}
  .proceso-resultado-texto .accent{color:var(--green);}

  /* Results */
  .results-inner{display:grid;gap:2rem;grid-template-columns:1fr;align-items:center;}
  .results-inner > *{min-width:0;}
  @media (min-width:640px){.results-inner{gap:3.4rem;}}
  @media (min-width:960px){.results-inner{grid-template-columns:1fr 1fr;}}
  .results h2{font-size:clamp(1.7rem,3.2vw,2.3rem);font-weight:800;line-height:1.2;margin-bottom:1.9rem;}
  .stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:.7rem;margin-bottom:1.8rem;}
  @media (min-width:480px){.stat-row{gap:1.3rem;}}
  .stat-row strong{display:block;font-size:1.7rem;font-weight:800;color:var(--green-deep);font-variant-numeric:tabular-nums;}
  .stat-row span{font-size:.82rem;color:var(--muted);}
  .results p.copy{color:var(--muted);max-width:28rem;margin-bottom:1.6rem;line-height:1.6;}

  .testi-viewport{overflow:hidden;border-radius:18px;min-width:0;width:100%;}
  .testi-track{display:flex;transition:transform .5s cubic-bezier(.22,.61,.36,1);}
  .testi-slide{flex:0 0 100%;padding:.2rem;}
  .testi-card{background:var(--surface);border:1px solid var(--surface-line);border-radius:16px;padding:1.4rem;transition:transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;}
  @media (min-width:640px){.testi-card{padding:2.1rem;}}
  .testi-card:hover{transform:translateY(-4px) scale(1.015);box-shadow:0 20px 38px -22px rgba(17,17,17,.32);}
  .testi-card svg{width:26px;height:26px;color:var(--green);margin-bottom:1rem;}
  .testi-card p{color:#2c332e;margin-bottom:1.4rem;line-height:1.6;}
  .testi-person{display:flex;align-items:center;gap:.7rem;}
  .testi-avatar{
    width:42px;height:42px;border-radius:999px;background:var(--ink);color:#fff;
    display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem;flex:none;
  }
  .testi-person strong{display:block;font-size:.9rem;}
  .testi-person span{font-size:.78rem;color:var(--muted);}
  .testi-dots{display:flex;justify-content:center;gap:.5rem;margin-top:1.4rem;}
  .dot{width:8px;height:8px;border-radius:999px;background:var(--surface-line);border:0;padding:0;cursor:pointer;transition:width .25s ease, background .25s ease;}
  .dot.active{width:24px;background:var(--green);}

  /* About */
  .about{position:relative;padding:0;overflow:hidden;}
  .about-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
  .about-scrim{position:absolute;inset:0;background:linear-gradient(180deg,rgba(17,17,17,.86),rgba(17,17,17,.78));}
  .about-inner{position:relative;max-width:40rem;margin:0 auto;padding:56px 24px;text-align:center;}
  @media (min-width:640px){.about-inner{padding:104px 24px;}}
  .about-inner .eyebrow{color:var(--green);}
  .about-inner h2{color:#fff;font-size:clamp(1.6rem,3vw,2.1rem);font-weight:800;margin-bottom:1rem;}
  .about-inner p{color:rgba(255,255,255,.72);line-height:1.65;}

  /* CTA band */
  .cta-band{background:var(--green);padding:0;}
  .cta-inner{
    padding:44px 0;display:flex;flex-direction:column;gap:1.6rem;
    align-items:center;text-align:center;
  }
  .cta-text{display:flex;align-items:center;gap:1rem;}
  .cta-text svg{width:30px;height:30px;color:#fff;flex:none;}
  .cta-text p.small{color:rgba(255,255,255,.9);font-size:.85rem;font-weight:600;margin-bottom:.2rem;}
  .cta-text p.big{color:#fff;font-weight:700;font-size:1.15rem;}
  @media (min-width:760px){
    .cta-inner{flex-direction:row;justify-content:space-between;text-align:left;}
  }

  /* Footer */
  footer{background:var(--ink);padding:48px 0 28px;}
  @media (min-width:640px){footer{padding:80px 0 32px;}}
  .footer-grid{display:grid;gap:2.6rem;grid-template-columns:1fr;margin-bottom:3rem;}
  @media (min-width:640px){.footer-grid{grid-template-columns:1fr 1fr;}}
  @media (min-width:960px){.footer-grid{grid-template-columns:1.3fr 1fr 1fr 1fr;}}
  .footer-brand .brand{margin-bottom:.8rem;}
  .footer-brand p{color:rgba(255,255,255,.5);font-size:.9rem;}
  .footer-col p.head{color:#fff;font-weight:700;font-size:.82rem;letter-spacing:.08em;margin-bottom:1rem;}
  .footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.55rem;}
  .footer-col li{color:rgba(255,255,255,.5);font-size:.88rem;}
  .footer-col a:hover{color:#fff;}
  .footer-col li.with-icon{display:flex;align-items:center;gap:.5rem;}
  .footer-col li.with-icon svg{width:15px;height:15px;color:var(--green);flex:none;}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);padding-top:1.6rem;
    display:flex;flex-direction:column;gap:1rem;align-items:center;text-align:center;
  }
  .footer-bottom p{color:rgba(255,255,255,.35);font-size:.78rem;}
  .socials{display:flex;gap:1rem;}
  .socials a{color:rgba(255,255,255,.55);}
  .socials a:hover{color:#fff;}
  .socials svg{width:19px;height:19px;}
  @media (min-width:640px){.footer-bottom{flex-direction:row;justify-content:space-between;}}

  /* Reveal on scroll */
  .reveal{
    opacity:0;transform:translateY(34px);
    transition:opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
    transition-delay:var(--d,0s);
  }
  @media (min-width:640px){.reveal{transform:translateY(26px);}}
  .reveal.is-visible{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion:reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    html{scroll-behavior:auto;}
  }
