/* ============================================================================
   WhatsBoost — Landing pública (SaaS almc.es)
   CSS portado desde whatsboost.net (Smarty, templates/default) — Task 15.
   Fuentes portadas (bloques {literal}<style>...</style>{/literal} originales):
     1) templates/default/modules/header.block.tpl  → nav .wb-nav
     2) templates/default/modules/footer.block.tpl  → footer .wb-footer
     3) templates/default/pages/default.tpl (bloque 1) → hero/logos/steps/
        usecases/testimonials/mini-faq/final-cta .wb-*
     4) templates/default/pages/default.tpl (bloque 2) → promo banner .wb-promo-*
     5) templates/default/pages/default.tpl (inline pricing) → .pricing-card,
        .billing-toggle-*, .price-big… (adaptado: la maquetación de precios
        real vive en partials/pricing-cards.blade.php, alimentada por
        SaasPlan/SaasService en vez del array $data.packages del tema Zender)
   Paleta: verde WhatsApp #25D366 / #1fb855 sobre fondos oscuros #0a0a1a,
   #0F172A, #1E293B; ámbar de acento #FBBF24.
   El tema Zender (Bootstrap) NO se importa aquí: las clases .row/.col-*
   usadas en el tpl original se resuelven con el mini-grid flexbox de la
   sección 0 de este archivo.
   ========================================================================= */

/* ============================================================================
   0. MINI RESET + GRID (sustituye Bootstrap del tema Zender)
   ========================================================================= */
.wb-scope, .wb-scope *, .wb-scope *::before, .wb-scope *::after { box-sizing: border-box; }
.wb-scope {
  margin: 0;
  padding: 0;
  /* Tipografía base: en el sitio origen la aportaba el CSS global del tema
     Zender; aquí no se importa, así que sin esta regla el body caía a la
     serif del navegador. Los headings la sobreescriben con Outfit. */
  font-family: 'DM Sans', 'Manrope', system-ui, -apple-system, sans-serif;
  color: #E2E8F0;
  -webkit-font-smoothing: antialiased;
}
.wb-scope img { max-width: 100%; height: auto; display: block; }
.wb-scope a { text-decoration: none; }
.wb-scope ul { margin: 0; }

.wb-scope .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.wb-scope .row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.wb-scope .row > [class*="col"] { padding: 0 12px; width: 100%; }
.wb-scope .col-12 { width: 100%; }

.wb-scope .d-flex { display: flex; }
.wb-scope .align-items-center { align-items: center; }
.wb-scope .justify-content-center { justify-content: center; }
.wb-scope .justify-content-between { justify-content: space-between; }
.wb-scope .flex-wrap { flex-wrap: wrap; }
.wb-scope .text-center { text-align: center; }
.wb-scope .w-100 { width: 100%; }
.wb-scope .gap-1 { gap: 4px; }
.wb-scope .gap-2 { gap: 8px; }
.wb-scope .me-1 { margin-right: 4px; }

@media (min-width: 768px) {
    .wb-scope .col-md-4 { width: 33.3333%; }
    .wb-scope .col-md-6 { width: 50%; }
}
@media (min-width: 992px) {
    .wb-scope .col-lg-3 { width: 25%; }
    .wb-scope .col-lg-4 { width: 33.3333%; }
    .wb-scope .col-lg-5 { width: 41.6667%; }
    .wb-scope .col-lg-6 { width: 50%; }
    .wb-scope .col-lg-7 { width: 58.3333%; }
    .wb-scope .col-lg-8 { width: 66.6667%; }
}

/* ============================================================================
   1. NAVBAR — Refined Glass (header.block.tpl)
   ========================================================================= */
