/* ================================
   CSS RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    /* Colors - HTML Version Theme */
    --primary-blue: #2563EB;
    --primary-green: #10B981;
    --secondary-blue: #3B82F6;
    --secondary-green: #34D399;
    --trust-gold: #F59E0B;
    --success-green: #10B981;
    --success-light: #34D399;
    --warning-orange: #F59E0B;
    --text-dark: #1E293B;
    --text-medium: #475569;
    --text-muted: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-blue: #EFF6FF;
    --bg-accent: #EFF6FF;
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12), 0 5px 10px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.08);
    
    /* Gradients - HTML Version Theme */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    --gradient-success: linear-gradient(135deg, var(--success-green), var(--success-light));
    --gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 50%, rgba(16, 185, 129, 0.05) 100%);
    
    /* Typography */
    --font-primary: 'Hind', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-display: 'Baloo 2', 'Hind', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--primary-green); }
.text-success { color: var(--success-green); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-muted); }

.bg-primary { background: var(--gradient-primary); }
.bg-success { background: var(--gradient-success); }
.bg-light { background: var(--bg-light); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }

/* ================================
   HEADER STYLES
   ================================ */

/* Prevent animations on floating elements to fix page load issues */
.header,
.floating-call-widget,
.floating-call-btn {
    transform: none !important;
    animation: none !important;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    min-height: 70px;
    padding-top: 0.5rem;
    animation: none !important; /* Prevent sliding animation */
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.logo-image {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-right: var(--spacing-md);
}

.nav-toggle,
.nav-close {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-medium);
}

/* ================================
   BUTTON STYLES
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    padding: 6rem 0 4rem;
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-content {
    space-y: var(--spacing-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    max-width: 32rem;
}

/* Value Card */
/* Simplified Value Proposition */
.value-proposition {
    margin: var(--spacing-xl) 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.point-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.125rem;
    position: relative;
}

.point-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
}

.point-green {
    background: #DCFCE7;
    color: var(--success-green);
}

.point-blue {
    background: var(--bg-blue);
    color: var(--primary-blue);
}

.point-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.value-point span {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xs);
}

.trust-icon {
    width: 20px;
    height: 20px;
    stroke: var(--success-green);
    margin-bottom: var(--spacing-xs);
}

.trust-item span:not(.trust-icon) {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ================================
   PHONE MOCKUP - HTML VERSION EXACT COPY
   ================================ */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 
                inset 0 0 3px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
    padding: 20px;
    color: white;
    text-align: center;
}

.app-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.app-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.app-logo-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
}

.app-tagline {
    font-size: 12px;
    opacity: 0.9;
}

.app-balance {
    background: white;
    margin: 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.balance-label {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.balance-growth {
    color: var(--success-green);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.balance-growth svg {
    stroke: var(--success-green);
}

.balance-fund {
    color: var(--text-medium);
    font-size: 13px;
    margin-top: 6px;
}

.app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-md);
}

.stat-card {
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    text-align: center;
}

.stat-green {
    background: rgba(16, 185, 129, 0.1);
}

.stat-blue {
    background: rgba(59, 130, 246, 0.1);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

.stat-amount {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-green .stat-amount {
    color: var(--success-green);
}

.stat-blue .stat-amount {
    color: var(--primary-blue);
}

.app-goals {
    padding: 0 20px;
}

.goal-card {
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-light));
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.goal-info {
    flex: 1;
}

.goal-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 4px;
}

.goal-progress {
    width: 100%;
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.goal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-green), var(--success-light));
    border-radius: 3px;
    transition: width 1s ease;
}

.goal-amount {
    font-size: 12px;
    color: var(--text-medium);
}

.goal-sip {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 400;
    margin-top: 4px;
}

.goal-icon {
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue);
}

/* App Bottom Navigation */
.app-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-light);
    padding: 12px;
    display: flex;
    justify-content: space-around;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-medium);
}

.nav-item.active {
    color: var(--primary-blue);
}

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

.nav-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Money Flow Container */
.money-flow-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
    contain: layout;
}

