/* ================================================================
   BinkBe 2.0 — Main Stylesheet
   ================================================================ */

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background var(--dur-slow) var(--ease-out), color var(--dur-slow) var(--ease-out);
}

/* ── Smooth theme transition (class added via JS on toggle) ── */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
    transition: background-color 500ms ease-out,
        color 500ms ease-out,
        border-color 500ms ease-out,
        box-shadow 500ms ease-out,
        background 500ms ease-out,
        fill 500ms ease-out !important;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

ul,
ol {
    list-style: none;
}

input,
textarea {
    font-family: inherit;
}

/* ── Typography base ── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.container--narrow {
    max-width: 880px;
}

.container--wide {
    max-width: 1380px;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--sm {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.section--dark {
    background: var(--bg-dark-section);
}

/* ── Helpers ── */
.text-blue {
    color: var(--bb-blue);
}

.text-yellow {
    color: var(--bb-yellow);
}

.text-muted {
    color: var(--text-tertiary);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--dur-slow) var(--ease-out),
        transform var(--dur-slow) var(--ease-out);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal--left {
    transform: translateX(-32px);
}

.reveal--right {
    transform: translateX(32px);
}

.reveal--left.in,
.reveal--right.in {
    transform: translateX(0);
}

.d1 {
    transition-delay: 80ms;
}

.d2 {
    transition-delay: 160ms;
}

.d3 {
    transition-delay: 240ms;
}

.d4 {
    transition-delay: 320ms;
}

.d5 {
    transition-delay: 400ms;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.75rem 1.75rem;
    border-radius: var(--r-full);
    font-family: var(--font-display);
    font-weight: var(--fw-semi);
    font-size: var(--fs-sm);
    letter-spacing: 0.01em;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform var(--dur-fast) var(--ease-out),
        box-shadow var(--dur-fast),
        background var(--dur-fast),
        border-color var(--dur-fast),
        color var(--dur-fast);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(240, 245, 247, 0.12);
    opacity: 0;
    transition: opacity var(--dur-fast);
}

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

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn--primary {
    background: var(--bb-blue);
    color: #fff;
    box-shadow: 0 4px 20px rgba(97, 191, 247, 0.35);
}

.btn--primary:hover {
    background: var(--bb-blue-mid);
    box-shadow: var(--shadow-blue);
}

.btn--yellow {
    background: var(--bb-yellow);
    color: var(--text-on-yellow);
    font-weight: var(--fw-bold);
    box-shadow: 0 4px 20px rgba(255, 217, 12, 0.3);
}

.btn--yellow:hover {
    background: var(--bb-yellow-warm);
    box-shadow: var(--shadow-yellow);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-strong);
}

.btn--outline:hover {
    border-color: var(--bb-blue);
    color: var(--bb-blue);
}

.btn--outline::after {
    display: none;
}

.btn--ghost-white {
    background: rgba(240, 245, 247, 0.10);
    color: #fff;
    border: 1.5px solid rgba(240, 245, 247, 0.22);
    backdrop-filter: blur(8px);
}

.btn--ghost-white:hover {
    background: rgba(240, 245, 247, 0.18);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: var(--fs-body-lg);
    border-radius: var(--r-full);
}

.btn--icon-right::after {
    content: ' →';
    background: none;
    opacity: 1;
    position: static;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    height: 66px;
    display: flex;
    align-items: center;
    background: var(--bg-nav);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    transition: background var(--dur-mid), border-color var(--dur-mid), box-shadow var(--dur-mid);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

/* Nav links */
.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__links a {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    transition: color var(--dur-fast);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 100%;
    height: 1.5px;
    background: var(--bb-blue);
    transition: right var(--dur-mid) var(--ease-out);
}

.nav__links a:hover {
    color: var(--text-primary);
}

.nav__links a:hover::after {
    right: 0;
}

.nav__link-btn {
    font: inherit;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: color var(--dur-fast);
}

.nav__link-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 100%;
    height: 1.5px;
    background: var(--bb-blue);
    transition: right var(--dur-mid) var(--ease-out);
}

.nav__link-btn:hover {
    color: var(--text-primary);
}

.nav__link-btn:hover::after {
    right: 0;
}

/* Nav actions */
.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

/* Button needs relative positioning so absolute hidden icons don't escape */
.nav__theme {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: var(--r-full);
    background: var(--bg-surface-2);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* color inherits into SVG stroke via currentColor */
    color: var(--text-tertiary);
    transition: background var(--dur-fast), transform var(--dur-fast), color var(--dur-fast);
    overflow: hidden;
}

.nav__theme:hover {
    background: var(--bg-surface-3);
    transform: rotate(15deg);
    color: var(--text-primary);
}

/* ── Theme SVG icons ── */
.theme-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    /* Both icons overlap in the same cell; we show/hide with opacity + scale */
    transition:
        opacity 0.25s var(--ease-out),
        transform 0.30s var(--ease-spring),
        color 0.25s var(--ease-out);
}

/* ── LIGHT MODE: show moon (user will click to go dark), hide sun ── */
[data-theme="light"] .theme-icon--moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    /* Blue — readable against the light nav background */
    color: #61BFF7;
}

[data-theme="light"] .theme-icon--sun {
    opacity: 0;
    transform: scale(0.4) rotate(-60deg);
    position: absolute;
    pointer-events: none;
}

/* ── DARK MODE: show sun (user will click to go light), hide moon ── */
[data-theme="dark"] .theme-icon--sun {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    /* Yellow — warm, visible against the dark nav background */
    color: #FFD90C;
}

[data-theme="dark"] .theme-icon--moon {
    opacity: 0;
    transform: scale(0.4) rotate(60deg);
    position: absolute;
    pointer-events: none;
}

/* Hover: tint the visible icon slightly brighter */
[data-theme="light"] .nav__theme:hover .theme-icon--moon {
    color: var(--bb-blue-mid);
}

[data-theme="dark"] .nav__theme:hover .theme-icon--sun {
    color: #FFE066;
}

/* Hamburger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav__burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid);
}

.nav__burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-6) clamp(1.25rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
    z-index: calc(var(--z-nav) - 1);
}

.nav__mobile.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav__mobile a {
    font-size: 1.05rem;
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    transition: color var(--dur-fast);
}

.nav__mobile a:hover {
    color: var(--bb-blue);
}

.nav__mobile-btn {
    font: inherit;
    font-size: 1.05rem;
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    transition: color var(--dur-fast);
}

.nav__mobile-btn:hover {
    color: var(--bb-blue);
}

/* ================================================================
   LOGO SVG INLINE
   ================================================================ */
.logo-svg {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.logo-svg svg,
.logo-svg__img {
    height: 36px;
    width: auto;
    transition: transform var(--dur-mid) var(--ease-spring);
}

.logo-svg:hover svg,
.logo-svg:hover .logo-svg__img {
    transform: scale(1.04);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 66px;
    padding-bottom: 66px;
}

/* Dark gradient background */
.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--grad-dark);
}

[data-theme="light"] .hero__bg {
    background: linear-gradient(90deg, #141D73 0%, #16213B 100%);
}

/* Grid lines */
.hero__grid {
    display: none;
}

/* Animated orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    animation: orbAppear 2s var(--ease-out) forwards, orbFloat 10s ease-in-out infinite;
}

.hero__orb--1 {
    width: 700px;
    height: 700px;
    background: rgba(97, 191, 247, 0.18);
    top: -200px;
    right: -150px;
    animation-delay: 0.2s, 0.2s;
}

.hero__orb--2 {
    width: 450px;
    height: 450px;
    background: rgba(255, 217, 12, 0.12);
    bottom: -100px;
    left: -80px;
    animation-delay: 0.5s, 0.5s;
}

.hero__orb--3 {
    width: 320px;
    height: 320px;
    background: rgba(97, 191, 247, 0.12);
    top: 55%;
    left: 35%;
    animation-delay: 0.8s, 0.8s;
}

@keyframes orbAppear {
    to {
        opacity: 1;
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(15px, -25px) scale(1.04);
    }

    66% {
        transform: translate(-12px, 18px) scale(0.97);
    }
}

/* Hero layout */
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: center;
    padding: clamp(3rem, 6vh, 5rem) 0;
}

.hero__content {
    color: #fff;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: rgba(97, 191, 247, 0.15);
    border: 1px solid rgba(97, 191, 247, 0.30);
    border-radius: var(--r-full);
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(180, 220, 255, 0.9);
    margin-bottom: var(--sp-6);
    animation: fadeSlideDown 0.7s var(--ease-out) 0.3s both;
}

.hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bb-yellow);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 217, 12, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(255, 217, 12, 0);
        transform: scale(1.2);
    }
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: var(--fw-extrabold);
    color: #fff;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: var(--sp-4);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.4s both;
}

.hero__title-line2 {
    display: block;
    background: linear-gradient(90deg, var(--bb-yellow) 0%, #ffdd6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subline {
    font-size: var(--fs-body-lg);
    color: rgba(210, 230, 255, 0.70);
    line-height: 1.65;
    max-width: 500px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    margin-bottom: var(--sp-3);
    font-weight: var(--fw-light);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.55s both;
}

.hero__cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.7s both;
}

.hero__cta-group .btn--lg {
    flex: 1 1 0;
    justify-content: center;
}

.hero__trust {
    margin-top: var(--sp-3);
    margin-bottom: var(--sp-3);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    color: rgba(200, 220, 255, 0.45);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.06em;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.85s both;
}

.hero__trust-dots {
    display: flex;
    gap: 5px;
}

.hero__trust-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(240, 245, 247, 0.10);
    border: 1.5px solid rgba(240, 245, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

/* ── Hero Dashboard Visual ── */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeSlideUp 1s var(--ease-out) 0.5s both;
    margin-top: -4rem;
}

.dashboard-card {
    background: rgba(22, 33, 59, 0.85);
    border: 1px solid rgba(97, 191, 247, 0.22);
    border-radius: var(--r-2xl);
    padding: var(--sp-6);
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(24px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(97, 191, 247, 0.10);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bb-blue) 0%, var(--bb-yellow) 50%, var(--bb-blue) 100%);
    background-size: 200% 100%;
    animation: shimmerBar 3s linear infinite;
}

@keyframes shimmerBar {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-5);
}

.dashboard-header-title {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(180, 220, 255, 0.55);
}

.dashboard-live {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-2xs);
    color: #4ade80;
    font-weight: var(--fw-semi);
    letter-spacing: 0.08em;
}

.dashboard-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulseLive 1.5s ease-in-out infinite;
}

@keyframes pulseLive {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

/* KPI grid */
.dash-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
}

.dash-kpi {
    background: rgba(97, 191, 247, 0.06);
    border: 1px solid rgba(97, 191, 247, 0.12);
    border-radius: var(--r-lg);
    padding: var(--sp-4) var(--sp-3);
    text-align: center;
}

.dash-kpi__val {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: var(--fw-extrabold);
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.dash-kpi__val--yellow {
    color: var(--bb-yellow);
}

.dash-kpi__val--green {
    color: #4ade80;
}

.dash-kpi__label {
    font-size: var(--fs-2xs);
    color: rgba(180, 220, 255, 0.45);
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

/* Activity feed */
.dash-activity {
    overflow: hidden;
    height: 200px;
    position: relative;
    margin-bottom: var(--sp-5);
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.dash-activity__track {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    animation: feedScrollUp 22s linear infinite;
    will-change: transform;
}

.dash-activity__track .dash-row {
    animation: none;
    flex-shrink: 0;
}

@keyframes feedScrollUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.dash-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-3) var(--sp-3);
    background: rgba(240, 245, 247, 0.03);
    border-radius: var(--r-md);
    border: 1px solid rgba(240, 245, 247, 0.04);
    animation: slideInRow 0.5s var(--ease-out) both;
}

.dash-row:nth-child(1) {
    animation-delay: 0.1s;
}

.dash-row:nth-child(2) {
    animation-delay: 0.2s;
}

.dash-row:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInRow {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dash-row__left {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.dash-row__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bb-blue) 0%, var(--bb-blue-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: var(--fw-bold);
    color: #fff;
    flex-shrink: 0;
}

.dash-row__name {
    font-size: var(--fs-xs);
    color: rgba(220, 235, 255, 0.8);
    font-weight: var(--fw-medium);
}

.dash-row__sub {
    font-size: var(--fs-2xs);
    color: rgba(150, 185, 220, 0.45);
    margin-top: 1px;
}

.dash-match-badge {
    background: rgba(97, 191, 247, 0.15);
    border: 1px solid rgba(97, 191, 247, 0.25);
    border-radius: var(--r-full);
    padding: 3px 10px;
    font-size: var(--fs-2xs);
    color: var(--bb-blue);
    font-weight: var(--fw-bold);
    letter-spacing: 0.04em;
}

.dash-match-badge--high {
    background: rgba(74, 222, 128, 0.12);
    border-color: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.dash-match-badge--warn {
    background: rgba(255, 217, 12, 0.12);
    border-color: rgba(255, 217, 12, 0.22);
    color: var(--bb-yellow);
}

.dash-match-badge--low {
    background: rgba(107, 114, 128, 0.10);
    border-color: rgba(107, 114, 128, 0.18);
    color: #9CA3AF;
}

/* Progress bar */
.dash-progress-wrap {
    background: rgba(97, 191, 247, 0.06);
    border: 1px solid rgba(97, 191, 247, 0.12);
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-4);
}

.dash-progress-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--sp-2);
}

.dash-progress-label {
    font-size: var(--fs-2xs);
    color: rgba(180, 220, 255, 0.5);
    font-weight: var(--fw-medium);
}

.dash-progress-val {
    font-size: var(--fs-2xs);
    color: var(--bb-yellow);
    font-weight: var(--fw-bold);
}

.dash-progress-bar {
    height: 5px;
    background: rgba(240, 245, 247, 0.07);
    border-radius: 10px;
    overflow: hidden;
}

.dash-progress-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--bb-blue) 0%, var(--bb-yellow) 100%);
    width: 0;
    transition: width 2s var(--ease-out);
}

/* Floating ping indicator */
/* ── Badge flotante — solo visible en hover del pingüino ── */
.hero__ping {
    position: absolute;
    top: 25px;
    left: -135px;
    background: var(--bb-yellow);
    color: #071828;
    border-radius: 16px 16px 2px 16px;
    padding: 6px 14px;
    font-size: var(--fs-xs);
    font-weight: var(--fw-extrabold);
    white-space: nowrap;
    box-shadow: var(--shadow-yellow);
    pointer-events: none;

    /* Reposo: invisible, comprimido — mismo punto de partida que .penguin-bubble */
    opacity: 0;
    transform: scale(0.8) translateY(4px);
    /* Spring idéntico al de la burbuja */
    transition:
        opacity var(--dur-mid) var(--ease-spring),
        transform var(--dur-mid) var(--ease-spring);
}

/* Hover: aparece con rebote, luego flota */
.penguin-wrap:hover .hero__ping {
    opacity: 1;
    transform: scale(1) translateY(0);
    /* Float arranca después de que el spring de entrada termine */
    animation: floatPing 2.8s ease-in-out infinite;
    animation-delay: 0.28s;
}

@keyframes floatPing {

    0%,
    100% {
        transform: scale(1) translateY(0) rotate(-1deg);
    }

    50% {
        transform: scale(1) translateY(-7px) rotate(1deg);
    }
}

/* ── Fixed Bink Mascot (FAB) ── */
.bink-fab {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: var(--z-float);
    cursor: pointer;
}

