/* =============================================================
   SinFila — Landing v2
   ============================================================= */

/* Nav scroll offset for sticky header */
html { scroll-padding-top: 5rem; }
#faq, #producto, #comparativa, #precios { scroll-margin-top: 5rem; }

/* Mobile nav */
.nav-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .75rem;
    border: 1.5px solid rgba(0,0,0,.08);
    background: #fff;
    color: var(--color-ink);
    transition: background .15s ease;
}
.nav-menu-btn:hover { background: #f4f4f5; }
.nav-menu-btn.is-open { background: var(--color-ink); color: #fff; }

.nav-menu-icon,
.nav-menu-icon::before,
.nav-menu-icon::after {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-menu-icon { position: relative; }
.nav-menu-icon::before,
.nav-menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
}
.nav-menu-icon::before { top: -.4rem; }
.nav-menu-icon::after  { top: .4rem; }
.nav-menu-btn.is-open .nav-menu-icon { background: transparent; }
.nav-menu-btn.is-open .nav-menu-icon::before { top: 0; transform: rotate(45deg); }
.nav-menu-btn.is-open .nav-menu-icon::after  { top: 0; transform: rotate(-45deg); }

.nav-mobile-link {
    display: block;
    padding: .75rem 1rem;
    border-radius: .75rem;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--color-ink);
    transition: background .15s ease;
}
.nav-mobile-link:hover { background: #f4f4f5; }

@media (min-width: 1024px) {
    .biz-scroll {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
        gap: 1rem;
        padding-left: 0;
        padding-right: 0;
    }
    .biz-card {
        width: auto;
    }
}

#site-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.landing-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.landing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------- Section eyebrow -------- */
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-brand);
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
}
.hero-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 60% 50% at 80% 0%, rgba(16,185,129,.12), transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(163,230,53,.08), transparent 60%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(16,185,129,.25);
    background: rgba(236,253,245,.65);
    backdrop-filter: blur(8px);
    font-size: .75rem;
    font-weight: 700;
    color: #047857;
}
.hero-badge-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: #10B981;
    box-shadow: 0 0 0 4px rgba(16,185,129,.2);
    animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,.2); }
    50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

.hero-highlight {
    background: linear-gradient(135deg, #10B981 0%, #A3E635 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* Dual-path hero tabs */
.hero-dual-tabs {
    display: flex;
    justify-content: center;
    gap: .5rem;
    padding: .375rem;
    max-width: 28rem;
    margin-inline: auto;
    border-radius: 1.125rem;
    border: 1.5px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px -12px rgba(0,0,0,.12);
}
.hero-dual-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: .875rem;
    border: none;
    background: transparent;
    font-size: .875rem;
    font-weight: 700;
    color: #71717a;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}
.hero-dual-tab:hover {
    color: var(--color-ink);
    background: rgba(0,0,0,.03);
}
.hero-dual-tab.is-active {
    background: #0a0a0a;
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,.35);
}
.hero-dual-tab.is-active svg {
    color: var(--color-brand-lime);
}
.hero-panel {
    animation: heroPanelIn .35s ease;
}
.hero-panel.hidden {
    display: none;
}
.hero-panels-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@keyframes heroPanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    .hero-dual-tab {
        font-size: .8125rem;
        padding: .625rem .75rem;
        gap: .375rem;
    }
    .hero-dual-tab svg {
        width: .875rem;
        height: .875rem;
    }
}

[data-landing-track].landing-track-hidden {
    display: none !important;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    background: var(--color-ink);
    color: #fff;
    font-weight: 700;
    font-size: .9375rem;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,.35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -8px rgba(0,0,0,.4);
}
.hero-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: var(--color-brand-lime);
    color: var(--color-ink);
    transition: transform .2s ease;
}
.hero-cta-primary:hover .hero-cta-arrow {
    transform: translateX(3px);
}

.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1.5px solid rgba(0,0,0,.08);
    background: #fff;
    font-weight: 700;
    font-size: .9375rem;
    color: var(--color-ink);
    transition: all .2s ease;
}
.hero-cta-ghost:hover {
    border-color: rgba(16,185,129,.3);
    background: #ecfdf5;
}

.hero-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 999px;
    border: 2px solid #fff;
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
}

.hero-logo-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .875rem;
    border-radius: 999px;
    background: #fafafa;
    color: #71717a;
    font-size: .8125rem;
    font-weight: 700;
    transition: all .2s ease;
}
.hero-logo-chip:hover {
    background: #f4f4f5;
    color: #18181b;
}

