/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #f3f3f1;
    color: #111218;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}



/* ═══════════════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════════════ */
.hero-system-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 38px;
    width: auto;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 72px;
    z-index: 9999;
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease;
    /* fuerza que no herede nada del padre */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 1px 0 rgba(17, 18, 24, .08);
}

.site-header-inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav a {
    color: rgba(17, 18, 24, .72);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(17, 18, 24, .06);
    border: 1px solid rgba(17, 18, 24, .08);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(17,18,24,.06);
    border: 1px solid rgba(17,18,24,.08);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
  }
  
  .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #111218;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
  }
  
  .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  .mobile-menu {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1);
  }

  .mobile-menu-logo {
    position: absolute;
    top: 24px;
    left: 20px;
    opacity: 0;
    transition: opacity .3s ease .1s;
  }
  
  .mobile-menu-logo .brand-logo {
    height: 28px;
    width: auto;
  }

  .mobile-menu.is-open .mobile-menu-logo { opacity: 1; }
  
  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  
  .mobile-menu a {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #111218;
    text-decoration: none;
    padding: 12px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, color .15s ease;
  }
  
  .mobile-menu.is-open a:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .08s; }
.mobile-menu.is-open a:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .13s; }
.mobile-menu.is-open a:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .18s; }
.mobile-menu.is-open a:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .23s; }
.mobile-menu.is-open a:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: .28s; }
  
  .mobile-menu a:hover { color: #7d57ff; }
  
  .mobile-menu-close {
    position: absolute;
    top: 24px; right: 20px;
    width: 36px; height: 36px;
    background: rgba(17,18,24,.06);
    border: 1px solid rgba(17,18,24,.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer; color: #111218;
    font-family: inherit;
    opacity: 0;
    transition: opacity .3s ease .1s;
  }
  
  .mobile-menu.is-open .mobile-menu-close { opacity: 1; }
  
  .mobile-menu-cta {
    margin-top: 20px;
    padding: 16px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7d57ff, #5d74ff);
    color: white !important;
    font-size: 16px !important;
    box-shadow: 0 14px 32px rgba(96,95,255,.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    text-align: center;
    overflow: visible;
  }


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero-system {
    position: relative;
    overflow: visible;
    z-index: 1;
    background:
        radial-gradient(ellipse 90% 55% at 50% -5%, rgba(150, 110, 255, 0.32) 0%, rgba(150, 110, 255, 0.10) 38%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 15% 60%, rgba(100, 140, 255, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 85% 50%, rgba(130, 90, 255, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, #e8e2f8 0%, #ede9f6 22%, #f3f3f1 55%, #f3f3f1 100%);
    padding: 92px 0 80px;
    /* top = 72px header + 20px */
}

.hero-system-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.75;
}

.hero-glow-left {
    width: 420px;
    height: 420px;
    left: -120px;
    top: 120px;
    background: radial-gradient(circle, rgba(140, 102, 255, 0.16) 0%, rgba(140, 102, 255, 0) 72%);
}

.hero-glow-right {
    width: 500px;
    height: 500px;
    right: -140px;
    top: 60px;
    background: radial-gradient(circle, rgba(88, 132, 255, 0.18) 0%, rgba(88, 132, 255, 0) 72%);
}

.hero-glow-bottom {
    width: 980px;
    height: 360px;
    left: 50%;
    bottom: -180px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(145, 120, 235, 0.16) 0%, rgba(145, 120, 235, 0.08) 38%, rgba(145, 120, 235, 0) 74%);
    filter: blur(95px);
    opacity: 0.95;
}

.hero-system-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 74px;
    margin-bottom: 42px;
}

.hero-system-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111218;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, #7d57ff 0%, #2d4dff 100%);
    box-shadow: 0 10px 20px rgba(45, 77, 255, 0.18);
}

.brand-mark-sm {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-system-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.hero-system-nav a {
    color: rgba(17, 18, 24, 0.72);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color .18s ease;
}

.hero-system-nav a:hover {
    color: #111218;
}

.hero-system-nav-btn {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(17, 18, 24, 0.08);
    box-shadow: 0 10px 30px rgba(17, 18, 24, 0.05);
    color: #111218;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: transform .18s ease;
}

.hero-system-nav-btn:hover {
    transform: translateY(-2px);
}


.hero-system-head {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.hero-system-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(17, 18, 24, 0.08);
    box-shadow: 0 10px 30px rgba(17, 18, 24, 0.045);
    color: #111218;
    font-size: 14px;
    font-weight: 700;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #7d57ff;
    box-shadow: 0 0 0 6px rgba(125, 87, 255, 0.12);
}

.hero-system-title {
    margin: 26px 0 0;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.96;
    letter-spacing: -0.065em;
    color: #111218;
    font-weight: 800;
}

.hero-system-description {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 21px;
    line-height: 1.55;
    color: rgba(17, 18, 24, 0.66);
    letter-spacing: -0.02em;
}

.hero-system-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-main-cta,
.hero-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease;
}

.hero-main-cta {
    background: linear-gradient(135deg, #7d57ff 0%, #5d74ff 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(96, 95, 255, 0.24);
}

.hero-secondary-cta {
    background: rgba(255, 255, 255, 0.58);
    color: #111218;
    border: 1px solid rgba(17, 18, 24, 0.08);
    box-shadow: 0 10px 30px rgba(17, 18, 24, 0.05);
}

.hero-main-cta:hover,
.hero-secondary-cta:hover {
    transform: translateY(-2px);
}

.hero-modules-wrap {
    margin-top: 64px;
}

.hero-modules-frame {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

.hero-module {
    position: relative;
    border-radius: 28px;
    padding: 24px;
    min-height: 420px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(247, 247, 245, 0.95) 100%);
    border: 1px solid rgba(17, 18, 24, 0.08);
    box-shadow: 0 24px 50px rgba(17, 18, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.hero-module::before {
    content: "";
    position: absolute;
    inset: -1px -1px auto -1px;
    height: 120px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.hero-module:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 87, 255, 0.18);
    box-shadow: 0 34px 70px rgba(85, 72, 150, 0.12), 0 10px 24px rgba(17, 18, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-module.is-featured {
    background: linear-gradient(180deg, rgba(239, 235, 252, 0.9) 0%, rgba(247, 247, 245, 0.96) 100%);
    border-color: rgba(125, 87, 255, 0.16);
    transform: translateY(-10px);
    box-shadow: 0 36px 80px rgba(99, 82, 178, 0.14), 0 12px 24px rgba(17, 18, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-module.is-featured:hover {
    transform: translateY(-16px) scale(1.01);
}

.hero-module-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.module-kicker,
.module-state {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.module-kicker {
    background: rgba(17, 18, 24, 0.06);
    color: rgba(17, 18, 24, 0.74);
}

.module-state {
    background: rgba(255, 255, 255, 0.66);
    color: rgba(17, 18, 24, 0.56);
    border: 1px solid rgba(17, 18, 24, 0.06);
}

.hero-module h3 {
    margin: 0;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #111218;
}

.hero-module p {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(17, 18, 24, 0.64);
    max-width: 320px;
}

.module-visual {
    margin-top: 26px;
}

/* Filter */
.module-filter-visual {
    display: grid;
    gap: 14px;
}

.filter-chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17, 18, 24, 0.06);
    color: rgba(17, 18, 24, 0.64);
    font-size: 12px;
    font-weight: 700;
    transition: background .22s ease, color .22s ease;
}

.hero-module:hover .chip.active {
    background: linear-gradient(135deg, #e8f1dc 0%, #dde6c8 100%);
    color: #111218;
}

.filter-card {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8f8f6 0%, #efefea 100%);
    border: 1px solid rgba(17, 18, 24, 0.05);
}

.filter-line {
    height: 10px;
    border-radius: 999px;
    background: rgba(17, 18, 24, 0.08);
    margin-bottom: 12px;
}

.filter-line.lg {
    width: 84%;
}

.filter-line.md {
    width: 58%;
}

.filter-badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.filter-badges span {
    width: 64px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dfe5fb 0%, #ded4ea 100%);
}

.filter-score {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8f8f8 0%, #f1f0f4 100%);
    border: 1px solid rgba(17, 18, 24, 0.05);
}

.score-ring {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: conic-gradient(#7d57ff 0 72%, rgba(17, 18, 24, 0.08) 72% 100%);
    display: grid;
    place-items: center;
    transition: transform .28s ease;
}

.hero-module:hover .score-ring {
    transform: rotate(20deg) scale(1.04);
}

.score-inner {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #f7f7f4;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 800;
    color: #111218;
}

.score-copy span {
    display: block;
    font-size: 12px;
    color: rgba(17, 18, 24, 0.5);
    margin-bottom: 4px;
}

.score-copy strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    color: #111218;
}

/* Respond */
.module-respond-visual {
    display: grid;
    gap: 14px;
}

.chat-ui {
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, #faf9fd 0%, #f2eff8 100%);
    border: 1px solid rgba(17, 18, 24, 0.05);
}

.chat-ui-head {
    width: 38%;
    height: 10px;
    border-radius: 999px;
    background: rgba(17, 18, 24, 0.08);
    margin-bottom: 14px;
}

.chat-row {
    height: 42px;
    border-radius: 16px;
    margin-bottom: 10px;
    transition: transform .24s ease;
}

.chat-row.left {
    width: 60%;
    background: rgba(17, 18, 24, 0.08);
}

.chat-row.right {
    width: 46%;
    margin-left: auto;
    background: linear-gradient(135deg, #7d57ff 0%, #5d74ff 100%);
}

.chat-row.left.wide {
    width: 72%;
}

.chat-row.right.sm {
    width: 34%;
}

.hero-module:hover .chat-row.right {
    transform: translateX(-4px);
}

.hero-module:hover .chat-row.left {
    transform: translateX(4px);
}

.reply-card {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 244, 249, 0.98) 100%);
    border: 1px solid rgba(17, 18, 24, 0.05);
}

.reply-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e2dcfb 0%, #dfe5fb 100%);
    color: #111218;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.reply-line {
    height: 10px;
    border-radius: 999px;
    background: rgba(17, 18, 24, 0.08);
    margin-bottom: 12px;
}

.reply-line.short {
    width: 62%;
}

/* Organize */
.module-organize-visual {
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8f8f8 0%, #f1f0f4 100%);
    border: 1px solid rgba(17, 18, 24, 0.05);
}

.kanban-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.kanban-col {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(17, 18, 24, 0.04);
    transition: transform .24s ease;
}

.hero-module:hover .kanban-col:nth-child(2) {
    transform: translateY(-4px);
}

.kanban-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: rgba(17, 18, 24, 0.5);
    margin-bottom: 10px;
}

.kanban-card {
    height: 52px;
    border-radius: 14px;
    background: rgba(17, 18, 24, 0.08);
    margin-bottom: 8px;
}

.kanban-card.small {
    height: 38px;
}

.kanban-card.active {
    background: linear-gradient(135deg, #dfe5fb 0%, #ded4ea 100%);
}

.kanban-card.success {
    background: linear-gradient(135deg, #e8f1dc 0%, #dde6c8 100%);
}

/* Hero responsive */
@media (max-width: 1180px) {
    .hero-system-topbar {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .hero-system-nav {
        display: none;
    }

    .hero-modules-frame {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .hero-module,
    .hero-module.is-featured {
        min-height: auto;
        transform: none;
    }

    .hero-module:hover,
    .hero-module.is-featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 860px) {
    .hero-system {
        padding: 92px 0 64px;
        /* mantiene el top para el header */
    }

    .container {
        width: min(100% - 24px, 1240px);
    }

    .hero-system-topbar {
        grid-template-columns: 1fr auto;
        margin-bottom: 28px;
    }

    .hero-system-title {
        font-size: clamp(42px, 13vw, 68px);
        line-height: 0.98;
    }

    .hero-system-description {
        font-size: 17px;
    }

    .hero-system-actions {
        flex-direction: column;
    }

    .hero-main-cta,
    .hero-secondary-cta,
    .hero-system-nav-btn {
        width: 100%;
    }

    .hero-module {
        padding: 20px;
    }

    .kanban-mini {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════
   PAIN POINTS
═══════════════════════════════════════════════ */
.pain-points {
    padding: 80px 0 72px;
    /* era 120px / 110px */
    background: #f3f3f1;
    color: #111218;
}

.pain-inner {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.pain-head {
    text-align: left;
    max-width: 980px;
}

.pain-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(17, 18, 24, .08);
    background: rgba(255, 255, 255, .72);
    color: rgba(17, 18, 24, .72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 24px rgba(17, 18, 24, .05);
    margin-bottom: 20px;
}

.pain-title {
    font-size: clamp(36px, 4.2vw, 58px);
    /* era clamp(54px, 5.8vw, 88px) */
    line-height: 1.0;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #111218;
    margin: 0;
    max-width: 1080px;
}

.pain-title-accent {
    color: #2d4dff;
}

.pain-subtitle {
    margin: 18px 0 0;
    max-width: 760px;
    color: rgba(17, 18, 24, .62);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.pain-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pain-layout>.pain-card:nth-child(1) {
    grid-column: 1 / span 8;
    grid-row: 1;
}

.pain-layout>.pain-card:nth-child(2) {
    grid-column: 9 / span 4;
    grid-row: 1;
}

.pain-layout>.pain-card:nth-child(3) {
    grid-column: 1 / span 4;
    grid-row: 2;
}

.pain-layout>.pain-card:nth-child(4) {
    grid-column: 5 / span 8;
    grid-row: 2;
}

.pain-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(17, 18, 24, .06);
    box-shadow: 0 18px 50px rgba(17, 18, 24, .06);
    padding: 34px;
    transition: box-shadow .22s ease, border-color .22s ease;
}

.pain-card:hover {
    box-shadow: 0 22px 56px rgba(17, 18, 24, .10);
}

.pain-card-large {
    min-height: 360px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    align-items: center;
}

.pain-card-small {
    min-height: 360px;
    display: flex;
    align-items: flex-start;
}

.tone-lime {
    background: radial-gradient(500px 280px at 10% 20%, rgba(203, 232, 180, .58), transparent 70%), linear-gradient(135deg, #e8f1dc 0%, #dde6c8 100%);
}

.tone-lilac {
    background: radial-gradient(380px 240px at 80% 20%, rgba(193, 201, 255, .42), transparent 70%), linear-gradient(135deg, #dfe5fb 0%, #ded4ea 100%);
}

.tone-rose {
    background: radial-gradient(360px 220px at 80% 20%, rgba(255, 186, 186, .40), transparent 72%), linear-gradient(135deg, #ecdde4 0%, #e4c6d4 100%);
}

.tone-blue {
    background: radial-gradient(420px 260px at 10% 90%, rgba(169, 233, 222, .36), transparent 72%), radial-gradient(420px 240px at 85% 20%, rgba(204, 190, 255, .34), transparent 72%), linear-gradient(135deg, #d8deef 0%, #d9d2e8 100%);
}

.pain-card-copy {
    position: relative;
    z-index: 2;
    max-width: 470px;
}

.pain-card-title {
    margin: 0;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #10131b;
}

.pain-card-text {
    margin: 18px 0 0;
    max-width: 440px;
    color: rgba(17, 18, 24, .76);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.pain-card-visual {
    position: relative;
    height: 100%;
    min-height: 240px;
}

.visual-chat-overload {
    display: flex;
    align-items: center;
    justify-content: center;
}


.visual-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════════════════════════════════════════
   PAIN POINTS — VISUALS REDISEÑADOS
═══════════════════════════════════════════════ */

/* ── VISUAL 1: SATURACIÓN ── */
.visual-chat-overload {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pv-phone {
    position: relative;
    width: 110px;
    height: 220px;
    border-radius: 26px;
    background: linear-gradient(160deg, #ffffff 0%, #f0f0ec 100%);
    border: 1px solid rgba(17, 18, 24, .10);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 2px 0 rgba(17, 18, 24, .04),
        0 6px 0 rgba(17, 18, 24, .03),
        0 12px 0 rgba(17, 18, 24, .02),
        0 20px 40px rgba(17, 18, 24, .14),
        0 40px 60px rgba(17, 18, 24, .07);
    z-index: 3;
    flex-shrink: 0;
}

.msg-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8f1dc;
    box-shadow: 0 4px 12px rgba(239, 68, 68, .35);
    z-index: 5;
}

.pv-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .10);
}

.pv-phone-screen {
    position: absolute;
    inset: 26px 8px 8px;
    border-radius: 18px;
    background: linear-gradient(180deg, #1a1c3e 0%, #141628 100%);
    padding: 10px 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pv-screen-top {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
}

.wa-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 0 8px rgba(37, 211, 102, .45);
    flex-shrink: 0;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(37, 211, 102, .45);
    }

    50% {
        box-shadow: 0 0 14px rgba(37, 211, 102, .70);
    }
}

.wa-name {
    height: 5px;
    width: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .25);
}

.pv-chat-bubble {
    height: 20px;
    border-radius: 6px;
    flex-shrink: 0;
}

.pv-chat-bubble.in {
    width: 75%;
    background: rgba(255, 255, 255, .16);
    border-radius: 6px 6px 6px 2px;
}

.pv-chat-bubble.out {
    width: 60%;
    align-self: flex-end;
    background: rgba(37, 211, 102, .70);
    border-radius: 6px 6px 2px 6px;
}

.pv-chat-bubble.sm {
    height: 15px;
    width: 48% !important;
}

/* notificaciones flotantes */
.pv-notif {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(17, 18, 24, .08);
    border-radius: 14px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 8px 24px rgba(17, 18, 24, .11),
        0 20px 40px rgba(17, 18, 24, .05);
    z-index: 4;
}

.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .14);
    flex-shrink: 0;
    animation: notif-pulse 2s ease-in-out infinite;
}

@keyframes notif-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(239, 68, 68, .14);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, .07);
    }
}

.notif-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notif-line {
    height: 5px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .12);
}

.notif-line.w60 {
    width: 60px;
}

.notif-line.w40 {
    width: 40px;
}

.notif-badge {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.notif-1 {
    right: -10px;
    top: 20px;
    transform: rotate(3deg);
}

.notif-2 {
    right: -4px;
    top: 80px;
    transform: rotate(-2deg);
}

.notif-3 {
    left: -12px;
    bottom: 50px;
    transform: rotate(-4deg);
}

.notif-4 {
    right: 0px;
    bottom: 16px;
    transform: rotate(2deg);
}


/* ── VISUAL 2: PIPELINE / LAPTOP ── */
.visual-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pv-laptop {
    position: relative;
    width: 230px;
    z-index: 3;
}

.pv-laptop-screen-wrap {
    border-radius: 14px 14px 6px 6px;
    background: linear-gradient(160deg, #ffffff 0%, #f4f4f1 100%);
    border: 1px solid rgba(17, 18, 24, .10);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 2px 0 rgba(17, 18, 24, .04),
        0 8px 0 rgba(17, 18, 24, .03),
        0 16px 30px rgba(17, 18, 24, .12),
        0 30px 50px rgba(17, 18, 24, .06);
    padding: 10px;
    overflow: hidden;
}

.pv-laptop-topbar {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.mac-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
}

.mac-dot.r {
    background: #ff5f56;
}

.mac-dot.y {
    background: #ffbd2e;
}

.mac-dot.g {
    background: #27c93f;
}

.pv-laptop-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.pv-board-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pv-col-head {
    height: 10px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .10);
    margin-bottom: 3px;
}

.pv-col-card {
    border-radius: 8px;
    height: 30px;
    border: 1px solid rgba(17, 18, 24, .06);
    box-shadow: 0 2px 6px rgba(17, 18, 24, .05), 0 1px 0 rgba(255, 255, 255, .7) inset;
}

.pv-col-card.n {
    background: rgba(45, 77, 255, .08);
}

.pv-col-card.sm {
    height: 22px;
}

.pv-col-card.p {
    background: linear-gradient(135deg, rgba(181, 108, 255, .20), rgba(110, 99, 255, .14));
    border-color: rgba(125, 87, 255, .12);
    height: 40px;
}

.pv-col-card.g {
    background: linear-gradient(135deg, rgba(37, 211, 102, .14), rgba(37, 180, 102, .08));
    border-color: rgba(37, 180, 102, .12);
}

.pv-laptop-base {
    height: 12px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, #ebebeb, #d5d5d2);
    box-shadow: 0 6px 16px rgba(17, 18, 24, .08);
}

.pv-laptop-stand {
    width: 60px;
    height: 8px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(180deg, #d5d5d2, #c8c8c4);
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(17, 18, 24, .06);
}

/* chips flotantes */
.fl-chip {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(17, 18, 24, .08);
    border-radius: 12px;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 6px 20px rgba(17, 18, 24, .10),
        0 16px 32px rgba(17, 18, 24, .05);
    z-index: 4;
}

.fl-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    flex-shrink: 0;
}

.fl-dot.blue {
    background: #2d4dff;
    box-shadow: 0 0 0 3px rgba(45, 77, 255, .12);
}

.fl-dot.purple {
    background: #7d57ff;
    box-shadow: 0 0 0 3px rgba(125, 87, 255, .12);
}

.fl-dot.green {
    background: #27c93f;
    box-shadow: 0 0 0 3px rgba(39, 201, 63, .12);
}

.fl-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fl-line {
    height: 5px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .12);
}

.fl-line.w50 {
    width: 50px;
}

.fl-line.w35 {
    width: 35px;
}

.fl-1 {
    left: -16px;
    top: 30px;
    transform: rotate(-3deg);
}

.fl-2 {
    right: -14px;
    top: 60px;
    transform: rotate(2deg);
}

.fl-3 {
    right: -8px;
    bottom: 36px;
    transform: rotate(-2deg);
}

.pain-footnote {
    margin: 6px 0 0;
    color: rgba(17, 18, 24, .52);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1100px) {
    .pain-layout {
        grid-template-columns: 1fr;
    }

    .pain-layout>.pain-card:nth-child(1),
    .pain-layout>.pain-card:nth-child(2),
    .pain-layout>.pain-card:nth-child(3),
    .pain-layout>.pain-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .pain-card-large {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pain-card-small {
        min-height: auto;
    }

    .pain-card-visual {
        min-height: 240px;
        margin-top: 18px;
    }
}

@media (max-width: 720px) {
    .pain-points {
        padding: 64px 0;
    }

    /* era 90px */


    .pain-title {
        font-size: 44px;
    }

    .pain-subtitle {
        font-size: 16px;
    }

    .pain-card {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .pain-card-title {
        font-size: 32px;
    }

    .pain-card-text {
        font-size: 16px;
    }

    .pv-laptop {
        width: 220px;
    }

    .pv-laptop-base {
        width: 260px;
        margin-left: -20px;
    }
}

@media (max-width: 560px) {
    .pain-layout {
        gap: 18px;
    }

    .pain-title {
        font-size: 38px;
    }

    .pain-card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .pain-card-title {
        font-size: 28px;
    }

    .pain-card-visual {
        min-height: 200px;
    }

    .pv-phone {
        transform: scale(.88);
    }

    .pv-laptop {
        transform: scale(.88);
    }
}


/* ═══════════════════════════════════════════════
   SOLUTION — SCROLL HORIZONTAL
═══════════════════════════════════════════════ */
.solution {
    padding: 80px 0 72px;
    background: #f3f3f1;
}

.sol-section-inner {
    width: 100%;
}

/* head */
.sol-head {
    padding: 0 48px;
    margin-bottom: 48px;
}

.sol-head-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.sol-main-title {
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.0;
    color: #111218;
    margin: 0 0 12px;
}

.sol-main-sub {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(17, 18, 24, .55);
    font-weight: 500;
    max-width: 520px;
    margin: 0;
}

/* scroll hint + arrows */
.scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(17, 18, 24, .38);
    flex-shrink: 0;
    padding-bottom: 4px;
}

.scroll-arrow {
    display: flex;
    gap: 4px;
}

.sa {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(17, 18, 24, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(17, 18, 24, .45);
    cursor: pointer;
    transition: background .15s, border-color .15s;
    user-select: none;
}

.sa:hover {
    background: rgba(17, 18, 24, .06);
    border-color: rgba(17, 18, 24, .20);
}

/* track */
.sol-track-wrap {
    padding: 0 48px;
}

.sol-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto;
    cursor: default;
}

/* card */
.sol-card {
    flex-shrink: 0;
    width: 380px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 248, 246, .96));
    border: 1px solid rgba(17, 18, 24, .08);
    box-shadow: 0 18px 50px rgba(17, 18, 24, .06), inset 0 1px 0 rgba(255, 255, 255, .90);
    scroll-snap-align: start;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(17, 18, 24, .10), inset 0 1px 0 rgba(255, 255, 255, .95);
}

/* visual area */
.sol-vis {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfbfa, #f1f1ee);
    border-bottom: 1px solid rgba(17, 18, 24, .06);
    flex-shrink: 0;
}

.sol-vis::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 18, 24, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 18, 24, .04) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    opacity: .5;
}

.win-dots {
    position: absolute;
    top: 12px;
    left: 14px;
    display: flex;
    gap: 5px;
    z-index: 3;
}

.wd {
    width: 7px;
    height: 7px;
    border-radius: 999px;
}

.wd.r {
    background: #ff5f56;
}

.wd.y {
    background: #ffbd2e;
}

.wd.g {
    background: #27c93f;
}

/* copy area */
.sol-copy {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(17, 18, 24, .05);
    color: rgba(17, 18, 24, .50);
    border: 1px solid rgba(17, 18, 24, .07);
    margin-bottom: 14px;
    width: fit-content;
}

.sol-card-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #111218;
    line-height: 1.15;
    margin: 0 0 10px;
}

.sol-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(17, 18, 24, .55);
    font-weight: 500;
    flex: 1;
    margin: 0;
}

.sol-divider {
    height: 1px;
    background: rgba(17, 18, 24, .07);
    margin: 16px 0;
}

.sol-card-foot {
    font-size: 12px;
    color: rgba(17, 18, 24, .40);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* dots */
.sol-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    padding: 0 48px;
}

.sol-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .15);
    transition: background .3s, width .3s;
    cursor: pointer;
}

.sol-dot.active {
    width: 20px;
    background: #111218;
}

/* ── VISUAL 1: COTIZACIÓN ── */
.chat-scene {
    position: absolute;
    inset: 0;
    padding: 38px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.cb {
    height: 22px;
    border-radius: 7px;
    flex-shrink: 0;
}

.cb.in {
    width: 68%;
    background: rgba(17, 18, 24, .10);
    border-radius: 7px 7px 7px 2px;
}

.cb.out {
    width: 52%;
    align-self: flex-end;
    background: linear-gradient(135deg, #7d57ff, #5d74ff);
    border-radius: 7px 7px 2px 7px;
    box-shadow: 0 3px 10px rgba(125, 87, 255, .25);
}

.cb.in.sm {
    width: 46%;
    height: 16px;
}

.cb.out.sm {
    width: 38%;
    height: 16px;
}

.pdf-card {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(130%);
    width: 200px;
    background: #ffffff;
    border: 1px solid rgba(17, 18, 24, .09);
    border-radius: 18px;
    padding: 14px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 10px 30px rgba(17, 18, 24, .14),
        0 24px 50px rgba(17, 18, 24, .07);
    z-index: 5;
    animation: pdf-loop 4s ease-in-out infinite;
}

@keyframes pdf-loop {
    0% {
        transform: translateX(-50%) translateY(130%);
        opacity: 0;
    }

    15% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    85% {
        transform: translateX(-50%) translateY(130%);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(130%);
        opacity: 0;
    }
}

.pdf-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #7d57ff, #5d74ff);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(125, 87, 255, .30);
}

.pdf-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pdf-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff5f56, #ff3b30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 10px rgba(255, 59, 48, .30);
    flex-shrink: 0;
}

.pdf-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pdf-meta span {
    font-size: 10px;
    font-weight: 700;
    color: #111218;
}

.pdf-meta small {
    font-size: 9px;
    color: rgba(17, 18, 24, .44);
    font-weight: 500;
}

.pdf-line {
    height: 6px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .09);
    margin-bottom: 6px;
}

.pdf-line.w80 {
    width: 80%;
}

.pdf-line.w60 {
    width: 60%;
}

.pdf-price {
    margin-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pdf-price span {
    font-size: 9px;
    color: rgba(17, 18, 24, .44);
    font-weight: 600;
}

.pdf-price strong {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #111218;
}

/* ── VISUAL 2: ECOMMERCE ── */
.cart-scene {
    position: absolute;
    inset: 0;
    padding: 38px 18px 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.prod-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .80);
    border: 1px solid rgba(17, 18, 24, .07);
    border-radius: 10px 10px 10px 2px;
    padding: 8px 10px;
    box-shadow: 0 3px 10px rgba(17, 18, 24, .06);
    width: fit-content;
    opacity: 0;
    transform: translateX(-10px);
}

.prod-msg:nth-child(1) {
    animation: slide-in 5s ease-in-out infinite;
}

.prod-msg:nth-child(2) {
    animation: slide-in 5s 1s ease-in-out infinite;
}

.prod-msg:nth-child(3) {
    animation: slide-in 5s 2s ease-in-out infinite;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }

    12% {
        opacity: 1;
        transform: translateX(0);
    }

    80% {
        opacity: 1;
        transform: translateX(0);
    }

    92% {
        opacity: 0;
        transform: translateX(-10px);
    }

    100% {
        opacity: 0;
        transform: translateX(-10px);
    }
}