.bink-fab__img {
    width: 85px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
    animation: binkFloat 3.5s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.bink-fab:hover .bink-fab__img {
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

@keyframes binkFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Mobile help button (hidden on desktop) */
.bink-fab__btn {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bb-blue);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: var(--fw-bold);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(97, 191, 247, 0.40);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bink-fab__btn:active {
    transform: scale(0.93);
}

/* Mobile: swap image for button — button always visible */
@media (max-width: 768px) {
    .bink-fab__img {
        display: none;
    }

    .bink-fab__btn {
        display: flex;
    }
}

/* ================================================================
   SCROLL INDICATOR
   ================================================================ */
.scroll-hint {
    position: absolute;
    bottom: var(--sp-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    color: rgba(240, 245, 247, 0.25);
    font-size: var(--fs-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeIn 1.5s 1.5s both;
}

.scroll-hint__mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid rgba(240, 245, 247, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.scroll-hint__wheel {
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: rgba(240, 245, 247, 0.4);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* ================================================================
   LOGOS / ALIADOS
   ================================================================ */
.logos-band {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
    padding: var(--sp-6) 0;
    overflow: hidden;
}

.logos-band__label {
    text-align: center;
    font-size: var(--fs-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--sp-5);
}

[data-theme="light"] .logos-band__label {
    color: var(--text-secondary);
    opacity: 0.4;
}

.logos-band__viewport {
    overflow: hidden;
}

.logos-band__track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: marquee 32s linear infinite;
    will-change: transform;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(var(--marquee-shift, -33.3333%));
    }
}

.logos-band__track--aliados {
    gap: 3.75rem;
}

.logos-band:hover .logos-band__track,
.impact-marquee:hover .impact-marquee__track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {

    .logos-band__track,
    .impact-marquee__track {
        animation: none;
    }
}

/* ── Impact Marquee (clon del top-page marquee) ── */
.impact-marquee {
    margin: var(--sp-10) calc(50% - 50vw) var(--sp-12);
    padding: var(--sp-5) 0;
    width: 100vw;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
    overflow: hidden;
}

.impact-marquee__viewport {
    overflow: hidden;
}

.impact-marquee__track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: marquee 32s linear infinite;
    will-change: transform;
}

.impact-marquee__chip {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    color: var(--text-muted);
    letter-spacing: -0.02em;
    white-space: nowrap;
    opacity: 0.4;
    flex-shrink: 0;
    transition: color var(--dur-mid) var(--ease-out),
        opacity var(--dur-mid) var(--ease-out);
}

.impact-marquee__chip:hover {
    color: var(--text-primary);
    opacity: 1;
    cursor: pointer;
}

[data-theme="light"] .impact-marquee__chip {
    color: var(--text-secondary);
    opacity: 0.4;
}

[data-theme="light"] .impact-marquee__chip:hover {
    color: var(--text-secondary);
    opacity: 0.85;
}

.logo-chip {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    color: var(--text-muted);
    letter-spacing: -0.02em;
    white-space: nowrap;
    opacity: 0.4;
    flex-shrink: 0;
    transition: color var(--dur-mid) var(--ease-out),
        opacity var(--dur-mid) var(--ease-out);
}

.logo-chip:not(.logo-chip--aliado):hover {
    color: var(--text-primary);
    opacity: 1;
    cursor: pointer;
}

/* ── Aliado logo chips ── */
.logo-chip--aliado {
    display: inline-flex;
    align-items: center;
    pointer-events: none;
    opacity: 1;
}

.logo-chip__icon {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    pointer-events: none;
    opacity: 0.55;
    transition: color var(--dur-mid) var(--ease-out),
        opacity var(--dur-mid) var(--ease-out);
    cursor: pointer;
}

.logo-chip__icon g,
.logo-chip__icon defs,
.logo-chip__icon use {
    pointer-events: none;
}

.logo-chip__icon path,
.logo-chip__icon text,
.logo-chip__icon tspan,
.logo-chip__icon circle,
.logo-chip__icon ellipse,
.logo-chip__icon rect,
.logo-chip__icon polygon,
.logo-chip__icon polyline,
.logo-chip__icon line {
    pointer-events: visiblePainted;
}

.logo-chip__icon.is-hovered {
    color: var(--text-primary);
    opacity: 1;
}

[data-theme="light"] .logo-chip:not(.logo-chip--aliado) {
    color: var(--text-secondary);
    opacity: 0.4;
}

[data-theme="light"] .logo-chip:not(.logo-chip--aliado):hover {
    color: var(--text-secondary);
    opacity: 0.85;
}

[data-theme="light"] .logo-chip__icon {
    color: var(--text-secondary);
    opacity: 0.4;
}

[data-theme="light"] .logo-chip__icon.is-hovered {
    color: var(--text-secondary);
    opacity: 0.85;
}

@media (max-width: 640px) {
    .logo-chip__icon {
        height: 32px;
    }
}

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.sec-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--sp-16);
}

.sec-header--left {
    text-align: left;
    margin-left: 0;
}

.sec-eyebrow {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bb-blue);
    margin-bottom: var(--sp-4);
}

.sec-title {
    font-size: var(--fs-h2);
    font-weight: var(--fw-extrabold);
    color: var(--text-primary);
    margin-bottom: var(--sp-5);
    letter-spacing: -0.035em;
}

.sec-sub {
    font-size: var(--fs-body-lg);
    color: var(--text-secondary);
    line-height: 1.75;
}

.sec-sub--light {
    color: rgba(200, 220, 255, 0.6);
}

/* ================================================================
   DATA IMPACT SECTION
   ================================================================ */
.impact {
    background: var(--bg-surface);
}

[data-theme="light"] .impact {
    background: #FFFFFF;
}

.impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-1);
    border-radius: var(--r-2xl);
    overflow: hidden;
    border: 1px solid var(--border-card);
    margin-bottom: var(--sp-12);
}

.impact-stat {
    padding: var(--sp-10) var(--sp-8);
    text-align: center;
    background: var(--bg-card);
    border-right: 1px solid var(--border-card);
    transition: background var(--dur-mid);
    position: relative;
    overflow: hidden;
}

.impact-stat:last-child {
    border-right: none;
}

.impact-stat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-slow) var(--ease-out);
}

.impact-stat:hover::before {
    transform: scaleX(1);
}

.impact-stat:hover {
    background: var(--bg-card-hover);
}

.impact-stat__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: var(--fw-extrabold);
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--bb-blue);
    margin-bottom: var(--sp-2);
}

.impact-stat__num--yellow {
    color: var(--bb-yellow);
}

.impact-stat__label {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    line-height: 1.45;
}

/* Mini bar chart */
.impact__chart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-2xl);
    padding: var(--sp-10);
}

.impact__chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
}

.chart-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.chart-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: var(--bb-blue);
    opacity: 0.2;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1s var(--ease-out), opacity 0.5s;
}

.chart-bar.animated {
    transform: scaleY(1);
    opacity: 1;
}

.chart-bar--yellow {
    background: var(--bb-yellow);
}

.chart-bar--accent {
    background: var(--bb-blue-mid);
}

.chart-bar-label {
    font-size: var(--fs-2xs);
    color: var(--text-muted);
    font-weight: var(--fw-medium);
}

.impact__chart-text .sec-title {
    font-size: var(--fs-h3);
    margin-bottom: var(--sp-4);
}

.impact__chart-text .sec-sub {
    font-size: var(--fs-body);
    margin-bottom: var(--sp-6);
}

/* ================================================================
   IA SECTION — Nodos animados
   ================================================================ */
.ia-section {
    background: var(--bg-dark-section);
    position: relative;
    overflow: hidden;
    padding-bottom: clamp(1.5rem, 3vw, 3rem);
}

.ia-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: auto;
}

.ia-section>.container {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.ia-section .sec-eyebrow {
    color: var(--bb-yellow);
}

.ia-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}

.ia-nodes {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
    pointer-events: auto;
}

/* SVG canvas for nodes */
.nodes-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ia-model-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-8);
}

.ia-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(97, 191, 247, 0.10);
    border: 1px solid rgba(97, 191, 247, 0.18);
    border-radius: var(--r-full);
    padding: 6px 14px;
    font-size: var(--fs-xs);
    color: rgba(200, 225, 255, 0.75);
    font-weight: var(--fw-medium);
}

.ia-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bb-blue);
}

.ia-pill-dot--yellow {
    background: var(--bb-yellow);
}

.ia-pill-dot--green {
    background: #4ade80;
}

/* Freemium vs Premium visual */
.freemium-viz {
    background: rgba(97, 191, 247, 0.06);
    border: 1px solid rgba(97, 191, 247, 0.14);
    border-radius: var(--r-xl);
    padding: var(--sp-6);
    margin-top: calc(var(--sp-6) + 1rem);
}

.freemium-viz__label {
    font-size: var(--fs-xs);
    color: rgba(180, 220, 255, 0.5);
    font-weight: var(--fw-semi);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-4);
}

.freemium-bar-wrap {
    display: flex;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: var(--sp-3);
}

.freemium-bar-free {
    background: rgba(97, 191, 247, 0.35);
    width: 59%;
    transition: width 1.2s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
}

.freemium-bar-premium {
    background: var(--bb-yellow);
    width: 41%;
    transition: width 1.2s var(--ease-out);
}

.freemium-legend {
    display: flex;
    gap: var(--sp-5);
    font-size: var(--fs-xs);
    color: rgba(180, 220, 255, 0.5);
}

.freemium-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fl-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.fl-dot--free {
    background: rgba(97, 191, 247, 0.5);
}

.fl-dot--premium {
    background: var(--bb-yellow);
}

/* ================================================================
   PARA ORGANIZADORES
   ================================================================ */
.bink-mode {
    background: var(--bg-surface-2);
}

/* Intro stateful (equal vertical rhythm start-of-section → switch) */
.bink-mode__intro {
    text-align: center;
    margin: 0 auto var(--sp-10);
    max-width: 720px;
}

.bink-mode__intro-text {
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin: 0;
}

