:root{
  --c1:#00acc1;
  --c2:#2b5965;
  --accent:#ff8a00;
  --ink:#0b1b1a;
  --muted:#5b6b6a;
  --bg:#ffffff;
  --soft:#f6fbfc;
  --soft2:#eef7f9;
  --border:#d9e6ea;
  --radius:18px;
  --shadow:0 14px 34px rgba(0,0,0,.08);
}

body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
}

/* Links */
a{ color: inherit; }
a:hover{ color: inherit; }
.lead {
    font-size: 1rem;
    font-weight: 300;
}

/* =========================
   Navbar
   ========================= */
.brand-logo{height:44px;width:auto}
.nav-blur{
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.78);
  border-bottom:1px solid var(--border);
}

/* =========================
   Helpers
   ========================= */
.muted{ color: var(--muted); }
.rounded-xl{ border-radius: var(--radius); }
.section{ padding: 64px 0; }
.section-soft{
  background: var(--soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* =========================
   Buttons
   ========================= */
.btn-primary{ background:var(--c1); border-color:var(--c1); }
.btn-primary:hover{ background:var(--c2); border-color:var(--c2); filter:brightness(.95); }

.btn-outline-primary{
  color:var(--c2);
  border-color: rgba(43,89,101,.35);
}
.btn-outline-primary:hover{
  background: rgba(0,172,193,.10);
  color: var(--c2);
}

.btn-accent{ background:var(--accent); border-color:var(--accent); color:#111; }
.btn-accent:hover{ filter:brightness(.95); }

/* =========================
   Hero
   ========================= */
.hero{
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(0,172,193,.18), transparent 60%),
    radial-gradient(700px 320px at 90% 10%, rgba(43,89,101,.16), transparent 55%),
    linear-gradient(180deg,var(--soft),#fff);
  border-bottom:1px solid var(--border);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .75rem;
  border-radius:999px;
  background:rgba(0,172,193,.10);
  border:1px solid rgba(0,172,193,.20);
  color:var(--c2);
  font-weight:600;
  font-size:.9rem;
}

/* Panel derecho del hero */
.hero-panel{
  background:
    radial-gradient(520px 260px at 80% 0%, rgba(0,172,193,.14), transparent 60%),
    radial-gradient(480px 240px at 0% 60%, rgba(43,89,101,.10), transparent 60%),
    #fff;
}

/* Mini badges */
.mini-badge{
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(246,251,252,.65);
}
.mini-badge .tiny{ font-size: 12px; line-height: 1.2; }
.mini-badge i{ font-size: 1.1rem; margin-top: 2px; }

/* =========================
   Cards
   ========================= */
.card-lite{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.product-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
  transition: transform .15s ease, box-shadow .15s ease;
  height: 100%;
}
.product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

.icon-badge{
  width:44px;height:44px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,172,193,.12);
  border:1px solid rgba(0,172,193,.20);
  color:var(--c2);
  font-size:1.25rem;
}
.bi-check2-circle{
  color: var(--c1);
}

.kpi{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  height: 100%;
}

.trust{
  border: 1px solid rgba(255,138,0,.25);
  background: rgba(255,138,0,.06);
  border-radius: var(--radius);
  padding: 18px;
}
.trust .check{ color: var(--c1); margin-right:.5rem; }

/* =========================
   Accordion
   ========================= */
.accordion-button:not(.collapsed){
  background: rgba(0,172,193,.08);
  color: var(--c2);
}
.accordion{ --bs-accordion-border-color: var(--border); }

/* =========================
   Sticky CTA mobile
   ========================= */
.sticky-cta{
  position:fixed;
  bottom:0; left:0; right:0;
  background:#fff;
  border-top:1px solid var(--border);
  padding:10px;
  z-index:999;
}
@media (min-width:992px){
  .sticky-cta{ display:none; }
  body{ padding-bottom: 0; }
}
@media (max-width:991.98px){
  body{ padding-bottom: 62px; }
}

/* =========================
   Trust logos footer
   ========================= */
.trust-strip{
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 16px 0;
  margin: 18px 0;
}
.trust-logos{
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  align-items:center;
  justify-content:flex-start;
}
.trust-logos img{
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: .15s ease;
}
.trust-logos img:hover{
  filter: none;
  opacity: 1;
}
@media (max-width: 576px){
  .trust-logos{ justify-content:center; }
  .trust-logos img{ height: 30px; }
}

/* =========================
   Footer
   ========================= */
footer{
  background:#0f2328;
  color:rgba(255,255,255,.85);
}
footer a{ color:rgba(255,255,255,.85); text-decoration:none; }
footer a:hover{ color:#fff; }

/* =========================
   Cómo funciona - títulos
   ========================= */
.how-title{
  display:flex;
  align-items:flex-end;
  gap:12px;
}
.how-title .bar{
  height: 10px;
  width: 64px;
  border-radius: 999px;
  background: rgba(0,172,193,.25);
  margin-bottom: 10px;
}

/* ===========================================================
   Cómo funciona - v1/v2 (step-card) -> lo dejo porque lo usaste
   =========================================================== */
.step-card{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}
.step-card::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(420px 180px at 20% 0%, rgba(0,172,193,.16), transparent 55%),
    radial-gradient(420px 180px at 100% 60%, rgba(43,89,101,.10), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.step-card:hover{
  transform: translateY(-3px);
  border-color: rgba(0,172,193,.35);
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
}
.step-head{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.step-badge{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,172,193,.12);
  border: 1px solid rgba(0,172,193,.20);
  color: var(--c2);
  font-weight: 800;
}
.step-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,138,0,.12);
  border: 1px solid rgba(255,138,0,.22);
  color: var(--accent);
  font-size: 1.15rem;
}
.step-body{ position: relative; }
.step-body h3{
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.step-body p{
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

/* ===========================================================
   Cómo funciona - v3 (lista + panel) -> ESTA es la que usás ahora
   =========================================================== */
.how-grid{ align-items: stretch; }

/* Igualar altura en desktop */
@media (min-width: 992px){
  .how-grid{
    align-items: stretch;
  }
  .how-grid > [class*="col-"]{
    display: flex;
  }
  .how-grid > [class*="col-"] > *{
    width: 100%;
  }
}


.steps-list{
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  padding: 18px;
}

.step-row{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 14px 10px;
  border-top: 1px solid var(--border);
}
.step-row:first-child{ border-top: none; }

.step-num{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,172,193,.10);
  border: 1px solid rgba(0,172,193,.22);
  color: var(--c2);
  font-weight: 800;
  position: relative;
}
.step-row:not(:last-child) .step-num::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 16px);
  background: rgba(0,172,193,.18);
  border-radius: 99px;
}

.step-text h3{
  font-size: 1.02rem;
  margin: 0 0 4px;
  color: var(--ink);
}
.step-text p{
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.important-card{
  border: 1px solid rgba(255,138,0,.22);
  background: rgba(255,138,0,.06);
  border-radius: 26px;
  padding: 18px;
  height: 100%;
}
.important-card .title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  color: var(--c2);
  margin-bottom: 10px;
}
.important-card .title .dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
}
.important-card ul{
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.important-card li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 0;
  border-top: 1px solid rgba(255,138,0,.18);
  color: var(--muted);
}
.important-card li:first-child{ border-top: none; padding-top: 0; }
.important-card li i{
  color: var(--c1);
  font-size: 1.1rem;
  margin-top: 2px;
}

@media (min-width: 992px){
  .important-sticky{ position: sticky; top: 92px; }
}

/* ===========================================================
   Important box (v2) -> lo dejo por compatibilidad (home vieja)
   =========================================================== */
.important-box{
  border: 1px solid rgba(255,138,0,.25);
  background: rgba(255,138,0,.06);
  border-radius: 22px;
  padding: 18px;
}
.important-box .title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  color: var(--c2);
  margin-bottom: 10px;
}
.important-list{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
@media (max-width: 768px){
  .important-list{ grid-template-columns: 1fr; }
}
.important-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--muted);
}
.important-item i{
  color: var(--c1);
  font-size: 1.1rem;
  margin-top: 2px;
}

/* ===========================================================
   Conector punteado (solo para el layout steps-wrap viejo)
   =========================================================== */
@media (min-width: 992px){
  .steps-wrap{ position: relative; }
  .steps-wrap::after{
    content:"";
    position:absolute;
    left: 6%;
    right: 6%;
    top: 52px;
    border-top: 2px dashed rgba(0,172,193,.35);
    z-index: 0;
    pointer-events: none;
  }
  .steps-wrap .col-lg-3{
    position: relative;
    z-index: 1;
  }
}