.prod-thumb {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
}

.prod-thumb.a {
    background: linear-gradient(135deg, #ffeaa0, #ffcc44);
}

.prod-thumb.b {
    background: linear-gradient(135deg, #a8e6cf, #5cd6a0);
}

.prod-thumb.c {
    background: linear-gradient(135deg, #ffc8c8, #ff8fa0);
}

.prod-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prod-name {
    height: 6px;
    width: 80px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .14);
}

.prod-price-line {
    height: 5px;
    width: 48px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .08);
}

.pay-btn {
    position: absolute;
    bottom: 14px;
    left: 18px;
    right: 18px;
    background: linear-gradient(135deg, #25d366, #1da855);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .30);
    animation: pay-pulse 5s 3s ease-in-out infinite;
}

@keyframes pay-pulse {

    0%,
    80%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, .30);
        transform: scale(1);
    }

    85% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, .50);
        transform: scale(1.02);
    }

    90% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, .30);
        transform: scale(1);
    }
}

.pay-label {
    font-size: 11px;
    font-weight: 800;
    color: white;
}

.pay-total {
    font-size: 13px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
}

/* ── VISUAL 3: SOPORTE ── */
.support-scene {
    position: absolute;
    inset: 0;
    padding: 38px 12px 12px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    align-items: start;
}

