/* --- Main Styles - BEMORE21 --- */
:root {
    /* Paleta BEMORE21 - Nueva Guía de Colores */

    /* Colores Principales */
    --color-coral: #FF8073;
    --color-coral-hover: #E86B5E;
    --color-azul: #A8D8E6;
    --color-azul-hover: #8BC4D4;
    --color-coral-light: #FFE5E2;

    /* Fondos */
    --bg-calido: #FFF8F6;
    --bg-azul: #F0F8FA;
    --bg-white: #FFFFFF;

    /* Texto */
    --text-dark: #2D3436;
    --text-gray: #5D6D7E;

    /* Mapping para compatibilidad */
    --bg-void: #FFF8F6;
    --bg-surface: #FFFFFF;
    --bg-elevated: #FFFFFF;
    --bg-dark: #2D3436;

    --border-subtle: rgba(45, 52, 54, 0.1);
    --text-primary: #2D3436;
    --text-secondary: #5D6D7E;
    --text-muted: #5D6D7E;

    --accent: #FF8073;
    --accent-light: #FFE5E2;
    --accent-glow: rgba(255, 128, 115, 0.4);

    /* Sombras */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-coral: 0 4px 15px rgba(255, 128, 115, 0.4);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-full: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-calido);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-secundario);
}

::-webkit-scrollbar-thumb {
    background: #C4C4C4;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-principal);
}

/* Aurora Background */
.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.aurora-blob:nth-child(1) {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-light) 100%);
    top: -200px;
    left: 20%;
    animation-delay: 0s;
    opacity: 0.15;
}

.aurora-blob:nth-child(2) {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-azul) 0%, var(--bg-azul) 100%);
    top: 30%;
    right: -100px;
    animation-delay: -5s;
    opacity: 0.15;
}

.aurora-blob:nth-child(3) {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-coral-light) 0%, var(--color-azul) 100%);
    bottom: 10%;
    left: -100px;
    animation-delay: -10s;
    opacity: 0.1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* Grain */
.grain {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9998;
}

/* Grid - disabled */
.grid-overlay {
    display: none;
}

/* Header */
/* Promo Banner - Full Width Glass Style */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100%;
    max-width: none;
    background: var(--color-coral);
    border-bottom: 1px solid rgba(255, 128, 115, 0.3);
    box-shadow: var(--shadow-coral);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2000;
    border-radius: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-banner.visible {
    transform: translateY(0);
}

.promo-banner span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.promo-banner span::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

.promo-banner span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .promo-banner {
        padding: 15px 0;
        font-size: 15px;
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(0, 24, 41, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 20px;
    /* Mobile: Increased top padding to avoid banner overlap */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Mobile: Center logo */
}

@media (min-width: 768px) {
    .header-container {
        justify-content: space-between;
        /* Desktop: Spaced */
        padding: 70px 40px 20px;
        /* Desktop: Increased for larger banner */
    }
}

.logo {
    height: 56px;
    opacity: 1;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-cta {
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--color-coral);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 1;
    display: none;
    /* Mobile: Hidden */
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-block;
    }
}

.nav-cta:hover {
    transform: scale(1.05);
    background: var(--color-coral-hover);
    box-shadow: var(--shadow-coral);
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 24px 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 24px 80px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--color-azul);
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 6px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--accent-glow);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 20px var(--accent-glow);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 40px var(--accent-glow);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line-inner {
    display: block;
    transform: translateY(100%);
}

/* Title Lines */
.title-line {
    display: block;
}

.title-line.line-3 {
    margin-top: 10px;
}

.highlight-word {
    position: relative;
    display: inline-block;
    color: var(--color-coral);
    font-weight: 600;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-coral);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-word.changing::after {
    transform: scaleX(1);
}

.final-line {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

.hero-sub {
    font-size: clamp(16px, 3vw, 24px);
    color: var(--text-secondary);
    /* Dark gray for visibility on light background */
    max-width: 650px;
    margin: 0 auto 16px;
    /* Reduced space to video */
    line-height: 1.4;
}

.hero-sub .highlight-word {
    font-size: 1.1em;
    font-weight: 600;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn-primary {
    position: relative;
    padding: 16px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--color-coral);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-coral-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--text-primary);
}

