/* ============================================================
   KUENTA · MERCHANT PAGE · DRAFT
   Mobile-first. Stori/Nu rhythm. Canonical brand only.
   Placeholders for every image and symbol.
   ============================================================ */
:root{
  /* Verde Kuenta palette — HSL-mapped to Nubank purple system. See Brand One-Pager v2. */
  --jade:#09D3A0;          /* Iconic — matches Roxinho HSL(275,92,43) at hue 165 */
  --jade-ui:#44DAB4;       /* UI Secondary — matches Nu UI #9c44dc */
  --jade-deep:#2C6355;     /* Deep — matches Nu #442c61 */
  --jade-mid:#3A6E61;      /* Mid */
  --jade-light:#89E1CB;    /* Light wash — matches Nu lavender */
  --jade-soft:rgba(9,211,160,0.10);
  --ink:#0A0A0A;
  --paper:#FFFFFF;
  --p50:#F4F5F2;
  --p100:#E8EAE6;
  --p300:#C4C7C2;
  --p500:#8B908A;
  --p700:#4A4F4B;
  --radius:18px;
  --radius-lg:24px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:var(--paper);
  color:var(--ink);
  font-size:16px;line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none}
ul{list-style:none}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
  }
}

/* Accessibility — skip link */
.skip-link{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{
  position:fixed;left:16px;top:16px;width:auto;height:auto;
  background:var(--ink);color:var(--paper);
  padding:10px 16px;border-radius:8px;z-index:9999;
  font-weight:700;
}
:focus-visible{outline:2px solid var(--jade);outline-offset:2px;border-radius:4px}
.wrap{max-width:1180px;margin:0 auto;padding:0 22px}

/* ============ PLACEHOLDER ============ */
.ph{
  background:repeating-linear-gradient(45deg,var(--p100) 0 8px,var(--p50) 8px 16px);
  border:1px dashed var(--p300);
  border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  padding:18px;text-align:center;
  color:var(--p500);
  font-family:'JetBrains Mono',monospace;
  font-size:10px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;
  line-height:1.6;
}
.ph.dark{
  background:repeating-linear-gradient(45deg,rgba(255,255,255,0.06) 0 8px,rgba(255,255,255,0.02) 8px 16px);
  border-color:rgba(255,255,255,0.20);
  color:rgba(255,255,255,0.55);
}
.ph.tall{aspect-ratio:3/4}
.ph.wide{aspect-ratio:5/3}
.ph.sq{aspect-ratio:1/1}
.ph.round{border-radius:50%;aspect-ratio:1/1}
.ph.icon{aspect-ratio:1/1;border-radius:10px;padding:8px;font-size:9px}

/* ============ TYPE ============ */
.eb{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;
  color:var(--jade);
  display:inline-block;
}
.eb.on-dark{color:var(--jade)}
h1,h2,h3{font-weight:800;letter-spacing:-0.035em;line-height:1.05;color:var(--ink)}
h1{font-size:48px;letter-spacing:-0.045em;line-height:0.95}
h2{font-size:36px;letter-spacing:-0.04em;line-height:1.05}
h3{font-size:18px}
.green{color:var(--jade)}
p.lede{font-size:16px;color:var(--p700);line-height:1.55}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 20px;border-radius:10px;
  font-weight:700;font-size:15px;min-height:48px;
  transition:transform 0.05s,background 0.15s;
  width:100%;
}
.btn:active{transform:scale(0.98)}
.btn-primary{background:var(--jade);color:var(--paper)}
.btn-primary:hover{background:var(--jade-deep)}
.btn-dark{background:var(--ink);color:var(--paper)}
.btn-outline{background:transparent;color:var(--paper);border:1.5px solid rgba(255,255,255,0.7)}
.wa-ic{width:18px;height:18px;flex:0 0 18px;display:inline-block}
.wa-ic path{fill:currentColor}

/* ============ NAV ============ */
.nav{
  position:sticky;top:0;z-index:50;
  background:var(--paper);
  border-bottom:1px solid var(--p100);
  padding:14px 22px;
  display:flex;justify-content:space-between;align-items:center;
}
.lockup{
  display:inline-flex;align-items:center;gap:4px;
  font-weight:800;font-size:22px;letter-spacing:-0.03em;color:var(--ink);
}
.lockup .dot{
  width:7px;height:7px;border-radius:50%;background:var(--jade);
  display:inline-block;margin-left:2px;margin-bottom:3px;
}
.nav-links{display:none}
.nav-cta{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--jade);color:var(--paper);
  padding:9px 14px;border-radius:8px;
  font-weight:700;font-size:13px;
}
.nav-cta .wa-ic{width:14px;height:14px}

/* ============ HERO — NU PATTERN, JADE BACKGROUND ============ */
.hero{
  position:relative;
  background:linear-gradient(180deg, var(--jade) 0%, var(--jade-deep) 100%);
  color:var(--paper);
  overflow:hidden;
  min-height:92vh;
  display:flex;flex-direction:column;
}
/* (concentric circles removed — flat jade only) */
/* nav bar at top */
.hero-nav{
  position:relative;z-index:5;
  display:flex;justify-content:space-between;align-items:center;
  padding:20px 22px;
}
.hero-nav .lockup{display:inline-flex;align-items:center}
.hero-nav .lockup img{height:26px;width:auto;display:block}
.hero-nav .menu{
  width:36px;height:36px;display:grid;place-items:center;
  color:var(--paper);background:transparent;border:0;cursor:pointer;
}
.hero-nav .menu svg{width:24px;height:24px}
.hero-nav-links{display:none}

/* headline area */
.hero-stage{
  position:relative;z-index:3;
  padding:8px 22px 0;
  text-align:center;
}
.hero h1{
  font-size:36px;font-weight:800;letter-spacing:-0.04em;line-height:1.05;
  color:var(--paper);max-width:560px;margin:0 auto;
}
.hero h1 .kuenta-mark{
  color:var(--ink);
  font-weight:800;
}
.hero-sub{
  font-size:16px;font-weight:600;
  color:rgba(255,255,255,0.95);
  line-height:1.45;letter-spacing:-0.01em;
  max-width:480px;margin:14px auto 0;
  text-align:center;
}

/* product visual area in the middle */
.hero-product{
  position:relative;z-index:2;
  flex:1;
  display:flex;align-items:center;justify-content:center;
  padding:4px 10px;min-height:auto;
}
.hero-product img{
  width:72%;max-width:none;height:auto;
  display:block;margin:0 auto;
}
.hero-product .ph{
  width:280px;aspect-ratio:3/4;
  background:transparent;
  border:1px dashed rgba(255,255,255,0.22);
  border-radius:0;
  color:rgba(255,255,255,0.55);
  display:flex;align-items:center;justify-content:center;text-align:center;padding:18px;
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:0.14em;text-transform:uppercase;line-height:1.6;
}


/* three points below the product */
.hero-points{
  position:relative;z-index:3;
  list-style:none;padding:0 22px 24px;
  display:flex;flex-direction:column;gap:6px;
  text-align:center;
  color:var(--paper);
}
.hero-points li{
  font-size:15px;font-weight:600;letter-spacing:-0.005em;
  display:flex;align-items:center;justify-content:center;gap:8px;
}
.hero-points li::before{
  content:"";display:inline-block;
  width:6px;height:6px;border-radius:50%;
  background:var(--paper);
}