.wb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0 24px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.wb-nav--top {
  background: transparent;
  padding-top: 16px;
}
.wb-nav--top .wb-nav-inner {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.wb-nav--top .wb-nav-logo-dark { display: none; }
.wb-nav--top .wb-nav-logo-light { display: block; }
.wb-nav--top .wb-nav-link { color: rgba(255,255,255,.75); }
.wb-nav--top .wb-nav-link:hover { color: #fff; }
.wb-nav--top .wb-nav-btn-login { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }
.wb-nav--top .wb-nav-btn-login:hover { background: rgba(255,255,255,.1); color: #fff; }
.wb-nav--top .wb-nav-hamburger span { background: #fff; }

.wb-nav--scrolled {
  background: transparent;
  padding-top: 10px;
}
.wb-nav--scrolled .wb-nav-inner {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}
.wb-nav--scrolled .wb-nav-logo-dark { display: block; }
.wb-nav--scrolled .wb-nav-logo-light { display: none; }
.wb-nav--scrolled .wb-nav-link { color: #475569; }
.wb-nav--scrolled .wb-nav-link:hover { color: #0f172a; }
.wb-nav--scrolled .wb-nav-btn-login { color: #334155; border-color: rgba(0,0,0,.12); }
.wb-nav--scrolled .wb-nav-btn-login:hover { background: #f1f5f9; }
.wb-nav--scrolled .wb-nav-hamburger span { background: #1e293b; }

.wb-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 16px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.wb-nav-logo img { height: 42px; transition: height .3s; }
.wb-nav--scrolled .wb-nav-logo img { height: 38px; }

.wb-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wb-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: all .2s;
  white-space: nowrap;
}
.wb-nav-link:hover {
  background: rgba(0,0,0,.04);
}
.wb-nav--top .wb-nav-link:hover {
  background: rgba(255,255,255,.1);
}

.wb-nav-link.active {
  font-weight: 600;
}
.wb-nav--scrolled .wb-nav-link.active {
  color: #25D366;
}
.wb-nav--top .wb-nav-link.active {
  color: #25D366;
}

.wb-nav-link-badge {
  background: linear-gradient(135deg,#25D366,#FBBF24);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
  line-height: 1;
  letter-spacing: .5px;
  margin-left: 4px;
  vertical-align: top;
}

.wb-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wb-nav-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.wb-nav-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border: none;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(37,211,102,.25);
  white-space: nowrap;
}
.wb-nav-btn-cta:hover {
  background: #1fb855;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}

.wb-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
  border: none;
  background: none;
}
.wb-nav-hamburger:hover { background: rgba(0,0,0,.05); }
.wb-nav--top .wb-nav-hamburger:hover { background: rgba(255,255,255,.1); }
.wb-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: all .3s;
}
.wb-nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.wb-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.wb-nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.wb-nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1049;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
  animation: wbMenuIn .3s ease;
}
.wb-nav-mobile.open { display: flex; }
@keyframes wbMenuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.wb-nav-mobile .wb-nav-link {
  color: #1e293b;
  font-size: 1.1rem;
  padding: 14px 20px;
  border-radius: 12px;
}
.wb-nav-mobile .wb-nav-link:hover { background: #f1f5f9; }
.wb-nav-mobile .wb-mobile-ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.wb-nav-mobile .wb-nav-btn-cta {
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}
.wb-nav-mobile .wb-nav-btn-login {
  justify-content: center;
  padding: 12px;
  font-size: .95rem;
  color: #475569;
  border-color: #e2e8f0;
}

@media (max-width: 991px) {
  .wb-nav-links { display: none; }
  .wb-nav-hamburger { display: flex; }
  .wb-nav-actions .wb-nav-btn-login,
  .wb-nav-actions .wb-nav-btn-cta { display: none; }
}
@media (min-width: 992px) {
  .wb-nav-mobile { display: none !important; }
}

/* ============================================================================
   2. FOOTER — Refined Dark (footer.block.tpl)
   ========================================================================= */
.wb-footer {
    background: #0a0a1a;
    color: rgba(255,255,255,.6);
    font-family: 'DM Sans', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
}
.wb-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,211,102,.3), transparent);
}
.wb-footer a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s;
}
.wb-footer a:hover { color: #25D366; }

.wb-footer-top {
    padding: 64px 0 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.wb-footer-brand img { height: 40px; margin-bottom: 16px; }
.wb-footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 320px; margin-bottom: 20px; }
.wb-footer-social {
    display: flex;
    gap: 10px;
}
.wb-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .2s;
}
.wb-footer-social a:hover { background: #25D366; color: #fff; }

.wb-footer-col h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
}
.wb-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wb-footer-col li { margin-bottom: 10px; }
.wb-footer-col a {
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wb-footer-plugin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    font-size: .82rem;
    transition: all .2s;
    margin-bottom: 8px;
}
.wb-footer-plugin:hover { border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.05); color: #25D366; }
.wb-footer-plugin i { font-size: 1.2rem; }

.wb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}
.wb-footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.wb-footer-bottom a { color: rgba(255,255,255,.3); font-size: .78rem; }
.wb-footer-bottom a:hover { color: rgba(255,255,255,.6); }

.wb-footer-legal-entity {
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(255,255,255,.03);
    border-radius: 10px;
    font-size: .75rem;
    line-height: 1.6;
    color: rgba(255,255,255,.3);
}

@media (max-width: 991px) {
    .wb-footer-top { grid-template-columns: 1fr 1fr; }
    .wb-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
    .wb-footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
}

/* ============================================================================
   3. HERO — Living Terminal + LOGOS + PHONE MOCKUP + STEPS + USE CASES +
      TESTIMONIALS + MINI FAQ + FINAL CTA (default.tpl, bloque 1)
   ========================================================================= */

/* Hide old navbar del tema Zender — reemplazado por wb-nav */
.navbar.classic { display: none !important; }

.wb-hero {
    background: rgba(6,6,15,.7);
    padding: 120px 0 80px;
    overflow: hidden;
    position: relative;
    font-family: 'Outfit', system-ui, sans-serif;
}
.wb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(37,211,102,.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(99,102,241,.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 60% 80%, rgba(236,72,153,.08) 0%, transparent 60%);
    animation: wbMeshShift 8s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes wbMeshShift {
    0% { opacity: .6; transform: scale(1) rotate(0deg); }
    100% { opacity: 1; transform: scale(1.1) rotate(2deg); }
}
.wb-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .4;
}
.wb-hero .container { position: relative; z-index: 2; }
.wb-hero-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,211,102,.1);
    border: 1px solid rgba(37,211,102,.25);
    color: #25D366;
    font-size: .82rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: .3px;
    animation: wbReveal .6s ease both;
}
.wb-hero-pretitle::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    animation: wbPulse 2s infinite;
}
@keyframes wbPulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
    50% { opacity: .7; box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}
.wb-hero h1 {
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -.02em;
    animation: wbReveal .6s ease .15s both;
}
.wb-hero h1 .wb-h1-accent {
    background: linear-gradient(135deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wb-hero-subtitle {
    color: rgba(255,255,255,.55);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
    animation: wbReveal .6s ease .3s both;
}
.wb-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: wbReveal .6s ease .45s both;
}
.wb-btn-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    border: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.3), inset 0 1px 0 rgba(255,255,255,.15);
    position: relative;
    overflow: hidden;
}
.wb-btn-green::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.1) 0%, transparent 60%);
    pointer-events: none;
}
.wb-btn-green:hover {
    background: #1fb855;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,.4), inset 0 1px 0 rgba(255,255,255,.2);
}
.wb-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.7);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.12);
    transition: all .25s;
    backdrop-filter: blur(4px);
}
.wb-btn-outline:hover {
    border-color: rgba(255,255,255,.3);
    color: #fff;
    background: rgba(255,255,255,.08);
}
.wb-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: .82rem;
    font-family: 'DM Sans', sans-serif;
    color: rgba(255,255,255,.35);
    animation: wbReveal .6s ease .6s both;
}
.wb-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.wb-hero-trust i { color: rgba(37,211,102,.6); }