.btn-secondary svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Hero Carousel */
.hero-carousel {
    width: 100%;
    margin-top: 36px;
    margin-bottom: 36px;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.carousel-track {
    display: flex;
    gap: 16px;
    width: fit-content;
    animation: carousel-scroll 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-slide {
    width: 260px;
    height: 170px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .carousel-slide {
        width: 380px;
        height: 250px;
        border-radius: 16px;
    }

    .carousel-track {
        gap: 20px;
    }
}

/* Infinite Marquee Animation */
@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 8px));
    }
}

/* Sections */
section {
    position: relative;
    padding: 80px 24px;
    z-index: 2;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}

/* Kit Section */
.kit-section {
    background: var(--bg-azul);
    padding: 60px 24px;
}

.kit-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.kit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: calc(50% - 10px);
}

@media (min-width: 600px) {
    .kit-item {
        width: auto;
    }
}

.kit-image {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kit-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    transition: filter 0.3s ease;
}

.kit-item:hover .kit-image img {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.kit-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .kit-image {
        width: 180px;
        height: 180px;
    }

    .kit-item span {
        font-size: 15px;
    }
}

.kit-extras {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px;
    background: white;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.kit-extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.kit-extra-item i {
    width: 32px;
    height: 32px;
    color: var(--color-coral);
    flex-shrink: 0;
}

.kit-extra-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kit-extra-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.kit-extra-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

/* Pain Section */
.pain-section {
    background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.03) 50%, transparent 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.pain-card {
    padding: 36px;
    background: rgba(42, 27, 24, 0.85);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.pain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(239, 68, 68, 0.1);
}

.pain-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.pain-icon svg {
    width: 28px;
    height: 28px;
    color: #f87171;
}

.pain-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.how-section {
    background: linear-gradient(180deg, transparent 0%, rgba(245, 158, 11, 0.03) 50%, transparent 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 40px;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: stretch;
    }
}

.comparison-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

/* Negative Card (Old Way) */
.comparison-card.negative {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.comparison-card.negative .comparison-header {
    border-bottom: 1px solid #ddd;
}

.comparison-card.negative .comparison-header h3 {
    color: #666;
}

.comparison-card.negative .comparison-icon {
    background: #e8e8e8;
    color: #888;
}

.comparison-card.negative .comparison-list li {
    color: #666;
}

/* Positive Card (BeMore21) */
.comparison-card.positive {
    position: relative;
    background: var(--bg-white);
    border: 2px solid var(--color-coral);
    box-shadow: var(--shadow-coral);
    transform: scale(1.02);
    z-index: 10;
}

.comparison-card.positive::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-coral);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-card.positive .comparison-header {
    border-bottom: 1px solid var(--color-coral-light);
}

.comparison-card.positive .comparison-icon {
    background: var(--color-coral-light);
    color: var(--color-coral);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
}

.comparison-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.comparison-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.comparison-card.positive .comparison-list li {
    color: var(--text-primary);
}

.comparison-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-card.negative .comparison-list li svg {
    color: #444;
}

.comparison-card.positive .comparison-list li svg {
    color: var(--accent);
}

/* Steps container */
.steps-section {
    padding-bottom: 60px;
}

.steps-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 10px;
    flex: 1;
    /* Make steps equal width */
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    /* Smaller number circle */
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    margin-bottom: 8px;
    /* Compact spacing */
    color: var(--text-muted);
    font-size: 14px;
}

.step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Steps Mini - Compact horizontal */
.steps-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
}

.step-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-emoji {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-coral);
}

.step-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.step-arrow {
    color: var(--color-azul);
    display: flex;
    align-items: center;
}

.step-arrow i {
    width: 20px;
    height: 20px;
}

