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

:root {
    /* Budy Brand Colors */
    --primary-purple: #8452C7;
    --dark-background: #121212;
    --main-text: #FFFFFF;
    --secondary-text: #000000;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Typography */
    --font-primary: 'Quicksand', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--main-text);
    background-color: var(--dark-background);
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-text);
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--main-text);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: white;
    color: #121212;
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button.secondary {
    background: var(--dark-background);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cta-button.secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-purple);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Styles */
.logo-image {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
}

/* Mobile Logo Sizing */
@media (max-width: 768px) {
    .logo-image {
        height: 32px;
        max-width: 100px;
    }
    
    .footer-logo {
        height: 40px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 28px;
        max-width: 80px;
    }
    
    .footer-logo {
        height: 35px;
        max-width: 100px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-purple);
    font-size: 1.75rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--main-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--main-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--dark-background);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    color: var(--main-text);
}

.highlight {
    color: var(--primary-purple);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    color: var(--main-text);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--main-text);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    align-items: center;
}

.app-stores {
    display: flex;
    gap: var(--spacing-md);
}

.store-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: auto;
    max-width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-store-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.app-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-single {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

.hero-image-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    height: 350px;
}

.hero-image {
    position: absolute;
    width: 60%;
    max-width: 250px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 6px solid #FFFFFF;
    transition: all 0.3s ease;
}

.hero-image.primary {
    z-index: 3;
    transform: rotate(2deg) translateY(0px);
    animation: float 3s ease-in-out infinite;
}

.hero-image.secondary {
    z-index: 2;
    transform: rotate(-1deg) translateY(20px) translateX(-30px);
    opacity: 0.9;
    animation: float 3s ease-in-out infinite 0.5s;
}

.hero-image.tertiary {
    z-index: 1;
    transform: rotate(1deg) translateY(40px) translateX(30px);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--dark-background);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-background);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.session-card {
    background: var(--dark-background);
    border: 1px solid var(--primary-purple);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.session-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--main-text);
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.session-header h3 {
    font-size: 1rem;
    color: var(--main-text);
    margin: 0;
}

.time {
    font-size: 0.875rem;
    color: var(--primary-purple);
    background: rgba(132, 82, 199, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.session-card p {
    font-size: 0.875rem;
    color: var(--main-text);
    margin-bottom: var(--spacing-sm);
}

.session-controls {
    margin-bottom: var(--spacing-sm);
}

.volume-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
}

.volume-slider label {
    color: var(--main-text);
}

.slider-value {
    color: var(--primary-purple);
    font-weight: 600;
}

.session-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
}

.duration, .type {
    color: var(--main-text);
}

.session-button {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.session-button:hover {
    background: var(--main-text);
    color: var(--primary-purple);
    transform: translateY(-1px);
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-background);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--main-text);
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.problem-stat {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--dark-background);
    border: 1px solid var(--primary-purple);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.problem-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.problem-stat p {
    font-size: 1rem;
    color: var(--main-text);
    margin: 0;
}

.problem-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--main-text);
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-background);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--main-text);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--dark-background);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-purple);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--main-text);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--main-text);
}

.feature-card p {
    color: var(--main-text);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-background);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--dark-background);
    border: 1px solid var(--primary-purple);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--main-text);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.step-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--main-text);
}

.step-content p {
    color: var(--main-text);
    line-height: 1.6;
}

/* App Showcase Section */
.app-showcase {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-background);
}

.app-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.gallery-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--dark-background);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--main-text);
}

.gallery-image {
    width: 100%;
    max-width: 250px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--primary-purple);
    margin-bottom: var(--spacing-md);
}

.gallery-item h3 {
    color: var(--main-text);
    margin-bottom: var(--spacing-sm);
}

.gallery-item p {
    color: var(--main-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: var(--dark-background);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--main-text);
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--main-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

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

.author-info h4 {
    margin: 0;
    color: var(--main-text);
    font-size: 1rem;
}

.author-info span {
    color: var(--main-text);
    font-size: 0.875rem;
}

.rating {
    font-size: 1.25rem;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-background);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--dark-background);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-purple);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.premium {
    border-color: var(--primary-purple);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--main-text);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: var(--font-primary);
}

.price span {
    font-size: 1rem;
    color: var(--main-text);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    color: var(--main-text);
    border-bottom: 1px solid var(--primary-purple);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Final CTA Section */
.final-cta {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-purple);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

/* Step Metrics - COMMENTED OUT */
/*
.step-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.metric {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
*/

/* How It Works CTA */
.how-it-works-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-it-works-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.how-it-works-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-subtext {
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 0.5rem !important;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
    font-size: 1rem;
}

/* Professional Steps Carousel */
.steps-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    border: none;
    outline: none;
    box-shadow: none;
}