/* white rounded form at bottom — Nu's "Quiero ser cliente Nu" pattern */
.hero-form{
  position:relative;z-index:3;
  margin:0 22px 24px;
  background:var(--paper);
  border-radius:20px;
  padding:20px 20px;
  box-shadow:0 2px 8px rgba(0,0,0,0.06),0 16px 32px rgba(0,40,30,0.18);
}
.hero-form .label{
  display:block;font-size:18px;font-weight:800;letter-spacing:-0.02em;color:var(--ink);
  margin-bottom:14px;
}
.hero-form-row{display:flex;gap:10px;align-items:center}
.hero-form input{
  flex:1;border:0;background:var(--p50);
  border-radius:99px;padding:14px 18px;
  font:inherit;font-size:14px;outline:none;color:var(--ink);
  min-width:0;
}
.hero-form input::placeholder{color:var(--p500)}
.hero-form button{
  width:48px;height:48px;flex-shrink:0;border-radius:50%;
  background:var(--jade);color:var(--paper);
  display:grid;place-items:center;cursor:pointer;border:0;
}
.hero-form button svg{width:22px;height:22px}

/* ============ MERCHANT PHOTOS (2-up row, Nu pattern) ============ */
.merchant-photo{
  padding:48px 22px 80px;
  background:var(--paper);
  max-width:1180px;margin:0 auto;
}
.merchant-photos-row{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
}
.merchant-photo .ph,
.merchant-photo-frame{
  width:100%;
  aspect-ratio:4/5;
  border-radius:20px;
  overflow:hidden;
}
.merchant-photo-frame img{
  width:100%;height:100%;object-fit:cover;display:block;
}
@media(min-width:768px){
  .merchant-photo{padding:80px 48px 120px}
  .merchant-photos-row{gap:18px}
  .merchant-photo .ph,
  .merchant-photo-frame{aspect-ratio:4/3;border-radius:24px}
}

/* ============ LIBERA (Nu pattern: photos + overlapping libera card + list) ============ */
.libera{
  padding:32px 22px 80px;
  background:var(--paper);
  max-width:720px;margin:0 auto;
}
.libera-photos{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
}
.libera-photo{
  width:100%;aspect-ratio:4/5;
  border-radius:20px;overflow:hidden;
}
.libera-photo img{width:100%;height:100%;object-fit:cover;display:block}
.libera-head-card{
  background:var(--p50);
  border-radius:24px;
  padding:32px 28px 28px;
  margin-top:-60px;
  position:relative;z-index:2;
  margin-left:14px;margin-right:14px;
}
.libera-head-card h2{
  font-size:30px;font-weight:800;
  letter-spacing:-0.035em;line-height:1.1;
  color:var(--ink);margin:0;
}
.libera-head-card h2 .green{color:var(--jade)}
.libera-list{
  list-style:none;padding:0;margin:14px 0 0;
  display:flex;flex-direction:column;gap:10px;
}
.libera-row{
  background:var(--p50);
  border-radius:18px;
  padding:20px 22px;
  display:flex;align-items:center;gap:16px;
}
.libera-ic{
  flex:0 0 36px;width:36px;height:36px;
  border-radius:50%;
  background:var(--jade);color:var(--paper);
  display:grid;place-items:center;
}
.libera-ic svg{width:18px;height:18px}
.libera-label{
  font-size:17px;font-weight:700;
  color:var(--ink);letter-spacing:-0.015em;
  line-height:1.25;
}
@media(min-width:768px){
  .libera{padding:64px 22px 120px;max-width:1080px}
  .libera-photos{gap:18px}
  .libera-photo{aspect-ratio:4/3;border-radius:24px}
  .libera-head-card{padding:48px 44px 40px;margin-top:-100px;margin-left:32px;margin-right:32px;border-radius:32px}
  .libera-head-card h2{font-size:52px;letter-spacing:-0.045em}
  .libera-list{margin-top:18px;flex-direction:row;gap:14px}
  .libera-row{flex:1;padding:24px 26px}
  .libera-label{font-size:18px}
}
@media(min-width:900px){
  .libera{max-width:1180px;padding:64px 48px 120px}
}

/* ============ SUBTRACTION (NU PATTERN) ============ */
.subtract{
  background:var(--paper);
  padding:40px 22px 80px;
  max-width:720px;margin:0 auto;
}
.subtract-wrap{
  background:var(--p50);
  border-radius:24px;
  padding:28px 24px 24px;
}
.subtract-head{
  padding:0 4px 18px;
  background:transparent;
  border-radius:0;
  margin-bottom:0;
}
.subtract-head h2{
  font-size:30px;
  font-weight:800;
  letter-spacing:-0.035em;
  line-height:1.15;
  color:var(--ink);
  text-align:left;
}
.subtract-head h2 .green{color:var(--jade)}
.subtract-list{display:flex;flex-direction:column;gap:10px;list-style:none;padding:0;margin:0}
.subtract-row{
  background:var(--paper);
  border-radius:16px;
  padding:18px 20px;
  display:flex;align-items:center;gap:16px;
}
.subtract-ic{
  flex:0 0 32px;width:32px;height:32px;
  border-radius:50%;
  background:transparent;color:var(--jade);
  display:grid;place-items:center;
  border:1.5px solid var(--jade);
}
.subtract-ic svg{width:18px;height:18px}
.subtract-label{
  font-size:17px;font-weight:700;letter-spacing:-0.015em;
  color:var(--ink);line-height:1.3;
}
@media(min-width:768px){
  .subtract{padding:60px 22px 120px}
  .subtract-head{padding:56px 44px 64px;margin-bottom:18px}
  .subtract-head h2{font-size:48px;letter-spacing:-0.045em}
  .subtract-row{padding:28px 32px;gap:24px}
  .subtract-ic{flex:0 0 64px;width:64px;height:64px}
  .subtract-ic svg{width:30px;height:30px}
  .subtract-label{font-size:22px}
}

/* ============ MSI PROMO STRIP (Nu pattern) ============ */
.msi-strip{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:1180px;margin:0 auto;
}
.msi-strip-card{
  background:linear-gradient(135deg, var(--jade) 0%, var(--jade-deep) 100%);
  border-radius:24px;
  padding:44px 28px 36px;
  color:var(--paper);
  display:flex;flex-direction:column;gap:24px;
  align-items:center;text-align:center;
}
.msi-strip-content{width:100%}
.msi-strip-content h3{
  font-size:30px;
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.1;
  color:var(--paper);
  margin:0;
}
.msi-strip-content h3 .green{color:var(--jade-light)}
.msi-strip-art{
  width:160px;aspect-ratio:1/1;
  display:flex;align-items:center;justify-content:center;
}
.msi-strip-art img{width:100%;height:100%;object-fit:contain;display:block}
@media(min-width:768px){
  .msi-strip{padding:0 48px 120px;max-width:1180px}
  .msi-strip-card{
    padding:48px 56px;gap:32px;
    flex-direction:row;align-items:center;justify-content:space-between;text-align:left;
    position:relative;
  }
  .msi-strip-content{flex:1;max-width:680px;text-align:left}
  .msi-strip-content h3{font-size:42px;letter-spacing:-0.04em;line-height:1.1;text-align:left;margin:0}
  .msi-strip-art{width:180px;height:180px;flex:none;margin:0;align-self:center}
}