@media (max-width: 500px) {
    .steps-mini {
        flex-direction: column;
        gap: 16px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card {
    padding: 48px;
    border-radius: 24px;
    opacity: 0;
    transform: translateY(40px);
}

.comparison-card.negative {
    background: rgba(0, 24, 41, 0.6);
    border: 1px solid var(--border-subtle);
}

.comparison-card.positive {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.comparison-card.positive::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.comparison-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.negative .comparison-icon {
    background: rgba(239, 68, 68, 0.15);
}

.negative .comparison-icon svg {
    color: #f87171;
    width: 26px;
    height: 26px;
}

.positive .comparison-icon {
    background: rgba(245, 158, 11, 0.2);
}

.positive .comparison-icon svg {
    color: var(--accent-light);
    width: 26px;
    height: 26px;
}

.comparison-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.negative .comparison-header h3 {
    color: var(--text-secondary);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
}

.negative .comparison-list li {
    color: var(--text-muted);
}

.comparison-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    width: 20px;
    height: 20px;
}

.negative .comparison-list li svg {
    color: var(--text-muted);
}

.positive .comparison-list li svg {
    color: var(--accent);
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    padding: 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .steps-container {
        gap: 40px;
    }

    .step h3 {
        font-size: 20px;
        margin-top: 8px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Features */
/* --- FEATURE OPTIONS CSS --- */

/* SHARED HEADER */
.option-header {
    text-align: center;
    margin: 80px 0 40px;
    padding: 20px;
    border-top: 1px solid var(--border-subtle);
}

.option-badge {
    background: var(--primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

/* OPTION A: BENTO GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media(min-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, minmax(280px, auto));
    }

    .bento-col-span-2 {
        grid-column: span 2;
    }

    .bento-row-span-2 {
        grid-row: span 2;
    }
}

.bento-card {
    background: linear-gradient(180deg, rgba(0, 24, 41, 0.9) 0%, rgba(0, 16, 28, 0.95) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.bento-card:hover {
    border-color: var(--accent-glow);
    transform: translateY(-4px);
}

.bento-content h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Clash Display';
}

.bento-content p {
    font-size: 14px;
    color: #888;
}

/* Micro-UI Elements */
.micro-ui {
    margin-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-chat-bubble {
    background: #222;
    border-radius: 12px;
    padding: 12px 16px;
    border-left: 3px solid var(--primary);
    color: #fff;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ui-payment-notif {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4ade80;
    font-weight: bold;
    font-family: monospace;
}

/* OPTION B: INTERACTIVE SHOWCASE */
.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media(min-width: 900px) {
    .showcase-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.showcase-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-item {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary);
}

.showcase-item h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.showcase-item p {
    color: #888;
    font-size: 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
}

.showcase-item.active p {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

.showcase-preview {
    flex: 1;
    position: sticky;
    top: 100px;
    height: 600px;
    background: #111;
    border-radius: 30px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-screen {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.phone-mock-content {
    background: #000;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
    border: 1px solid #222;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    position: absolute;
}

.phone-mock-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* OPTION C: VERTICAL STACK */
/* --- FEATURES (VERTICAL STACK) --- */

.stack-container {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    padding-bottom: 80px;
}

.stack-card {
    position: sticky;
    top: 120px;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 450px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .stack-card {
        top: 90px;
        /* Higher sticky position */
        padding: 24px 20px;
        /* Smaller padding */
        gap: 24px;
        min-height: auto;
        /* Let content dictate height */
        margin-bottom: 40px;
        border-radius: 20px;
    }

    .stack-number {
        font-size: 60px !important;
        top: -15px !important;
        left: -10px !important;
        opacity: 0.1;
    }

    .stack-content h3 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }

    .stack-content p {
        font-size: 14px !important;
        margin-bottom: 16px !important;
        line-height: 1.5 !important;
    }

    .stack-visual {
        min-height: 220px !important;
        /* Shorter visual area */
    }

    .chat-example {
        padding: 16px !important;
    }

    .chat-label {
        font-size: 8px !important;
        padding: 2px 6px !important;
        bottom: 8px !important;
        left: 8px !important;
        opacity: 0.6;
        border: none !important;
        background: rgba(0, 0, 0, 0.5) !important;
    }
}

@media (min-width: 900px) {
    .stack-card {
        flex-direction: row;
        align-items: center;
        padding: 60px;
    }
}

.stack-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.stack-number {
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
    font-family: 'Poppins', sans-serif;
}

.stack-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.stack-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 24px;
}

.stack-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.sf-item i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.stack-visual {
    flex: 1;
    background: var(--bg-azul);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
}

/* Chat Example (Real Answers) */
.chat-example {
    padding: 24px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: center;
    background: var(--bg-azul);
}

.chat-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    top: auto;
    right: auto;
}

.chat-message {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 90%;
    animation: fadeIn 0.5s ease forwards;
}

.chat-message.user {
    background: #222;
    color: #ddd;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-message.bot {
    background: var(--color-coral);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-status.rejected {
    align-self: center;
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 8px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.chat-payment {
    background: #fff;
    color: #000;
    padding: 16px;
    border-radius: 12px;
    margin-top: 8px;
    align-self: flex-end;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chat-payment span {
    font-size: 12px;
    color: #666;
}

.chat-payment strong {
    font-size: 20px;
}

.chat-payment button {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
}

.features-section {
    background: var(--bg-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.feature-card {
    padding: 24px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-soft);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--color-coral-light), transparent 60%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 36px;
        border-radius: 24px;
    }
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-coral);
    box-shadow: var(--shadow-coral);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-coral-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: var(--radius-sm);
        margin-bottom: 24px;
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-coral);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

@media (min-width: 768px) {
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .feature-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Testimonials */
.testimonials-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin-bottom: 100px;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.testimonials-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 400px;
    flex-shrink: 0;
    padding: 36px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-subtle);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    background: var(--bg-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    opacity: 0;
    transform: translateY(20px);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: var(--accent);
}

.faq-trigger svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-trigger svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    padding-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-item.active .faq-content {
    max-height: 300px;
}

/* CTA */
.cta-section {
    padding: 160px 24px;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    position: relative;
    padding: 60px 40px;
    background: var(--bg-white);
    border: 2px solid var(--color-coral);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    box-shadow: var(--shadow-coral);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, var(--color-coral-light) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.cta-card>* {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-card>p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: var(--bg-azul);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s ease;
}

.cta-form input::placeholder {
    color: var(--text-gray);
}

.cta-form input:focus {
    border-color: var(--color-coral);
    box-shadow: 0 0 0 4px rgba(255, 128, 115, 0.15);
}

.cta-form button {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--color-coral);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-form button:hover {
    transform: translateY(-2px);
    background: var(--color-coral-hover);
    box-shadow: var(--shadow-coral);
}

.cta-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    height: 26px;
}

.footer-brand span {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 36px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-legal {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.footer-legal p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Modal Wizard */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 52, 54, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 50px 30px 40px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-azul);
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-coral-light);
    color: var(--color-coral);
}

.modal-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.progress-dot {
    flex: 1;
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.progress-dot.active {
    background: var(--accent);
}

.progress-dot.completed {
    background: var(--accent);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wizard-step>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.wizard-input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-azul);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.wizard-input:focus {
    border-color: var(--color-coral);
    box-shadow: 0 0 0 4px rgba(255, 128, 115, 0.15);
}

.wizard-input::placeholder {
    color: var(--text-gray);
}

.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.wizard-option {
    padding: 14px 18px;
    background: var(--bg-azul);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.wizard-option:hover {
    border-color: var(--color-coral);
    background: var(--color-coral-light);
}

.wizard-option.selected {
    border-color: var(--color-coral);
    background: var(--color-coral-light);
}

.wizard-btn {
    width: 100%;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--color-coral);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-btn:hover {
    transform: translateY(-2px);
    background: var(--color-coral-hover);
    box-shadow: var(--shadow-coral);
}

.wizard-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.wizard-final {
    text-align: center;
}

.wizard-final .check-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-final .check-icon svg {
    width: 40px;
    height: 40px;
    color: #000;
}

.wizard-final h3 {
    margin-bottom: 16px;
}

.wizard-final>p {
    margin-bottom: 32px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #25D366;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* Integrations Section */
.integrations-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-void) 100%);
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.integrations-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.integrations-header {
    text-align: center;
    margin-bottom: 60px;
}

.integrations-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
}

.integrations-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .integrations-grid {
        gap: 20px;
        max-width: 700px;
    }
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    width: calc(33.333% - 10px);
    min-width: 90px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .integration-item {
        padding: 28px 20px;
        border-radius: var(--radius-md);
    }
}

.integration-item:hover {
    transform: translateY(-4px);
    border-color: var(--color-azul);
    background: var(--bg-azul);
    box-shadow: 0 10px 30px rgba(168, 216, 230, 0.3);
}

.integration-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .integration-item img {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
}

.integration-item:hover img {
    opacity: 1;
}

.integration-item span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .integration-item span {
        font-size: 13px;
    }
}

.integration-item:hover span {
    color: var(--text-primary);
}

.integrations-note {
    text-align: center;
    margin-top: 48px;
    opacity: 0;
    transform: translateY(20px);
}

.integrations-note p {
    font-size: 15px;
    color: var(--text-muted);
}

.integrations-note strong {
    color: var(--accent);
}

/* --- NUEVOS ESTILOS: PAIN SECTION (NOTIFICATIONS) --- */
.pain-layout {
    display: flex;
    flex-direction: column;
    /* Cambiado para móvil: primero móvil, luego texto */
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .pain-layout {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }
}

.pain-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.pain-visual::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulse-red 4s ease-in-out infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.phone-mockup {
    width: 320px;
    height: 620px;
    background: var(--bg-white);
    border: 10px solid var(--text-dark);
    border-radius: 48px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .phone-mockup {
        width: 280px;
        height: 560px;
        border-width: 8px;
    }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: var(--text-dark);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.phone-screen {
    height: 100%;
    background: url('https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?q=80&w=1000&auto=format&fit=crop') center/cover no-repeat;
    padding: 50px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* Overlay oscuro para legibilidad */
.phone-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

/* Efecto viñeta roja de estrés */
.phone-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 80px rgba(220, 38, 38, 0.2);
    pointer-events: none;
}

.notification-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 4px;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-origin: center top;
}

.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.notif-app {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
}

.notif-app img,
.notif-app svg {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.notif-time {
    font-size: 10px;
    color: var(--text-gray);
}

.notif-content strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.notif-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pain-explanation-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.pain-item {
    position: relative;
    padding-left: 32px;
}

.pain-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-subtle);
    transition: background 0.3s ease;
}

.pain-item:hover::before {
    background: #ef4444;
}

.pain-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pain-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-weight: 700;
}

.pain-item:hover .pain-tag {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.pain-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Chaos Tags */
.chaos-tags-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.chaos-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.chaos-tag:hover {
    transform: translateY(-2px);
    border-color: var(--color-coral);
    background: var(--color-coral-light);
}

.chaos-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-azul);
    border-radius: var(--radius-sm);
}

.chaos-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chaos-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.chaos-text span {
    font-size: 13px;
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* --- Verified User Additions --- */
/* Custom styles for BeMore21 Landing */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-calido);
}

::-webkit-scrollbar-thumb {
    background: var(--color-azul);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-coral);
}