.sup-col {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(17, 18, 24, .07);
    border-radius: 14px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(17, 18, 24, .06);
}

.sup-col-head {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
}

.sup-avatar {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    flex-shrink: 0;
}

.sup-avatar.bot {
    background: linear-gradient(135deg, #dfe5fb, #b8c4f8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 800;
    color: #5240b8;
}

.sup-avatar.human {
    background: linear-gradient(135deg, #c5aaff, #9b82ff);
    animation: human-glow 3s 2s ease-in-out infinite;
}

@keyframes human-glow {

    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(125, 87, 255, .25);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(125, 87, 255, .40), 0 4px 12px rgba(125, 87, 255, .30);
    }
}

.sup-name {
    height: 5px;
    width: 36px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .12);
}

.sup-bubble {
    height: 16px;
    border-radius: 5px;
    background: rgba(17, 18, 24, .08);
    opacity: 0;
}

.sup-bubble.b1 {
    width: 90%;
    animation: bub-appear 4s ease-in-out infinite;
}

.sup-bubble.b2 {
    width: 70%;
    animation: bub-appear 4s .5s ease-in-out infinite;
}

.sup-bubble.b3 {
    width: 80%;
    animation: bub-appear 4s 1s ease-in-out infinite;
}

.sup-bubble.b4 {
    width: 65%;
    animation: bub-appear 4s .3s ease-in-out infinite;
}