/* -------- Phone device -------- */
.phone-device {
    position: relative;
    width: 300px;
    margin: 0 auto;
    border-radius: 2.75rem;
    padding: 10px;
    background: linear-gradient(145deg, #1f1f1f 0%, #0a0a0a 100%);
    box-shadow:
        0 32px 64px -16px rgba(16,185,129,.25),
        0 16px 32px -8px rgba(0,0,0,.18),
        inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone-device::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 999px;
    z-index: 20;
}
.phone-screen {
    border-radius: 2.25rem;
    overflow: hidden;
    background: #fafafa;
}
.phone-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem .875rem .25rem;
    background: linear-gradient(180deg, #18181b, #18181b);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.phone-menu-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .625rem;
    border-radius: .875rem;
    border: 1.5px solid #f4f4f5;
    background: #fff;
    transition: all .2s ease;
}
.phone-menu-item.is-selected {
    border-color: #10B981;
    background: #ecfdf5;
}
.phone-menu-img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.phone-add-btn {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: var(--color-brand-lime);
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.phone-qty-pill {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: var(--color-brand);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.phone-cart-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .875rem 1rem;
    background: var(--color-brand-lime);
    color: var(--color-ink);
}
.phone-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: var(--color-ink);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
}

/* Floating cards around phone */
.hero-float {
    position: absolute;
    z-index: 10;
    padding: .875rem 1rem;
    border-radius: 1.125rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,.04);
    box-shadow: 0 16px 40px -8px rgba(0,0,0,.12);
}
.hero-float-savings {
    top: 6%;
    right: -2rem;
}
.hero-float-order {
    bottom: 18%;
    left: -3.5rem;
}
@media (max-width: 640px) {
    .hero-float-savings { right: -1rem; top: 4%; }
    .hero-float-order   { left: -1rem; bottom: 20%; }
}

.float-card { animation: floatY 5s ease-in-out infinite; }
.float-card-delay { animation: floatY 5s ease-in-out 1.5s infinite; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* =============================================================
   STATS
   ============================================================= */
.stats-card {
    text-align: center;
}
.stats-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, #fff 30%, #a3e635 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
}
.stats-label {
    margin-top: .5rem;
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
}
.stats-sub {
    margin-top: .25rem;
    font-size: .8125rem;
    color: rgba(255,255,255,.55);
}
.stats-strike {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: line-through;
    color: rgba(255,255,255,.4);
    -webkit-text-fill-color: rgba(255,255,255,.4);
    background: none;
    letter-spacing: 0;
}
.stats-suffix {
    font-size: .55em;
    font-weight: 700;
    vertical-align: baseline;
}

/* Negocio hero stat pills */
.negocio-hero-stats { max-width: 36rem; }
.negocio-hero-stat {
    padding: .875rem .75rem;
    border-radius: 1rem;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
}
.negocio-hero-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    border-radius: .625rem;
    background: rgba(163,230,53,.15);
    color: var(--color-brand-lime);
}
.negocio-hero-stat-strike {
    display: block;
    margin-top: .375rem;
    font-size: .6875rem;
    font-weight: 600;
    text-decoration: line-through;
    color: rgba(255,255,255,.45);
}
.negocio-hero-stat-value {
    margin-top: .25rem;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.negocio-stat-unit {
    font-size: .625em;
    font-weight: 700;
}
.negocio-hero-stat-label {
    margin-top: .125rem;
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.55);
}

/* Negocio comparison callout */
.negocio-callout {
    display: grid;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) {
    .negocio-callout {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        align-items: center;
        gap: 1.5rem;
    }
}
.negocio-callout-divider {
    display: none;
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,.15);
}
@media (min-width: 640px) {
    .negocio-callout-divider { display: block; }
}
.negocio-callout-label {
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.45);
}
.negocio-callout-value {
    margin-top: .125rem;
    font-size: 1rem;
    font-weight: 700;
}

/* Inline step cards (negocio flow) */
.step-card--inline {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}
.step-card--inline .step-number {
    position: static;
    flex-shrink: 0;
}
.step-icon--sm {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
}

/* Promo regalo */
.negocio-gift-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--color-brand-lime);
    color: var(--color-ink);
    flex-shrink: 0;
}
.negocio-gift-card {
    padding: 1.75rem;
    border-radius: 1.5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: border-color .2s ease, background .2s ease;
}
.negocio-gift-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(163,230,53,.25);
}
.negocio-gift-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .875rem;
    background: rgba(163,230,53,.15);
    color: var(--color-brand-lime);
}

/* Plan checklist */
.negocio-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--color-ink);
}

/* =============================================================
   STEPS
   ============================================================= */