/* Mode-aware org-card titles.
   Dark: blue en organizador, yellow en networker.
   Light: blue-deep en organizador, yellow-warm en networker. */
[data-theme="dark"] [data-mode-panel="organizador"] .org-card__title {
    color: var(--text-primary);
}

[data-theme="light"] [data-mode-panel="organizador"] .org-card__title {
    color: var(--text-primary);
}

[data-theme="dark"] [data-mode-panel="networker"] .org-card__title {
    color: var(--text-primary);
}

[data-theme="light"] [data-mode-panel="networker"] .org-card__title {
    color: var(--text-primary);
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
}

.org-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid), border-color var(--dur-mid);
    position: relative;
    overflow: hidden;
}

.org-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--card-after-bg);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-slow) var(--ease-out);
}

.org-card:hover::after {
    transform: scaleX(1.25);
}

.org-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.org-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: var(--sp-5);
    background: rgba(97, 191, 247, 0.10);
}

.org-card__icon--yellow {
    background: rgba(255, 217, 12, 0.10);
}

.org-card__icon--green {
    background: rgba(74, 222, 128, 0.08);
}

.org-card__icon--purple {
    background: rgba(160, 100, 220, 0.08);
}

.org-card__title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    margin-bottom: var(--sp-3);
    letter-spacing: -0.0250em;
}

.org-card__body {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Post-event banner */
.org-card--featured {
    grid-column: span 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-8);
    background: linear-gradient(90deg,
            color-mix(in srgb, var(--bb-blue), transparent 65%) 0%,
            color-mix(in srgb, var(--bb-yellow), transparent 65%) 100%);
    border: none;
    box-shadow: 0 4px 24px rgba(97, 191, 247, 0.25), 0 2px 8px rgba(255, 217, 12, 0.15);
}

.org-card--featured>div:first-child {
    flex: 1 1 280px;
}

.org-card--featured>div:last-child {
    flex: 0 1 auto;
    min-width: 220px;
}

.org-card--featured .org-card__body {
    color: var(--text-primary);
}

.org-featured__stat {
    display: flex;
    align-items: baseline;
    gap: var(--sp-2);
}

.org-featured__num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--fw-extrabold);
    color: var(--text-primary);
    letter-spacing: -0.05em;
    line-height: 1;
}

.org-featured__unit {
    font-size: var(--fs-h4);
    color: var(--text-primary);
    font-weight: var(--fw-medium);
}

.org-featured__note {
    font-size: var(--fs-sm);
    color: var(--text-primary);
    margin-top: var(--sp-3);
    line-height: 1.6;
}

[data-theme="dark"] .org-card--featured {
    background: linear-gradient(90deg, rgba(97, 191, 247, 0.15) 0%, rgba(255, 217, 12, 0.15) 100%);
    box-shadow: none;
}

/* ================================================================
   MODE SWITCHER (Networker / Organizador)
   ================================================================ */
.mode-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: var(--sp-10);
}

.mode-switcher__track {
    display: inline-flex;
    background: var(--bg-surface-2);
    border: 1.5px solid var(--border-card);
    border-radius: var(--r-full);
    padding: 4px;
    gap: 2px;
}

.mode-switcher__btn {
    padding: var(--sp-3) var(--sp-8);
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: all var(--dur-mid) var(--ease-out);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.mode-switcher__btn[data-mode="networker"].active {
    background: var(--bb-yellow);
    color: #071828;
    box-shadow: 0 4px 16px rgba(255, 217, 12, 0.40);
}

.mode-switcher__btn[data-mode="organizador"].active {
    background: var(--bb-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(97, 191, 247, 0.40);
}

/* Wrapper para animar la altura al cambiar de panel sin layout shift */
.mode-panels-wrap {
    position: relative;
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing {
    background: var(--bg-page);
    padding-top: clamp(2rem, 4vw, 3.5rem);
}

/* Albert Sans for entire pricing section */
.pricing,
.pricing-calc,
.pricing-mega-banner,
.event-packages,
.pkg-card,
.pricing-dialog {
    font-family: 'Albert Sans', 'Plus Jakarta Sans', sans-serif;
}

.pricing>.container {
    max-width: 1440px;
}

.pricing .sec-header {
    margin-bottom: var(--sp-8);
}

/* ── Billing toggle ── */
.pricing__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-12);
}

.pricing[data-mode="networker"] .pricing__toggle {
    display: flex;
}

.pricing__toggle-label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-tertiary);
    transition: color var(--dur-fast);
}

.pricing__toggle-label.active {
    color: var(--text-primary);
}

.pricing__toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--bg-surface-3);
    border-radius: var(--r-full);
    cursor: pointer;
    border: 1px solid var(--border-card);
    transition: background var(--dur-mid);
    flex-shrink: 0;
}

/* Annual prices hidden by default — toggle JS re-enables them */
.price-annual {
    display: none;
}

.pricing__toggle-switch.on {
    background: var(--bb-blue);
}

.pricing[data-mode="networker"] .pricing__toggle-switch.on {
    background: var(--bb-yellow);
    border-color: rgba(255, 217, 12, 0.45);
}

.pricing__toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--dur-mid) var(--ease-spring);
    box-shadow: var(--shadow-sm);
}

.pricing__toggle-switch.on .pricing__toggle-thumb {
    transform: translateX(24px);
}

.price-card__billing .price-card__annual-line.price-annual {
    display: block;
    font-size: 0.82em;
    line-height: 1.25;
    margin-bottom: 0.15rem;
}

/* ── B2B / B2C tabs ── */
.pricing__tabs {
    display: flex;
    justify-content: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-10);
}

.pricing__tab {
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--text-tertiary);
    border: 1.5px solid var(--border-card);
    background: transparent;
    cursor: pointer;
    transition: all var(--dur-mid) var(--ease-out);
}

.pricing__tab:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
}

.pricing__tab.active {
    background: var(--bb-blue);
    color: #fff;
    border-color: var(--bb-blue);
    box-shadow: var(--shadow-blue);
}

/* ── Grid ── */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    max-width: 1040px;
    margin: 0 auto;
    /* Extra top padding so the featured card and badges have breathing room */
    padding-top: var(--sp-6);
}

/* ── Organizador 5-plan grid ── */
.pricing__grid--5col {
    grid-template-columns: repeat(5, 1fr);
    max-width: none;
}

/* Cards inside 5-col grid: uniform sizing via flex column */
.pricing__grid--5col .price-card {
    display: flex;
    flex-direction: column;
    padding: var(--sp-8) var(--sp-5) var(--sp-6);
}

.pricing__grid--5col .price-card__features {
    flex: 1;
}

/* Neutralize featured card elevation so all cards are same height */
.pricing__grid--5col .price-card--featured {
    transform: none;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(97, 191, 247, 0.35);
}

.pricing__grid--5col .price-card--featured:hover {
    transform: translateY(-4px);
}

.pricing__grid--5col .price-card--featured.selected {
    transform: none;
}

/* Normalize price font size for narrower cards */
.pricing__grid--5col .price-card__price {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

/* Smaller desc min-height for narrower cards */
.pricing__grid--5col .price-card__desc {
    min-height: 4.5em;
}

/* ── Card base ── */
.price-card {
    background: var(--bg-card);
    border: 2px solid var(--border-card);
    border-radius: var(--r-2xl);
    /* Generous, consistent internal spacing */
    padding: var(--sp-10) var(--sp-8) var(--sp-8);
    position: relative;
    cursor: pointer;
    outline: none;
    transition:
        transform var(--dur-mid) var(--ease-out),
        box-shadow var(--dur-mid),
        border-color var(--dur-mid),
        background var(--dur-mid);
}

/* Hover lift — subtle, not dramatic */
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(97, 191, 247, 0.30);
}

/* ── Selected state (click) ── */
.price-card.selected {
    border-color: var(--bb-blue);
    background-image: linear-gradient(180deg, rgba(97, 191, 247, 0.07) 0%, transparent 50%);
    box-shadow: var(--shadow-blue), var(--shadow-lg);
    transform: translateY(-6px);
}

.price-card.selected:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue), var(--shadow-xl);
}

/* Selected indicator — small colored dot top-right */
.price-card__selected-ring {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bb-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity var(--dur-mid) var(--ease-spring), transform var(--dur-mid) var(--ease-spring);
    box-shadow: 0 0 0 3px rgba(97, 191, 247, 0.20);
    pointer-events: none;
}

