:root{
  --navy:#0B1E2D;
  --navy-2:#112b3c;
  --bg:#F9FBFD;
  --orange:#FF5A00;
  --orange-2:#ff6f22;
  --text:#0b1220;
  --muted:#5b6b7c;
  --card:#ffffff;
  --shadow: 0 20px 45px rgba(11,30,45,.16);
  --ring: 0 0 0 4px rgba(255,90,0,.18);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-synthesis: none;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(255,90,0,.10), transparent 60%),
    radial-gradient(700px 420px at 90% 20%, rgba(56,189,248,.12), transparent 60%),
    radial-gradient(900px 520px at 50% 100%, rgba(37,99,235,.10), transparent 60%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding:0 20px}

.topbar{
  position:sticky;top:0;z-index:50;
  background: linear-gradient(90deg, rgba(11,30,45,.98), rgba(17,43,60,.98));
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex;align-items:center;gap:10px;color:#fff}
.brand img{height:34px;width:auto}
.brand .name{font-weight:800;letter-spacing:.2px}
.navlinks{display:flex;align-items:center;gap:18px;color:rgba(255,255,255,.86);font-weight:600}
.navlinks a{padding:8px 10px;border-radius:999px}
.navlinks a:hover{background:rgba(255,255,255,.08);color:#fff}
.navlinks .cta{background:var(--orange);color:#fff}
.navlinks .cta:hover{background:var(--orange-2)}
.menu-btn{display:none;background:transparent;border:1px solid rgba(255,255,255,.18);color:#fff;border-radius:12px;padding:10px 12px}

.mobile{display:none;padding:10px 0 18px}
.mobile a{display:block;color:#fff;padding:10px 12px;border-radius:12px}
.mobile a:hover{background:rgba(255,255,255,.08)}

/* Floating WhatsApp bubble */
.whatsapp-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  width:56px;
  height:56px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#22c55e;
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.35);
  transition: transform .08s ease, box-shadow .12s ease, filter .12s ease;
}
.whatsapp-fab:hover{filter:saturate(1.05); box-shadow: 0 24px 60px rgba(0,0,0,.28)}
.whatsapp-fab:active{transform: translateY(1px)}
.whatsapp-fab svg{width:26px;height:26px;fill:currentColor}

/* CTA strip (end of page) */
.cta-strip{
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11,30,45,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cta-strip .title{font-size:20px;font-weight:800;color:var(--navy);margin:0}
.cta-strip .desc{margin:6px 0 0;color:var(--muted);max-width:62ch}

/* Diagnostic widget */
.diag{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.diag .fields{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.diag label{font-size:12px;color:var(--muted);font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.diag select{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(11,30,45,.15);
  background:#fff;
  font-weight:700;
  color:var(--navy);
  outline:none;
}
.diag select:focus{box-shadow:var(--ring); border-color: rgba(255,90,0,.35)}
.diag .hint{font-size:13px;color:var(--muted);margin:0}

@media (max-width: 900px){
  .diag .fields{grid-template-columns:1fr}
}

.hero{
  padding:70px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:36px;
  align-items:center;
}
.kicker{
  display:inline-flex;gap:10px;align-items:center;
  background:rgba(255,90,0,.10);
  border:1px solid rgba(255,90,0,.25);
  padding:8px 12px;border-radius:999px;
  color:var(--navy);
  font-weight:700;
}
.kicker .dot{width:8px;height:8px;border-radius:999px;background:var(--orange)}
h1{
  margin:16px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.5px;
}
.lead{color:var(--muted);font-size:18px;line-height:1.6;margin:0 0 18px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .06s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--orange);color:#fff;box-shadow:0 14px 30px rgba(255,90,0,.25)}
.btn-primary:hover{background:var(--orange-2)}
.btn-secondary{background:#fff;color:var(--navy);border-color:rgba(11,30,45,.15);box-shadow:var(--shadow)}
.btn-secondary:hover{box-shadow:0 26px 60px rgba(11,30,45,.14)}
.btn-ghost{background:transparent;color:var(--navy);border-color:rgba(11,30,45,.18)}
.btn-ghost:hover{box-shadow:var(--ring)}

.hero-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(11,30,45,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
.stat{
  border-radius:16px;
  border:1px solid rgba(11,30,45,.10);
  padding:12px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
}
.stat .num{font-size:22px;font-weight:800;color:var(--navy)}
.stat .lbl{font-size:12px;color:var(--muted);font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.pill{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;font-weight:800;font-size:13px}
.pill.ok{background:#ecfdf5;color:#065f46;border:1px solid #a7f3d0}
.pill.warn{background:#fffbeb;color:#92400e;border:1px solid #fde68a}

.section{padding:28px 0}
.section h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.2px;
}
.section .sub{margin:0 0 18px;color:var(--muted);line-height:1.6}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background:rgba(255,255,255,.95);
  border:1px solid rgba(11,30,45,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card h3{margin:10px 0 6px;font-size:18px}
.card p{margin:0;color:var(--muted);line-height:1.55}
.icon{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,90,0,.10);
  border:1px solid rgba(255,90,0,.22);
}
.icon svg{width:22px;height:22px;fill:var(--orange)}

.banner{
  background: linear-gradient(135deg, rgba(11,30,45,.98), rgba(17,43,60,.95));
  color:#fff;
  border-radius: 22px;
  padding:22px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 70px rgba(11,30,45,.22);
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.banner strong{color:#fff}
.banner .muted{color:rgba(255,255,255,.78)}
.badge-price{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(255,90,0,.14);
  border:1px solid rgba(255,90,0,.35);
  padding:10px 14px;border-radius:999px;
  font-weight:800;
}

.video{
  border-radius: 20px;
  overflow:hidden;
  border:1px solid rgba(11,30,45,.10);
  box-shadow: var(--shadow);
  background:#000;
  aspect-ratio: 16/9;
}
.video iframe{width:100%;height:100%;border:0}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.price-card{
  position:relative;
}
.price-card .tag{
  position:absolute;top:14px;right:14px;
  background:rgba(255,90,0,.12);
  border:1px solid rgba(255,90,0,.35);
  color:var(--navy);
  padding:6px 10px;border-radius:999px;
  font-weight:800;font-size:12px;
}
.price{font-size:34px;font-weight:800;color:var(--navy);margin:10px 0 4px}
.price small{font-size:14px;color:var(--muted);font-weight:700}
.ul{margin:12px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.ul li{display:flex;gap:10px;align-items:flex-start;color:var(--muted);line-height:1.4}
.ul li .check{
  flex:0 0 auto;
  width:18px;height:18px;border-radius:6px;
  background:rgba(34,197,94,.18);
  border:1px solid rgba(34,197,94,.35);
}

.faq details{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(11,30,45,.10);
  border-radius:16px;
  padding:12px 14px;
  box-shadow: 0 16px 35px rgba(11,30,45,.10);
}
.faq summary{cursor:pointer;font-weight:800;color:var(--navy)}
.faq p{margin:10px 0 0;color:var(--muted);line-height:1.6}

.footer{
  padding:26px 0 44px;color:var(--muted)
}
.footer .cols{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:18px}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--navy)}
.footer .fine{margin-top:12px;font-size:12px;color:rgba(91,107,124,.85)}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr;gap:18px}
  .grid-3{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .navlinks{display:none}
  .menu-btn{display:inline-flex}
  .mobile{display:block}
  .footer .cols{grid-template-columns:1fr}
}


/* ================================
   Quantum 2026 — Accesible + Premium
   Scope: only pages with body.site
   ================================ */

/* Base tokens */
body.site{
  --q-navy:#06101c;
  --q-navy-2:#0B1E2D;
  --q-ink:#0b1220;
  --q-muted:#5b6b7c;
  --q-line:rgba(11,30,45,.12);
  --q-surface:rgba(255,255,255,.96);
  --q-surface-2:rgba(255,255,255,.90);
  --q-orange:#FF5A00;
  --q-orange-2:#ff6f22;
  --q-shadow:0 26px 70px rgba(7,19,34,.18);
  --q-radius:22px;

  background:
    radial-gradient(900px 520px at 12% 0%, rgba(255,90,0,.10), transparent 60%),
    radial-gradient(900px 520px at 88% 10%, rgba(56,189,248,.12), transparent 60%),
    radial-gradient(900px 520px at 50% 100%, rgba(37,99,235,.10), transparent 60%),
    #F8FAFC;
}

/* Typography */
body.site, body.site p, body.site .sub, body.site .lead, body.site li{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
body.site h1, body.site h2, body.site h3, body.site .title, body.site .name{
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:-0.6px;
}
body.site h1{letter-spacing:-1px}
body.site p, body.site li{font-weight:500}

/* More air (premium perception) */
body.site .container{max-width:1200px}
body.site .hero{padding:96px 0 56px}
body.site .section{padding:78px 0}

/* HERO: fintech depth */
body.site .hero{
  color:#fff;
  background:
    radial-gradient(900px 520px at 15% -10%, rgba(255,90,0,.22), transparent 60%),
    radial-gradient(900px 520px at 85% 0%, rgba(56,189,248,.18), transparent 60%),
    linear-gradient(135deg, var(--q-navy), var(--q-navy-2));
  border-bottom:1px solid rgba(255,255,255,.08);
}
body.site .kicker{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  color:rgba(255,255,255,.90);
}
body.site .kicker .dot{background:var(--q-orange)}
body.site .lead{color:rgba(255,255,255,.78);font-size:18px}
body.site .subtitle{color:rgba(255,255,255,.88);font-weight:600}

/* Buttons (hero variants) */
body.site .btn-primary{background:var(--q-orange)}
body.site .btn-primary:hover{background:var(--q-orange-2)}
body.site .hero .btn-secondary,
body.site .hero .btn-ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.16);
  box-shadow:none;
}
body.site .hero .btn-secondary:hover,
body.site .hero .btn-ghost:hover{background:rgba(255,255,255,.12)}

/* Glass card in hero */
body.site .hero-card{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  color:#fff;
  backdrop-filter: blur(10px);
}
body.site .hero-card .pill.ok{background:rgba(34,197,94,.16);border-color:rgba(34,197,94,.32);color:#d1fae5}
body.site .hero-card .pill.warn{background:rgba(245,158,11,.18);border-color:rgba(245,158,11,.32);color:#fff7ed}
body.site .hero-card .stat{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.12)}
body.site .hero-card .stat .num{color:#fff}
body.site .hero-card .stat .lbl{color:rgba(255,255,255,.72)}

/* Section backgrounds */
body.site .section-muted{
  background: linear-gradient(180deg, rgba(11,30,45,.04), rgba(11,30,45,0));
}
body.site .section-dark{
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(255,90,0,.14), transparent 62%),
    linear-gradient(135deg, var(--q-navy), var(--q-navy-2));
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
body.site .section-dark .sub{color:rgba(255,255,255,.78)}

/* Cards (premium) */
body.site .card{
  border-radius: var(--q-radius);
  box-shadow: var(--q-shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
body.site .card:hover{transform: translateY(-2px); box-shadow: 0 34px 92px rgba(7,19,34,.16)}
body.site .card h3{font-weight:800}
body.site .card p{font-weight:500}

body.site .section-dark .card{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}
body.site .section-dark .card h3{color:#fff}
body.site .section-dark .card p{color:rgba(255,255,255,.78)}

/* Replace orange svg icon style with neutral */
body.site .icon{background: rgba(255,255,255,.10);border: 1px solid rgba(255,255,255,.18)}
body.site .icon svg{fill: rgba(255,255,255,.92)}
body.site .section:not(.section-dark) .icon{background: rgba(11,30,45,.06);border-color: rgba(11,30,45,.12)}
body.site .section:not(.section-dark) .icon svg{fill: rgba(11,30,45,.86)}

/* Hand icons */
body.site .hand{width:60px;height:auto;display:block;filter: drop-shadow(0 14px 18px rgba(0,0,0,.16))}
body.site .slide-head{display:flex;flex-direction:column;gap:10px;margin-bottom:22px;max-width:78ch}
body.site .slide-head.center{align-items:center;text-align:center;margin-left:auto;margin-right:auto}

/* Feature grid 4 */
body.site .grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
@media (max-width: 980px){ body.site .grid-4{grid-template-columns:1fr 1fr} }
@media (max-width: 560px){ body.site .grid-4{grid-template-columns:1fr} }

/* Chips */
body.site .chip-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
body.site .chip{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;font-weight:800;border:1px solid rgba(255,255,255,.18);background: rgba(255,255,255,.08);color:#fff}
body.site .chip.light{background:#fff;border-color:rgba(11,30,45,.12);color:var(--q-navy);box-shadow: 0 18px 40px rgba(7,19,34,.10)}

/* CTA strip */
body.site .cta-strip{border-radius: 24px; padding:22px}
body.site .cta-strip .title{font-family: Manrope, Inter, system-ui; letter-spacing:-.6px}

/* Diagnostic inputs */
body.site .diag select{border-radius:16px}
body.site .diag select:focus{box-shadow: 0 0 0 4px rgba(255,90,0,.20); border-color: rgba(255,90,0,.35)}

/* Footer */
body.site .footer{padding:38px 0 56px}

/* Promo helpers (DIAN) */
.promo-label{display:inline-flex;align-items:center;gap:8px;font-weight:800;font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--q-orange);background:rgba(255,90,0,.10);border:1px solid rgba(255,90,0,.25);padding:8px 10px;border-radius:999px}
.strike{text-decoration:line-through;opacity:.55}
.promo-burst{margin-top:6px;font-weight:800;color:var(--q-navy)}

/* Accent words (used in hero/headlines) */
.emph{color: var(--q-orange); font-weight:800}
.emph2{
  background: linear-gradient(90deg, rgba(56,189,248,1), rgba(96,165,250,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight:800;
}

/* Rotating word (premium + memorable) */
.rotator{display:inline-block;position:relative;height:1.15em;overflow:hidden;vertical-align:bottom;min-width:10ch}
.rotator-inner{display:block;will-change:transform;animation:rotWords 6s ease-in-out infinite}
.rotator-inner span{display:block;height:1.15em;line-height:1.15}
@keyframes rotWords{
  0%,18%{transform:translateY(0)}
  33%,51%{transform:translateY(-1.15em)}
  66%,84%{transform:translateY(-2.30em)}
  100%{transform:translateY(0)}
}

/* Reveal on scroll */
.reveal{opacity:0;transform:translateY(12px);transition:opacity .55s ease, transform .55s ease}
.reveal.is-visible{opacity:1;transform:none}
.reveal.delay-1{transition-delay:.08s}
.reveal.delay-2{transition-delay:.16s}
.reveal.delay-3{transition-delay:.24s}

/* Micro animations (tasteful) */
body.site .kicker .dot{animation:pulseDot 1.8s ease-in-out infinite}
@keyframes pulseDot{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.35);opacity:.75}}

/* Primary CTA feels more premium */
body.site .btn-primary{background: linear-gradient(135deg, var(--q-orange), var(--q-orange-2));}
body.site .btn-primary{box-shadow: 0 18px 44px rgba(255,90,0,.26)}
body.site .btn-primary:hover{filter:saturate(1.02)}

@media (prefers-reduced-motion: reduce){
  .rotator-inner{animation:none}
  .reveal{opacity:1;transform:none}
  body.site .kicker .dot{animation:none}
}