.step-card {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 1.75rem;
    background: #fff;
    border: 1px solid rgba(16,185,129,.12);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16,185,129,.3);
    box-shadow: 0 16px 40px -8px rgba(16,185,129,.18);
}
.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d1fae5;
    letter-spacing: -.02em;
}
.step-icon {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    box-shadow: 0 12px 32px -8px rgba(16,185,129,.45);
}
.step-title {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    font-weight: 800;
}
.step-desc {
    margin-top: .5rem;
    color: #52525b;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .steps-row { position: relative; }
    .steps-row::before {
        content: '';
        position: absolute;
        top: 6.25rem;
        left: 16%;
        right: 16%;
        height: 2px;
        background: linear-gradient(90deg, #d1fae5 0%, #10b981 50%, #d1fae5 100%);
        z-index: 0;
    }
}

/* =============================================================
   ROI CALCULATOR
   ============================================================= */
.roi-card {
    padding: 2rem;
    border-radius: 2rem;
    background: #fff;
    border: 1px solid #f4f4f5;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.1);
}
@media (min-width: 768px) {
    .roi-card { padding: 3rem; }
}

.roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #10B981 var(--val, 13%), #f4f4f5 var(--val, 13%));
    outline: none;
}
.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #fff;
    border: 4px solid #10B981;
    box-shadow: 0 4px 12px rgba(16,185,129,.35);
    cursor: pointer;
}
.roi-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #fff;
    border: 4px solid #10B981;
    box-shadow: 0 4px 12px rgba(16,185,129,.35);
    cursor: pointer;
}

.roi-platform {
    flex: 1;
    padding: .75rem 1rem;
    border-radius: 1rem;
    border: 1.5px solid #e4e4e7;
    background: #fff;
    font-size: .8125rem;
    font-weight: 700;
    color: #71717a;
    transition: all .2s ease;
}
.roi-platform.is-active {
    border-color: var(--color-ink);
    background: var(--color-ink);
    color: #fff;
}

.roi-result {
    padding: 2rem;
    border-radius: 1.75rem;
    background: linear-gradient(140deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    box-shadow: 0 24px 48px -12px rgba(220,38,38,.35);
}

/* =============================================================
   BENTO
   ============================================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }
}

.bento-large, .bento-tall, .bento-small {
    border-radius: 1.75rem;
    padding: 1.75rem;
    transition: transform .25s ease, box-shadow .25s ease;
}
.bento-large:hover, .bento-tall:hover, .bento-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -12px rgba(0,0,0,.12);
}

.bento-large {
    grid-column: span 2;
    background: #fff;
    border: 1px solid #f4f4f5;
    display: flex;
    flex-direction: column;
}
.bento-tall {
    grid-column: span 2;
    background: #fff;
    border: 1px solid #f4f4f5;
    display: flex;
    flex-direction: column;
}
.bento-small {
    background: #fff;
    border: 1px solid #f4f4f5;
}

@media (min-width: 768px) {
    .bento-large { grid-column: span 2; grid-row: span 2; }
    .bento-tall  { grid-column: span 2; grid-row: span 2; }
    .bento-small { grid-column: span 1; grid-row: span 1; }
}

.bento-dark {
    background: linear-gradient(140deg, #18181b 0%, #0a0a0a 100%);
    color: #fff;
    border: 1px solid #27272a;
}
.bento-mp {
    background: linear-gradient(140deg, #00b1ea 0%, #0073b2 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
}

.bento-order-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.bento-order-dot {
    width: .625rem;
    height: .625rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.mp-chip {
    display: inline-flex;
    align-items: center;
    padding: .375rem .75rem;
    border-radius: .625rem;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.bento-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .875rem;
    color: #fff;
}
.bento-icon-brand   { background: linear-gradient(135deg, #10B981, #059669); }
.bento-icon-emerald { background: linear-gradient(135deg, #84cc16, #059669); }
.bento-icon-amber   { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bento-icon-violet  { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bento-icon-blue    { background: linear-gradient(135deg, #3b82f6, #2563eb); }

/* =============================================================
   COMPARISON TABLE
   ============================================================= */
.comparison-wrap {
    overflow-x: auto;
    border-radius: 1.75rem;
    border: 1px solid #f4f4f5;
    background: #fff;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th,
.comparison-table td {
    padding: 1.125rem 1.5rem;
    text-align: left;
}
.comparison-table thead th {
    padding: 1.5rem;
    background: #fafafa;
    border-bottom: 1px solid #f4f4f5;
}
.comparison-table tbody tr {
    border-bottom: 1px solid #f4f4f5;
}
.comparison-table tbody tr:last-child {
    border-bottom: none;
}
.comparison-col-them {
    background: #fafafa;
    width: 30%;
    color: #52525b;
}
.comparison-table tbody td:first-child {
    color: #3f3f46;
    font-weight: 600;
}
.comparison-table thead .comparison-col-them .text-zinc-500,
.comparison-table thead .comparison-col-them .text-zinc-400 {
    color: #71717a;
}
.comparison-col-us {
    background: linear-gradient(180deg, #18181b 0%, #0a0a0a 100%);
    color: #fff;
    width: 30%;
}
.comparison-table tbody .comparison-col-us {
    background: linear-gradient(180deg, rgba(24,24,27,.96), rgba(10,10,10,.96));
}

/* =============================================================
   BIZ CARDS
   ============================================================= */
.biz-scroll {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-left: max(env(safe-area-inset-left), 4px);
    padding-right: max(env(safe-area-inset-right), 4px);
}
.biz-card {
    width: 18rem;
    flex-shrink: 0;
    padding: 1.5rem;
    border-radius: 1.75rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    transition: all .25s ease;
    scroll-snap-align: start;
}
.biz-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.08);
    border-color: rgba(163,230,53,.3);
}
.biz-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.125rem;
    border: 1px solid rgba(255,255,255,.1);
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonial-card {
    padding: 1.75rem;
    border-radius: 1.75rem;
    background: #fff;
    border: 1px solid #f4f4f5;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(0,0,0,.1);
}
.testimonial-quote {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #3f3f46;
    flex: 1;
}
.testimonial-metric {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}
.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-size: .9375rem;
}

