/* VAI Landing Page Styles */

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

/* CSS Variables */
:root {
    --vai-deep-ocean: #0f172a;
    --vai-lagoon: #1e293b;
    --vai-coral: #f1672c;
    --vai-coral-light: #ff006e;
    --vai-pearl: #f8fafc;
    --vai-sand: #fef3c7;
    --vai-tropical: #00c6ee;
    --vai-success: #10b981;
    --gradient-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);



       /* Shadows */
    --vai-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --vai-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --vai-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --vai-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --vai-shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Blur Effects */
    --vai-blur-sm: blur(4px);
    --vai-blur: blur(8px);
    --vai-blur-lg: blur(16px);
    
    /* Spacing */
    --vai-container-padding: 1rem;
    --vai-section-padding: 5rem 0;
    --vai-card-padding: 2rem;
    
    /* Typography */
    --vai-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --vai-font-size-xs: 0.75rem;
    --vai-font-size-sm: 0.875rem;
    --vai-font-size-base: 1rem;
    --vai-font-size-lg: 1.125rem;
    --vai-font-size-xl: 1.25rem;
    --vai-font-size-2xl: 1.5rem;
    --vai-font-size-3xl: 1.875rem;
    --vai-font-size-4xl: 2.25rem;
    --vai-font-size-5xl: 3rem;
    --vai-font-size-6xl: 3.75rem;
    
    /* Transitions */
    --vai-transition-fast: all 0.15s ease-in-out;
    --vai-transition: all 0.3s ease-in-out;
    --vai-transition-slow: all 0.5s ease-in-out;
    
    /* Border Radius */
    --vai-radius-sm: 0.375rem;
    --vai-radius: 0.5rem;
    --vai-radius-lg: 0.75rem;
    --vai-radius-xl: 1rem;
    --vai-radius-2xl: 1.5rem;
    --vai-radius-full: 9999px;
}

/* Base Body Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-bg);
    color: var(--vai-pearl);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--vai-coral);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    display: inline;
}

.launch-date {
    background: var(--vai-success);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.operator-lp-button {
    background: var(--var-deep-ocean);
    color: grey;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    animation: pulse 2s infinite;
    border: 1px solid grey;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(248,250,252,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');*/
    opacity: 0.3;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top:40px;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--vai-pearl) 0%, var(--vai-sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    color: var(--vai-coral);
    margin-bottom: 30px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-visual {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Problem Section */
.problems {
    padding: 80px 0;
    background: var(--vai-lagoon);
}

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--vai-coral);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.problem-card:hover {
    border-color: var(--vai-coral);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.icon-fallback {
    font-size: 50px;
    display: none;
}

.problem-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--vai-coral);
}

.problem-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.emotional-reality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(248,250,252,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.emotional-reality {
    background: var(--gradient-hero);
    border: 1px solid var(--vai-coral);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.emotional-visual {
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.emotional-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.emotional-reality h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.emotional-reality p {
    font-size: 18px;
    color: white;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-visual {
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.solution-hero-image {
    width: 100%;
    height: auto;
    border-radius: 80px;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.solution-header h2 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--vai-coral) 0%, var(--vai-coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-header h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: var(--vai-pearl);
    margin-bottom: 20px;
}

.solution-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--vai-tropical);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--vai-tropical);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--vai-lagoon);
    text-align: center;
}

.stats-visual {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

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

.stat-card {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 15px;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--vai-coral);
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
}

.testimonial {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--vai-tropical);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-visual {
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.testimonial h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--vai-tropical);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-note {
    font-size: 16px;
    font-weight: 600;
    color: var(--vai-coral);
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: var(--gradient-bg);
    text-align: center;
}

.countdown-container {
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid var(--vai-coral);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.countdown-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
}

.countdown-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.countdown-item {
    background: var(--vai-coral);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.countdown-number {
    font-size: 32px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--vai-lagoon);
    text-align: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cta-card {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid var(--vai-coral);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s;
}

.cta-card:hover::before {
    left: 100%;
}

.qr-container {
    margin-bottom: 30px;
}

.qr-code {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border:solid #00c6ee;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefits-visual {
    margin-bottom: 30px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vai-coral) 0%, var(--vai-coral-light) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--vai-coral);
    border: 2px solid var(--vai-coral);
}

