/* FUDI Rewards Brand Colors */
:root {
    /* Primary Colors */
    --primary-deep: hsl(174, 100%, 15%);
    --primary-phthalo: hsl(174, 100%, 21%);
    --primary-teal: hsl(174, 100%, 27%);
    --primary-medium: hsl(174, 100%, 33%);
    --primary-bright: hsl(169, 68%, 49%);
    --primary-glow: hsl(169, 100%, 65%);

    /* Neutral Colors */
    --neutral-deep-navy: hsl(214, 60%, 10%);
    --neutral-navy: hsl(214, 49%, 21%);
    --neutral-slate: hsl(214, 42%, 29%);
    --neutral-gray: hsl(214, 28%, 63%);

    /* Accent Colors */
    --accent-amber: hsl(40, 96%, 61%);
    --accent-crimson: hsl(354, 77%, 56%);
    --accent-sky: hsl(204, 70%, 53%);
    --accent-gold: hsl(51, 100%, 50%);

    /* Theme Colors */
    --background: var(--neutral-deep-navy);
    --foreground: hsl(0, 0%, 100%);
    --card: var(--neutral-navy);
    --border: var(--neutral-slate);
    --muted-foreground: var(--neutral-gray);

    /* Effects */
    --shadow-glow: 0 0 40px hsla(169, 100%, 65%, 0.3);
    --shadow-card: 0 10px 40px hsla(214, 60%, 10%, 0.5);

    --radius: 0.75rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
}

.position-relative {
    position: relative;
}

/* Icons */
.icon-small {
    width: 1rem;
    height: 1rem;
}

.icon-medium {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-large {
    width: 2rem;
    height: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-phthalo) 0%, var(--primary-teal) 100%);
    color: var(--foreground);
    /* box-shadow: var(--shadow-glow); */
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid var(--primary-bright);
    color: var(--primary-bright);
}

.btn-outline-hero:hover {
    background: var(--primary-bright);
    color: var(--background);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--primary-bright);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neutral-deep-navy) 0%, var(--neutral-navy) 50%, var(--primary-deep) 100%);
}

.glow-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, hsla(169, 100%, 65%, 0.15), transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Navbar */
.navbar {
    position: relative;
    padding: 1.5rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: auto;
    max-height: 90px !important;
    height: 90px;
}