/* =============================================================
   PRICING
   ============================================================= */
.pricing-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 2px solid var(--color-brand);
    box-shadow: 0 32px 80px -24px rgba(16,185,129,.25);
}
.pricing-ribbon {
    background: linear-gradient(90deg, var(--color-ink), #27272a);
    color: var(--color-brand-lime);
    text-align: center;
    padding: .75rem 1rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.pricing-content {
    padding: 2.5rem 2rem;
}
@media (min-width: 640px) { .pricing-content { padding: 3rem; } }

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}
.pricing-strike {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4d4d8;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}
.pricing-amount {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}
.pricing-currency {
    font-size: .875rem;
    font-weight: 700;
    color: #71717a;
    line-height: 1.2;
}

.pricing-features {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .pricing-features { grid-template-columns: 1fr 1fr; }
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.pricing-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: .5rem;
    background: #ecfdf5;
    color: var(--color-brand);
    flex-shrink: 0;
}

.pricing-guarantee {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: .8125rem;
    line-height: 1.5;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.125rem;
    border-radius: 1.125rem;
    background: var(--color-ink);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 16px 40px -12px rgba(0,0,0,.4);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px -12px rgba(0,0,0,.5);
}

/* =============================================================
   FAQ PRO
   ============================================================= */
.faq-item-pro {
    border-radius: 1.25rem;
    border: 1px solid #f4f4f5;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item-pro:hover {
    border-color: #e4e4e7;
}
.faq-item-pro[open] {
    border-color: rgba(16,185,129,.25);
    box-shadow: 0 8px 24px -8px rgba(16,185,129,.1);
}
.faq-item-pro summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
}
.faq-item-pro summary::-webkit-details-marker { display: none; }

.faq-chevron-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #e4e4e7;
    border: 1px solid #d4d4d8;
    color: #52525b;
    transition: transform .25s ease, background .25s ease, color .25s ease;
    flex-shrink: 0;
}
.faq-item-pro[open] .faq-chevron-pro {
    background: var(--color-brand);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer-pro {
    padding: 0 1.5rem 1.25rem;
    color: #52525b;
    line-height: 1.6;
    font-size: .9375rem;
    animation: faqOpen .3s ease;
}
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   FINAL CTA
   ============================================================= */
.final-cta {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    padding: 4rem 2rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(163,230,53,.15), transparent 60%),
        linear-gradient(160deg, #18181b 0%, #0a0a0a 100%);
    border: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) {
    .final-cta { padding: 5rem 3rem; }
}

.final-cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(16,185,129,.2), transparent 60%);
    pointer-events: none;
}

.final-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: 1.125rem 2rem;
    border-radius: 1.125rem;
    background: var(--color-brand-lime);
    color: var(--color-ink);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 16px 48px -12px rgba(163,230,53,.5);
    transition: transform .2s ease, box-shadow .2s ease;
}
.final-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 56px -12px rgba(163,230,53,.6);
}

.final-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: 1.125rem 2rem;
    border-radius: 1.125rem;
    border: 1.5px solid rgba(255,255,255,.2);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: all .2s ease;
}
.final-cta-ghost:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.35);
}