.btn-secondary:hover {
    background: var(--vai-coral);
    color: white;
    transform: translateY(-3px);
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.form-visual {
    margin-bottom: 30px;
    text-align: center;
}

.form-visual-image {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--vai-pearl);
    font-size: 16px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.5);
    color: var(--vai-pearl);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--vai-coral);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-input::placeholder {
    color: rgba(248, 250, 252, 0.5);
}

.form-select option {
    background: var(--vai-deep-ocean);
    color: var(--vai-pearl);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.1);
}

.faq-question span:last-child {
    font-size: 24px;
    color: var(--vai-coral);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.faq-answer.active {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Operator Section */
.operator-section {
    padding: 60px 0;
    background: rgba(6, 182, 212, 0.05);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    border-top: 1px solid var(--vai-sand);
    border-bottom: 1px solid var(--vai-sand);
}

.operator-content {
    max-width: 600px;
    margin: 0 auto;
}

.operator-visual {
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.operator-visual-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.operator-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--vai-tropical);
}

.operator-section p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.scarcity-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    margin: 20px 0;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Final CTA Section */
.final-cta-visual {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--vai-deep-ocean);
    text-align: center;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.footer p {
    font-size: 18px;
    font-weight: 600;
    color: var(--vai-coral);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 100vh;
    }

    .solution-hero-image {
        border-radius:20px;
    }

    .solution-hero-image {
        box-shadow: none;
    }
    
    .problems, 
    .solution, 
    .social-proof, 
    .urgency, 
    .cta-section, 
    .faq {
        padding: 60px 0;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .qr-code,
    .qr-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .hero h1 {
        font-size: clamp(28px, 8vw, 48px);
    }
    
    .hero h2 {
        font-size: clamp(20px, 6vw, 32px);
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .emotional-reality {
        padding: 30px 20px;
    }
    
    .emotional-reality h3 {
        font-size: 28px;
    }
    
    .emotional-reality p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Launch button in nav bar */
    .launch-date {
        font-size: 12px;
        padding: 6px 12px;
    }

    .operator-lp-button {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-item {
        padding: 12px;
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .problem-card,
    .feature-card {
        padding: 20px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
}


/* ================================ */
/* PREMIUM REGISTRATION FORMS */
/* ================================ */

/* Registration Sections - Match Your Design */
.registration-section {
    padding: 80px 0;
    background: var(--vai-lagoon);
    position: relative;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(248,250,252,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.registration-section .container {
    position: relative;
    z-index: 2;
}

.registration-section .section-title {
    color: var(--vai-coral);
    text-align: center;
    margin-bottom: 20px;
}

.registration-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Form Container */
.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(25, 19, 50, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
    transition: left 0.8s;
}

.registration-form:hover::before {
    left: 100%;
}

/* Operator form gets larger width */
.operator-form {
    max-width: 900px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--vai-coral);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-section-title::before {
    content: "";
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--vai-coral), var(--vai-coral-light));
    border-radius: 2px;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

/* Labels - Match Your Style */
.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--vai-pearl);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Input Fields - Premium Style */
.form-input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(249, 115, 22, 0.2) !important;
    border-radius: 15px;
    color: var(--vai-pearl);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--vai-coral);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: rgba(248, 250, 252, 0.4);
    font-style: italic;
}

/* Hint Text */
.form-hint {
    display: block;
    font-size: 13px;
    color: rgba(248, 250, 252, 0.6);
    margin-top: 6px;
    font-style: italic;
}

/* Radio Groups - Premium */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(15, 23, 42, 0.4);
    border: 2px solid rgba(249, 115, 22, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.radio-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s;
}

.radio-option:hover::before {
    left: 100%;
}

.radio-option:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: var(--vai-coral);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--vai-coral);
    position: relative;
    z-index: 2;
}

.radio-option input:checked + span {
    color: var(--vai-coral);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.radio-option span {
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Checkbox Groups - Match Radio Style */
.checkbox-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.islands-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tour-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(15, 23, 42, 0.4);
    border: 2px solid rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.checkbox-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s;
}

.checkbox-option:hover::before {
    left: 100%;
}

.checkbox-option:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: var(--vai-coral);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.15);
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--vai-coral);
    position: relative;
    z-index: 2;
}