/* ============ LO QUE INCLUYE (Nu/Stori vertical card grid) ============ */
.includes{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:1080px;margin:0 auto;
}
.includes-head{
  background:var(--p50);
  border-radius:24px;
  padding:38px 28px 44px;
  margin-bottom:14px;
}
.includes-head h2{
  font-size:36px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:1.12;
  color:var(--ink);
  text-align:left;
}
.includes-head h2 .green{color:var(--jade)}
.includes-nav{display:none}
.includes-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.include-card{
  background:var(--p50);
  border-radius:20px;
  padding:24px 18px 26px;
  display:flex;flex-direction:column;
  align-items:center;
  text-align:center;
}
.include-illo{
  width:100%;
  aspect-ratio:1/1;
  display:grid;place-items:center;
  margin-bottom:18px;
}
.include-illo .ph{
  width:100%;height:100%;
  border-radius:14px;
  font-size:8px;letter-spacing:0.08em;
  padding:10px;line-height:1.5;
}
.include-illo img{
  width:80%;height:80%;object-fit:contain;display:block;
}
.include-card h3{
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.2;
  color:var(--ink);
  margin-bottom:6px;
}
.include-card p{
  font-size:15px;
  color:var(--p700);
  line-height:1.4;
}
@media(min-width:768px){
  .includes{padding:0 22px 120px}
  .includes-head{padding:56px 44px 64px;margin-bottom:18px}
  .includes-head h2{font-size:48px;letter-spacing:-0.045em}
  .includes-grid{gap:18px}
  .include-card{padding:40px 28px 36px;border-radius:24px}
  .include-illo{margin-bottom:28px}
  .include-card h3{font-size:28px}
  .include-card p{font-size:16px}
}

/* ============ TESTIMONIO (peer voice) ============ */
.testimonial{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:1180px;margin:0 auto;
  display:flex;flex-direction:column;gap:18px;
}
.testimonial-photo{
  width:100%;
  aspect-ratio:4/5;
  border-radius:24px;
  font-size:10px;letter-spacing:0.1em;
  padding:14px;line-height:1.5;
}
.testimonial-card{
  background:var(--p50);
  border-radius:24px;
  padding:36px 32px;
}
.testimonial-quote{
  font-size:22px;
  font-weight:700;
  letter-spacing:-0.02em;
  line-height:1.35;
  color:var(--ink);
  margin-bottom:18px;
}
.testimonial-attr{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;font-weight:700;letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--jade-deep);
}
@media(min-width:768px){
  .testimonial{
    padding:0 48px 120px;
    display:grid;grid-template-columns:1fr 1.3fr;gap:24px;align-items:stretch;
  }
  .testimonial-photo{aspect-ratio:auto;height:auto;min-height:400px}
  .testimonial-card{
    padding:56px 48px;
    display:flex;flex-direction:column;justify-content:center;
  }
  .testimonial-quote{font-size:28px;line-height:1.3}
  .testimonial-attr{font-size:13px}
}

/* ============ ACEPTACIÓN (payment methods strip) ============ */
.acceptance{
  background:var(--paper);
  padding:0 0 64px;
  max-width:none;margin:0 auto;
  text-align:center;
  overflow:hidden;
}
.acceptance-title{
  font-size:30px;
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.15;
  color:var(--ink);
  margin:0 22px 28px;
  text-align:center;
}
.acceptance-title .green{color:var(--jade)}
.acceptance-strip{
  width:100%;
  overflow:hidden;
  position:relative;
  padding:8px 0;
  -webkit-mask-image:linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image:linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.acceptance-track{
  display:flex;align-items:center;gap:32px;
  animation:logo-scroll 36s linear infinite;
  width:max-content;
}
.acceptance-track img{
  height:36px;width:auto;display:block;flex:none;
  object-fit:contain;
}
@keyframes logo-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@media(min-width:768px){
  .acceptance{padding:0 0 100px}
  .acceptance-title{font-size:48px;letter-spacing:-0.045em;margin-bottom:40px}
  .acceptance-track{gap:56px}
  .acceptance-track img{height:48px}
}

/* ============ TRANSPARENCIA (Nu floating card pattern) ============ */
.transparency{
  position:relative;
  padding:0 22px 80px;
  background:var(--paper);
  max-width:720px;margin:0 auto;
}
.terminal-photos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding-bottom:0;
}
.terminal-photos .ph,
.terminal-photo-frame{
  width:100%;
  aspect-ratio:3/4;
  border-radius:18px;
  font-size:9px;letter-spacing:0.08em;
  padding:14px;line-height:1.5;
  overflow:hidden;
}
.terminal-photo-frame{padding:0}
.terminal-photo-frame img{width:100%;height:100%;object-fit:cover;display:block}
.transparency-card{
  background:var(--p50);
  border-radius:24px;
  padding:42px 28px 36px;
  margin-top:0;
  position:relative;
  z-index:2;
}
.transparency-card h2{
  font-size:36px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:1.12;
  color:var(--ink);
  margin-bottom:28px;
}
.transparency-card h2 .green{color:var(--jade)}
.price-list{
  list-style:none;padding:0;margin:0 0 24px;
  display:flex;flex-direction:column;gap:24px;
}
.price-list li{
  display:flex;flex-direction:column;gap:4px;
}
.price-label{
  font-size:16px;
  color:var(--ink);
  font-weight:700;
}
.price-value{
  font-size:24px;
  font-weight:800;
  letter-spacing:-0.025em;
  line-height:1.2;
  color:var(--jade);
}
.transparency-note{
  font-size:14px;
  color:var(--p700);
  line-height:1.45;
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid var(--p100);
}
@media(min-width:768px){
  .transparency{padding:0 22px 120px}
  .transparency-card{padding:56px 44px 48px;margin-top:0;max-width:720px;margin-left:auto;margin-right:auto}
  .transparency-card h2{font-size:48px;letter-spacing:-0.045em;margin-bottom:36px}
  .price-list{gap:28px}
  .price-label{font-size:17px}
  .price-value{font-size:36px}
  .transparency-note{font-size:15px}
}