.price-card__selected-ring::after {
    content: '✓';
    font-size: 0.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-card.selected .price-card__selected-ring {
    opacity: 1;
    transform: scale(1);
}

/* ── Networker mode: selected cards use --bb-yellow ── */
.pricing[data-mode="networker"] .price-card:hover {
    border-color: rgba(255, 217, 12, 0.30);
}

.pricing[data-mode="networker"] .price-card.selected {
    border-color: var(--bb-yellow);
    background-image: linear-gradient(180deg, rgba(255, 217, 12, 0.07) 0%, transparent 50%);
    box-shadow: var(--shadow-yellow), var(--shadow-lg);
}

.pricing[data-mode="networker"] .price-card.selected:hover {
    box-shadow: var(--shadow-yellow), var(--shadow-xl);
}

.pricing[data-mode="networker"] .price-card__badge {
    background: var(--bb-blue);
    color: #000;
}

.pricing[data-mode="networker"] .price-card__selected-ring {
    background: var(--bb-yellow);
    box-shadow: 0 0 0 3px rgba(255, 217, 12, 0.25);
}

.pricing[data-mode="networker"] .price-card__selected-ring::after {
    color: #071828;
}

.pricing[data-mode="networker"] .price-card--featured.selected {
    border-color: var(--bb-yellow);
    background-image: linear-gradient(180deg, rgba(255, 217, 12, 0.07) 0%, transparent 50%);
    box-shadow: var(--shadow-yellow), var(--shadow-xl), 0 0 0 1px rgba(255, 217, 12, 0.4);
}

/* Networker: featured (Premium) border/shadow por defecto → yellow-strong */
.pricing[data-mode="networker"] .price-card--featured {
    border-color: var(--bb-yellow);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(212, 176, 0, 0.35);
}

.pricing[data-mode="networker"] .price-card--featured:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(212, 176, 0, 0.55), var(--shadow-yellow);
}

/* Networker: ✓ iconos → yellow-strong */
.pricing[data-mode="networker"] [data-mode-panel="networker"] .pf-check {
    color: var(--bb-yellow-warm);
}

/* Networker: botones → yellow-deep, texto negro */
.pricing[data-mode="networker"] [data-mode-panel="networker"] .btn {
    background: var(--bb-yellow-warm);
    color: #000;
    box-shadow: 0 4px 20px rgba(166, 139, 8, 0.35);
}

.pricing[data-mode="networker"] [data-mode-panel="networker"] .btn:hover {
    background: var(--bb-yellow-strong);
    color: #000;
}

/* Networker Elite: fondo fijo ambos modos */
.pricing[data-mode="networker"] .price-card--elite-nw {
    background: #08111C;
}

/* Networker Elite: texto blanco en modo claro */
[data-theme="light"] .pricing[data-mode="networker"] .price-card--elite-nw .price-card__tier,
[data-theme="light"] .pricing[data-mode="networker"] .price-card--elite-nw .price-card__price,
[data-theme="light"] .pricing[data-mode="networker"] .price-card--elite-nw .price-card__price sub,
[data-theme="light"] .pricing[data-mode="networker"] .price-card--elite-nw .price-card__desc,
[data-theme="light"] .pricing[data-mode="networker"] .price-card--elite-nw .price-card__feature {
    color: #F0F5F7;
}

.pricing[data-mode="networker"] .price-card--elite-nw .btn {
    background: #ffffff;
    color: #000;
    box-shadow: none;
}

.pricing[data-mode="networker"] .price-card--elite-nw .btn:hover {
    background: #F0F5F7;
    color: #000;
}

/* ── Featured card (Más popular) ── */
.price-card--featured {
    border-color: var(--bb-blue);
    background-image: linear-gradient(180deg, rgba(97, 191, 247, 0.07) 0%, transparent 45%);
    /* Slightly elevated by default to stand out */
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(97, 191, 247, 0.35);
}

.price-card--featured:hover {
    transform: translateY(-14px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(97, 191, 247, 0.5), var(--shadow-blue);
}

.price-card--featured.selected {
    border-color: var(--bb-blue);
    background-image: linear-gradient(180deg, rgba(97, 191, 247, 0.10) 0%, transparent 50%);
    box-shadow: var(--shadow-blue), var(--shadow-xl), 0 0 0 1px rgba(97, 191, 247, 0.5);
    transform: translateY(-14px);
}

.price-card--featured .price-card__selected-ring {
    background: var(--bb-blue);
    box-shadow: 0 0 0 3px rgba(97, 191, 247, 0.25);
}

.price-card--featured .price-card__selected-ring::after {
    color: #fff;
}

/* ── "Más popular" badge ── */
.price-card__badge {
    position: absolute;
    /* Sits above the card top edge, centered */
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bb-yellow);
    color: #071828;
    font-size: var(--fs-2xs);
    font-weight: var(--fw-extrabold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: var(--r-full);
    white-space: nowrap;
    box-shadow: var(--shadow-yellow);
    /* Ensure it never overlaps surrounding cards */
    z-index: 1;
}

/* ── Inner content layout ── */
/* Tier label */
.price-card__tier {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: var(--sp-4);
    line-height: 1;
}

/* Price display */
.price-card__price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: var(--fw-extrabold);
    color: var(--text-primary);
    letter-spacing: -0.05em;
    margin-bottom: var(--sp-2);
    /* Flexbox lets us pin every piece to the bottom edge */
    display: flex;
    align-items: flex-end;
    gap: 0.04em;
    line-height: 1;
}

/* The large number sits naturally at the bottom via align-items:flex-end */
.price-card__price>span {
    line-height: 1;
}

/* $ sign — floats up to cap-height of the big number */
.price-card__price sup {
    font-size: 0.95rem;
    font-weight: var(--fw-semi);
    letter-spacing: 0;
    line-height: 1;
    /* Push it toward the top of the flex row */
    align-self: flex-start;
    /* Small optical nudge down so it doesn't sit at the very top */
    margin-top: 0.28em;
    vertical-align: baseline;
    /* override browser default */
}

/* /evento — baseline-aligned with the bottom of the big number */
.price-card__price sub {
    font-size: 0.78rem;
    color: var(--text-primary);
    font-weight: var(--fw-medium);
    letter-spacing: 0;
    line-height: 1;
    vertical-align: baseline;
    /* override browser default sub offset */
    /* Tiny nudge so descenders of /evento sit flush with number bottom */
    margin-bottom: 0.08em;
}

/* Billing note */
.price-card__billing {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 0;
    /* controlled by divider margin */
}

/* Divider */
.price-card__divider {
    height: 1px;
    background: var(--divider);
    margin: -0.5rem 0 var(--sp-4);
}

/* Short description */
.price-card__desc {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: var(--sp-4);
    min-height: 3.3em;
    /* keeps cards aligned across grid rows */
}

.price-card__line-title {
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    margin: -0.2rem 0 var(--sp-3);
}

.price-card__section-title {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    margin-bottom: var(--sp-2);
}

.price-card__section-icon {
    color: var(--bb-blue);
    font-size: 0.85rem;
    line-height: 1;
}

.price-card__divider--att {
    margin: 0 0 var(--sp-2);
}

.price-card__features--attendees {
    margin-bottom: var(--sp-4);
}

/* Feature list */
.price-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
}

.price-card__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Carousel: features ligeramente más compactos para reducir altura */
[data-mode-panel="organizador"] .pricing__carousel--3d .price-card__feature {
    font-size: 0.8125rem;
    line-height: 1.35;
    gap: var(--sp-2);
}

.price-card__feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
    /* optical alignment with text cap-height */
    font-style: normal;
    font-size: 0.9rem;
}

.pf-check {
    color: var(--bb-blue);
    font-weight: var(--fw-bold);
}

.pf-cross {
    color: var(--text-muted);
}

[data-theme="light"] .pricing .pf-cross {
    color: #7A8799;
}

[data-theme="light"] .pricing .price-card__feature span[style] {
    color: #7A8799 !important;
}

/* ── Blue CTA button ── */
.btn--blue {
    background: var(--bb-blue);
    color: var(--bb-white);
    font-weight: var(--fw-bold);
    box-shadow: 0 4px 20px rgba(97, 191, 247, 0.35);
}

.btn--blue:hover {
    background: var(--bb-blue-mid);
    box-shadow: var(--shadow-blue);
}

/* ================================================================
   PRICING CAROUSEL (Organizador)
   ================================================================ */
.pricing__carousel {
    position: relative;
    /* Break out of container to span full viewport width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-top: var(--sp-6);
    /* Compensate for track's extra bottom padding so no white gap appears */
    margin-bottom: -4rem;
}