.steps-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 500px;
    /* box-shadow: var(--shadow-lg); */
}

/* Removed duplicate styles - now handled in Uniform Step Styling section */

/* External container - COMMENTED OUT */
/*
.step-slide .step {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-slide .step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}
*/

/* Uniform Step Styling */
.step-slide {
    display: none;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    max-width: 600px;
    margin: 0 auto;
}

.step-slide.active {
    display: block;
}

.step-slide .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.step-image {
    width: 100%;
    max-width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.step-slide .step:hover .step-image {
    transform: scale(1.05);
}



.step-slide p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

/* Step number styling to match brand */
.step-slide .step-number {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.step-slide .step:hover .step-number {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.carousel-btn:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.dot:hover {
    background: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

/* Carousel Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auto-rotation indicator - COMMENTED OUT */
/*
.steps-carousel-container::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
    z-index: 10;
}
*/

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-primary);
}

.trust-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Legal Pages */
.legal-page {
    padding-top: 100px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.legal-content h1 {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.legal-content h2 {
    color: var(--main-text);
    font-size: 1.5rem;
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.legal-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.legal-content ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.legal-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.last-updated {
    color: var(--main-text);
    font-style: italic;
    margin-bottom: var(--spacing-xl);
}

/* Footer */
.footer {
    background: var(--dark-background);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: var(--main-text);
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--main-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-purple);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--main-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    border-top: 1px solid var(--primary-purple);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: var(--main-text);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-background);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .app-stores {
        justify-content: center;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

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

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

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

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

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

    .pricing-card.premium {
        transform: none;
    }

    .trust-indicators {
        gap: var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-visual {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Mobile styles for hero images */
@media (max-width: 768px) {
    .hero-image-single {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-image {
        width: 60%;
        max-width: 200px;
        transform: rotate(1deg);
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 60%;
        max-width: 180px;
        transform: rotate(0deg);
    }
}

/* Focus states for accessibility */
.cta-button:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Loading states */
.cta-button:active {
    transform: scale(0.98);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-purple: #A855F7;
        --dark-background: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Enhanced Waitlist Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex !important;
}

/* Ensure modal content is centered */
.modal-content {
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: modalSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--main-text);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #8b5cf6 100%);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.modal-icon {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    animation: iconFloat 2s ease-in-out infinite;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.modal-body {
    padding: 1.5rem;
}


.waitlist-form {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--main-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #121212 !important;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(132, 82, 199, 0.1);
    transform: translateY(-1px);
}

.input-wrapper input::placeholder {
    color: #121212 !important;
}

/* Ensure waitlist modal input colors are properly set */
.modal .input-wrapper input {
    color: #121212 !important;
}

.modal .input-wrapper input::placeholder {
    color: #121212 !important;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #121212;
    transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
    color: var(--primary-purple);
}

.waitlist-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.waitlist-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(132, 82, 199, 0.4);
}

.waitlist-submit-btn:active {
    transform: translateY(0);
}

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

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    flex-shrink: 0;
}

.waitlist-footer {
    text-align: center;
    margin-top: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-text);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge svg {
    color: #10b981;
}

.waitlist-disclaimer {
    color: var(--secondary-text);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Success State */
.waitlist-success {
    text-align: center;
    padding: var(--spacing-xl);
}

.waitlist-success h3 {
    color: var(--primary-purple);
    margin-bottom: var(--spacing-md);
}

.waitlist-success p {
    color: var(--main-text);
    margin-bottom: var(--spacing-lg);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem auto;
        width: 95%;
        max-width: none;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: var(--spacing-lg);
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .benefit {
        padding: var(--spacing-xs) 0;
    }
    
    .benefit-icon {
        font-size: 1.25rem;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .how-it-works-cta h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile Carousel Styles */
    .steps-carousel-container {
        padding: 1rem 0;
    }
    
    .step-slide {
        padding: 1rem;
        max-width: 100%;
    }
    
    .step-slide .step {
        gap: 1rem;
    }
    
    .step-image {
        height: 150px;
        max-width: 250px;
    }
    
    .step-slide h3 {
        font-size: 1.25rem;
    }
    
    .step-slide p {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .carousel-navigation {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Enhanced Waitlist Animations */
@keyframes modalFadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

@keyframes modalSlideUp {
    from { 
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Mobile Modal */
@media (max-width: 768px) {
    .modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .btn-loading {
        gap: 0.4rem;
        font-size: 0.9rem;
    }
    
    .loading-spinner {
        width: 14px;
        height: 14px;
    }
    
    .waitlist-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-loading {
        gap: 0.5rem;
    }
    
    .loading-spinner {
        width: 16px;
        height: 16px;
    }
}