/* ============ CTA STEPS (Nu "todo listo" pattern) ============ */
.cta-block{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:720px;margin:0 auto;
}
.cta-bento{
  display:flex;flex-direction:column;gap:14px;margin-bottom:14px;
}
.cta-photo{
  width:100%;aspect-ratio:4/5;border-radius:24px;
  font-size:10px;letter-spacing:0.1em;padding:14px;line-height:1.5;
  overflow:hidden;
}
.cta-photo img{width:100%;height:100%;object-fit:cover;display:block;border-radius:24px}
.cta-stack{display:flex;flex-direction:column;gap:14px}
.cta-tease{
  background:var(--jade-light);color:var(--ink);
  border-radius:24px;padding:30px 28px;
}
.cta-tease h3{
  font-size:22px;font-weight:800;letter-spacing:-0.025em;line-height:1.2;
  color:var(--ink);margin-bottom:8px;
}
.cta-tease p{
  font-size:15px;line-height:1.5;color:var(--jade-deep);
}
.cta-head{
  background:linear-gradient(180deg, var(--jade) 0%, var(--jade-deep) 100%);
  border-radius:24px;
  padding:42px 28px 56px;
  margin-bottom:0;
}
.cta-head h2{
  font-size:36px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:1.1;
  color:var(--paper);
  text-align:left;
  max-width:280px;
}
.cta-steps{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:14px;
}
.cta-step{
  background:var(--p50);
  border-radius:20px;
  padding:24px 24px 26px;
  display:flex;align-items:flex-start;gap:20px;
}
.cta-ic{
  flex:0 0 52px;width:52px;height:52px;
  border-radius:50%;
  background:var(--jade);color:var(--paper);
  display:grid;place-items:center;
  margin-top:2px;
  font-size:22px;font-weight:800;letter-spacing:-0.02em;
}
.cta-ic svg{width:24px;height:24px}
.cta-step-body h3{
  font-size:19px;font-weight:800;
  letter-spacing:-0.02em;line-height:1.25;
  color:var(--ink);
  margin-bottom:6px;
}
.cta-step-body p{
  font-size:16px;
  color:var(--p700);
  line-height:1.45;
}
@media(min-width:768px){
  .cta-block{padding:0 22px 120px}
  .cta-head{padding:64px 44px 80px;margin-bottom:18px}
  .cta-head h2{font-size:52px;letter-spacing:-0.045em;max-width:420px}
  .cta-step{padding:28px 32px;gap:24px}
  .cta-ic{flex:0 0 60px;width:60px;height:60px}
  .cta-ic svg{width:28px;height:28px}
  .cta-step-body h3{font-size:22px}
  .cta-step-body p{font-size:17px}
}

/* ============ FAQ (Stori accordion pattern) ============ */
.faq{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:720px;margin:0 auto;
}
.faq-head{
  padding:0 4px 28px;
}
.faq-head h2{
  font-size:36px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:1.1;
  color:var(--ink);
  text-align:left;
}
.faq-wrap{
  background:transparent;
  border-radius:0;
  padding:0;
}
.faq-list{
  display:flex;flex-direction:column;
  gap:12px;
}
.faq-item{
  background:var(--p50);
  border-radius:16px;
  border:0;
  overflow:hidden;
}
.faq-item summary{
  list-style:none;cursor:pointer;
  padding:26px 28px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  font-size:17px;font-weight:700;
  letter-spacing:-0.015em;
  color:var(--ink);line-height:1.35;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::marker{display:none;content:""}
.faq-item summary::before{display:none}
.faq-ic{
  flex:0 0 32px;width:32px;height:32px;
  display:grid;place-items:center;
  color:var(--ink);
  transition:transform 0.2s;
}
.faq-ic svg{width:20px;height:20px}
.faq-item[open] .faq-ic{transform:rotate(45deg)}
.faq-body{
  padding:0 28px 24px;
}
.faq-body p{
  font-size:16px;
  color:var(--p700);
  line-height:1.5;
}
@media(min-width:768px){
  .faq{padding:0 22px 120px}
  .faq-head h2{font-size:52px;letter-spacing:-0.045em}
  .faq-list{gap:14px}
  .faq-item summary{padding:30px 36px;font-size:19px}
  .faq-body{padding:0 36px 30px}
  .faq-body p{font-size:16px}
}

/* ============ FOOTER (Stori dark accordion pattern) ============ */
.foot{
  background:var(--ink);
  color:var(--paper);
  padding:48px 22px 32px;
  margin-top:40px;
}
.foot-top{
  padding-bottom:32px;
  margin-bottom:0;
}
.foot-lockup{
  display:inline-flex;align-items:center;
  margin-bottom:14px;
}
.foot-lockup img{
  height:24px;width:auto;display:block;
}
.foot-tag{
  font-size:18px;
  font-weight:700;
  color:var(--paper);
  letter-spacing:-0.02em;
  line-height:1.3;
  max-width:340px;
  margin-bottom:24px;
}
.foot-tag .green{color:var(--jade)}
.foot-nav{
  display:flex;flex-direction:column;gap:0;
  padding-bottom:0;
  margin-bottom:24px;
  border-bottom:0;
}
.foot-nav .foot-col{
  border-top:0;
  padding:24px 0 32px;
  border-bottom:1px solid rgba(255,255,255,0.14);
}
.foot-nav .foot-col:first-child{padding-top:0}
.foot-nav .foot-col:last-child{border-bottom:0}
/* Mobile: Nu-style — title sits above items, single line per section as divider */
.foot-nav .foot-col h4{
  font-size:17px;font-weight:700;letter-spacing:-0.01em;
  text-transform:none;
  color:var(--paper);
  margin:0 0 20px;
  padding:0;
  border-bottom:0;
}
.foot-nav .foot-col ul{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:12px;
}
.foot-nav .foot-col li a{
  font-size:15px;font-weight:600;
  color:var(--paper);
  text-decoration:none;
  line-height:1.4;
}
.foot-nav .foot-col li a:hover{color:var(--jade)}
@media(min-width:768px){
  .foot{padding:72px 48px 40px}
  .foot-top{
    display:block;
    max-width:1180px;margin:0 auto 40px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,0.10);
  }
  .foot-lockup{display:inline-flex;margin-bottom:18px}
  .foot-tag{
    font-size:22px;font-weight:700;letter-spacing:-0.02em;
    line-height:1.3;max-width:520px;margin:0;
  }
  .foot-nav{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:48px;
    max-width:1180px;margin:0 auto 40px;
    padding:0 0 40px;
    border-bottom:1px solid rgba(255,255,255,0.10);
  }
  .foot-nav .foot-col{
    border-top:0;padding:0;
    border-bottom:0;
  }
  .foot-nav .foot-col:last-child{border-bottom:0}
  .foot-nav .foot-col h4{
    font-size:12px;font-weight:700;letter-spacing:0.04em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.55);
    margin:0 0 16px;padding:0;
    border-bottom:0;
  }
  .foot-nav .foot-col ul{margin-top:0}
  .foot-nav .foot-col li a{font-size:14px}
  .foot-bottom{
    max-width:1180px;margin:0 auto;padding-top:0;
  }
}
.foot-mascot{
  width:120px;height:120px;
  border-radius:18px;
  background:repeating-linear-gradient(45deg,rgba(255,255,255,0.06) 0 8px,rgba(255,255,255,0.02) 8px 16px);
  border:1px dashed rgba(255,255,255,0.18);
  color:rgba(255,255,255,0.5);
  font-size:8px;padding:10px;line-height:1.5;
  display:flex;align-items:center;justify-content:center;text-align:center;
  font-family:'JetBrains Mono',monospace;
  letter-spacing:0.08em;
}
.foot-contact{
  padding-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,0.10);
  margin-bottom:8px;
}
.foot-contact h4{
  font-size:15px;font-weight:800;
  color:var(--paper);
  margin-bottom:14px;
  letter-spacing:-0.01em;
}
.foot-contact p{
  font-size:15px;
  color:rgba(255,255,255,0.72);
  line-height:1.7;
}
.foot-contact a{color:rgba(255,255,255,0.92);text-decoration:none}
.foot-contact a:hover{color:var(--jade)}
.foot-cols{margin-bottom:8px}
.foot-col{
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.foot-col summary{
  list-style:none;cursor:pointer;
  padding:18px 0;
  display:flex;justify-content:space-between;align-items:center;
  font-size:15px;font-weight:800;
  color:var(--paper);
  letter-spacing:-0.01em;
}
.foot-col summary::-webkit-details-marker{display:none}
.foot-col summary::marker{display:none;content:""}
.foot-mark{
  display:grid;place-items:center;
  width:24px;height:24px;
  color:var(--paper);
  transition:transform 0.2s;
}
.foot-mark svg{width:18px;height:18px}
.foot-col[open] .foot-mark{transform:rotate(45deg)}
.foot-col ul{
  padding:0 0 18px;
  list-style:none;
  display:flex;flex-direction:column;gap:12px;
}
.foot-col li a{
  font-size:14px;
  color:rgba(255,255,255,0.72);
  line-height:1.5;
}
.foot-col li a:hover{color:var(--jade)}
.foot-bottom{
  padding-top:24px;
}
.foot-bottom p{
  font-size:13px;
  color:rgba(255,255,255,0.55);
  line-height:1.5;
}
.foot-legal{margin-bottom:8px}
.foot-legal-fine{font-size:11px;color:rgba(255,255,255,0.42);max-width:880px;line-height:1.55;margin-top:12px}
.foot-legal-links{margin-top:12px;font-size:12px}
.foot-legal-links a{color:rgba(255,255,255,0.72);text-decoration:underline;margin-right:14px}
@media(min-width:768px){
  .foot{padding:64px 32px 40px}
  .foot-top{
    display:block;
    padding-bottom:40px;margin-bottom:40px;
  }
  .foot-mascot{width:160px;height:160px}
  .foot-contact{
    padding-bottom:40px;margin-bottom:24px;
  }
  .foot-cols{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:48px;
    margin-bottom:40px;
  }
  .foot-col{
    border:0;
  }
  .foot-col summary{
    cursor:default;padding:0 0 16px;
  }
  .foot-col .foot-mark{display:none}
  .foot-col ul{padding:0}
  .foot-col[open] ul,.foot-col ul{display:flex !important}
  .foot-col details ul,.foot-col:not([open]) ul{display:flex}
}

/* ============ HELP (Nu help-card pattern: 2 photos + overlap card) ============ */
.help{
  position:relative;
  padding:0 22px 80px;
  background:var(--paper);
  max-width:720px;margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:auto;
  gap:8px;
}
.help-photo{
  aspect-ratio:4/5;
  border-radius:14px;
  overflow:hidden;
}
.help-photo img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.help-photo-left{grid-column:1;grid-row:1}
.help-photo-right{grid-column:2;grid-row:1}
.help-card{
  background:linear-gradient(180deg, var(--jade-light) 0%, var(--jade-mid) 100%);
  color:var(--paper);
  border-radius:24px;
  padding:28px 24px 26px;
  position:relative;
  grid-column:1 / -1;grid-row:2;
  margin-top:-40px;
  z-index:5;
  text-align:center;
}
.help-card h2{
  font-size:22px;
  font-weight:800;
  letter-spacing:-0.025em;
  line-height:1.15;
  color:var(--paper);
  margin-bottom:10px;
  text-align:center;
}
.help-card p{
  font-size:13px;
  color:rgba(255,255,255,0.92);
  line-height:1.45;
  margin-bottom:16px;
  text-align:center;
}
.help-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:var(--paper);
  color:var(--jade-deep);
  padding:12px 18px;
  border-radius:99px;
  font-weight:800;font-size:14px;
  letter-spacing:-0.005em;
  width:auto;margin:0 auto;
  transition:background 0.15s;
}
.help-btn:hover{background:var(--p50)}
.help-btn .wa-ic{width:20px;height:20px}
.help-btn .wa-ic path{fill:currentColor}
@media(min-width:768px){
  .help{padding:0 22px 120px}
  .help-photo{aspect-ratio:16/9}
  .help-card{padding:48px 44px 44px;margin-top:-140px}
  .help-card h2{font-size:40px;letter-spacing:-0.04em}
  .help-card p{font-size:17px}
  .help-btn{font-size:17px;width:auto;padding:18px 32px}
}