@keyframes wbReveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Phone mockup — glowing */
.wb-phone-wrap {
    position: relative;
    animation: wbReveal .8s ease .3s both;
}
.wb-phone-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(37,211,102,.2) 0%, transparent 70%);
    animation: wbGlow 3s ease-in-out infinite alternate;
    border-radius: 50%;
    pointer-events: none;
}
@keyframes wbGlow {
    0% { opacity: .4; transform: scale(.9); }
    100% { opacity: .8; transform: scale(1.1); }
}
.wb-phone {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
    border-radius: 32px;
    background: #0b141a;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        0 30px 80px rgba(0,0,0,.5),
        0 0 60px rgba(37,211,102,.08);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.wb-phone-header {
    background: linear-gradient(135deg, #128C7E, #075E54);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wb-phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}
.wb-phone-name { color: #fff; font-weight: 600; font-size: .88rem; }
.wb-phone-status { color: rgba(255,255,255,.5); font-size: .68rem; }
.wb-phone-chat {
    background: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M20 2L2 20M38 2L2 38M38 20L20 38' stroke='%23ffffff' stroke-width='.3' opacity='.03'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='%230b141a' width='400' height='400'/%3E%3Crect fill='url(%23p)' width='400' height='400'/%3E%3C/svg%3E");
    padding: 16px 12px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wb-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: .82rem;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.45;
    opacity: 0;
    animation: wbMsgIn .5s cubic-bezier(.4,0,.2,1) forwards;
}
.wb-msg-in {
    background: #1f2c34;
    color: #e9edef;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
.wb-msg-out {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.wb-msg-time {
    font-size: .62rem;
    color: rgba(255,255,255,.35);
    text-align: right;
    margin-top: 4px;
}
.wb-msg:nth-child(1) { animation-delay: .5s; }
.wb-msg:nth-child(2) { animation-delay: 2.2s; }
.wb-msg:nth-child(3) { animation-delay: 4.5s; }
.wb-msg:nth-child(4) { animation-delay: 6s; }
.wb-msg-out .wb-msg-check { color: #53bdeb; font-size: .6rem; margin-left: 4px; }

@keyframes wbMsgIn {
    from { opacity: 0; transform: translateY(10px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== LOGOS BAR ===== */
.wb-logos {
    background: #f8f9fa;
    padding: 40px 0;
}
.wb-logos-title {
    color: #6c757d;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.wb-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.wb-logos-row figure {
    margin: 0;
    opacity: .5;
    transition: opacity .3s;
    max-width: 120px;
}
.wb-logos-row figure:hover {
    opacity: 1;
}
.wb-logos-row figure img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter .3s;
}
.wb-logos-row figure:hover img {
    filter: grayscale(0%);
}

/* ===== HOW IT WORKS ===== */
.wb-steps {
    background: #fff;
    padding: 80px 0;
}
.wb-steps-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.wb-steps-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
}
.wb-steps-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
}
.wb-step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.wb-step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -10%;
    width: 20%;
    height: 2px;
    background: #e0e0e0;
}
.wb-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.wb-step-icon {
    font-size: 2rem;
    color: #4338ca;
    margin-bottom: 12px;
}
.wb-step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.wb-step-card p {
    font-size: .92rem;
    color: #6c757d;
    line-height: 1.5;
}

/* ===== USE CASES ===== */
.wb-usecases {
    background: #f8f9fa;
    padding: 80px 0;
}
.wb-usecase-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,.06);
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}
.wb-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.wb-usecase-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.wb-usecase-metric {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    font-weight: 700;
    font-size: .85rem;
    padding: 6px 14px;
    border-radius: 50px;
    margin-top: 16px;
}

/* ===== TESTIMONIALS ===== */
.wb-testimonials {
    background: linear-gradient(180deg, #eef2ff, #f8f9fa);
    padding: 80px 0;
}
.wb-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,.06);
    height: 100%;
}
.wb-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 14px;
    flex-shrink: 0;
}
.wb-testimonial-stars {
    color: #f59e0b;
    font-size: .9rem;
    margin-bottom: 12px;
}
.wb-testimonial-quote {
    color: #374151;
    font-size: .95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}
.wb-testimonial-name {
    font-weight: 700;
    font-size: .95rem;
    color: #1a1a2e;
}
.wb-testimonial-role {
    font-size: .82rem;
    color: #6c757d;
}

/* ===== MINI FAQ ===== */
.wb-mini-faq {
    max-width: 680px;
    margin: 48px auto 0;
}
.wb-mini-faq details {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}
.wb-mini-faq summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wb-mini-faq summary::-webkit-details-marker { display: none; }
.wb-mini-faq summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: #6c757d;
    transition: transform .2s;
}
.wb-mini-faq details[open] summary::after {
    transform: rotate(45deg);
}
.wb-mini-faq .wb-faq-answer {
    padding: 0 20px 16px;
    font-size: .9rem;
    color: #6c757d;
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.wb-final-cta {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    padding: 80px 0;
}
.wb-final-cta h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.wb-final-sub {
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .wb-hero h1 { font-size: 2.4rem; }
    .wb-phone-wrap { margin-top: 40px; }
    .wb-phone { max-width: 280px; }
    .wb-step-card:not(:last-child)::after { display: none; }
    .wb-steps-grid { flex-direction: column; align-items: center; gap: 32px; }
    .wb-step-card { max-width: 100%; }
}
@media (max-width: 575px) {
    .wb-hero { padding: 120px 0 50px; }
    .wb-hero .container { padding-left: 24px; padding-right: 24px; }
    .wb-hero h1 { font-size: 2rem; margin-bottom: 20px; }
    .wb-hero-pretitle { margin-bottom: 20px; font-size: .78rem; }
    .wb-hero-subtitle { font-size: .95rem; margin-bottom: 28px; line-height: 1.7; }
    .wb-hero-ctas { flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .wb-btn-green { width: 100%; justify-content: center; padding: 16px 24px; font-size: 1rem; }
    .wb-btn-outline { width: 100%; justify-content: center; padding: 14px 24px; }
    .wb-hero-trust { gap: 14px; font-size: .78rem; }
    .wb-phone-glow { display: none; }
    .wb-phone-wrap { margin-top: 36px; }
    .wb-phone { max-width: 260px; }
    .wb-phone-chat { min-height: 280px; }
    .wb-final-cta h2 { font-size: 1.5rem; }
}

/* ============================================================================
   4. PROMO BANNER — WhatsBoost Printer (default.tpl, bloque 2)
   ========================================================================= */
.wb-promo-printer {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}
.wb-promo-printer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37,211,102,.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(251,191,36,.10) 0%, transparent 60%);
    animation: wbPromoMesh 10s ease-in-out infinite alternate;
}
@keyframes wbPromoMesh {
    0%   { transform: scale(1) rotate(0deg); opacity: .8; }
    100% { transform: scale(1.2) rotate(2deg); opacity: 1; }
}
.wb-promo-printer .container {
    position: relative;
    z-index: 1;
}
.wb-promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .wb-promo-grid { grid-template-columns: 1fr; gap: 40px; }
}
.wb-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37,211,102,.15), rgba(251,191,36,.15));
    border: 1px solid rgba(37,211,102,.4);
    color: #25D366;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.wb-promo-badge::before {
    content: '\2728';
    font-size: 14px;
}
.wb-promo-printer h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.wb-promo-printer h2 .wb-promo-grad {
    background: linear-gradient(135deg, #25D366 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.wb-promo-printer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,.75);
    margin: 0 0 28px;
}
.wb-promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
@media (max-width: 600px) {
    .wb-promo-features { grid-template-columns: 1fr; }
}
.wb-promo-features li {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wb-promo-features li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #25D366;
    color: #0F172A;
    border-radius: 50%;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}
.wb-promo-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.wb-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.wb-promo-btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.wb-promo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37,211,102,.55);
    color: #fff;
    text-decoration: none;
}
.wb-promo-btn-ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
}
.wb-promo-btn-ghost:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
    text-decoration: none;
}
.wb-promo-visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wb-promo-printer-icon {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 100px;
    background: linear-gradient(180deg, #475569, #1E293B);
    border-radius: 12px 12px 4px 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
.wb-promo-printer-icon::after {
    content: '';
    position: absolute;
    top: 28px; left: 14px; right: 14px;
    height: 4px;
    background: #0F172A;
    border-radius: 2px;
}
.wb-promo-paper {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    background: #FFFEF7;
    padding: 12px 10px;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    color: #1F2937;
    line-height: 1.4;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    animation: wbPromoPaper 3s ease-in-out infinite;
}
@keyframes wbPromoPaper {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, -4px); }
}
.wb-promo-paper b { font-weight: 700; }
.wb-promo-arrow {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    color: #25D366;
    font-size: 28px;
    animation: wbPromoArrow 2s ease-in-out infinite;
}
@keyframes wbPromoArrow {
    0%, 100% { transform: translate(-50%, 0); opacity: .6; }
    50%      { transform: translate(-50%, 6px); opacity: 1; }
}
.wb-promo-whatsapp {
    position: absolute;
    top: 270px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(37,211,102,.5);
    animation: wbPromoPulse 2s ease-in-out infinite;
}
@keyframes wbPromoPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%      { transform: translateX(-50%) scale(1.06); }
}