.sup-bubble.b5 {
    width: 85%;
    animation: bub-appear 4s .8s ease-in-out infinite;
}

.sup-bubble.b6 {
    width: 75%;
    animation: bub-appear 4s 1.3s ease-in-out infinite;
}

.sup-col.human-col {
    border-color: rgba(125, 87, 255, .20);
    background: rgba(245, 242, 255, .85);
    animation: col-highlight 3s 2s ease-in-out infinite;
}

@keyframes col-highlight {

    0%,
    100% {
        border-color: rgba(125, 87, 255, .20);
        box-shadow: 0 4px 12px rgba(17, 18, 24, .06);
    }

    50% {
        border-color: rgba(125, 87, 255, .45);
        box-shadow: 0 6px 20px rgba(125, 87, 255, .15);
    }
}

.sup-bubble.human-bub {
    background: linear-gradient(135deg, #dfe5fb, #d5cef4);
}

.sup-bubble.human-bub.b1 {
    animation: bub-appear 3s 2s ease-in-out infinite;
}

.sup-bubble.human-bub.b2 {
    animation: bub-appear 3s 2.5s ease-in-out infinite;
}

.handoff-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ede6ff, #e2dcfb);
    color: #5240b8;
    border: 1px solid rgba(82, 64, 184, .15);
    animation: tag-pop 3s 2.2s ease-in-out infinite;
    opacity: 0;
    margin-top: 2px;
}