/* Gradient text utility */
.gradient-text {
    color: var(--color-coral);
}

/* Glow effect for buttons */
.btn-glow {
    box-shadow: var(--shadow-coral);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 128, 115, 0.5);
    transform: translateY(-2px);
}

/* Video container aspect ratio */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Card hover effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
}

/* FAQ accordion */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    display: block;
}

/* Button disabled state */
button:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

/* Smooth section transitions */
section {
    position: relative;
}

/* Mobile menu improvements */
@media (max-width: 640px) {
    .btn-glow {
        box-shadow: none;
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-coral);
    outline-offset: 2px;
}

/* Sticky Wrapper */
.sticky-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 94%;
    max-width: 300px;
    background: var(--color-coral);
    border: none;
    border-radius: var(--radius-lg);
    padding: 12px 16px 14px;
    box-shadow: var(--shadow-coral);
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-wrapper.visible {
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.sticky-info {
    font-size: 10px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.95;
}

.sticky-btn {
    width: 100%;
    background: #fff;
    color: var(--color-coral);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile: Hide Top Banner, Show Full Bottom Sticky */
@media (max-width: 768px) {
    .promo-banner {
        display: none !important;
    }
}

/* Desktop: Show Top Banner, Sticky Button as Floating Orb */
@media (min-width: 769px) {
    .sticky-wrapper {
        left: auto;
        right: 24px;
        bottom: 24px;
        transform: translateX(0) translateY(150%);
        width: auto;
        background: none;
        backdrop-filter: none;
        border: none;
        padding: 0;
        box-shadow: none;
        align-items: flex-end;
    }

    .sticky-wrapper.visible {
        transform: translateX(0) translateY(0);
    }

    .sticky-info {
        display: none;
    }

    .sticky-btn {
        width: auto;
        padding: 14px 28px;
        font-size: 15px;
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-coral);
    }

    .sticky-btn:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 15px 30px rgba(255, 128, 115, 0.5);
    }
}