/* Flowing Money Elements */
.flowing-money {
    position: absolute;
    padding: 0.7rem 1.1rem;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 2;
    transform-origin: center;
}

/* All money flows from right side to Total Savings section */
.flowing-money[data-amount="100"] {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    top: 15%;
    right: -100px;
    animation: flowToSavings 8s ease-out infinite;
    animation-delay: 0s;
}

.flowing-money[data-amount="5000"] {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    top: 18%;
    right: -100px;
    animation: flowToSavings 8s ease-out infinite;
    animation-delay: 2s;
}

.flowing-money[data-amount="100000"] {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    top: 21%;
    right: -100px;
    animation: flowToSavings 8s ease-out infinite;
    animation-delay: 4s;
}

@keyframes flowToSavings {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0.9);
    }
    8% {
        opacity: 1;
        transform: translateX(-50px) translateY(0) scale(1);
    }
    25% {
        transform: translateX(-120px) translateY(5px) scale(1);
    }
    45% {
        transform: translateX(-200px) translateY(8px) scale(0.95);
    }
    65% {
        opacity: 1;
        transform: translateX(-270px) translateY(10px) scale(0.8);
    }
    80% {
        opacity: 0.6;
        transform: translateX(-300px) translateY(15px) scale(0.5);
    }
    95% {
        opacity: 0.1;
        transform: translateX(-315px) translateY(20px) scale(0.2);
    }
    100% {
        opacity: 0;
        transform: translateX(-320px) translateY(25px) scale(0.1);
    }
}

/* Money Invested Indicator - appears below Total Savings card */
.money-invested-indicator {
    position: absolute;
    top: 42%; /* Position below Total Savings card */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.money-invested-indicator.show {
    animation: showInvestedFromDrop 2s ease-out;
}

@keyframes showInvestedFromDrop {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.5);
    }
    15% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1.1);
    }
    30% {
        transform: translateX(-50%) translateY(-2px) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(-50%) translateY(-2px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.8);
    }
}

.invested-text {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Collection Ripple Effect */
@keyframes rippleExpand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.8;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

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

/* Enhanced Animation System */

/* Subtle hover effects for interactive elements */
.btn, .nav-link, .social-link {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

/* Card hover improvements */
.result-card,
.additional-feature-card,
.faq-item,
.contact-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover,
.additional-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Smooth page transitions */
* {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus {
    outline: 2px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}

.nav-link:focus {
    outline: none;
}

.faq-question:focus {
    outline: none;
}

@keyframes float-side {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    33% { transform: translateX(-8px) translateY(-5px); }
    66% { transform: translateX(8px) translateY(-8px); }
}

@keyframes float-diagonal {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-12px) translateX(-6px) rotate(-3deg); }
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-8px) scale(1.05); }
    75% { transform: translateY(-4px) scale(0.95); }
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */
.how-it-works-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #ffffff 70%,
        #f0fdf4 100%
    );
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 400;
}

/* 2-column layout: Image left, Cards right */
.why-choose-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    min-height: auto;
}

/* Left: Sticky Image Container */
.features-image-sticky {
    flex: 0 0 40%;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.features-showcase-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* Right: Cards Container */
.features-cards-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 0;
    position: relative;
}

/* Feature Cards */
.feature-card {
    position: relative;
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    border-left-width: 12px;
    border-left-style: solid;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;

    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    opacity: 0.35;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-card:hover .step-number {
    opacity: 0.6;
    color: currentColor;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.icon-green {
    background: linear-gradient(135deg, var(--success-green), var(--success-light));
}

.icon-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.icon-orange {
    background: linear-gradient(135deg, var(--warning-orange), #EAB308);
}

/* Left Border Accent Colors & Background Tints */
.feature-card:nth-child(1) {
    border-left-color: var(--success-green);
    background: rgba(16, 185, 129, 0.06);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25), 0 5px 10px rgba(0, 0, 0, 0.05), -4px 0 12px rgba(16, 185, 129, 0.2);
}

.feature-card:nth-child(2) {
    border-left-color: var(--warning-orange);
    background: rgba(245, 158, 11, 0.06);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25), 0 5px 10px rgba(0, 0, 0, 0.05), -4px 0 12px rgba(245, 158, 11, 0.2);
}

.feature-card:nth-child(3) {
    border-left-color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25), 0 5px 10px rgba(0, 0, 0, 0.05), -4px 0 12px rgba(37, 99, 235, 0.2);
}