.resolved-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e0f5d0, #d0eebc);
    color: #2a7a1a;
    border: 1px solid rgba(42, 122, 26, .14);
    width: fit-content;
    animation: bub-appear 4s 1.5s ease-in-out infinite;
    opacity: 0;
}

.res-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #27c93f;
}

@keyframes bub-appear {

    0%,
    5% {
        opacity: 0;
        transform: translateX(-4px);
    }

    18%,
    80% {
        opacity: 1;
        transform: translateX(0);
    }

    92%,
    100% {
        opacity: 0;
        transform: translateX(-4px);
    }
}

@keyframes tag-pop {

    0%,
    15%,
    100% {
        opacity: 0;
        transform: scale(.85);
    }

    25%,
    80% {
        opacity: 1;
        transform: scale(1);
    }

    90% {
        opacity: 0;
        transform: scale(.85);
    }
}

/* responsive */
@media (max-width: 860px) {
    .sol-head {
        padding: 0 24px;
    }

    .sol-head-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sol-track {
        padding: 16px 24px 32px;
    }

    .sol-card {
        width: 320px;
    }

    .scroll-hint {
        display: none;
    }
}


/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process {
    padding: 80px 0 72px;
    background: #f3f3f1;
    color: #0b0b0f;
}

.process-inner {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.process-head {
    text-align: left;
    max-width: 860px;
}

.process-title {
    margin: 0;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #111218;
}

.process-subtitle {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(17, 18, 24, .68);
    max-width: 760px;
    font-weight: 500;
}

.process-showcase {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* sidebar */
.process-nav {
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(17, 18, 24, .08);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    height: fit-content;
    position: sticky;
    top: 110px;
}

.process-step {
    width: 100%;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    border: 0;
    background: transparent;
    border-radius: 18px;
    cursor: pointer;
    text-align: left;
    transition: background .18s ease;
    font-family: inherit;
}

.process-step+.process-step {
    margin-top: 8px;
}

.process-step:hover {
    background: rgba(17, 18, 24, .04);
}

.process-step.is-active {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}

.process-step-num {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(17, 18, 24, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: #111218;
    background: #fff;
    transition: background .18s, color .18s, border-color .18s;
}

.process-step.is-active .process-step-num {
    background: linear-gradient(135deg, #b56cff, #5bd6ff);
    color: white;
    border-color: transparent;
}

.process-step-label {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1d25;
}

/* panel */
.process-panel {
    min-width: 0;
}

.process-card {
    min-height: 520px;
    border-radius: 34px;
    background: linear-gradient(160deg, #1e1e2e 0%, #16162a 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 34px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .06) inset,
        0 28px 70px rgba(0, 0, 0, .28),
        0 60px 120px rgba(0, 0, 0, .14);
}

/* glow interno */
.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 30% 0%, rgba(140, 100, 255, .14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(80, 160, 255, .10) 0%, transparent 60%);
    pointer-events: none;
}

.process-card-copy {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.process-kicker {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.process-card-title {
    margin: 0;
    font-size: clamp(34px, 3.6vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #ffffff;
    max-width: 480px;
}

.process-card-text {
    margin: 20px 0 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    font-weight: 500;
}

.process-points {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.process-points span {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    font-weight: 700;
}

/* visual panel */
.process-card-visual {
    position: relative;
    min-height: 380px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* grid dots */
.pv-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    opacity: .7;
}

/* window dots */
.pv-window {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 5px;
    z-index: 5;
}

.pv-window span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
}

.pv-window span:nth-child(1) {
    background: #ff5f56;
}

.pv-window span:nth-child(2) {
    background: #ffbd2e;
}

.pv-window span:nth-child(3) {
    background: #27c93f;
}

/* scenes */
.pv-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px) scale(.985);
    transition: opacity .32s ease, transform .32s ease;
    pointer-events: none;
}

.pv-scene.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* shared card light */
.pv-card {
    position: absolute;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 10px 28px rgba(0, 0, 0, .18),
        0 24px 48px rgba(0, 0, 0, .10);
}

.pv-line {
    height: 7px;
    border-radius: 999px;
    background: rgba(17, 18, 24, .12);
    margin-bottom: 8px;
}

.pv-line.w90 {
    width: 90%;
}

.pv-line.w80 {
    width: 80%;
}

.pv-line.w60 {
    width: 60%;
}

.pv-line.w40 {
    width: 40%;
}

.pv-line.last {
    margin-bottom: 0;
}

.pv-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.pv-badge.purple {
    background: linear-gradient(135deg, #b56cff, #6e63ff);
    box-shadow: 0 6px 16px rgba(125, 87, 255, .35);
}

.pv-badge.blue {
    background: linear-gradient(135deg, #4ca8ff, #2d6fff);
    box-shadow: 0 6px 16px rgba(45, 111, 255, .35);
}

.pv-badge.green {
    background: linear-gradient(135deg, #27c93f, #1da855);
    box-shadow: 0 6px 16px rgba(37, 201, 63, .35);
}

/* floating chip base */
.pv-chip-float {
    position: absolute;
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 7px 11px;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pv-chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    flex-shrink: 0;
}

.pv-chip-dot.purple {
    background: #7d57ff;
}

.pv-chip-dot.blue {
    background: #2d6fff;
}

.pv-chip-dot.green {
    background: #27c93f;
}

/* ── ESCENA 0: DIAGNÓSTICO ── */
.pv-s0-main {
    left: 22px;
    top: 48px;
    width: 130px;
    padding: 14px;
}

.pv-s0-note {
    right: 18px;
    top: 72px;
    width: 110px;
    padding: 12px;
}

.pv-s0-tag {
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: rgba(17, 18, 24, .65);
}

/* ── ESCENA 1: FLUJO ── */
.pv-fn {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.pv-fn-start {
    width: 80px;
    height: 40px;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .15);
}

.pv-fn-a {
    width: 68px;
    height: 52px;
    left: 50%;
    top: 64px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(89, 110, 255, .92), rgba(80, 190, 255, .72));
}

.pv-fn-b {
    width: 68px;
    height: 52px;
    left: 50%;
    top: 160px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(181, 108, 255, .90), rgba(110, 99, 255, .70));
}

.pv-fn-end {
    width: 80px;
    height: 40px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .15);
}

.pv-fl {
    position: absolute;
    background: rgba(255, 255, 255, .22);
    border-radius: 2px;
}

.pv-fl.h {
    height: 2px;
}

.pv-fl.v {
    width: 2px;
}

.pv-fl-l {
    width: 30px;
    left: 98px;
    top: 50%;
    transform: translateY(-50%);
}

.pv-fl-r {
    width: 30px;
    right: 98px;
    top: 50%;
    transform: translateY(-50%);
}

.pv-fl-v {
    height: 56px;
    left: 50%;
    top: 116px;
    transform: translateX(-50%);
}

/* ── ESCENA 2: IMPLEMENTACIÓN ── */
.pv-s2-main {
    left: 18px;
    top: 52px;
    width: 118px;
    padding: 13px;
}

.pv-s2-dark {
    position: absolute;
    right: 18px;
    top: 78px;
    width: 108px;
    padding: 13px;
    background: linear-gradient(135deg, rgba(89, 110, 255, .92), rgba(80, 190, 255, .70));
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(89, 110, 255, .30), inset 0 1px 0 rgba(255, 255, 255, .20);
}

.pv-s2-dark .pv-line {
    background: rgba(255, 255, 255, .30);
}

.tech-pill {
    position: absolute;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 10px;
    background: rgba(17, 18, 24, .85);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    z-index: 4;
}

.tp-api {
    left: 22px;
    bottom: 50px;
}

.tp-bot {
    left: 50%;
    bottom: 76px;
    transform: translateX(-50%);
}

.tp-db {
    right: 22px;
    bottom: 50px;
}

/* ── ESCENA 3: VALIDACIÓN ── */
.pv-s3-a {
    left: 18px;
    top: 52px;
    width: 120px;
    padding: 13px;
}

.pv-s3-b {
    right: 18px;
    top: 92px;
    width: 108px;
    padding: 13px;
}

.qa-pill {
    position: absolute;
    top: 50px;
    right: 18px;
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    color: #1d7f46;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.qa-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #27c93f;
    animation: qa-blink 1.5s ease-in-out infinite;
}

@keyframes qa-blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 3px rgba(39, 201, 63, .20);
    }

    50% {
        opacity: .4;
        box-shadow: 0 0 0 2px rgba(39, 201, 63, .10);
    }
}

.check-circle {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #27c93f, #1da855);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 201, 63, .40);
    font-size: 14px;
    color: white;
    font-weight: 800;
    z-index: 4;
    animation: check-pop 2.5s ease-in-out infinite;
}

@keyframes check-pop {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 18px rgba(37, 201, 63, .40);
    }

    50% {
        transform: translateX(-50%) scale(1.08);
        box-shadow: 0 8px 24px rgba(37, 201, 63, .55);
    }
}

/* ── ESCENA 4: LANZAMIENTO ── */
.pv-s4-main {
    left: 22px;
    top: 48px;
    width: 130px;
    padding: 14px;
}

.live-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a67ff, #5bd6ff);
    margin-bottom: 14px;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(10, 103, 255, .20);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(10, 103, 255, .10), 0 0 20px rgba(10, 103, 255, .20);
    }
}