/* ============ TRUST / POR QUÉ CONFIAR (stat tiles) ============ */
.trust{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:1180px;margin:0 auto;
}
.trust-head{
  padding:0 4px 28px;
}
.trust-head h2{
  font-size:30px;
  font-weight:800;
  letter-spacing:-0.035em;
  line-height:1.15;
  color:var(--ink);
  text-align:center;
}
.trust-head h2 .green{color:var(--jade)}
.trust-grid{
  display:flex;flex-direction:column;
  gap:14px;
}
.trust-tile{
  background:var(--p50);
  border-radius:24px;
  padding:32px 28px;
  text-align:center;
}
.trust-num{
  font-size:42px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:1.0;
  color:var(--ink);
  margin-bottom:10px;
}
.trust-label{
  font-size:15px;
  color:var(--p700);
  line-height:1.4;
  max-width:280px;
  margin:0 auto;
}
@media(min-width:768px){
  .trust{padding:0 48px 120px}
  .trust-head h2{font-size:48px;letter-spacing:-0.045em}
  .trust-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
  }
  .trust-tile{padding:48px 32px}
  .trust-num{font-size:56px}
  .trust-label{font-size:16px}
}

/* ============ VERTICALES (Stori photo-card pattern) ============ */
.verticals{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:720px;margin:0 auto;
}
.verticals-head{padding:0 4px 28px}
.verticals-head h2{
  font-size:36px;font-weight:800;
  letter-spacing:-0.04em;line-height:1.12;
  color:var(--ink);text-align:left;
}
.verticals-head h2 .green{color:var(--jade)}
.verticals-list{
  display:flex;flex-direction:column;gap:12px;
}
.vertical-card{
  background:var(--p50);
  border-radius:18px;
  padding:28px 26px;
  display:flex;flex-direction:column;gap:10px;
}
.vertical-icon{
  width:88px;height:88px;
  background:transparent;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:6px;
}
.vertical-icon img{width:100%;height:100%;object-fit:contain;display:block}
.vertical-card h3{
  font-size:20px;font-weight:800;
  letter-spacing:-0.02em;line-height:1.2;
  color:var(--ink);margin:0;padding:0;
}
.vertical-card p{
  font-size:15px;color:var(--p700);
  line-height:1.5;margin:0;padding:0;
}
@media(min-width:768px){
  .verticals{padding:0 22px 120px;max-width:1080px}
  .verticals-head h2{font-size:48px;letter-spacing:-0.045em}
  .verticals-list{
    display:grid;grid-template-columns:1fr 1fr;gap:14px;
  }
  .vertical-card{padding:32px 28px}
  .vertical-card h3{font-size:22px}
  .vertical-card p{font-size:15px}
}