/* =============================================================
   DIRECTORIO PREVIEW (landing)
   ============================================================= */
.landing-dir-preview {
    border-radius: 1.5rem;
    border: 1.5px solid #e4e4e7;
    background: #fff;
    box-shadow: 0 24px 60px -28px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.landing-dir-preview-head {
    display: flex;
    gap: .35rem;
    padding: .75rem;
    background: #f4f4f5;
    border-bottom: 1px solid #e4e4e7;
}

.landing-dir-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: .5rem .75rem;
    border-radius: .65rem;
    font-size: .75rem;
    font-weight: 800;
    color: #71717a;
}

.landing-dir-tab.is-active {
    background: #fff;
    color: #0a0a0a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.landing-dir-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 .3rem;
    border-radius: 99px;
    background: #d9f99d;
    color: #3f6212;
    font-size: .625rem;
    font-weight: 900;
}

.landing-dir-cards {
    padding: .85rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.landing-dir-promo {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem .85rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #ecfccb 0%, #d9f99d 100%);
    border: 1px solid #bef264;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease;
}

.landing-dir-promo:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(132, 204, 22, .25);
}

.landing-dir-promo-placeholder {
    background: linear-gradient(135deg, #f4f4f5 0%, #fafafa 100%);
    border-color: #e4e4e7;
}

.landing-dir-promo-disc {
    flex-shrink: 0;
    padding: .35rem .55rem;
    border-radius: .55rem;
    background: rgba(255, 255, 255, .75);
    font-size: .8125rem;
    font-weight: 900;
    color: #365314;
    border: 1px dashed #84cc16;
}

.landing-dir-preview-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: .75rem 1rem;
    border-top: 1px solid #f4f4f5;
    font-size: .6875rem;
    font-weight: 700;
    color: #71717a;
    text-align: center;
}

/* =============================================================
   ACCESSIBILITY
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
    .landing-reveal,
    .float-card,
    .float-card-delay,
    .hero-badge-dot {
        animation: none !important;
        transition: none !important;
    }
}

/* =============================================================
   MODO CLARO FORZADO — landing / directorio (anti html.dark en iPhone)
   html.dark cambia --color-ink a #FAFAFA → texto blanco sobre fondos blancos
   ============================================================= */
html[data-force-light="1"],
body[data-force-light="1"] {
    --color-ink: #0A0A0A;
    color-scheme: light;
}

html.dark[data-force-light="1"],
html.dark body[data-force-light="1"] {
    --color-ink: #0A0A0A !important;
    background: #fafafa !important;
    color: #0a0a0a !important;
}
html.dark body[data-force-light="1"] .bg-cream,
html.dark body[data-force-light="1"] .bg-paper {
    background: #fafaf8 !important;
    color: #0a0a0a !important;
}
html.dark body[data-force-light="1"] .bg-white {
    background: #fff !important;
    color: #0a0a0a !important;
}
html.dark body[data-force-light="1"] .text-ink {
    color: #0a0a0a !important;
}
html.dark body[data-force-light="1"] .comparison-table tbody td:first-child {
    color: #3f3f46 !important;
}
html.dark body[data-force-light="1"] .comparison-col-them {
    color: #52525b !important;
}
html.dark body[data-force-light="1"] .roi-card,
html.dark body[data-force-light="1"] .testimonial-card {
    background: #fff !important;
    color: #0a0a0a !important;
}
html.dark body[data-force-light="1"] .faq-answer-pro {
    color: #52525b !important;
}
html.dark body[data-force-light="1"] .faq-item-pro summary {
    color: #0a0a0a !important;
}
html.dark body[data-force-light="1"] .hero-dual-tab {
    color: #71717a !important;
}
html.dark body[data-force-light="1"] .hero-dual-tab.is-active {
    background: #0a0a0a !important;
    color: #fff !important;
}
html.dark body[data-force-light="1"] .negocio-hero-stat {
    background: #0a0a0a !important;
    color: #fff !important;
}
html.dark body[data-force-light="1"] .negocio-hero-stat-value,
html.dark body[data-force-light="1"] .negocio-hero-stat-label {
    color: rgba(255, 255, 255, 0.85) !important;
}
html.dark body[data-force-light="1"] .negocio-hero-stat-strike {
    color: rgba(255, 255, 255, 0.45) !important;
}
html.dark body[data-force-light="1"] .step-card,
html.dark body[data-force-light="1"] .pricing-card,
html.dark body[data-force-light="1"] .faq-item-pro {
    background: #fff !important;
    color: #0a0a0a !important;
}