.live-pill {
    position: absolute;
    top: 50px;
    right: 18px;
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    color: #0a67ff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-blink {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #0a67ff;
    animation: live-blink 1.2s ease-in-out infinite;
}

@keyframes live-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}

.pv-avatars {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.pv-av {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 2px solid rgba(30, 30, 46, .95);
    margin-left: -9px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .20);
}

.pv-av:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, #b56cff, #5bd6ff);
}

.pv-av:nth-child(2) {
    background: linear-gradient(135deg, #5bd6ff, #4ca8ff);
}

.pv-av:nth-child(3) {
    background: linear-gradient(135deg, #ffcc44, #ff8fa0);
}

/* responsive */
@media (max-width: 1100px) {
    .process-showcase {
        grid-template-columns: 1fr;
    }

    .process-nav {
        position: static;
    }

    .process-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .process {
        padding: 64px 0;
    }

    .process-card {
        padding: 24px;
        border-radius: 26px;
    }

    .process-card-title {
        font-size: 36px;
    }

    .process-card-text {
        font-size: 15px;
    }

    .process-card-visual {
        min-height: 280px;
    }

    .process-nav {
        padding: 14px;
        border-radius: 22px;
    }

    .process-step {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 12px 10px;
    }

    .process-step-num {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}


/* ═══════════════════════════════════════════════
   FAQ — WHATSAPP DARK
═══════════════════════════════════════════════ */
.faq-section {
    background: #f3f3f1;
    /* claro igual que el resto */
    padding: 80px 0 88px;
    position: relative;
    overflow: visible;
}

/* quita el glow oscuro */
.faq-section::before {
    display: none;
}

.faq-inner {
    width: min(1240px, calc(100% - 48px));
    /* igual que .container */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.faq-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(17, 18, 24, .08);
    font-size: 11px;
    font-weight: 700;
    color: rgba(17, 18, 24, .50);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(17, 18, 24, .05);
}

.faq-title {
    font-size: clamp(36px, 4.2vw, 58px);
    /* igual que .process-title */
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.98;
    color: #111218;
    margin: 0 0 16px;
}

.faq-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(17, 18, 24, .62);
    font-weight: 500;
    max-width: 420px;
    margin: 0 0 36px;
}

.faq-foot {
    font-size: 14px;
    color: rgba(17, 18, 24, .42);
    font-weight: 500;
    line-height: 1.65;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 18, 24, .08);
    max-width: 380px;
}

/* phone */
.faq-phone-wrap {
    display: flex;
    justify-content: center;
}

.wa-phone {
    width: 460px;
    border-radius: 28px;
    background: #111b21;
    border: 1px solid rgba(17, 18, 24, .10);
    box-shadow:
        0 30px 80px rgba(17, 18, 24, .18),
        0 60px 120px rgba(17, 18, 24, .10);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
    transition: transform .4s ease;
}

.faq-phone-wrap:hover .wa-phone {
    transform: perspective(1200px) rotateY(-2deg) rotateX(0deg);
}

.wa-statusbar {
    background: #1f2c34;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-back {
    font-size: 22px;
    color: rgba(255, 255, 255, .55);
    line-height: 1;
}

.wa-avatar-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7d57ff, #2d4dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(125, 87, 255, .30);
}

.wa-contact {
    flex: 1;
}

.wa-contact-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.wa-contact-status {
    font-size: 11px;
    color: rgba(255, 255, 255, .40);
}

.wa-icons {
    display: flex;
    gap: 16px;
}

.wa-icon {
    font-size: 16px;
    opacity: .55;
}

/* chat */
.wa-chat {
    background: #0b141a;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 14px 12px 18px;
    height: 520px;
    /* altura fija — ajusta a tu gusto */
    max-height: 520px;
    overflow-y: auto;
    /* scroll cuando el contenido desborda */
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    /* oculta scrollbar en Firefox */
}

.wa-chat::-webkit-scrollbar {
    display: none;
}

/* oculta scrollbar en Chrome */

.wa-date {
    text-align: center;
    margin-bottom: 14px;
}

.wa-date span {
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .38);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

/* mensajes */
.wa-msg {
    max-width: 84%;
    margin-bottom: 2px;
    /* pegado entre pregunta y respuesta */
    opacity: 0;
    transform: translateY(6px);
}

/* separación antes de cada nueva pregunta (excepto la primera) */
.wa-msg.in.pair-start {
    margin-top: 18px;
}

.wa-msg.in {
    align-self: flex-start;
}