/* --- Mental Noise Cloud (Alternative Design) --- */
.mental-cloud-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 248, 246, 0) 70%);
    overflow: hidden;
    border-radius: 30px;
}

.mental-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    z-index: 1;
    pointer-events: none;
}

.silhouette-svg {
    width: 100%;
    height: 100%;
    filter: blur(8px);
    opacity: 0.8;
}

.pulse-center {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-coral);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.4;
    animation: mental-pulse 4s ease-in-out infinite;
}

@keyframes mental-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.5);
    }
}

.cloud-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 128, 115, 0.2);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    z-index: 2;
    animation: float-bubble 6s ease-in-out infinite;
    transform-origin: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cloud-bubble i {
    color: var(--color-coral);
    width: 18px;
    height: 18px;
}

.cloud-bubble:hover {
    transform: scale(1.1);
    z-index: 10;
    border-color: var(--color-coral);
    background: #fff;
    box-shadow: 0 10px 40px rgba(255, 128, 115, 0.2);
}

/* Positioning Bubbles */
.cloud-bubble.b1 {
    /* Top Left */
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-bubble.b2 {
    /* Top Right */
    top: 20%;
    right: 15%;
    animation-delay: -1s;
    border-color: rgba(168, 216, 230, 0.5);
}

.cloud-bubble.b2 i {
    color: var(--color-azul);
}

.cloud-bubble.b3 {
    /* Mid Left */
    top: 45%;
    left: 5%;
    animation-delay: -2s;
}

.cloud-bubble.b4 {
    /* Low Right */
    top: 55%;
    right: 10%;
    animation-delay: -3s;
}

.cloud-bubble.b5 {
    /* Top Center High */
    top: 8%;
    left: 45%;
    transform: translateX(-50%);
    animation-delay: -4s;
    background: rgba(255, 240, 240, 0.95);
    border: 1px solid var(--color-coral);
}

@keyframes float-bubble {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(2deg);
    }

    50% {
        transform: translate(-5px, 10px) rotate(-1deg);
    }

    75% {
        transform: translate(-10px, -5px) rotate(1deg);
    }
}