.checkbox-option input:checked + span {
    color: var(--vai-coral);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.checkbox-option span {
    position: relative;
    z-index: 2;
}

/* Business Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* WhatsApp Input Animation */
.whatsapp-input {
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
}

.whatsapp-input[style*="block"] {
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        max-height: 0; 
        margin-top: 0;
        transform: translateY(-10px);
    }
    to { 
        opacity: 1; 
        max-height: 100px; 
        margin-top: 15px;
        transform: translateY(0);
    }
}

/* Premium Button Styles */
.btn-large {
    width: 100%;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-large::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 0.6s;
}

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

/* Loading State */
.btn.loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top: 3px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Form Footer */
.form-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    text-align: center;
}

.form-footer small {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.6;
    font-size: 14px;
}

/* Success/Error Messages - Premium */
.vai-message {
    font-family: inherit;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .registration-form {
        padding: 40px 30px;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .operator-form {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .islands-grid, .tour-types-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        gap: 12px;
    }
    
    .checkbox-grid {
        gap: 12px;
    }
    
    .form-section-title {
        font-size: 20px;
    }
    
    .form-input {
        padding: 16px 18px;
    }
    
    .radio-option, .checkbox-option {
        padding: 15px 16px;
    }
}

@media (max-width: 480px) {
    .registration-section {
        padding: 60px 0;
    }
    
    .registration-form {
        padding: 20px;
        margin: 0px;
    }
    
    .btn-large {
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .form-section-title {
        font-size: 18px;
        gap: 12px;
    }
    
    .form-section-title::before {
        width: 3px;
        height: 20px;
    }
}

/* Special Effects for Premium Feel */
.registration-form:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.form-input:hover {
    border-color: rgba(249, 115, 22, 0.4);
}

/* Smooth transitions for all interactive elements */
* {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hide the old registration form styles if they conflict */
.form-container {
    display: none !important;
}

/* Ensure form sections are visible */
.registration-section {
    display: block !important;
}



/* ================================ */
/* COMPACT OPERATOR FORM STYLES */
/* ================================ */

.compact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.compact-form .form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-form .form-section-title {
    color: var(--vai-coral);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.badge-style {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge-style:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-style input:checked + span {
    background: var(--vai-coral);
    color: white;
    border-radius: 20px;
    padding: 6px 12px;
}

.badge-style input {
    display: none;
}

.whatsapp-input {
    margin-top: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .compact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }
}


/*//////////*/

/* Language Selection CSS */

.languages-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.language-option {
    justify-content: center;
    text-align: center;
    padding: 12px 8px;
}

.language-option span {
    font-size: 14px;
    font-weight: 500;
}

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


/* ================================ */
/* VALIDATION CSS FIX - Add this to your CSS */
/* ================================ */

/* Remove default validation styles */
.form-input:invalid {
    border-color: inherit; /* Reset default invalid styling */
    background-color: inherit;
}

.form-input:valid {
    border-color: inherit; /* Reset default valid styling */
}

/* Only apply error styles when explicitly marked with error class */
.form-input.error {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Success state (optional - only when explicitly marked) */
.form-input.success {
    border-color: #10b981 !important;
    background-color: rgba(16, 185, 129, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Error message styling */
.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
}

.error-message.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Focus states */
.form-input:focus {
    outline: none;
    border-color: var(--vai-coral);
    box-shadow: 0 0 0 3px rgba(var(--vai-coral-rgb), 0.1);
}

.form-input.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}


.operator-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    overflow-y: auto;
    padding: 20px;
}

.operator-form-overlay.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.operator-form-overlay .back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    z-index: 10001;
}

.operator-form-overlay .container {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 80px;
}

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


/* ============================================================================
   LANGUAGE SWITCHER STYLES
   Extracted from global.js/styles-global.css system
   ============================================================================ */

/* Language Switcher - Mobile-First Design */
.language-switcher {
    position: fixed;
    top: 70px;        /* Mobile: below header */
    right: 15px;      /* Mobile: smaller margin */
    z-index: 12000;
    display: flex;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.lang-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.lang-btn.active {
    background: #e2f12c;
    transform: scale(1.1);
}

.lang-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

/* Language Content Visibility Rules - Core System */
[data-lang]:not([data-lang="en"]) {
    display: none;
}

body[data-current-lang="fr"] [data-lang="en"] {
    display: none;
}

body[data-current-lang="fr"] [data-lang="fr"] {
    display: block;
}

body[data-current-lang="en"] [data-lang="fr"] {
    display: none;
}

body[data-current-lang="en"] [data-lang="en"] {
    display: block;
}

/* Clickable Launch Date Enhancement */
.clickable-launch-date {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.clickable-launch-date:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.clickable-launch-date:active {
    transform: translateY(0);
}

.clickable-launch-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.clickable-launch-date:hover::before {
    left: 100%;
}

.clickable-operator-lp-button {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.clickable-operator-lp-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.clickable-operator-lp-button:active {
    transform: translateY(0);
}

.clickable-operator-lp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.clickable-operator-lp-button:hover::before {
    left: 100%;
}

/* Enhanced Form Styling for Conditional Elements */
.island-selection {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.island-selection.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-input {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.whatsapp-input.show {
    opacity: 1;
    transform: translateY(0);
}

/* Error Message Styling for Translation System */
.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
}

.error-message.show {
    display: block;
}

.form-input.error {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Success state (optional - only when explicitly marked) */
.form-input.success {
    border-color: #10b981 !important;
    background-color: rgba(16, 185, 129, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Focus states */
.form-input:focus {
    outline: none;
    border-color: var(--vai-coral);
    box-shadow: 0 0 0 3px rgba(241, 103, 44, 0.1);
}

.form-input.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Remove default validation styles that could interfere */
.form-input:invalid {
    border-color: inherit;
    background-color: inherit;
}

.form-input:valid {
    border-color: inherit;
}

/* Checkbox and Radio Links for Terms */
.checkbox-option a {
    color: var(--vai-coral);
    text-decoration: underline;
}

.checkbox-option a:hover {
    color: var(--vai-tropical);
}

/* Mobile Responsive Adjustments */
@media (min-width: 768px) {
    .language-switcher {
        top: 100px;    /* Desktop: avoid header conflicts */
        right: 20px;   /* Desktop: standard margin */
    }
}

@media (max-width: 767px) {
    .language-switcher {
        top: 80px;     /* Extra mobile adjustment */
        right: 10px;   /* Smaller margin on very small screens */
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 50%;     /* Extra mobile adjustment */
        right: 10px;   /* Smaller margin on very small screens */
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enhanced message styling for bilingual messages */
.vai-message {
    font-family: inherit;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 30px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 11001;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 90%;
    text-align: center;
    animation: slideInMessage 0.5s ease;
    font-size: 16px;
}

.vai-message.vai-message-success {
    background: #10b981;
    color: white;
}

.vai-message.vai-message-error {
    background: #ef4444;
    color: white;
}

/* Animation for messages */
@keyframes slideInMessage {
    from { transform: translateX(-50%) translateY(-30px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Loading button state */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.loading::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top: 3px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Ensure language switcher doesn't conflict with other elements */
.language-switcher {
    /* Ensure it's above everything else */
    z-index: 12001;
}

/* Special handling for FAQ questions with multiple spans */
.faq-question span:first-child {
    flex: 1;
    text-align: left;
}

.faq-question span:last-child {
    font-size: 24px;
    color: var(--vai-coral);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Ensure select dropdowns work with language switching */
select.form-input option {
    background: var(--vai-deep-ocean);
    color: var(--vai-pearl);
}

/* Form section titles for operator form */
.form-section-title {
    color: var(--vai-coral);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* Compact form styles */
.compact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.compact-form .form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.badge-style {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge-style:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-style input:checked + span {
    background: var(--vai-coral);
    color: white;
    border-radius: 20px;
    padding: 6px 12px;
}

.badge-style input {
    display: none;
}

/* Mobile responsive for compact forms */
@media (max-width: 768px) {
    .compact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }
}

/* Ensure all transitions are smooth */
* {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Override any conflicting styles */
.registration-section {
    display: block !important;
}

/* Maintain form visual integrity */
.registration-form:hover {
    border-color: rgba(241, 103, 44, 0.4);
    box-shadow: 0 20px 40px rgba(241, 103, 44, 0.1);
}


/* launch button nav bar 2 */
.launch-date-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.launch-date-clickable:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.launch-date-clickable:active {
    transform: translateY(0);
}



/* ========================================
   SUCCESS SCREEN OVERLAY STYLES
   Add this entire section to the END of your styles.css file
   ======================================== */

.success-screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10991;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
    pointer-events: none;
}

.success-screen-overlay.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.success-content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    color: white;
    width: 100%;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successPulse 1.5s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #10b981;
}

.success-message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.success-next-steps {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.success-next-steps h4 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.success-next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-next-steps li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-next-steps li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.success-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.success-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.success-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Ensure forms have relative positioning for overlay */
.registration-form {
    position: relative;
}

/* SPECIAL HANDLING FOR OPERATOR FORM IN FULLSCREEN OVERLAY */
.operator-form-overlay .success-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10999;
    border-radius: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.operator-form-overlay .success-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Language support - ensure all language variants are visible */
.success-content [data-lang] {
    display: none;
}

.success-content [data-lang="en"] {
    display: block;
}

body[data-current-lang="fr"] .success-content [data-lang="en"] {
    display: none;
}

body[data-current-lang="fr"] .success-content [data-lang="fr"] {
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .success-content {
        padding: 1.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-btn {
        width: 100%;
        text-align: center;
    }
    
    .operator-form-overlay .success-content {
        padding: 2rem 1rem;
    }
}


/* button aufter success operator form */

.btn-success-operator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--vai-radius-lg);
    font-size: var(--vai-font-size-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--vai-transition);
    position: relative;
    overflow: hidden;
    background-color: var(--vai-sand);
}

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

.btn-success-operator-outline {
    background: transparent;
    color: var(--vai-light);
    border-color: var(--vai-primary);
}

.btn-success-operator-outline:hover {
    background: var(--vai-primary);
    color: var(--vai-white);
}

.btn-success-operator-large {
    padding: 1rem 2rem;
    font-size: var(--vai-font-size-base);
}


/* ================================ */
/* SOCIAL IMPACT SECTION STYLES */
/* Add this to the END of your app-landingpage.css file */
/* ================================ */

.social-impact-section {
    padding: 80px 0;
    /*background: linear-gradient(135deg, var(--vai-lagoon) 0%, #1a332e 50%, var(--vai-lagoon) 100%);*/
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.social-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('via-studio-images/backgrounds/Moorea-Silhouette.JPG'); */
    opacity: 0.5;
}

.social-impact-section .container {
    position: relative;
    z-index: 299;
}

.social-impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-impact-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--vai-success);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.social-impact-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--vai-pearl);
}

.social-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.impact-card {
    background: rgba(16, 185, 129, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.1) 50%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.impact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.impact-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--vai-success);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(16, 185, 129, 0.2);
}

.impact-card-text {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    color: var(--vai-pearl);
}

.impact-commitment {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.impact-commitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0.8;
}

.impact-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--vai-success);
    display: block;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, var(--vai-success) 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-commitment-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--vai-success);
    position: relative;
    z-index: 1;
}

.impact-commitment-subtitle {
    font-size: 16px;
    opacity: 0.8;
    color: var(--vai-pearl);
    position: relative;
    z-index: 1;
}

/* Language Content */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .social-impact-section {
        padding: 60px 0;
    }

    .social-impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .impact-card {
        padding: 30px 20px;
    }

    .impact-icon {
        font-size: 3rem;
    }

    .impact-card-title {
        font-size: 18px;
    }

    .impact-card-text {
        font-size: 15px;
    }

    .impact-commitment {
        padding: 25px 20px;
    }

    .impact-percentage {
        font-size: 2.8rem;
    }

    .impact-commitment-text {
        font-size: 16px;
    }

    .language-toggle {
        gap: 15px;
        margin-bottom: 30px;
    }

    .lang-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .impact-card {
        padding: 25px 15px;
    }

    .impact-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .impact-percentage {
        font-size: 2.5rem;
    }

    .social-impact-title {
        font-size: 24px;
    }

    .social-impact-subtitle {
        font-size: 16px;
    }
}