.wa-msg.out {
    align-self: flex-end;
}

.wa-bubble {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
    font-family: inherit;
}

.wa-msg.in .wa-bubble {
    background: #202c33;
    color: rgba(255, 255, 255, .88);
    border-radius: 0 8px 8px 8px;
}

.wa-msg.out .wa-bubble {
    background: #005c4b;
    color: rgba(255, 255, 255, .92);
    border-radius: 8px 0 8px 8px;
}

/* typing */
.wa-typing {
    align-self: flex-start;
    margin-bottom: 2px;
    opacity: 0;
}

.wa-typing-bubble {
    background: #202c33;
    border-radius: 0 8px 8px 8px;
    padding: 11px 16px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.wa-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
}

.wa-dot:nth-child(1) {
    animation: wa-tdot 1.2s .0s ease-in-out infinite;
}

.wa-dot:nth-child(2) {
    animation: wa-tdot 1.2s .2s ease-in-out infinite;
}

.wa-dot:nth-child(3) {
    animation: wa-tdot 1.2s .4s ease-in-out infinite;
}

@keyframes wa-tdot {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: .35;
    }

    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

/* input */
.wa-inputbar {
    background: #1f2c34;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-inputfield {
    flex: 1;
    background: #2a3942;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, .28);
    font-family: inherit;
}

.wa-sendbtn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #00a884;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 168, 132, .30);
}

.wa-scroll-hint {
    background: #1f2c34;
    padding: 7px 14px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.wa-scroll-hint span {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .28);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* responsive */
@media (max-width: 1000px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        width: min(1100px, calc(100% - 48px));
    }

    .faq-phone-wrap {
        justify-content: flex-start;
    }

    .wa-phone {
        width: 100%;
        max-width: 460px;
    }
}

@media (max-width: 560px) {
    .wa-phone {
        border-radius: 20px;
    }

    .wa-bubble {
        font-size: 13px;
    }
}




/* ═══════════════════════════════════════════════
   CTA (light)
═══════════════════════════════════════════════ */
.cta-band {
    padding: 72px 0 80px;
    /* era 80px / 100px */
    background: #f3f3f1;
}

.cta-inner {
    display: flex;
    justify-content: center;
}

.cta-card {
    width: min(920px, 100%);
    text-align: center;
    padding: 80px 40px 72px;
    border-radius: 28px;
    border: 1px solid rgba(17, 18, 24, .08);
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f7 100%);
    box-shadow: 0 30px 80px rgba(17, 18, 24, .07), inset 0 1px 0 rgba(255, 255, 255, .95);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: -180px -240px;
    background:
        radial-gradient(500px 320px at 25% 40%, rgba(181, 108, 255, .10), transparent 65%),
        radial-gradient(500px 320px at 72% 55%, rgba(80, 190, 255, .08), transparent 65%);
    pointer-events: none;
}

.cta-card>* {
    position: relative;
    z-index: 1;
}

.cta-title {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    font-size: clamp(34px, 3.2vw, 52px);
    color: #111218;
}

.grad-accent {
    background: linear-gradient(90deg, #7d57ff, #5d74ff, #4ca8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-subtitle {
    margin: 16px 0 0;
    color: rgba(17, 18, 24, .58);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.cta-btn {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7d57ff 0%, #5d74ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    font-family: inherit;
    border: none;
    box-shadow: 0 18px 40px rgba(96, 95, 255, .22);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(96, 95, 255, .28);
}

.cta-arrow {
    font-weight: 900;
    transform: translateY(-1px);
}

@media (max-width: 560px) {
    .cta-card {
        padding: 54px 22px 52px;
    }

    .cta-btn {
        width: 100%;
    }
}


/* ═══════════════════════════════════════════════
   FOOTER (light)
═══════════════════════════════════════════════ */
.site-footer {
    padding: 40px 0 44px;
    /* era 52px / 56px */
    border-top: 1px solid rgba(17, 18, 24, .08);
    background: #ffffff;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-logo {
    height: 28px;
    width: auto;
    opacity: .55;
    transition: opacity .2s ease;
}

.footer-logo:hover {
    opacity: .80;
}

.footer-copy {
    color: rgba(17, 18, 24, .46);
    font-weight: 600;
    font-size: 13px;
}

.footer-email {
    color: rgba(17, 18, 24, .56);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color .16s ease;
}

.footer-email:hover {
    color: #111218;
}

.footer-address {
    max-width: 720px;
    color: rgba(17, 18, 24, .44);
    font-weight: 500;
    font-size: 13px;
}

.footer-legal {
    color: rgba(17, 18, 24, .44);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    font-size: 13px;
    transition: color .16s ease;
}

.footer-legal:hover {
    color: rgba(17, 18, 24, .80);
}

/* ═══════════════════════════════════════════════
   HERO MODULES — 3D + CURSOR
═══════════════════════════════════════════════ */

.hero-modules-frame {
    position: relative;
}

/* Cursor */
.hero-cursor {
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
    z-index: 50;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .22));
    transition: transform .1s ease;
    top: 0;
    left: 0;
}

.hero-cursor svg {
    width: 22px;
    height: 22px;
}

.hero-cursor.clicking {
    transform: scale(.8);
}

/* New bubble row — oculta por defecto */
.new-bubble-row {
    width: 52% !important;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    margin-left: auto;
}

.new-bubble-row.show {
    transform: scaleX(1);
}