.feature-card:nth-child(4) {
    border-left-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.06);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25), 0 5px 10px rgba(0, 0, 0, 0.05), -4px 0 12px rgba(139, 92, 246, 0.2);
}

/* Step Number Colors */
.feature-card:nth-child(1) .step-number {
    color: var(--success-green);
}

.feature-card:nth-child(2) .step-number {
    color: var(--warning-orange);
}

.feature-card:nth-child(3) .step-number {
    color: var(--primary-blue);
}

.feature-card:nth-child(4) .step-number {
    color: #8B5CF6;
}

.feature-card:hover::before {
    opacity: 0.12;
}

.feature-card:nth-child(1):hover::before {
    background: linear-gradient(135deg, var(--success-green), var(--success-light));
}

.feature-card:nth-child(2):hover::before {
    background: linear-gradient(135deg, var(--warning-orange), #EAB308);
}

.feature-card:nth-child(3):hover::before {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.feature-card:nth-child(4):hover::before {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.feature-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color var(--transition-normal);
}

.feature-card:hover .feature-title {
    color: var(--primary-blue);
}

.feature-description {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.feature-detail {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ================================
   SCROLL ANIMATION ACTIVE STATES
   ================================ */

/* Active card styling (controlled by GSAP ScrollTrigger) */
.feature-card.active {
    border-left-width: 16px;
    z-index: 15;
    transform-origin: center;
}

/* Enhanced glow effects for each active card */
.feature-card.active:nth-child(1) {
    box-shadow:
        0 15px 35px rgba(16, 185, 129, 0.35),
        0 8px 15px rgba(0, 0, 0, 0.08),
        -6px 0 18px rgba(16, 185, 129, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    background: rgba(16, 185, 129, 0.08);
}

.feature-card.active:nth-child(2) {
    box-shadow:
        0 15px 35px rgba(245, 158, 11, 0.35),
        0 8px 15px rgba(0, 0, 0, 0.08),
        -6px 0 18px rgba(245, 158, 11, 0.3),
        0 0 0 1px rgba(245, 158, 11, 0.1);
    background: rgba(245, 158, 11, 0.08);
}

.feature-card.active:nth-child(3) {
    box-shadow:
        0 15px 35px rgba(37, 99, 235, 0.35),
        0 8px 15px rgba(0, 0, 0, 0.08),
        -6px 0 18px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(37, 99, 235, 0.1);
    background: rgba(37, 99, 235, 0.08);
}

.feature-card.active:nth-child(4) {
    box-shadow:
        0 15px 35px rgba(139, 92, 246, 0.35),
        0 8px 15px rgba(0, 0, 0, 0.08),
        -6px 0 18px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.1);
    background: rgba(139, 92, 246, 0.08);
}

/* Active card step number and icon are animated via GSAP */
.feature-card.active .step-number {
    /* Opacity and scale controlled by GSAP */
    color: currentColor;
}

.feature-card.active .feature-icon {
    /* Scale controlled by GSAP */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Ensure smooth transitions for all properties */
.feature-card,
.feature-icon,
.step-number {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-icon,
    .step-number {
        transition: none !important;
    }
}

/* ================================
   STATS TRANSITION SECTION
   ================================ */
.stats-transition-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom,
        #f0fdf4 0%,
        #dcfce7 100%
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon-green {
    background: linear-gradient(135deg, var(--success-green), var(--success-light));
}

.stat-icon-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.stat-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

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

/* ================================
   VALUE PROPOSITIONS SECTION
   ================================ */
.value-propositions-section {
    background: var(--bg-white);
}

/* Subsection Container */
.value-prop-subsection {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Variants - Bold & Vibrant */
.value-prop-green {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.value-prop-blue {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
}

.value-prop-purple {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
}

/* Flexbox Layout: 40% Image, 60% Content */
.value-prop-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Default: Image LEFT, Content RIGHT */
.value-prop-image {
    flex: 0 0 40%;
}

/* Agent Network - Larger image with matching green background */
.value-prop-green .value-prop-image {
    flex: 0 0 50%;
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.value-prop-content {
    flex: 1;
}

/* Reverse Layout: Content LEFT, Image RIGHT */
.value-prop-reverse {
    flex-direction: row-reverse;
}

/* Image Styling */
.value-prop-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* Agent Network - Remove container effects for seamless blend */
.value-prop-green .value-prop-image img {
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    max-height: 600px;
}

/* Typography - Light colors for dark backgrounds */
.value-prop-headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.value-prop-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-prop-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Benefits List */
.value-prop-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-prop-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    margin-top: 0.125rem;
}

.benefit-check {
    stroke: #FFFFFF;
    stroke-width: 3;
}

.value-prop-benefit-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 500;
}

/* CTA Button - Enhanced for dark backgrounds */
.value-prop-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.value-prop-cta:hover {
    transform: translateY(-2px);
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.value-prop-cta svg {
    transition: transform var(--transition-normal);
}

.value-prop-cta:hover svg {
    transform: translateX(4px);
}

/* ================================
   VALUE PROPS SCROLL ANIMATIONS
   ================================ */

/* Image hover effects */
.value-prop-image img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-prop-image:hover img {
    transform: scale(1.03);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .value-prop-content,
    .value-prop-image,
    .value-prop-image img,
    .value-prop-benefit-item,
    .value-prop-cta {
        transition: none !important;
    }
}

/* CSS Safety Net: Ensure content is visible by default */
/* Content is visible unless explicitly hidden by JavaScript before animation */
.value-prop-content,
.value-prop-image,
.value-prop-benefit-item,
.value-prop-cta {
    /* These will be set to opacity: 0 by JS, then animated in */
    /* If JS fails or animations break, content stays visible */
}


/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .phone-mockup {
        transform: perspective(1000px) rotateY(0) rotateX(0);
        width: 280px;
        height: 560px;
    }

    @keyframes float-phone {
        0%, 100% { transform: perspective(1000px) rotateY(0) rotateX(0) translateY(0); }
        50% { transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-10px); }
    }
}

/* Enhanced Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile Improvements */
    .hero {
        padding: 3rem 0 4rem;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
        padding: 0 1rem;
    }
    
    .hero-image {
        order: 1;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .value-proposition {
        margin: 1.5rem 0;
        padding: 1.25rem;
    }
    
    .value-points {
        gap: 0.75rem;
    }
    
    .value-point {
        align-items: flex-start;
        text-align: left;
    }
    
    .value-point span {
        font-size: 0.9rem;
        text-align: left;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }

    .how-it-works-section {
        padding: 3rem 0;
    }

    /* Mobile: Stack image on top, cards below */
    .why-choose-wrapper {
        flex-direction: column;
        min-height: auto;
        gap: 2rem;
    }

    .features-image-sticky {
        position: relative;
        top: 0;
        flex: none;
        width: 100%;
    }

    .features-cards-wrapper {
        gap: 1.5rem;
        padding: 0;
    }

    .feature-card {
        padding: 1.5rem;
        opacity: 1;
        transform: none;
        border-left-width: 6px;
    }

    .feature-icon {
        width: 3.25rem;
        height: 3.25rem;
    }

    /* Stats Transition Section Mobile */
    .stats-transition-section {
        padding: 3rem 0;
    }

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

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

    .stat-icon {
        width: 70px;
        height: 70px;
    }

    /* Value Propositions Mobile */
    .value-prop-subsection {
        padding: 3rem 0;
    }

    .value-prop-container {
        flex-direction: column;
        gap: 2rem;
    }

    .value-prop-reverse {
        flex-direction: column;
    }

    .value-prop-image {
        flex: none;
        width: 100%;
    }

    /* Agent Network Mobile - Maintain green background and larger size */
    .value-prop-green .value-prop-image {
        min-height: 400px;
    }

    .value-prop-green .value-prop-image img {
        max-height: 400px;
    }

    .value-prop-headline {
        font-size: 2rem;
    }

    .value-prop-tagline {
        font-size: 1.1rem;
    }

    .value-prop-description {
        font-size: 1rem;
    }

    .value-prop-benefits {
        gap: 0.875rem;
        margin-bottom: 1.75rem;
    }

    .value-prop-benefit-item span {
        font-size: 0.95rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: var(--shadow-xl);
        z-index: 1000;
        overflow: hidden;
    }
    
    .nav-menu.show {
        transition: right var(--transition-normal);
        right: 0;
    }
    
    .nav-menu.active {
        transition: right var(--transition-normal);
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-xl);
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .nav-item {
        font-size: 14px;
    }
    
    .nav-item span,
    .phone-mockup .nav-item span,
    .growth {
        font-size: 14px;
    }
    
    .nav-toggle,
    .nav-close {
        display: block;
    }
    
    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
    
    /* Adjust money flow for mobile */
    .flowing-money {
        font-size: 0.85rem;
        padding: 0.6rem 0.9rem;
    }
    
    .flowing-money[data-amount="100"],
    .flowing-money[data-amount="5000"],
    .flowing-money[data-amount="100000"] {
        right: -80px;
    }
    
    .money-invested-indicator {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        top: 40%;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        padding: 0 0.75rem;
        margin-right: 0.75rem;
    }
    
    .nav-actions .btn-small {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .value-points {
        gap: var(--spacing-sm);
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .feature-card {
        padding: 1.25rem;
        border-left-width: 5px;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
    }

    /* Value Propositions Small Mobile */
    .value-prop-subsection {
        padding: 2.5rem 0;
    }

    .value-prop-headline {
        font-size: 1.75rem;
    }

    .value-prop-tagline {
        font-size: 1rem;
    }

    .value-prop-description {
        font-size: 0.95rem;
    }

    .value-prop-benefits {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .value-prop-benefit-item span {
        font-size: 0.9rem;
    }

    /* Agent Network Small Mobile - Maintain seamless blend */
    .value-prop-green .value-prop-image {
        min-height: 350px;
    }

    .value-prop-green .value-prop-image img {
        max-height: 350px;
    }
}

/* ================================
   WAITLIST MODAL STYLES
   ================================ */
.waitlist-content {
    text-align: center;
    padding: 1rem 0;
}

.waitlist-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.waitlist-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.waitlist-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.waitlist-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.waitlist-form label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.waitlist-form input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: border-color var(--transition-normal);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

/* ================================
   DOWNLOAD APP MODAL STYLES
   ================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: var(--text-medium);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: var(--text-dark);
}

.modal-body {
    padding: 16px 24px;
}

.modal-subtitle {
    color: var(--text-medium);
    margin-bottom: 24px;
    text-align: center;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
}

.download-option:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.download-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
}

.ios-icon {
    background: linear-gradient(135deg, #007AFF, #5856D6);
}

.android-icon {
    background: linear-gradient(135deg, #34A853, #4285F4);
}

.download-text {
    flex: 1;
}

.download-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.download-subtitle {
    font-size: 14px;
    color: var(--text-medium);
}

.download-arrow {
    color: var(--text-light);
    transition: all 0.2s ease;
}

.download-option:hover .download-arrow {
    color: var(--primary-blue);
    transform: translateX(4px);
}

/* Waitlist Form within Download Modal */
.waitlist-form-container {
    text-align: center;
}

.waitlist-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.waitlist-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 0.75rem;
}

.waitlist-header h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.waitlist-header p {
    color: var(--text-medium);
    line-height: 1.5;
}

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

.waitlist-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.waitlist-form label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.waitlist-form input,
.waitlist-form select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: border-color var(--transition-normal);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

/* Mobile responsiveness for modal */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 20px 12px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .download-icon {
        width: 44px;
        height: 44px;
        margin-right: 12px;
    }
    
    .download-title {
        font-size: 15px;
    }
    
    .download-subtitle {
        font-size: 13px;
    }
}

/* ================================
   FLOATING CALL WIDGET STYLES
   ================================ */
.floating-call-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.floating-call-btn:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.floating-call-btn .close-icon {
    display: none;
}

.floating-call-btn.active .call-icon {
    display: none;
}

.floating-call-btn.active .close-icon {
    display: block;
}

.callback-form-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
}

.callback-form-container.active {
    opacity: 1;
    visibility: visible;
}

.callback-form {
    padding: 24px;
}

.callback-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.callback-subtitle {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.callback-form .form-group {
    margin-bottom: 16px;
}

.callback-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.callback-form input[type="text"],
.callback-form input[type="tel"],
.callback-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.callback-form input:focus,
.callback-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.time-slot {
    position: relative;
    cursor: pointer;
}

.time-slot input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.time-slot span {
    display: block;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.time-slot input[type="radio"]:checked + span {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.time-slot:hover span {
    border-color: var(--primary-blue);
}

.callback-submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.callback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.callback-success {
    text-align: center;
    padding: 40px 20px;
}

.callback-success svg {
    color: var(--success-green);
    margin-bottom: 16px;
}

.callback-success p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Mobile responsiveness for floating widget */
@media (max-width: 480px) {
    .floating-call-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-call-btn {
        width: 56px;
        height: 56px;
    }
    
    .callback-form-container {
        width: calc(100vw - 40px);
        max-width: 320px;
        right: -20px;
    }
}

/* Footer App Links */
.footer-app-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D1D5DB;
    transition: color var(--transition-normal);
}

.footer-app-link:hover {
    color: var(--primary-blue);
}

.footer-app-link svg {
    flex-shrink: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    
    /* Ensure proper touch targets (44px minimum) */
    .btn,
    button,
    .nav-link,
    .faq-question,
    .testimonial-nav,
    .floating-call-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1rem;
    }
    
    .btn-small {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    .nav-actions {
        padding: 0 1rem;
        margin-right: 1rem;
    }
    
    .nav-actions .btn-small {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
}

/* ================================
   CUSTOM LANGUAGE SELECTOR STYLES
   ================================ */

/* Language Selector Container */
.language-selector-custom {
    position: relative;
    display: flex;
    align-items: center;
}

/* Language Button */
.language-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: white;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.language-button:hover {
    border-color: var(--primary-blue);
    background-color: rgba(37, 99, 235, 0.05);
}

.language-button svg {
    flex-shrink: 0;
}

.language-button .chevron {
    transition: transform var(--transition-normal);
}

.language-button:hover .chevron {
    transform: translateY(2px);
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: white;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.language-dropdown button:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-blue);
}

.language-dropdown button.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    font-weight: 600;
}

.language-dropdown button:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

/* Translation Loading Indicator */
.translation-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    z-index: 10000;
}

.translation-loading span {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-selector-custom {
        order: -1;
        margin-right: auto;
    }

    .language-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
        gap: 0.4rem;
    }

    .language-button svg:first-child {
        width: 16px;
        height: 16px;
    }

    .language-button #currentLang {
        display: none;
    }

    .language-dropdown {
        left: 0;
        right: auto;
        min-width: 200px;
    }

    .language-dropdown button {
        font-size: 0.85rem;
        padding: 0.65rem 0.85rem;
    }
}

@media (max-width: 480px) {
    .language-button {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }

    .language-dropdown {
        min-width: 180px;
        max-height: 300px;
    }

    .language-dropdown button {
        font-size: 0.8rem;
        padding: 0.6rem 0.75rem;
    }

    .translation-loading span {
        font-size: 1rem;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
    }
}