/* ============ STATEMENT (NU PATTERN) ============ */
.statement{
  background:var(--paper);
  padding:100px 22px 80px;
  text-align:center;
}
.statement h2{
  font-size:36px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:1.12;
  color:var(--ink);
  max-width:720px;
  margin:0 auto;
}
.statement h2 .green{color:var(--jade)}
@media(min-width:768px){
  .statement{padding:140px 22px 120px}
  .statement h2{font-size:54px;line-height:1.05;letter-spacing:-0.045em}
}

/* ============================================================
   DESKTOP OVERRIDES — Nu/Stori desktop patterns
   Breakpoint 768px to match topnav/footer breakpoint
   ============================================================ */
@media(min-width:768px){

  /* ----- HERO: 2-column desktop — text-left, product-right ----- */
  .hero{min-height:780px}
  .hero-nav{padding:24px 48px;max-width:1280px;margin:0 auto;width:100%}
  .hero-nav .menu{display:none}
  .hero-nav-links{
    display:flex;gap:32px;align-items:center;
    margin-left:auto;margin-right:32px;
  }
  .hero-nav-links a{
    font-size:15px;font-weight:600;color:var(--paper);
    letter-spacing:-0.01em;
  }
  .hero-nav-links a:hover{color:var(--ink);opacity:1}
  /* Two-column hero (Nu pattern): left = headline/sub/form, right = product */
  .hero{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows:auto auto;
    column-gap:24px;
    align-items:start;
    padding:160px max(48px, calc((100vw - 1180px)/2)) 140px;
    min-height:auto;
    overflow:visible;
    position:relative;
    z-index:1;
  }
  .hero-stage{
    grid-column:1;grid-row:1;
    padding:0;max-width:none;margin:0;width:auto;
    text-align:left;
    align-self:start;
  }
  .hero h1{
    font-size:80px;font-weight:800;letter-spacing:-0.05em;line-height:0.98;
    max-width:600px;margin:0;
  }
  .hero-sub{
    font-size:22px;font-weight:600;text-align:left;
    margin:32px 0 0;max-width:520px;
    color:rgba(255,255,255,0.95);
  }
  .hero-product{
    grid-column:2;grid-row:1 / span 2;
    position:relative;flex:none;
    margin:0;padding:0;
    align-self:end;justify-self:center;
    width:100%;display:flex;align-items:flex-end;justify-content:center;
    z-index:5;
  }
  /* Hero terminals — source PNG is now cropped tight to content,
     so the picture fills its grid column. translate adds the slight overflow. */
  .hero-product picture{
    display:block;width:175%;max-width:1050px;
    transform:translate(20px, 60px);
  }
  .hero-product img{
    width:100%;height:auto;display:block;
  }
  .hero-form{
    grid-column:1;grid-row:2;
    max-width:460px;margin:40px 0 0;
    padding:22px;border-radius:18px;
    align-self:start;
  }
  .hero-form .label{font-size:16px;font-weight:700;margin-bottom:14px}
  .hero-form input{font-size:14px;padding:14px 18px}

  /* ----- STATEMENT: reduce vertical padding ----- */
  .statement{padding:96px 22px 96px}
  .statement h2{font-size:44px}

  /* ----- MERCHANT PHOTO: cap to container width ----- */
  .merchant-photo{padding:0 48px 100px}
  .merchant-photo .ph{
    max-width:1180px;margin:0 auto;
    border-radius:24px;
    aspect-ratio:21/9;
  }

  /* ----- SUBTRACT: 3-column pill grid ----- */
  .subtract{max-width:1180px;padding:0 48px 100px}
  .subtract-wrap{padding:48px 44px 44px;border-radius:32px}
  .subtract-head{padding:0 0 28px;margin-bottom:0}
  .subtract-head h2{font-size:40px;letter-spacing:-0.04em}
  .subtract-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
  }
  .subtract-row{
    flex-direction:column;align-items:flex-start;
    text-align:left;padding:28px 26px 32px;
    min-height:auto;gap:14px;
  }
  .subtract-ic{margin-bottom:0;flex:0 0 40px;width:40px;height:40px}
  .subtract-ic svg{width:22px;height:22px}
  .subtract-label{font-size:18px;line-height:1.3}

  /* ----- INCLUDES: 4-up row instead of 2x2 ----- */
  .includes{max-width:1180px;padding:0 48px 100px;position:relative}
  .includes-head{margin-bottom:20px;display:flex;justify-content:space-between;align-items:flex-end;gap:24px}
  .includes-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    padding-bottom:0;
    scrollbar-width:none;
  }
  .includes-nav{display:none}
  .include-card{padding:36px 30px;gap:14px}
  .include-illo{width:140px;margin-bottom:24px}
  .include-card h3{font-size:22px}
  .include-card p{font-size:15px}

  /* ----- VERTICALES: 4-up tight illustrated cards (Nu pattern) ----- */
  .verticals{max-width:1180px;padding:0 48px 100px}
  .verticals-list{
    grid-template-columns:repeat(4,1fr);gap:16px;
  }
  .vertical-card{padding:36px 30px;gap:14px}
  .vertical-icon{width:104px;height:104px}
  .vertical-card h3{font-size:22px}
  .vertical-card p{font-size:15px}

  /* ----- TRANSPARENCIA: full-width card with 3-col price row ----- */
  .transparency{
    max-width:1180px;padding:0 48px 100px;
  }
  .transparency-card{
    max-width:none;margin:0;padding:56px 64px;border-radius:32px;
  }
  .transparency-card h2{font-size:56px;letter-spacing:-0.045em;margin-bottom:40px}
  .price-list{
    display:grid;grid-template-columns:repeat(3,1fr);gap:48px;margin-bottom:0;
    padding-top:8px;border-top:1px solid var(--p100);padding-top:36px;
  }
  .price-list li{gap:8px}
  .price-label{font-size:14px;text-transform:uppercase;letter-spacing:0.06em;color:var(--p700);font-weight:700}
  .price-value{font-size:48px;line-height:1.0;letter-spacing:-0.035em}

  /* ----- CTA: 3-column steps ----- */
  .cta-block{
    max-width:1180px;padding:0 48px 100px;
  }
  .cta-bento{
    display:grid;grid-template-columns:1fr 1fr;gap:18px;
    margin-bottom:20px;
  }
  .cta-photo{aspect-ratio:auto;height:auto;min-height:420px;border-radius:24px}
  .cta-stack{gap:18px}
  .cta-tease{padding:48px 40px;border-radius:24px;flex:1;display:flex;align-items:center}
  .cta-tease h3{font-size:36px;letter-spacing:-0.035em;line-height:1.1;margin:0}
  .cta-tease p{font-size:17px}
  .cta-tease p{font-size:16px}
  .cta-head{padding:56px 44px 64px;margin-bottom:0;flex:1}
  .cta-head h2{font-size:52px;letter-spacing:-0.045em;max-width:420px}
  .cta-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
  }
  .cta-step{
    flex-direction:row;align-items:flex-start;
    padding:28px;min-height:auto;gap:16px;
  }
  .cta-ic{margin-bottom:0;flex:0 0 32px;width:32px;height:32px}
  .cta-ic svg{width:16px;height:16px}
  .cta-step-body h3{font-size:20px;margin-bottom:4px}
  .cta-step-body p{font-size:15px}

  /* ----- FAQ: full content width, Nu hairline list pattern ----- */
  .faq{
    max-width:1180px;
    padding:0 48px 120px;
    display:block;
  }
  .faq-head{padding:0 0 56px}
  .faq-head h2{font-size:72px;font-weight:800;letter-spacing:-0.045em;line-height:1.0}
  .faq-wrap{width:100%}
  .faq-list{gap:0}
  .faq-item{
    background:transparent;
    border-radius:0;
    border-top:1px solid var(--p100);
  }
  .faq-item:last-child{border-bottom:1px solid var(--p100)}
  .faq-item summary{
    padding:32px 0;
    font-size:20px;
    font-weight:700;
  }
  .faq-ic{color:var(--ink)}
  .faq-body{padding:0 0 32px;max-width:920px}
  .faq-body p{font-size:17px;line-height:1.55}

  /* ----- HELP: 2 photos behind + card overlapping in front (Nu pattern) ----- */
  .help{
    position:relative;
    max-width:1180px;padding:48px 48px 120px;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
    gap:18px;
    align-items:stretch;
  }
  .help-photo-left,.help-photo-right{
    grid-row:1;
    aspect-ratio:4/5;min-height:0;
    border-radius:18px;
    width:auto;
  }
  .help-photo-left{grid-column:1}
  .help-photo-right{grid-column:2}
  .help-card{
    position:absolute;
    left:50%;top:auto;bottom:32px;transform:translateX(-50%);
    width:54%;max-width:560px;
    margin-top:0;padding:36px 40px 32px;
    z-index:5;border-radius:32px;
    display:block;text-align:center;
  }
  .help-card h2{font-size:36px;font-weight:800;letter-spacing:-0.035em;text-align:center}
  .help-card p{font-size:16px;margin:0 auto 28px;text-align:center;max-width:380px}
  .help-btn{margin:0 auto;font-size:16px;padding:16px 28px;width:auto;display:inline-flex}

  /* ----- FOOTER: align with 1180px page column (matches topnav + hero) ----- */
  .foot{padding:80px 48px 40px}
  .foot-top{
    max-width:1180px;margin:0 auto 40px;
    padding-bottom:40px;
  }
  .foot-cols{
    max-width:1180px;margin:0 auto 40px;
    display:grid;grid-template-columns:repeat(5,1fr);gap:28px;
  }
  .foot-col{border:0}
  .foot-col summary{
    padding:0 0 18px;cursor:default;pointer-events:none;
    font-size:16px;
  }
  .foot-col .foot-mark{display:none}
  .foot-col ul{display:flex !important;padding:0}
  .foot-col li a{font-size:15px}
  .foot-bottom{max-width:1180px;margin:0 auto}

  /* Force all <details> in footer to render expanded on desktop */
  .foot-col[open] ul,.foot-col:not([open]) ul{display:flex !important}
}