/* --- Neuro Storm 3D Visualization (Expanded) --- */
.pain-layout-storm {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    /* Removed grid */
}

@media (min-width: 900px) {
    .pain-layout-storm {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.neuro-storm-expanded {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* Larger max width */
    height: 600px;
    /* Taller */
    perspective: 1200px;
    margin: 0 auto;
}

.storm-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Core (User Silhouette) */
.storm-core {
    position: relative;
    width: 160px;
    /* Slightly larger core */
    height: 160px;
    z-index: 10;
    transform-style: preserve-3d;
    pointer-events: none;
}

.core-silhouette {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(168, 216, 230, 0.6));
    animation: core-float 6s ease-in-out infinite;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.core-silhouette svg {
    width: 100%;
    height: 100%;
    display: block;
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(168, 216, 230, 0.25) 0%, transparent 70%);
    opacity: 0.5;
    animation: pulse-ring 4s ease-out infinite;
    border-radius: 50%;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes core-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Orbiting Debris Container */
.storm-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
}

/* Glass Cards */
.storm-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: default;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.storm-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 128, 115, 0.4);
    box-shadow:
        0 8px 32px 0 rgba(255, 128, 115, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 100;
    /* Attempt to bring to front on hover */
}

.sc-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 128, 115, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-icon i {
    width: 18px;
    height: 18px;
    color: var(--color-coral);
}

.sc-content {
    flex: 1;
}

.sc-content strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.sc-content span {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Responsiveness for Storm */
@media (max-width: 768px) {
    .neuro-storm-container {
        height: 400px;
        perspective: 800px;
        margin-bottom: 40px;
    }

    .storm-core {
        width: 100px;
        height: 100px;
    }

    .storm-card {
        width: 180px;
        padding: 12px;
    }

    .sc-content span {
        font-size: 11px;
    }
}