.pricing__carousel-track {
    display: flex;
    justify-content: safe center;
    align-items: stretch;
    gap: var(--sp-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Top/side padding for breathing room, large bottom padding for shadow space */
    padding: var(--sp-10) clamp(2rem, 6vw, calc((100vw - 1440px) / 2 + 3rem)) 5rem;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

/* Carousel card base */
.price-card--carousel {
    flex: 0 0 280px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    padding: var(--sp-6) var(--sp-6) var(--sp-5);
    transition:
        transform var(--dur-mid) var(--ease-out),
        box-shadow var(--dur-mid),
        border-color var(--dur-mid),
        background var(--dur-mid);
}

/* Override featured card elevation in carousel */
.pricing__carousel-track .price-card--featured {
    transform: none;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(97, 191, 247, 0.35);
}

.pricing__carousel-track .price-card--featured:hover {
    transform: translateY(-4px);
}

.pricing__carousel-track .price-card--featured.selected {
    transform: none;
}

/* Smaller price font for carousel */
.price-card--carousel .price-card__price {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

/* Equal-height cards: consistent billing height for button alignment */
.price-card--carousel .price-card__billing {
    margin-bottom: var(--sp-3);
    min-height: 2em;
}

/* Expandable flex layout for button alignment */
.price-card--carousel .price-card__expandable {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.price-card--carousel .price-card__expandable .btn {
    margin-top: auto;
}

/* ═══════════════════════════════════════════════════════
   PRICING CAROUSEL 3D STACK — Organizador only (desktop)
   Scope: [data-mode-panel="organizador"] .pricing__carousel--3d
   No afecta el carrusel networker
═══════════════════════════════════════════════════════ */

[data-mode-panel="organizador"] .pricing__carousel--3d .pricing__carousel-track {
    display: block;
    position: relative;
    height: 600px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
}

/* Base: tarjetas ocultas detrás de la activa */
[data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel {
    position: absolute;
    left: 50%;
    top: var(--sp-6);
    width: 290px;
    transform: translateX(-50%) scale(0.75);
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    pointer-events: none;
    cursor: pointer;
    flex: none;
    scroll-snap-align: none;
    will-change: transform, opacity, filter;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0s 0.55s;
}

/* Tarjeta central — protagonista */
[data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="center"] {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    visibility: visible;
    z-index: 3;
    pointer-events: auto;
    cursor: default;
    filter: none;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(97, 191, 247, 0.2);
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0s 0s;
}

/* Tarjeta izquierda */
[data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="left"] {
    transform: translateX(calc(-50% - 255px)) scale(0.88);
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    filter: brightness(0.65);
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0s 0s;
}

/* Tarjeta derecha */
[data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="right"] {
    transform: translateX(calc(-50% + 255px)) scale(0.88);
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    filter: brightness(0.65);
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0s 0s;
}

[data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="left"]:hover,
[data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="right"]:hover {
    filter: brightness(0.85);
}

/* Modo claro: tarjetas laterales*/
[data-theme="light"] [data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="left"],
[data-theme="light"] [data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="right"] {
    filter: brightness(0.875);
}

[data-theme="light"] [data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="left"]:hover,
[data-theme="light"] [data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel[data-position="right"]:hover {
    filter: brightness(0.95);
}

.pricing__carousel--3d {
    position: relative;
}

.pricing__carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(97, 191, 247, 0.06);
    border: 1px solid rgba(97, 191, 247, 0.25);
    border-radius: var(--r-full);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--bb-blue);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--dur-mid) var(--ease-out),
        background var(--dur-mid) var(--ease-out),
        transform var(--dur-mid) var(--ease-out);
    user-select: none;
    -webkit-user-select: none;
}

.pricing__carousel-arrow:hover {
    opacity: 1;
    background: rgba(97, 191, 247, 0.12);
    transform: translateY(-50%) scale(1.08);
}

.pricing__carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.pricing__carousel-arrow--prev {
    left: clamp(1.5rem, 4vw, 6rem);
}

.pricing__carousel-arrow--next {
    right: clamp(1.5rem, 4vw, 6rem);
}

@media (max-width: 1023px) {
    [data-mode-panel="organizador"] .pricing__carousel--3d .pricing__carousel-track {
        display: flex;
        overflow-x: auto;
        height: auto;
        position: static;
        perspective: none;
        padding: var(--sp-10) clamp(2rem, 6vw, calc((100vw - 1440px) / 2 + 3rem)) 5rem;
        scroll-snap-type: x mandatory;
    }

    [data-mode-panel="organizador"] .pricing__carousel--3d .price-card--carousel {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        pointer-events: auto;
        flex: 0 0 280px;
        cursor: pointer;
        scroll-snap-align: center;
    }

    .pricing__carousel-arrow {
        display: none;
    }
}

/* ── Organizador 3D carousel: anular margin-bottom negativo global + padding simétrico ── */
@media (min-width: 1024px) {
    .pricing[data-mode="organizador"] .pricing__carousel--3d {
        margin-bottom: 0;
        /* Clearance so the banner renders below the tallest absolute card */
        padding-bottom: 90px;
    }

    .pricing[data-mode="organizador"] {
        padding-bottom: clamp(4rem, 8vw, 7rem);
    }
}

/* ── Expandable content (siempre visible, sin colapso) ── */
.price-card__expandable {
    max-height: none;
    overflow: visible;
}

.price-card__expandable .price-card__divider,
.price-card__expandable .price-card__desc,
.price-card__expandable .price-card__features,
.price-card__expandable .btn {
    opacity: 1;
    transform: none;
}

/* Expandable desc no min-height */
.price-card--carousel .price-card__desc {
    min-height: 0;
}

/* Features flex grow inside carousel */
.price-card--carousel .price-card__features {
    flex: 0;
}

/* ================================================================
   VIDEO SECTION
   ================================================================ */
.video-section {
    background: var(--bg-dark-section);
    overflow: hidden;
    padding-top: clamp(1.5rem, 3vw, 3rem);
    padding-bottom: clamp(5rem, 10vw, 9rem);
}

.video-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--sp-12);
    align-items: center;
    min-height: clamp(340px, 45vh, 520px);
}

.video-text {
    color: var(--bb-white);
}

.video-text .sec-eyebrow {
    color: var(--bb-yellow);
}

.video-text .sec-title {
    color: var(--bb-white);
}

.video-text .sec-sub {
    color: rgba(240, 245, 247, 0.72);
    font-size: var(--fs-body-lg);
    line-height: 1.75;
    margin-top: var(--sp-5);
}

/* Video player wrapper */
.video-player__wrapper {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(97, 191, 247, 0.15);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-player__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-player__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
    opacity: 1;
}

.video-player__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
}

.video-player__play-btn svg circle {
    transition: fill 0.3s ease;
}

.video-player__play-btn:hover svg circle {
    fill: rgba(97, 191, 247, 0.55);
}

.video-player__wrapper.playing .video-player__play-btn {
    opacity: 0;
    pointer-events: none;
}

/* Video controls bar */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem .75rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, .65));
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 3;
}

.video-player__wrapper.playing:hover .video-controls,
.video-player__wrapper.playing:focus-within .video-controls {
    opacity: 1;
}

.video-controls__left {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.video-controls__mute-btn,
.video-controls__fullscreen-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .85;
    transition: opacity .2s ease, transform .2s ease;
}

.video-controls__mute-btn:hover,
.video-controls__fullscreen-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Volume slider */
.video-controls__volume {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    background: rgba(240, 245, 247, .35);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: width .2s ease;
}

.video-controls__volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

.video-controls__volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

.video-controls__volume::-moz-range-track {
    background: rgba(240, 245, 247, .35);
    height: 4px;
    border-radius: 2px;
}

@media (max-width: 600px) {
    .video-controls {
        padding: .35rem .5rem;
    }

    .video-controls__volume {
        width: 55px;
    }

    .video-controls__mute-btn svg,
    .video-controls__fullscreen-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
    background: var(--bg-surface-2);
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sp-5);
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testi-card__stars {
    color: var(--bb-yellow);
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: var(--sp-5);
}

.testi-card__quote {
    font-size: var(--fs-body);
    color: var(--text-primary);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: var(--sp-6);
}

.testi-card__author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.testi-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testi-card__name {
    font-weight: var(--fw-semi);
    font-size: var(--fs-sm);
    color: var(--text-primary);
}

.testi-card__role {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: 2px;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq {
    background: var(--bg-page);
}

.faq__inner {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-card);
    border-radius: var(--r-2xl);
    overflow: hidden;
}

.faq__item {
    border-bottom: 1px solid var(--divider);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-6) var(--sp-8);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: var(--fs-body-lg);
    font-weight: var(--fw-medium);
    text-align: left;
    cursor: pointer;
    transition: background var(--dur-fast);
}