/* ============ SOPORTE (3 cards, matches Includes/Verticales chrome) ============ */
.soporte{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:720px;margin:0 auto;
}
.soporte-head{padding:0 4px 28px}
.soporte-head h2{
  font-size:36px;font-weight:800;
  letter-spacing:-0.04em;line-height:1.12;
  color:var(--ink);
  text-align:left;
}
.soporte-head h2 .green{color:var(--jade)}

.soporte-grid{
  display:flex;flex-direction:column;gap:12px;
}
.soporte-card{
  background:var(--p50);
  border-radius:18px;
  padding:18px 18px 26px;
  display:flex;flex-direction:column;
}
.soporte-photo{
  width:100%;
  aspect-ratio:5/4;
  border-radius:14px;
  background:var(--p100);
  overflow:hidden;
  margin-bottom:18px;
}
.soporte-photo img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.soporte-body{padding:0 6px}
.soporte-card h3{
  font-size:20px;font-weight:800;
  letter-spacing:-0.02em;line-height:1.2;
  color:var(--ink);
  margin:0 0 6px;
}
.soporte-card p{
  font-size:15px;color:var(--p700);
  line-height:1.5;margin:0;
}
@media(min-width:768px){
  .soporte{padding:0 22px 120px;max-width:1080px}
  .soporte-head{padding:0 4px 32px}
  .soporte-head h2{font-size:48px;letter-spacing:-0.045em}
  .soporte-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
  }
  .soporte-card{padding:24px 22px 30px}
  .soporte-photo{aspect-ratio:4/3;margin-bottom:22px;border-radius:14px}
  .soporte-card h3{font-size:22px}
  .soporte-card p{font-size:15px}
}
@media(min-width:900px){
  .soporte{max-width:1180px;padding:0 48px 100px}
  .soporte-grid{gap:16px}
  .soporte-card{padding:28px 26px 34px}
}

/* ============ PORTAL KUENTA (deep-dive: mockup + 3 sub-features) ============ */
.portal{
  background:var(--paper);
  padding:0 22px 80px;
  max-width:720px;margin:0 auto;
}
.portal-head{padding:0 4px 28px}
.portal-head h2{
  font-size:36px;font-weight:800;
  letter-spacing:-0.04em;line-height:1.12;
  color:var(--ink);text-align:left;margin:0 0 14px;
}
.portal-head h2 .green{color:var(--jade)}
.portal-lede{
  font-size:16px;color:var(--p700);
  line-height:1.5;max-width:520px;margin:0;
}