/* ============================================================================
   4.5 AI ROUTER — default.tpl (bloque "existing, verbatim", `wrapper bg-dark
   text-white` + utilidades Bootstrap + estilos inline). Task 15 no la portó
   (solo tenía las clases .wb-hero/.wb-phone*/.wb-logos*/.wb-promo-*/
   .wb-steps*/.wb-usecases*/.wb-testimonials*/.wb-mini-faq/.wb-final-cta).
   Se reutiliza el mini-grid .row/.col-md-4/.col-lg-6 ya definido arriba
   (sección 0) en vez de reintroducir utilidades Bootstrap (py-14, mb-12,
   gx-lg-8…) que el proyecto no importa.
   ========================================================================= */
.wb-ai-router {
    background: #0a0a1a;
    padding: 80px 0;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.wb-ai-router-head {
    max-width: 720px;
    margin: 0 auto 56px;
}
.wb-ai-router-pretitle {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #818cf8;
    margin-bottom: 12px;
}
.wb-ai-router-head h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 16px;
}
.wb-ai-router-lead {
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}
.wb-ai-router-steps { margin-bottom: 56px; }
.wb-ai-router-steps .col-md-4 { text-align: center; margin-bottom: 24px; }
.wb-ai-router-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
}
.wb-ai-router-steps h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.wb-ai-router-steps p {
    color: rgba(255,255,255,.5);
    font-size: .92rem;
    line-height: 1.5;
    margin: 0;
}
.wb-ai-router-panels .col-lg-6 { margin-bottom: 24px; }
.wb-ai-router-panel {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}
.wb-ai-router-panel h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wb-ai-router-demo {
    font-family: 'Courier New', monospace;
    font-size: .8rem;
    line-height: 1.9;
    color: rgba(255,255,255,.7);
}
.wb-ai-router-demo > div { margin-bottom: 8px; }
.wb-ai-router-demo .wb-demo-who { color: #94a3b8; }
.wb-ai-router-demo .wb-demo-router { color: #818cf8; }
.wb-ai-router-demo .wb-demo-msg { color: #e2e8f0; }
.wb-ai-router-demo .wb-demo-intent { color: #c4b5fd; }
.wb-ai-router-demo .wb-demo-intent.is-question { color: #6ee7b7; }
.wb-ai-router-demo .wb-demo-intent.is-handoff { color: #fca5a5; }
.wb-ai-router-demo .wb-demo-ms { color: #4ade80; }
.wb-ai-router-feats {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,.7);
}
.wb-ai-router-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: .92rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.wb-ai-router-feats li:last-child { border-bottom: none; }
.wb-ai-router-feats i { color: #4ade80; margin-top: 3px; }

@media (max-width: 767px) {
    .wb-ai-router { padding: 60px 0; }
    .wb-ai-router-head h2 { font-size: 1.5rem; }
}

/* ============================================================================
   5. PRICING CARDS — adaptado de default.tpl (bloque inline #pricing)
   Usado por partials/pricing-cards.blade.php, alimentado por SaasPlan/
   SaasService (no por $data.packages del tema Zender).
   ========================================================================= */
.wb-pricing { padding: 80px 0; background: #f8f9fa; }
.wb-pricing-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.wb-pricing-header h2 { font-size: 2rem; font-weight: 800; margin: 0 0 12px; color: #1a1a2e; }
.wb-pricing-header p { color: #6c757d; font-size: 1.05rem; margin: 0; }

.billing-toggle-wrap {
    background: #e9ecef;
    border-radius: 50px;
    padding: 4px;
    display: inline-flex;
    position: relative;
    margin: 0 auto 40px;
}
.billing-toggle-btn {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 10px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #6c757d;
    cursor: pointer;
    border-radius: 50px;
    transition: color .3s ease;
    white-space: nowrap;
}
.billing-toggle-btn.active { color: #fff; }
.billing-toggle-slider {
    position: absolute;
    top: 4px; left: 4px;
    height: calc(100% - 8px);
    width: 50%;
    background: #25D366;
    border-radius: 50px;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(37,211,102,.35);
}
.billing-toggle-slider.annual { transform: translateX(calc(100% - 8px)); }
.billing-discount-badge {
    display: inline-block;
    background: #fff;
    color: #1b5e20;
    font-size: .75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 4px;
    vertical-align: middle;
}

.wb-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
}
.pricing-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px;
    border: 1px solid rgba(0,0,0,.06);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
    border-color: rgba(37,211,102,.25);
}
.pricing-card.recommended {
    border: 2px solid rgba(37,211,102,.45);
    background: linear-gradient(180deg, rgba(37,211,102,.06), #fff);
    box-shadow: 0 12px 40px rgba(37,211,102,.15);
}
.pricing-card.recommended:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(37,211,102,.2);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    white-space: nowrap;
}
.pricing-card h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 4px; color: #1a1a2e; }
.pricing-card .plan-tagline { color: #6c757d; font-size: .85rem; margin: 0 0 18px; }
.price-big { font-size: 2.5rem; line-height: 1; letter-spacing: -0.02em; font-weight: 800; color: #1a1a2e; }
.price-big.free { color: #25D366; }
.price-sub { font-size: .95rem; color: #6c757d; margin-top: 4px; }
.pricing-card .plan-features { list-style: none; padding: 0; margin: 20px 0; flex: 1; }
.pricing-card .plan-features li { font-size: .85rem; padding: 5px 0 5px 24px; position: relative; color: #374151; }
.pricing-card .plan-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: 700;
}
.cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    background: #eafbf1;
    color: #1fb855;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.cta-btn:hover { background: #25D366; color: #fff; }
.pricing-card.recommended .cta-btn { background: #25D366; color: #fff; }
.pricing-card.recommended .cta-btn:hover { background: #1fb855; }

@media (max-width: 575px) {
    .wb-pricing-grid { flex-direction: column; align-items: stretch; }
    .pricing-card { max-width: 100%; }
}

/* ============================================================================
   6. FUNCTIONS PAGE — (pages/functions.tpl, prefijo .fn-*) — Task 17
   Secciones ancladas: #mensajeria #chatbot #voz #reservas #contactos
   #desarrolladores #analitica #seguridad #addons.
   ========================================================================= */
.fn-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    padding: 160px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.fn-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding-bottom: 64px; }
.fn-hero-h1 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 20px 0 20px;
}
.fn-hero-lead { font-size: 1.2rem; color: rgba(255,255,255,.85); margin: 0 0 32px; }
.fn-hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 28px; }
.fn-hero-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.fn-trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px; padding: 8px 18px; color: #fff; font-size: .9rem;
}
.btn-whatsapp, .btn-outline-light-custom, .fn-btn-white, .fn-btn-primary, .fn-btn-outline-primary {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; padding: 14px 32px; font-size: 1rem;
    border-radius: 50px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
}
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
.btn-outline-light-custom { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-light-custom:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.fn-btn-white { background: #fff; color: #0d6efd; }
.fn-btn-white:hover { transform: translateY(-2px); color: #0d6efd; }
.fn-btn-primary { background: #0d6efd; color: #fff; }
.fn-btn-primary:hover { background: #0b5ed7; color: #fff; }
.fn-btn-outline-primary { border: 2px solid #0d6efd; color: #0d6efd; background: transparent; }
.fn-btn-outline-primary:hover { background: #0d6efd; color: #fff; }
.fn-btn-lg { padding: 16px 40px; font-size: 1.1rem; }

.fn-wave-divider { line-height: 0; overflow: hidden; }
.fn-wave-divider svg { display: block; width: 100%; }

.fn-pain-banner {
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    color: #fff; text-align: center; padding: 16px 20px; font-size: 1.05rem; font-weight: 600;
}

.fn-section-white { background: #fff; padding: 72px 0; }
.fn-section-light { background: #f8f9fa; padding: 72px 0; }
.fn-dark-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff; padding: 72px 0;
}
.fn-dark-section .fn-section-label { color: #25d366; }
.fn-dark-section .fn-section-title { color: #fff; }
.fn-dark-section p, .fn-dark-section .fn-p { color: rgba(255,255,255,.8); }
.fn-gradient-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 40%, #084298 100%);
    color: #fff; padding: 72px 0;
}
.fn-gradient-section .fn-section-label { color: rgba(255,255,255,.7); }
.fn-gradient-section .fn-section-title { color: #fff; }
.fn-gradient-section .fn-p { color: rgba(255,255,255,.9); }
.fn-gradient-section .fn-check-list li { color: rgba(255,255,255,.9); }
.fn-gradient-section .fn-check-list li::before { color: #fff; }

.fn-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.fn-stat-number { font-size: 2.6rem; font-weight: 800; color: #25d366; line-height: 1; margin-bottom: 6px; font-family: 'Outfit', system-ui, sans-serif; }
.fn-stat-label { font-size: .9rem; color: #6c757d; font-weight: 500; }
@media (max-width: 767px) { .fn-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; } }

.fn-split { display: flex; flex-wrap: wrap; gap: 48px; align-items: center; }
.fn-split > div { flex: 1 1 420px; min-width: 300px; }
.fn-split-reverse { flex-direction: row-reverse; }
@media (max-width: 900px) { .fn-split-reverse { flex-direction: column; } }

.fn-section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
    color: #0d6efd; margin-bottom: 12px;
}
.fn-section-label--center { display: flex; justify-content: center; }
.fn-section-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 2.1rem; font-weight: 800; color: #1a1a2e; line-height: 1.25; letter-spacing: -0.02em; margin: 0 0 16px;
}
.fn-p { font-size: 1.03rem; color: #4a4a5a; line-height: 1.8; margin: 0 0 16px; }
.fn-dark-section .fn-p, .fn-gradient-section .fn-p { color: rgba(255,255,255,.85); }

.fn-check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.fn-check-list li { position: relative; padding: 8px 0 8px 32px; font-size: 1rem; line-height: 1.6; }
.fn-check-list li::before {
    content: '\f058'; font-family: 'Line Awesome Free'; font-weight: 900;
    position: absolute; left: 0; top: 10px; color: #25d366; font-size: 1.15rem;
}
.fn-dark-section .fn-check-list li { color: rgba(255,255,255,.9); }

.fn-section-head { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.fn-section-lead { font-size: 1.05rem; color: #4a4a5a; }
.fn-dark-section .fn-section-lead { color: rgba(255,255,255,.8); }

.fn-illustration-box {
    background: linear-gradient(135deg, rgba(13,110,253,.05) 0%, rgba(37,211,102,.05) 100%);
    border-radius: 20px; padding: 48px 32px; display: flex; align-items: center; justify-content: center; min-height: 280px;
}
.fn-illustration-box--tint { background: linear-gradient(135deg, rgba(13,110,253,.08) 0%, rgba(37,211,102,.08) 100%); }
.fn-illustration-icon { font-size: 5rem; color: rgba(37,211,102,.3); }
.fn-illustration-chips, .fn-contacts-groups { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 16px; }
.fn-chip { min-width: 130px; padding: 16px !important; }
.fn-chip-label { margin-top: 6px; font-weight: 700; font-size: .85rem; }
.fn-chip-tag { font-weight: 800; font-size: 1.3rem; }
.fn-illustration-caption { color: #6c757d; font-size: .9rem; margin-top: 12px; }

.fn-waveform { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 60px; margin-top: 12px; }
.fn-waveform-bar { width: 6px; background: #25d366; border-radius: 3px; height: 20%; animation: fn-bar 1.2s ease-in-out infinite; }
@keyframes fn-bar { 0%, 100% { height: 20%; } 50% { height: 85%; } }

.fn-feature-card {
    background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 16px; padding: 28px 24px; height: 100%;
    transition: transform .25s ease, box-shadow .25s ease; text-decoration: none; color: inherit; display: block;
}
.fn-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); color: inherit; }
.fn-feature-card h5 { font-weight: 700; color: #1a1a2e; margin: 0 0 10px; }
.fn-feature-card p { color: #6c757d; font-size: .92rem; line-height: 1.6; margin: 0; }
.fn-feature-card--highlight { border: 2px solid #0d6efd; }
.fn-feature-icon {
    width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; margin-bottom: 16px; flex-shrink: 0;
}
.fn-feature-icon--center { margin-left: auto; margin-right: auto; }
.fn-small { font-size: .9rem; color: #6c757d; }
.fn-plan-price { font-weight: 800; color: #25d366; font-size: 1.4rem; margin-top: 8px; }
.fn-plan-sub { font-size: .85rem; color: #6c757d; margin-top: 4px; }
.fn-badge-primary { display: inline-block; background: #0d6efd; color: #fff; font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-top: 8px; }

.fn-metrics-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fn-metric-box {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
    padding: 24px 18px; text-align: center;
}
.fn-section-white .fn-metric-box, .fn-section-light .fn-metric-box {
    background: #f0f4ff; border-color: #c7d2fe;
}
.fn-metric-value { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 6px; color: #fff; }
.fn-section-white .fn-metric-value, .fn-section-light .fn-metric-value { color: #0d47a1; }
.fn-metric-desc { font-size: .82rem; color: rgba(255,255,255,.7); }
.fn-section-white .fn-metric-desc, .fn-section-light .fn-metric-desc { color: #4a4a5a; }
@keyframes fn-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.fn-pulse { animation: fn-pulse 2s infinite; display: inline-block; }
.fn-authority { color: rgba(255,255,255,.5); font-size: .85rem; text-align: center; margin-top: 16px; }

.fn-analytics-box { padding: 18px !important; }
.fn-analytics-label { font-size: .82rem; color: #6c757d; margin-bottom: 4px; }
.fn-analytics-value { font-weight: 800; font-size: 1.6rem; }

.fn-urgency-banner { background: linear-gradient(90deg, #25d366 0%, #1da851 100%); padding: 40px 0; }
.fn-urgency-title { color: #fff; font-weight: 800; font-size: 1.5rem; margin: 0 0 12px; font-family: 'Outfit', system-ui, sans-serif; }
.fn-urgency-subtitle { color: rgba(255,255,255,.9); margin: 0 0 20px; }

.fn-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fn-cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .fn-cards-3, .fn-cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .fn-cards-3, .fn-cards-4 { grid-template-columns: 1fr; } }

.fn-security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 32px; }
@media (max-width: 767px) { .fn-security-grid { grid-template-columns: 1fr; } }
.fn-security-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; }
.fn-security-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; }
.fn-security-item h5 { color: #fff; margin: 0 0 4px; font-size: 1.05rem; }
.fn-security-item p { margin: 0; font-size: .92rem; color: rgba(255,255,255,.8); }

.fn-addon-card { background: #fff; border: 2px solid #e9ecef; border-radius: 16px; padding: 26px 20px; text-align: center; transition: all .25s ease; }
.fn-addon-card:hover { border-color: #0d6efd; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,110,253,.1); }
.fn-addon-icon { width: 60px; height: 60px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem; color: #fff; margin-bottom: 14px; }
.fn-addon-card h5 { font-weight: 700; margin: 0 0 6px; }
.fn-addon-card p { color: #6c757d; font-size: .85rem; margin: 0; }

.fn-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 991px) { .fn-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .fn-features-grid { grid-template-columns: 1fr; } }
.fn-grid-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px !important; }
.fn-grid-item-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 10px; font-size: 1.1rem; margin-bottom: 0; }
.fn-grid-item-title { font-weight: 700; color: #1a1a2e; margin: 0 0 4px; font-size: .95rem; }
.fn-grid-item-desc { margin: 0; font-size: .85rem; color: #6c757d; }

.fn-loss-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); padding: 64px 0; }
.fn-loss-title { color: #fff; font-weight: 800; font-size: 1.9rem; line-height: 1.3; margin: 0 0 16px; font-family: 'Outfit', system-ui, sans-serif; }
.fn-loss-desc { color: rgba(255,255,255,.7); font-size: 1.03rem; line-height: 1.8; }

.fn-cta-section { background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); padding: 88px 0; }
.fn-cta-title { color: #fff; font-weight: 800; font-size: 2.2rem; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 20px; font-family: 'Outfit', system-ui, sans-serif; }
.fn-cta-subtitle { color: rgba(255,255,255,.8); font-size: 1.1rem; line-height: 1.7; max-width: 700px; margin: 0 auto 32px; }
.fn-cta-ctas { margin-bottom: 24px; }
.fn-cta-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.fn-cta-trust-row span { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ============================================================================
   7. PRICING PAGE — hero + incluido + FAQ (pages/pricing.tpl, prefijo .pr-*)
   Task 17. La grid de planes reusa .wb-pricing/.pricing-card (sección 5).
   ========================================================================= */
.pr-hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%); padding: 160px 0 0; }
.pr-hero-h1 { color: #fff; font-family: 'Outfit', system-ui, sans-serif; font-weight: 800; font-size: 2.6rem; margin: 0 0 16px; }
.pr-hero-lead { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 620px; margin: 0 auto 28px; }
.pr-hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding-bottom: 56px; }
.pr-badge { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: #0d6efd; font-weight: 700; font-size: .85rem; padding: 8px 18px; border-radius: 50px; }

.pr-included { background: #f8f9fa; padding: 72px 0; }
.pr-included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
@media (max-width: 991px) { .pr-included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .pr-included-grid { grid-template-columns: 1fr; } }
.pr-included-item { display: flex; align-items: flex-start; gap: 16px; }
.pr-included-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; background: #e7f1ff; color: #0d6efd; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.pr-included-icon--green { background: #e6f9ee; color: #25d366; }
.pr-included-item h5 { font-weight: 700; margin: 0 0 4px; font-size: 1rem; color: #1a1a2e; }
.pr-included-item p { color: #6c757d; font-size: .88rem; margin: 0; }

.pr-faq-section { background: #fff; padding: 72px 0; }
.pr-faq-list { max-width: 800px; margin: 0 auto; }
.pr-faq-item { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 12px; margin-bottom: 12px; padding: 4px 20px; }
.pr-faq-item summary { padding: 16px 0; font-weight: 700; cursor: pointer; list-style: none; font-family: 'Outfit', system-ui, sans-serif; }
.pr-faq-item summary::-webkit-details-marker { display: none; }
.pr-faq-answer { padding: 0 0 18px; color: #4a4a5a; line-height: 1.7; font-size: .95rem; }

.pr-cta-final { background: linear-gradient(135deg, #0d6efd 0%, #084298 100%); padding: 72px 0; color: #fff; }
.pr-cta-final h2 { font-family: 'Outfit', system-ui, sans-serif; font-weight: 800; font-size: 2rem; margin: 0 0 12px; }
.pr-cta-final p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 620px; margin: 0 auto 28px; }
.pr-cta-btn { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 50px; font-weight: 700; text-decoration: none; }
.pr-cta-btn--white { background: #fff; color: #0d6efd; }
.pr-cta-btn--white:hover { color: #0d6efd; transform: translateY(-2px); }
.pr-cta-btn--outline { border: 2px solid rgba(255,255,255,.6); color: #fff; }
.pr-cta-btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ============================================================================
   8. REVIEWS PAGE — WhatsBoost Printer (pages/reviews.tpl, prefijo .wbr-*)
   Task 17. Hero claro (pastel) — el nav comparte el override de contraste ya
   necesario en cualquier página sin hero oscuro (ver partials/nav.blade.php,
   que fuerza el estado "scrolled" desde el primer frame cuando no hay .wb-hero).
   ========================================================================= */
.wbr-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wbr-hero {
    padding: 160px 0 80px;
    background: linear-gradient(160deg, #D1FAE5 0%, #ECFDF5 25%, #FEF9C3 70%, #FDE68A 100%);
    color: #0F172A; text-align: center;
}
.wbr-hero .wbr-container, .wbr-hero > .container { max-width: 900px; }
.wbr-hero-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(37,211,102,.15);
    border: 1px solid rgba(37,211,102,.4); color: #15803D; font-weight: 600; font-size: 13px;
    padding: 8px 18px; border-radius: 999px; margin-bottom: 24px;
}
.wbr-hero-h1 { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; margin: 0 0 8px; line-height: 1.15; }
.wbr-hero-title2 { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(20px, 3vw, 30px); font-weight: 700; margin: 0 0 20px; color: #334155; }
.wbr-grad {
    background: linear-gradient(135deg, #25D366 0%, #34D399 50%, #FBBF24 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.wbr-lead { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.55; color: #475569; margin: 0 auto 32px; max-width: 640px; }
.wbr-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.wbr-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 12px;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.wbr-btn-primary { background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%); color: #fff; box-shadow: 0 10px 30px rgba(37,211,102,.35); }
.wbr-btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 36px rgba(37,211,102,.5); }
.wbr-btn-ghost { background: rgba(255,255,255,.85); color: #0F172A; border: 1px solid rgba(15,23,42,.12); }
.wbr-btn-ghost:hover { background: #fff; color: #0F172A; }

.wbr-notice-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }
.wbr-notice { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; background: rgba(255,255,255,.7); border: 1px solid rgba(15,23,42,.08); border-radius: 12px; font-size: 13px; color: #334155; }
.wbr-notice-windows { color: #1E40AF; }

.wbr-smartscreen {
    margin: 18px auto 0; max-width: 640px; text-align: left; background: rgba(254,252,232,.8);
    border: 1px solid rgba(245,158,11,.3); border-radius: 12px; font-size: 13.5px; color: #78350F;
}
.wbr-smartscreen summary { padding: 14px 18px; cursor: pointer; list-style: none; display: flex; align-items: center; gap: 10px; font-weight: 600; }
.wbr-smartscreen summary::-webkit-details-marker { display: none; }
.wbr-smartscreen-body { padding: 0 18px 16px; }
.wbr-smartscreen-body p { margin: 0 0 10px; }
.wbr-smartscreen-steps { margin: 10px 0 0; padding-left: 22px; }
.wbr-smartscreen-steps li { margin-bottom: 4px; }

.wbr-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 32px; color: #64748B; font-size: 14px; }
.wbr-trust span { display: inline-flex; align-items: center; gap: 6px; }

.wbr-demo { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
@media (max-width: 900px) { .wbr-demo { grid-template-columns: 1fr; } }
.wbr-demo-card { background: rgba(255,255,255,.85); border: 1px solid rgba(15,23,42,.08); border-radius: 16px; padding: 22px; box-shadow: 0 8px 24px rgba(15,23,42,.06); }
.wbr-demo-card h4 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; margin: 0 0 12px; color: #0F172A; }
.wbr-ticket { font-family: 'Courier New', monospace; font-size: 11px; color: #1F2937; background: #FFFEF7; padding: 14px; border-radius: 6px; line-height: 1.5; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.wbr-ticket-line { border-top: 1px dashed #94A3B8; margin: 6px 0; }
.wbr-phone { background: #1F2937; border-radius: 24px; padding: 10px; max-width: 220px; margin: 0 auto; }
.wbr-phone-screen { background: #ECE5DD; border-radius: 16px; padding: 14px 10px; min-height: 200px; }
.wbr-phone-header { display: flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 9px 10px; border-radius: 8px 8px 0 0; font-size: 12px; font-weight: 600; margin: -14px -10px 10px; }
.wbr-phone-avatar { width: 22px; height: 22px; border-radius: 50%; background: #fff; color: #25D366; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }
.wbr-phone-bubble { background: #fff; padding: 9px; border-radius: 10px; font-size: 11px; color: #1F2937; margin-bottom: 8px; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.wbr-review-card { background: #fff; border-radius: 12px; padding: 16px; color: #1F2937; }
.wbr-stars { text-align: center; font-size: 26px; letter-spacing: 3px; color: #FBBF24; }
.wbr-review-quote { text-align: center; margin-top: 8px; font-size: 13px; color: #475569; }
.wbr-review-source { text-align: center; margin-top: 8px; font-size: 11px; color: #94A3B8; }

.wbr-section { padding: 88px 0; }
.wbr-section-light { background: #F8FAFC; }
.wbr-eyebrow { display: block; color: #25D366; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.wbr-section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.wbr-section-head h2 { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin: 0 0 16px; color: #0F172A; }
.wbr-section-lead { font-size: 17px; color: #475569; line-height: 1.6; }

.wbr-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .wbr-grid-3 { grid-template-columns: 1fr; } }
.wbr-card { background: #fff; border: 1px solid #E2E8F0; border-radius: 18px; padding: 28px; transition: transform .25s, box-shadow .25s; }
.wbr-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(15,23,42,.08); }
.wbr-card-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #25D366, #20BA5A); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.wbr-card h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.wbr-card p { color: #475569; line-height: 1.6; margin: 0; }

.wbr-how { display: flex; flex-direction: column; gap: 48px; }
.wbr-how-row { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.wbr-how-row.reverse { flex-direction: row-reverse; }
@media (max-width: 900px) { .wbr-how-row.reverse { flex-direction: column; } .wbr-how-row { flex-direction: column; } }
.wbr-how-row > * { flex: 1 1 380px; min-width: 260px; }
.wbr-how-num { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: #25D366; background: rgba(37,211,102,.1); padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.wbr-how h3 { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 700; margin: 0 0 12px; }
.wbr-how p { font-size: 16px; color: #475569; line-height: 1.6; margin: 0; }
.wbr-how-visual { background: linear-gradient(135deg, #F0FDF4 0%, #FEFCE8 100%); border-radius: 20px; padding: 32px; min-height: 180px; display: flex; align-items: center; justify-content: center; }

.wbr-stats { background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%); color: #fff; padding: 64px 0; }
.wbr-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 767px) { .wbr-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.wbr-stat-num { font-family: 'Outfit', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 900; display: block; line-height: 1; }
.wbr-stat-label { font-size: 13px; opacity: .9; margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

.wbr-faq { max-width: 760px; margin: 0 auto; }
.wbr-faq-item { background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; margin-bottom: 12px; padding: 4px 22px; }
.wbr-faq-item summary { padding: 18px 0; font-weight: 600; font-family: 'Outfit', sans-serif; font-size: 16px; cursor: pointer; list-style: none; }
.wbr-faq-item summary::-webkit-details-marker { display: none; }
.wbr-faq-body { padding: 0 0 18px; color: #475569; line-height: 1.6; font-size: .95rem; }

.wbr-cta-final { background: radial-gradient(ellipse at center, #0F172A 0%, #020617 70%); color: #fff; padding: 88px 0; text-align: center; }
.wbr-cta-final h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 0 0 16px; color: #fff; }
.wbr-cta-final p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 620px; margin: 0 auto 32px; }