.faq__q:hover {
    background: var(--updated-bg-card-hover);
}

.faq__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    flex-shrink: 0;
    transition: background var(--dur-mid), color var(--dur-mid), transform var(--dur-mid) var(--ease-out);
}

.faq__item.open .faq__icon {
    transform: rotate(180deg);
    background: var(--bb-blue);
    color: #fff;
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-slow) var(--ease-out);
}

.faq__a-inner {
    padding: 0 var(--sp-8) var(--sp-6);
    font-size: var(--fs-body);
    color: var(--text-secondary);
    line-height: 1.75;
    background: var(--bg-card);
}

.faq__item.open .faq__a {
    max-height: 500px;
}

/* ================================================================
   CTA FINAL
   ================================================================ */
.cta-final {
    background: var(--bg-dark-section);
    padding: clamp(5rem, 10vw, 9rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-glow-blue);
    pointer-events: none;
}

.cta-final__inner {
    position: relative;
    z-index: 1;
}

.cta-final__title {
    font-size: var(--fs-h1);
    font-weight: var(--fw-extrabold);
    color: #fff;
    margin-bottom: var(--sp-5);
    letter-spacing: -0.04em;
}

.cta-final__sub {
    font-size: var(--fs-body-lg);
    color: rgba(200, 220, 255, 0.55);
    max-width: 520px;
    margin: 0 auto var(--sp-10);
}

.cta-final__actions {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-card);
    padding: clamp(3rem, 6vw, 5rem) 0 var(--sp-8);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.6fr;
    gap: var(--sp-10);
    margin-bottom: var(--sp-12);
}

.footer__brand-tag {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-top: var(--sp-4);
    margin-bottom: var(--sp-6);
    max-width: 260px;
}

.footer__socials {
    display: flex;
    gap: var(--sp-3);
}

.footer__social {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: var(--bg-surface-2);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
    transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}

.footer__social:hover {
    background: var(--bb-blue);
    color: #fff;
    border-color: var(--bb-blue);
    transform: translateY(-2px);
}

.footer__col-title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--text-primary);
    margin-bottom: var(--sp-5);
    letter-spacing: -0.01em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer__links a {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    transition: color var(--dur-fast);
}

.footer__links a:hover {
    color: var(--bb-blue);
}

/* Newsletter */
.footer__nl-title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--text-primary);
    margin-bottom: var(--sp-2);
}

.footer__nl-desc {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    margin-bottom: var(--sp-4);
    line-height: 1.55;
}

/* ── BinkBe App footer column ── */
.footer__app-row {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.footer__mascot {
    width: 56px;
    height: auto;
    border-radius: var(--r-lg);
    flex-shrink: 0;
}

.footer__app-row .footer__nl-desc {
    margin-bottom: 0;
}

.footer__nl-form {
    display: flex;
    gap: var(--sp-2);
}

.footer__nl-input {
    flex: 1;
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    border-radius: var(--r-full);
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-xs);
    font-family: var(--font-body);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--dur-fast);
}

.footer__nl-input:focus {
    border-color: var(--bb-blue);
}

.footer__nl-input::placeholder {
    color: var(--text-muted);
}

.footer__nl-btn {
    background: var(--bb-blue);
    color: #fff;
    border-radius: var(--r-full);
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    cursor: pointer;
    transition: background var(--dur-fast), transform var(--dur-fast);
}

.footer__nl-btn:hover {
    background: var(--bb-blue-mid);
    transform: translateY(-1px);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--sp-6);
    border-top: 1px solid var(--divider);
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.footer__copy {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: var(--sp-6);
}

.footer__legal a {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    transition: color var(--dur-fast);
}

.footer__legal a:hover {
    color: var(--text-primary);
}

/* ================================================================
   ANIMATIONS UTILS
   ================================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   RESPONSIVE – 5-col organizador grid
   ================================================================ */
/* Carousel responsive */
@media (max-width: 768px) {
    .price-card--carousel {
        flex: 0 0 260px;
    }

    .pricing__carousel-track {
        justify-content: flex-start;
        /* Side padding = half viewport - half card, so edge cards can center */
        padding: var(--sp-10) calc(50vw - 130px) 5rem;
    }
}

@media (max-width: 520px) {
    .price-card--carousel {
        flex: 0 0 250px;
    }

    .pricing__carousel-track {
        padding-left: calc(50vw - 125px);
        padding-right: calc(50vw - 125px);
    }
}

/* Video section responsive */
@media (max-width: 960px) {
    .video-section {
        padding-top: clamp(1rem, 2vw, 2rem);
        padding-bottom: clamp(4rem, 8vw, 7rem);
    }

    .video-inner {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
        text-align: center;
        min-height: auto;
    }

    .video-text {
        order: 2;
    }

    .video-player {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__newsletter {
        grid-column: 1 / -1;
    }

    .pricing__grid:not(.pricing__grid--5col) {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing__grid:not(.pricing__grid--5col) .price-card--featured {
        transform: none;
    }

    .pricing__grid:not(.pricing__grid--5col) .price-card--featured:hover {
        transform: translateY(-6px);
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 960px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--sp-10);
    }

    .hero__subline {
        margin: 0 auto var(--sp-5);
    }

    .hero__cta-group {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .ia-inner {
        grid-template-columns: 1fr;
    }

    .ia-nodes {
        max-width: 320px;
    }

    .impact__grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-stat:nth-child(2) {
        border-right: none;
    }

    .impact__chart {
        grid-template-columns: 1fr;
    }

    .org-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .mode-switcher__btn {
        padding: var(--sp-2) var(--sp-5);
        font-size: .75rem;
    }
}

@media (max-width: 768px) {

    .nav__links,
    .nav__actions .btn {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero__inner {
        padding: var(--sp-8) 0;
    }

    .org-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__newsletter {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .impact__grid {
        grid-template-columns: 1fr;
    }

    .impact-stat {
        border-right: none;
        border-bottom: 1px solid var(--border-card);
    }

    .impact-stat:last-child {
        border-bottom: none;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .dash-kpis {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__cta-group .btn {
        justify-content: center;
    }

    .hero__trust {
        margin-top: var(--sp-3);
        margin-bottom: var(--sp-3);
    }
}

/* ================================================================
   PRICING CALCULATOR (Organizador)
   ================================================================ */
.pricing-calc {
    background: var(--bg-surface-2);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .pricing-calc {
        padding: var(--sp-6);
    }
}

.pricing-calc__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
    flex-wrap: wrap;
}

.pricing-calc__question {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--text-primary);
}

.pricing-calc__detail-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--bb-blue);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity var(--dur-fast);
}

.pricing-calc__detail-btn:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Slider */
.pricing-calc__slider-wrap {
    margin-bottom: var(--sp-4);
}

.pricing-calc__range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--r-full);
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right,
            var(--track-color, var(--bb-blue)) var(--track-pct, 14%),
            var(--slider-track-empty) var(--track-pct, 14%));
    margin-bottom: var(--sp-2);
    display: block;
}

.pricing-calc__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bb-blue);
    border: 3px solid var(--bg-card);
    box-shadow: 0 2px 10px rgba(97, 191, 247, 0.42);
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease-out);
}

.pricing-calc__range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bb-blue);
    border: 3px solid var(--bg-card);
    box-shadow: 0 2px 10px rgba(97, 191, 247, 0.42);
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease-out);
}

.pricing-calc__range:hover::-webkit-slider-thumb,
.pricing-calc__range:focus::-webkit-slider-thumb {
    transform: scale(1.12);
}

.pricing-calc__range:hover::-moz-range-thumb,
.pricing-calc__range:focus::-moz-range-thumb {
    transform: scale(1.12);
}

.pricing-calc__labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    color: var(--text-tertiary);
    padding: 0 2px;
}

/* Result Banner */
.pricing-calc__banner {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-4);
    border-radius: var(--r-md);
    border-left: 4px solid var(--banner-color, var(--bb-blue));
    background: var(--banner-bg, rgba(97, 191, 247, 0.12));
    flex-wrap: wrap;
}

.pricing-calc__banner-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-calc__caption {
    font-size: 0.6875rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
}

.pricing-calc__big {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
}

.pricing-calc__sep {
    width: 1px;
    height: 40px;
    background: var(--divider);
    align-self: center;
    flex-shrink: 0;
}

.pricing-calc__pill {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: #fff;
    background: var(--bb-blue);
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-calc__pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}