/* Hero Content */
.hero-content {
    position: relative;
    padding: 5rem 0 8rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(174, 100%, 21%, 0.1);
    border: 1px solid hsla(169, 68%, 49%, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    width: fit-content;
}

.launch-text {
    color: var(--primary-bright);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-bright);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Hero Chat */
.hero-glow {
    position: absolute;
    opacity: 0.2;
    filter: blur(6rem);
    inset: 0px;
    background: var(--primary-bright);
    border-radius: 50%;
}

.chat-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-date {
    text-align: center;
    font-size: 13px;
    color: #869299;
    margin: 20px 0 10px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.chat-date:first-child {
    margin-top: 0;
    animation-delay: 0s;
}

.chat-date:nth-of-type(2) {
    animation-delay: 2s;
}

.chat-bubble {
    max-width: 75%;
    padding: 8px 10px 10px 10px;
    border-radius: 8px;
    font-size: 14.5px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    animation: slideUp 0.4s ease forwards;
}

.bubble-sender {
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.9;
}

.fudi-bubble {
    background-color: #202C33;
    color: #E9EDEF;
    align-self: flex-start;
    border-radius: 0 8px 8px 8px;
}

.fudi-bubble .bubble-sender {
    color: #00D9A5;
}

.maria-bubble {
    background-color: #005C4B;
    color: #FFFFFF;
    align-self: flex-end;
    border-radius: 8px 0 8px 8px;
}

.maria-bubble .bubble-sender {
    color: #B2F5EA;
}

.bubble-content {
    color: inherit;
}

.chat-bubble:nth-child(2) {
    animation-delay: 0.3s;
}

.chat-bubble:nth-child(3) {
    animation-delay: 0.9s;
}

.chat-bubble:nth-child(5) {
    animation-delay: 2.3s;
}

.chat-bubble:nth-child(6) {
    animation-delay: 2.9s;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .chat-container {
        max-width: 100%;
        padding: 20px 15px;
    }

    .chat-bubble {
        font-size: 14px;
    }

    .bubble-sender {
        font-size: 12px;
    }
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fade-in-delay {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes float {

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

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

.fade-in {
    animation: fade-in 0.6s ease-out;
}

.fade-in-delay {
    animation: fade-in-delay 1s ease-out;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.valueprop-section {
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.valueprop-wrapper {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-section {
    background: var(--background);
}

.features-section {
    background: hsla(214, 49%, 21%, 0.5);
}

.use-cases-section {
    background: var(--background);
}

.stats-section {
    background: hsla(214, 49%, 21%, 0.5);
    padding: 4rem 2rem;
}

.waitlist-section {
    background: var(--neutral-navy);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.valueprop-section .section-header {
    margin: 4rem auto 4rem;
}

.valueprop-section .section-title {
    font-size: clamp(2rem, 4vw, 1.8rem);
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--muted-foreground);
}

/* Floating avatars */
.floating-avatars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: float 12s ease-in-out infinite;
}

/* Posicionamiento de avatares alrededor del texto */
.avatar-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.avatar-2 {
    top: 5%;
    left: 25%;
    animation-delay: 0.5s;
}

.avatar-3 {
    top: 15%;
    right: 20%;
    animation-delay: 1s;
}

.avatar-4 {
    top: 8%;
    right: 5%;
    animation-delay: 1.5s;
}

.avatar-5 {
    top: 45%;
    left: 2%;
    animation-delay: 2s;
}

.avatar-6 {
    top: 50%;
    right: 3%;
    animation-delay: 2.5s;
}

.avatar-7 {
    bottom: 15%;
    left: 8%;
    animation-delay: 3s;
}

.avatar-8 {
    bottom: 10%;
    left: 28%;
    animation-delay: 3.5s;
}

.avatar-9 {
    bottom: 10%;
    right: 25%;
    animation-delay: 4s;
}

.avatar-10 {
    bottom: 8%;
    right: 8%;
    animation-delay: 4.5s;
}

.avatar-11 {
    top: 35%;
    left: 12%;
    animation-delay: 5s;
}

.avatar-12 {
    top: 40%;
    right: 10%;
    animation-delay: 5.5s;
}

@keyframes float {

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

    25% {
        transform: translateY(-15px) translateX(5px);
    }

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

    75% {
        transform: translateY(-20px) translateX(3px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .avatar {
        width: 50px;
        height: 50px;
    }

    .valueprop-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .avatar {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .floating-avatars {
        opacity: 0.7;
    }

    .valueprop-wrapper {
        min-height: 350px;
    }

    /* Ajustar posiciones para móvil */
    .avatar-1 {
        top: 0%;

    }

    .avatar-2 {
        top: 2%;

    }

    .avatar-3 {
        top: -2%;

    }

    .avatar-4 {
        top: 4%;

    }

    .avatar-7 {
        bottom: 2%;
    }

    .avatar-8 {
        bottom: -3%;
    }

    .avatar-9 {
        bottom: -3%;
    }

    .avatar-10 {
        bottom: -5%;
    }

    .avatar-5,
    .avatar-6,
    .avatar-11,
    .avatar-12 {
        display: none;
    }
}


/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item {
    display: flex;
    gap: 1rem;
}

.comparison-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.negative-icon {
    background: hsla(354, 77%, 56%, 0.1);
}

.positive-icon {
    background: hsla(169, 68%, 49%, 0.1);
    color: var(--primary-bright);
}

.comparison-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.comparison-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.feature-card {
    position: relative;
}

.feature-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, hsla(169, 100%, 65%, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: var(--radius);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-content {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
    box-shadow: var(--shadow-card);
}

.feature-card:hover .feature-content {
    border-color: var(--primary-bright);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-phthalo) 0%, var(--primary-teal) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--muted-foreground);
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-bright);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

/* Tarjeta Visual */
.visual-card {
    padding: 2rem;
    min-height: 276px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-phthalo), var(--primary-teal));
    opacity: 0.1;
}

/* Programa de Puntos */
.points-visual {
    text-align: center;
    position: relative;
    z-index: 1;
}

.points-display {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-glow);
    text-shadow: 0 0 20px hsla(169, 100%, 65%, 0.5);
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.points-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
}

.progress-ring circle {
    fill: none;
    stroke: var(--primary-bright);
    stroke-width: 3;
    stroke-dasharray: 440;
    stroke-dashoffset: 110;
    opacity: 0.3;
    animation: progressRing 3s ease-in-out infinite;
}

/* Sellos Digitales */
.stamps-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.stamp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--neutral-navy);
}

.stamp.filled {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-bright));
    box-shadow: 0 0 20px hsla(169, 68%, 49%, 0.4);
    animation: stampFill 0.5s ease-out;
}

.stamp svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-bright);
    stroke-width: 2;
    fill: none;
}