/* Mockup */
.portal-mockup{
  background:linear-gradient(180deg, var(--jade-light) 0%, var(--jade-mid) 100%);
  border-radius:28px;
  padding:36px 24px 0;
  margin:28px 0;
  display:flex;justify-content:center;align-items:flex-end;
  overflow:hidden;
}
.portal-phone{
  background:var(--ink);
  border-radius:36px 36px 0 0;
  padding:8px 8px 0;
  width:280px;
  box-shadow:0 30px 60px rgba(0,0,0,0.22);
}
.portal-phone-screen{
  background:var(--paper);
  border-radius:30px 30px 0 0;
  padding:18px 16px 22px;
  display:flex;flex-direction:column;gap:14px;
  font-family:'Plus Jakarta Sans',sans-serif;
}
.portal-screen-top{
  display:flex;align-items:center;justify-content:space-between;
}
.portal-screen-brand{
  font-size:16px;font-weight:800;letter-spacing:-0.025em;
  color:var(--jade-deep);
}
.portal-screen-date{
  font-size:10px;color:var(--p500);font-weight:600;
}
.portal-screen-hero{
  background:var(--p50);border-radius:14px;
  padding:14px 14px 12px;
  display:flex;flex-direction:column;gap:2px;
}
.portal-screen-label{
  font-size:10px;color:var(--p700);font-weight:600;
  letter-spacing:0.02em;text-transform:uppercase;
}
.portal-screen-amount{
  font-size:26px;font-weight:800;letter-spacing:-0.025em;
  color:var(--ink);line-height:1.05;margin-top:2px;
}
.portal-screen-delta{
  font-size:11px;font-weight:700;color:var(--jade-deep);
  margin-top:2px;
}
.portal-screen-chart{
  display:flex;align-items:flex-end;gap:6px;
  height:48px;padding:0 4px;
}
.portal-screen-chart .bar{
  flex:1;background:var(--jade);
  border-radius:3px 3px 0 0;
  opacity:0.85;
}
.portal-screen-chart .bar:nth-child(odd){background:var(--jade-deep);opacity:0.92}
.portal-screen-list{
  display:flex;flex-direction:column;gap:8px;
  padding-top:4px;
}
.portal-tx{
  display:flex;align-items:center;gap:10px;
  padding:8px 10px;background:var(--p50);
  border-radius:10px;
}
.portal-tx-dot{
  flex:0 0 8px;width:8px;height:8px;border-radius:50%;
  background:var(--jade);
}
.portal-tx-body{flex:1;display:flex;flex-direction:column;gap:1px;min-width:0}
.portal-tx-title{
  font-size:11px;font-weight:700;color:var(--ink);
  letter-spacing:-0.005em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.portal-tx-time{
  font-size:9px;color:var(--p500);font-weight:600;
}
.portal-tx-amount{
  font-size:12px;font-weight:800;color:var(--ink);
  letter-spacing:-0.01em;
}

/* Sub-features */
.portal-features{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:14px;
}
.portal-feature{
  background:var(--p50);
  border-radius:18px;
  padding:20px 22px;
  display:flex;align-items:flex-start;gap:14px;
}
.portal-feature-ic{
  flex:0 0 36px;width:36px;height:36px;
  border-radius:50%;background:var(--jade);color:var(--paper);
  display:grid;place-items:center;
}
.portal-feature-ic svg{width:18px;height:18px}
.portal-feature-body h4{
  font-size:17px;font-weight:800;letter-spacing:-0.02em;
  line-height:1.2;color:var(--ink);margin:0 0 4px;
}
.portal-feature-body p{
  font-size:14px;color:var(--p700);
  line-height:1.5;margin:0;
}
@media(min-width:768px){
  .portal{padding:0 22px 120px;max-width:1080px;
    display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:center;
  }
  .portal-head{grid-column:1;grid-row:1;padding:0 4px 0}
  .portal-head h2{font-size:44px;letter-spacing:-0.045em}
  .portal-lede{font-size:17px;max-width:none}
  .portal-mockup{grid-column:2;grid-row:1 / span 2;margin:0;padding:40px 24px 0;border-radius:28px;align-self:stretch;display:flex;align-items:flex-end;justify-content:center}
  .portal-phone{width:300px}
  .portal-features{grid-column:1;grid-row:2;flex-direction:column;gap:12px;margin-top:0}
  .portal-feature{flex:none;flex-direction:row;padding:20px 22px;gap:14px}
  .portal-feature-ic{margin-bottom:0;flex:0 0 40px;width:40px;height:40px}
  .portal-feature-ic svg{width:20px;height:20px}
  .portal-feature-body h4{font-size:18px}
  .portal-feature-body p{font-size:15px}
}
@media(min-width:900px){
  .portal{max-width:1180px;padding:0 48px 120px;gap:48px}
  .portal-head h2{font-size:52px}
  .portal-mockup{padding:48px 32px 0;border-radius:32px}
  .portal-phone{width:340px}
}
/* ============ STICKY TOP NAV (turns white on scroll) ============ */
.topnav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 22px;
  background:transparent;
  transition:background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.topnav .lockup{display:inline-flex;align-items:center}
.topnav .lockup img{height:30px;width:auto}
@media(min-width:768px){
  .topnav .lockup img{height:34px}
}
.topnav .lockup .logo-white{display:block}
.topnav .lockup .logo-black{display:none}
.topnav-links{display:none}
.topnav .menu{
  width:40px;height:40px;display:grid;place-items:center;
  background:transparent;border:0;cursor:pointer;color:var(--paper);
}
.topnav .menu svg{width:24px;height:24px}
.topnav .menu-close-ic{display:none}

/* Scrolled state — white background, dark logo + text */
.topnav.scrolled{
  background:rgba(255,255,255,0.96);
  backdrop-filter:saturate(180%) blur(10px);
  -webkit-backdrop-filter:saturate(180%) blur(10px);
  box-shadow:0 1px 0 var(--p100), 0 4px 16px rgba(0,0,0,0.04);
  padding:12px 22px;
}
.topnav.scrolled .lockup .logo-white{display:none}
.topnav.scrolled .lockup .logo-black{display:block}
.topnav.scrolled .menu{color:var(--ink)}
.topnav.scrolled .topnav-links a{color:var(--ink)}

/* Menu open state — keep close icon visible */
body.menu-open{overflow:hidden}
body.menu-open .topnav{background:var(--paper);box-shadow:none}
body.menu-open .topnav .lockup .logo-white{display:none}
body.menu-open .topnav .lockup .logo-black{display:block}
body.menu-open .topnav .menu{color:var(--ink)}
body.menu-open .topnav .menu-open-ic{display:none}
body.menu-open .topnav .menu-close-ic{display:block}

/* Mobile menu drawer */
.mobile-menu{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:var(--paper);
  z-index:99;
  padding:80px 22px 32px;
  transform:translateX(100%);
  transition:transform 0.3s ease;
  display:flex;align-items:flex-start;justify-content:center;
}
body.menu-open .mobile-menu{transform:translateX(0)}
.mobile-menu-links{
  display:flex;flex-direction:column;gap:8px;width:100%;max-width:480px;
  padding-top:24px;
}
.mobile-menu-links a{
  font-size:24px;font-weight:700;letter-spacing:-0.02em;
  color:var(--ink);text-decoration:none;
  padding:18px 4px;border-bottom:1px solid var(--p100);
}
.mobile-menu-links a:last-child{border-bottom:0}
.mobile-menu-cta{
  margin-top:24px;background:var(--jade);color:var(--paper) !important;
  border-radius:99px;text-align:center;padding:18px 24px !important;
  border-bottom:0 !important;
  font-size:18px !important;
}

/* Hide the old hero-nav since we replaced it */
.hero-nav{display:none}

/* Push hero content down so it isn't hidden under the fixed nav */
.hero{padding-top:72px}
.hero-stage{padding-top:20px}

@media(min-width:768px){
  /* Align topnav content with the 1180px page column (matches footer) */
  .topnav{padding:18px max(48px, calc((100vw - 1180px) / 2));max-width:none}
  .topnav-links{
    display:flex;align-items:center;gap:32px;
    margin-left:auto;margin-right:32px;
  }
  .topnav-links a{
    font-size:15px;font-weight:600;color:var(--paper);
    letter-spacing:-0.01em;text-decoration:none;
    transition:color 0.2s ease;
  }
  .topnav-links a:hover{opacity:0.8}
  .topnav .menu{display:none}
  .mobile-menu{display:none}
  body.menu-open .topnav .lockup .logo-white{display:block}
  body.menu-open .topnav .lockup .logo-black{display:none}
  body.menu-open{overflow:auto}
}
@media(min-width:768px){
  .topnav.scrolled{padding:12px max(48px, calc((100vw - 1180px) / 2))}
}