/* Kanban metrics */
.kanban-metrics {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.kanban-met {
    flex: 1;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(17, 18, 24, .06);
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(17, 18, 24, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.kanban-met span {
    font-size: 10px;
    font-weight: 700;
    color: rgba(17, 18, 24, .42);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.kanban-met strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #111218;
    transition: color .3s;
}

.kanban-met.green strong {
    color: #2a7a1a;
}

.kanban-met.green.highlight strong {
    color: #7d57ff;
}

/* Kanban card drag state */
.kanban-card.dragging {
    transform: translateY(-7px) scale(1.05) !important;
    box-shadow: 0 14px 30px rgba(99, 70, 200, .20) !important;
    z-index: 5;
    position: relative;
}

/* Score card lifted */
.filter-score.lifted {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(17, 18, 24, .10);
}

/* Chip pressed */
.chip.pressed {
    transform: scale(.9) !important;
}

/* Module state lit */
.module-state.lit {
    background: rgba(125, 87, 255, .10) !important;
    color: rgba(125, 87, 255, .88) !important;
    border-color: rgba(125, 87, 255, .22) !important;
}

/* Bubble pulse */
.chat-row.pulse {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 18px rgba(125, 87, 255, .4) !important;
}

/* Score ring spin */
.score-ring.spin {
    transform: rotate(20deg) scale(1.06) !important;
}

/* ═══════════════════════════════════════════════
   PAIN POINTS — MOBILE VISUALS
   Solo visibles en mobile
═══════════════════════════════════════════════ */
.pain-card-visual-mobile {
    display: none;
}

@media (max-width: 900px) {

    .pain-card-visual-mobile {
        display: flex;
        margin-top: 20px;
        min-height: 140px;
    }

    /* ── LEADS ── */
    .vis-leads-mobile {
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .lead-item-m {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .lead-avatar-m {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        position: relative;
        box-shadow: 0 4px 12px rgba(17, 18, 24, .12), inset 0 1px 0 rgba(255, 255, 255, .8);
    }

    .lead-avatar-m.cold {
        background: rgba(255, 255, 255, .72);
    }

    .lead-avatar-m.warm {
        background: linear-gradient(135deg, #dfe5fb, #c8d4f8);
    }

    .lead-avatar-m.hot {
        background: linear-gradient(135deg, #c5aaff, #9b82ff);
    }

    .lead-x-m,
    .lead-check-m {
        position: absolute;
        top: -3px;
        right: -3px;
        width: 15px;
        height: 15px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8px;
        font-weight: 800;
        color: white;
    }

    .lead-x-m {
        background: #ef4444;
        box-shadow: 0 2px 6px rgba(239, 68, 68, .35);
    }

    .lead-check-m {
        background: #27c93f;
        box-shadow: 0 2px 6px rgba(39, 201, 63, .35);
    }

    .lead-tag-m {
        font-size: 9px;
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 999px;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .lead-tag-m.cold-t {
        background: rgba(17, 18, 24, .08);
        color: rgba(17, 18, 24, .45);
    }

    .lead-tag-m.warm-t {
        background: rgba(89, 110, 255, .15);
        color: #3344cc;
    }

    .lead-tag-m.hot-t {
        background: rgba(125, 87, 255, .18);
        color: #6030cc;
    }

    .funnel-arrow-m {
        font-size: 18px;
        color: rgba(17, 18, 24, .25);
        align-self: center;
        margin-bottom: 20px;
    }

    /* ── COTIZACIÓN ── */
    .vis-cot-mobile {
        flex-direction: column;
        gap: 8px;
    }

    .cot-card-m {
        background: rgba(255, 255, 255, .76);
        border: 1px solid rgba(17, 18, 24, .07);
        border-radius: 12px;
        padding: 10px 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 12px rgba(17, 18, 24, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
    }

    .cot-dot-m {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        flex-shrink: 0;
    }

    .cot-dot-m.cold {
        background: #94a3b8;
        box-shadow: 0 0 0 3px rgba(148, 163, 184, .18);
    }

    .cot-dot-m.warm {
        background: #f59e0b;
        box-shadow: 0 0 0 3px rgba(245, 158, 11, .18);
        animation: cot-pulse-m 2s ease-in-out infinite;
    }

    @keyframes cot-pulse-m {

        0%,
        100% {
            box-shadow: 0 0 0 3px rgba(245, 158, 11, .18);
        }

        50% {
            box-shadow: 0 0 0 6px rgba(245, 158, 11, .08);
        }
    }

    .cot-lines-m {
        flex: 1;
    }

    .cot-line-m {
        height: 6px;
        border-radius: 999px;
        background: rgba(17, 18, 24, .10);
        margin-bottom: 5px;
    }

    .cot-line-m.w80 {
        width: 80%;
    }

    .cot-line-m.w55 {
        width: 55%;
        margin-bottom: 0;
    }

    .cot-badge-m {
        font-size: 9px;
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 999px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .cot-badge-m.late {
        background: rgba(239, 68, 68, .12);
        color: #dc2626;
    }

    .cot-badge-m.wait {
        background: rgba(245, 158, 11, .12);
        color: #d97706;
    }

    .clock-row-m {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, .55);
        border-radius: 10px;
        border: 1px solid rgba(17, 18, 24, .06);
    }

    .clock-icon-m {
        font-size: 16px;
        flex-shrink: 0;
    }

    .clock-text-m {
        font-size: 11px;
        font-weight: 700;
        color: rgba(17, 18, 24, .55);
    }

    .clock-text-m span {
        color: #dc2626;
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .site-nav {
        display: none;
    }

    .hero-system-nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .brand-logo {
        height: 28px;
    }

    .hero-system-pill {
        display: none;
    }

    .hero-modules-wrap {
        display: none;
    }

    .hero-system {
        padding-bottom: 60px;
        overflow: hidden;
    }

    .hero-system-title {
        font-size: clamp(38px, 11vw, 56px);
        line-height: 1.0;
    }

    .hero-system-description {
        font-size: 16px;
    }

    .hero-system-actions {
        flex-direction: column;
        padding: 0 8px;
    }

    .hero-main-cta,
    .hero-secondary-cta {
        width: 100%;
        justify-content: center;
    }

    /* pain points */
    .pain-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pain-layout>.pain-card:nth-child(1),
    .pain-layout>.pain-card:nth-child(2),
    .pain-layout>.pain-card:nth-child(3),
    .pain-layout>.pain-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .pain-card-large {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pain-card-small {
        flex-direction: column;
        /* apila texto arriba, visual abajo */
    }

    .pain-card {
        padding: 24px 22px;
        border-radius: 22px;
        min-height: 380px;
        /* altura uniforme para todas */
    }

    .pain-card-visual-mobile {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .vis-leads-mobile {
        justify-content: center;
    }

    .vis-cot-mobile {
        width: 100%;
    }

    .pain-card-title {
        font-size: 26px;
    }

    .pain-card-text {
        font-size: 15px;
        margin-top: 10px;
    }

    .pain-card-visual {
        min-height: 200px;
        margin-top: 20px;
    }

    .pain-title {
        font-size: clamp(34px, 8vw, 48px);
        letter-spacing: -0.04em;
    }

    .lead-avatar-m {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .lead-tag-m {
        font-size: 11px;
        padding: 4px 10px;
    }

    .funnel-arrow-m {
        font-size: 22px;
    }

    .cot-card-m {
        padding: 14px 16px;
    }

    .cot-dot-m {
        width: 13px;
        height: 13px;
    }

    .cot-line-m {
        height: 8px;
        margin-bottom: 7px;
    }

    .cot-badge-m {
        font-size: 11px;
        padding: 4px 10px;
    }

    .clock-row-m {
        padding: 10px 14px;
    }

    .clock-icon-m {
        font-size: 20px;
    }

    .clock-text-m {
        font-size: 13px;
    }

    /* quita todos los paddings individuales */
    .sol-head {
        padding: 0;
    }

    .sol-track-wrap {
        padding: 0;
        margin: 0;
        overflow: visible;
    }

    /* pon el padding en el padre de ambos */
    .sol-section-inner {
        padding: 0 0 0 24px;
    }

    .sol-track-wrap::before,
    .sol-track-wrap::after {
        display: none;
    }

    .scroll-hint {
        display: none;
    }

    .solution {
        overflow: hidden;
    }

    .sol-head-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sol-track {
        display: flex !important;
        flex-direction: row;
        gap: 14px;
        width: 100%;
        padding: 8px 0 24px 0;
        margin: 0;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        cursor: grab;
        scrollbar-width: none;
    }

    .sol-track::-webkit-scrollbar {
        display: none;
    }

    .sol-card {
        flex-shrink: 0 !important;
        width: 80vw !important;
        max-width: 320px !important;
        overflow: hidden !important;
        scroll-snap-align: start;
        margin: 0 !important;
        
    }

    .sol-card:last-child {
        margin-right: 24px !important;
    }

    .sol-dots {
        padding: 0;
        justify-content: center;
        margin-top: 16px;
    }

      /* PROCESO */
  .process { padding: 64px 0; }

  .process-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* oculta sidebar y visual */
  .process-nav { display: none; }
  .process-card-visual { display: none; }

  /* convierte cada paso en card apilada */
  .process-card {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 28px 24px;
    border-radius: 24px;
    gap: 0;
  }

  .process-kicker {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .process-card-title {
    font-size: clamp(28px, 8vw, 38px);
    margin-bottom: 14px;
  }

  .process-card-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .process-points {
    margin-top: 0;
    gap: 6px;
  }

  .process-points span {
    font-size: 12px;
    padding: 6px 12px;
  }

  .process-title {
    font-size: clamp(32px, 8vw, 44px);
  }

  .process-mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }

  .process-mobile-stack .process-card {
    display: block;
    min-height: auto;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .process-mobile-stack .process-card-copy {
    max-width: 100%;
  }

    /* CTA */
    .cta-band { padding: 40px 0; } /* reduce el padding */

    .cta-card {
      padding: 36px 24px;
      border-radius: 28px; 
      margin: 0 16px;
    }
  
    .cta-title {
      font-size: clamp(28px, 8vw, 38px);
    }
  
    .cta-btn {
      font-size: 15px;
      padding: 0 20px;
      min-height: 52px;
      width: 100%;
      justify-content: center;
      text-align: center;
    }
  
    /* footer */
    .footer-logo {
      height: 20px;
    }
  
    .footer-inner {
      gap: 8px;
    }
  
    .footer-copy,
    .footer-email,
    .footer-address,
    .footer-legal {
      font-size: 13px;
    }

    
  

}