.stamp.filled svg {
    stroke: white;
}

/* Niveles/Tiers */
.tiers-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tier-bronze {
    background: linear-gradient(90deg, hsla(30, 50%, 30%, 0.3), transparent);
    border-color: hsl(30, 50%, 40%);
}

.tier-silver {
    background: linear-gradient(90deg, hsla(0, 0%, 60%, 0.3), transparent);
    border-color: hsl(0, 0%, 70%);
}

.tier-gold {
    background: linear-gradient(90deg, hsla(51, 100%, 50%, 0.3), transparent);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px hsla(51, 100%, 50%, 0.2);
}

.tier-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.tier-bronze .tier-icon {
    background: hsl(30, 50%, 40%);
}

.tier-silver .tier-icon {
    background: hsl(0, 0%, 70%);
}

.tier-gold .tier-icon {
    background: var(--accent-gold);
    color: var(--neutral-deep-navy);
}

.tier-name {
    font-weight: 700;
    font-size: 1rem;
}

/* Contenido de la tarjeta */
.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.card-example {
    color: var(--primary-bright);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

.card-description {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animaciones */
@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes progressRing {

    0%,
    100% {
        stroke-dashoffset: 110;
    }

    50% {
        stroke-dashoffset: 0;
    }
}

@keyframes stampFill {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

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

/* Responsivo */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .programs-grid {
        gap: 2rem;
    }

    .points-display {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}


@media (max-width: 767px) {
    .mobile-scroll {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(280px, 85%);
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        padding: 0.5rem 1rem;
        margin: 0 -1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        align-items: stretch;
    }

    .mobile-scroll>* {
        scroll-snap-align: start;
        height: 100%;
    }

    .features-grid {
        max-width: none;
    }

    .feature-card {
        height: 100%;
    }

    .feature-content {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .feature-description {
        margin-top: auto;
    }
}

.stat-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-phthalo), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-bright);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.stat-card:hover::before {
    opacity: 0.1;
}

/* Visual Elements */
.stat-visual {
    width: 200px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

/* Frecuencia de Visita - Arrow Up Chart */
.frequency-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    height: 100%;
}

.chart-bar {
    width: 16px;
    background: linear-gradient(to top, var(--primary-teal), var(--primary-bright));
    border-radius: 4px 4px 0 0;
    transition: all 0.6s ease;
    position: relative;
}

.chart-bar:nth-child(1) {
    height: 40%;
    animation: growBar 1.5s ease-out 0.2s both;
}

.chart-bar:nth-child(2) {
    height: 55%;
    animation: growBar 1.5s ease-out 0.4s both;
}

.chart-bar:nth-child(3) {
    height: 70%;
    animation: growBar 1.5s ease-out 0.6s both;
}

.chart-bar:nth-child(4) {
    height: 85%;
    animation: growBar 1.5s ease-out 0.8s both;
}

.chart-bar:nth-child(5) {
    height: 100%;
    animation: growBar 1.5s ease-out 1s both;
    box-shadow: 0 0 20px hsla(169, 68%, 49%, 0.6);
}

.stat-card:hover .chart-bar {
    transform: scaleY(1.1);
}

/* Ticket Promedio - Money Stack */
.ticket-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.money-stack {
    position: relative;
    width: 80px;
    height: 100px;
}

.money-bill {
    position: absolute;
    width: 80px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
    border-radius: 6px;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--neutral-deep-navy);
    box-shadow: 0 4px 12px hsla(40, 96%, 61%, 0.3);
}

.money-bill:nth-child(1) {
    bottom: 0;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.money-bill:nth-child(2) {
    bottom: 20px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.money-bill:nth-child(3) {
    bottom: 40px;
    animation: slideUp 0.8s ease-out 0.6s both;
    box-shadow: 0 8px 20px hsla(40, 96%, 61%, 0.5);
}

/* Clientes Registrados - People Icons */
.clients-visual {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.client-icon {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--neutral-slate), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.client-icon.active {
    opacity: 1;
    transform: scale(1);
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.client-icon.highlight {
    background: linear-gradient(135deg, var(--primary-bright), var(--primary-glow));
    box-shadow: 0 0 15px hsla(169, 68%, 49%, 0.6);
}

/* ROI - Multiplier Effect */
.roi-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roi-arrows {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roi-input {
    width: 50px;
    height: 50px;
    background: var(--neutral-slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--muted-foreground);
}

.roi-arrow {
    font-size: 2rem;
    color: var(--primary-bright);
    animation: arrowPulse 2s ease-in-out infinite;
}

.roi-output {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 0 30px hsla(169, 68%, 49%, 0.6);
    animation: glow 2s ease-in-out infinite;
}

/* Stat Value and Label */
.stat-content {
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-bright), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Dashboard Preview */
.dashboard-preview {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dashboard-preview-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    max-width: 100%;
}

.dashboard-preview-wrapper:hover {
    border-color: var(--primary-bright);
    box-shadow: var(--shadow-glow), var(--shadow-card);
    transform: translateY(-8px);

}


/* Animations */
@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

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

@keyframes arrowPulse {

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

    50% {
        transform: scale(1.3);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 30px hsla(169, 68%, 49%, 0.6);
    }

    50% {
        box-shadow: 0 0 50px hsla(169, 68%, 49%, 0.9);
    }
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-visual {
        /* width: 100px; */
        height: 100px;
    }
}

/* Waitlist Section */
.waitlist-container {
    max-width: 42rem;
    margin: 0 auto;
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(40, 96%, 61%, 0.1);
    border: 1px solid hsla(40, 96%, 61%, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--accent-amber);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.waitlist-form-card {
    background: var(--neutral-slate);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
}

.form-input {
    padding: 0.75rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-bright);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-link {
    color: var(--primary-bright);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.iti {
    width: 100%;
}

/* Custom styles for intl-tel-input */
.iti__country-list {
    background-color: hsl(214, 49%, 21%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius);
}

.iti__country .iti__country-name {
    display: none;
}

.iti__dial-code {
    color: var(--muted-foreground);
}

.iti__country {
    padding: 10px;
    color: var(--foreground);
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: var(--neutral-slate);
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
    padding-left: 95px !important;
}

.error-message {
    color: var(--accent-crimson);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--neutral-navy);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-description {
    color: var(--muted-foreground);
    max-width: 28rem;
    margin-top: 1rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-bright);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-bright);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.toast-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-bright);
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-content {
        padding: 3rem 0 5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-stats {
        gap: 1rem;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
    }
}



/* Calculator Section */
.calculator-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-card);
}

.calculator-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--foreground);
}

.branch-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.branch-option {
    position: relative;
}

.branch-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.branch-option label {
    display: block;
    padding: 1rem 2rem;
    background: var(--neutral-slate);
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.branch-option input[type="radio"]:checked+label {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-bright));
    border-color: var(--primary-glow);
    /* box-shadow: 0 0 20px hsla(169, 68%, 49%, 0.4); */
    transform: translateY(-2px);
}

.branch-option label:hover {
    border-color: var(--primary-bright);
    transform: translateY(-2px);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-bright);
    /* box-shadow: var(--shadow-glow), var(--shadow-card); */
}

.pricing-card.featured {
    border-color: var(--primary-bright);
    /* box-shadow: var(--shadow-glow), var(--shadow-card); */
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    color: var(--neutral-deep-navy);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px hsla(40, 96%, 61%, 0.4);
}

.card-badge.premium {
    background: linear-gradient(135deg, var(--primary-bright), var(--primary-glow));
    color: var(--neutral-deep-navy);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-glow);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 400;
}

.total-price {
    font-size: 1.25rem;
    color: var(--primary-bright);
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: hsla(169, 68%, 49%, 0.1);
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.check-icon {
    color: var(--primary-bright);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cta-button {
    width: 100%;
}

.cta-button.secondary {
    background: var(--neutral-slate);
    color: var(--foreground);
    border: 2px solid var(--border);
}

.cta-button.secondary:hover {
    border-color: var(--primary-bright);
    background: var(--card);
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin-bottom: 4rem;
    padding: 1rem;
    background: hsla(169, 68%, 49%, 0.05);
    border-radius: 0.5rem;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-bright), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-bright);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-bright);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-bright);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .branch-options {
        gap: 0.5rem;
    }

    .branch-option label {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}