/* Subtext */
.pricing-calc__subtext {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    margin-top: var(--sp-6);
    margin-bottom: var(--sp-6);
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-calc__contact {
    color: var(--bb-blue);
    font-weight: var(--fw-semi);
}

.pricing-calc__contact:hover {
    text-decoration: underline;
}

/* ================================================================
   BANNER MEGA-EVENTO (+10,000 asistentes)
   ================================================================ */
.pricing-mega-banner {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    align-items: flex-start;
    background: var(--bg-surface-2);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    padding: var(--sp-4);
    margin-top: var(--sp-6);
    margin-left: 1rem;
    margin-right: 1rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .pricing-mega-banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .pricing-mega-banner {
        margin-top: clamp(1.5rem, 3vw, 2.5rem);
    }
}



.pricing-mega-banner__text {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.pricing-mega-banner__title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
}

.pricing-mega-banner__features {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.pricing-mega-banner__cta {
    font-size: 0.75rem;
    font-weight: var(--fw-semi);
    color: var(--bb-blue);
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity var(--dur-fast);
}

.pricing-mega-banner__cta:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ================================================================
   PAQUETES DE EVENTOS
   ================================================================ */
.event-packages {
    max-width: 1024px;
    margin: 4rem auto 0;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.event-packages__header {
    text-align: center;
    margin-bottom: var(--sp-8);
}

.event-packages__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.event-packages__subtitle {
    font-size: 1rem;
    color: var(--text-tertiary);
}

/* Carousel wrap (mobile) */
.event-packages__carousel-wrap {
    position: relative;
}

.event-packages__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--sp-4);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--sp-2);
}

.event-packages__grid::-webkit-scrollbar {
    display: none;
}

/* Desktop: 3-column grid */
@media (min-width: 768px) {
    .event-packages__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        overflow: visible;
    }

    .event-packages__arrow {
        display: none !important;
    }

    .event-packages__dots {
        display: none !important;
    }
}

/* Arrows */
.event-packages__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-surface-3);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background var(--dur-fast), transform var(--dur-fast);
}

.event-packages__arrow:hover {
    background: var(--bg-card-hover);
    transform: translateY(-50%) scale(1.08);
}

.event-packages__arrow--prev {
    left: -18px;
}

.event-packages__arrow--next {
    right: -18px;
}

/* Dots */
.event-packages__dots {
    display: flex;
    justify-content: center;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
}

.event-packages__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-strong);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--dur-mid), transform var(--dur-mid);
}

.event-packages__dot.active {
    background: var(--bb-blue);
    transform: scale(1.3);
}

/* Package card */
.pkg-card {
    background: var(--bg-surface-2);
    border: 2px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    text-align: center;
    flex: 0 0 clamp(220px, 68vw, 260px);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    transition: transform var(--dur-mid) var(--ease-out),
        box-shadow var(--dur-mid),
        border-color var(--dur-mid);
}

@media (min-width: 768px) {
    .pkg-card {
        flex: none;
        scroll-snap-align: none;
    }
}

.pkg-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pkg-color, var(--bb-blue));
}

.pkg-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--pkg-icon-bg, rgba(97, 191, 247, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pkg-color, var(--bb-blue));
    flex-shrink: 0;
}

.pkg-card__label {
    font-size: 0.625rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
}

.pkg-card__title {
    font-size: 1rem;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.3;
}

.pkg-card__discount {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
    color: var(--pkg-color, var(--bb-blue));
    background: var(--pkg-icon-bg, rgba(97, 191, 247, 0.15));
    border-radius: var(--r-full);
    padding: 0.375rem 1rem;
}

.pkg-card__cta {
    width: 100%;
    padding: 0.625rem 0;
    border-radius: var(--r-md);
    font-size: 0.75rem;
    font-weight: var(--fw-semi);
    background: var(--bb-blue);
    color: #fff;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: filter var(--dur-fast);
    margin-top: auto;
}

.pkg-card__cta:hover {
    filter: brightness(1.1);
}

/* ================================================================
   DIALOG: PRICING DETALLADO
   ================================================================ */
.pricing-dialog {
    max-width: 780px;
    width: calc(100% - 2rem);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    background: var(--bg-surface-2);
    padding: 0;
    box-shadow: var(--shadow-xl);
    color: var(--text-primary);
}

.pricing-dialog[open] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    max-height: calc(100dvh - 2rem);
    overflow: auto;
}

.pricing-dialog::backdrop {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.pricing-dialog__inner {
    padding: var(--sp-6);
    position: relative;
}

.pricing-dialog__close {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-surface-3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: background var(--dur-fast);
}

.pricing-dialog__close:hover {
    background: var(--bg-card-hover);
}

.pricing-dialog__title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--sp-6);
    font-family: var(--font-display);
}

.pricing-dialog__table-wrap {
    overflow-x: auto;
    margin-bottom: var(--sp-4);
}

.pricing-dialog__table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
    white-space: nowrap;
}

.pricing-dialog__table th {
    text-align: left;
    padding: var(--sp-2) var(--sp-3);
    font-size: 0.6875rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    border-bottom: 1px solid var(--divider);
}

.pricing-dialog__table td {
    padding: var(--sp-3);
    border-bottom: 1px solid var(--divider);
}

.pricing-dialog__table tr:last-child td {
    border-bottom: none;
}

.pricing-dialog__table tr.active-plan td {
    background: rgba(97, 191, 247, 0.08);
    font-weight: var(--fw-semi);
}

.pricing-dialog__note {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    text-align: center;
    line-height: 1.6;
}

.pricing-dialog__note a {
    color: var(--bb-blue);
    font-weight: var(--fw-semi);
}

.contact-dialog {
    max-width: 1080px;
}

.contact-dialog__inner {
    padding: var(--sp-8);
}

.contact-dialog__hero {
    margin-bottom: var(--sp-6);
    max-width: 760px;
}

.contact-dialog__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.6875rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bb-blue);
    margin-bottom: var(--sp-3);
}

.contact-dialog__title {
    margin-bottom: var(--sp-3);
    max-width: 16ch;
}

.contact-dialog__lead {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--text-tertiary);
}

.contact-dialog__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: var(--sp-6);
    align-items: start;
}

.contact-dialog__panel {
    padding: var(--sp-5);
    border-radius: var(--r-xl);
    border: 1px solid var(--border-card);
    background:
        radial-gradient(circle at top left, rgba(97, 191, 247, 0.12), transparent 45%),
        linear-gradient(180deg, var(--bg-surface-2), var(--bg-surface-1));
}

.contact-dialog__highlights {
    display: grid;
    gap: var(--sp-4);
}

.contact-dialog__highlight {
    display: grid;
    gap: var(--sp-1);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--divider);
}

.contact-dialog__highlight:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-dialog__highlight strong {
    font-size: var(--fs-sm);
    color: var(--text-primary);
}

.contact-dialog__highlight span,
.contact-dialog__direct-copy {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    line-height: 1.65;
}

.contact-dialog__direct {
    margin-top: var(--sp-6);
    padding: var(--sp-4);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--divider);
}

.contact-dialog__direct-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: var(--sp-2);
}

.contact-dialog__direct-link {
    display: inline-block;
    font-size: var(--fs-h6);
    font-weight: var(--fw-semi);
    color: var(--bb-blue);
    margin-bottom: var(--sp-2);
}

.contact-form {
    display: grid;
    gap: var(--sp-4);
}

.contact-form__row {
    display: grid;
    gap: var(--sp-4);
}

.contact-form__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__field {
    display: grid;
    gap: var(--sp-2);
}

.contact-form__field span {
    font-size: 0.75rem;
    font-weight: var(--fw-semi);
    color: var(--text-secondary);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: 0.95rem 1rem;
    font-size: var(--fs-sm);
    font-family: var(--font-body);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}

.contact-form__field select {
    appearance: none;
}

.contact-form__field textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--text-muted);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: var(--bb-blue);
    box-shadow: 0 0 0 3px rgba(97, 191, 247, 0.12);
}

.contact-form__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    margin-top: var(--sp-1);
}

.contact-form__status {
    min-height: 1.5em;
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
}

.contact-form__status.is-error {
    color: #ff7d7d;
}

.contact-form__status.is-success {
    color: #74d39b;
}

.contact-form__submit {
    min-width: 180px;
    justify-content: center;
}

@media (max-width: 960px) {
    .contact-dialog__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .contact-dialog {
        width: calc(100% - 1rem);
    }

    .contact-dialog__inner {
        padding: var(--sp-6);
    }

    .contact-form__row--2 {
        grid-template-columns: 1fr;
    }

    .contact-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form__submit {
        width: 100%;
    }
}