:root {
    --primary: #00f2ff;
    --primary-dark: #00c8d4;
    --secondary: #bd00ff;
    --accent: #7000ff;
    --success: #00ff9d;
    --dark: #0a0a12;
    --darker: #050508;
    --gray: #9ca3af;
    --light: #e5e7eb;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.1);
    --neon-shadow: 0 0 10px rgba(0, 242, 255, 0.5), 0 0 20px rgba(0, 242, 255, 0.3);
    --neon-shadow-secondary: 0 0 10px rgba(189, 0, 255, 0.5), 0 0 20px rgba(189, 0, 255, 0.3);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.15), transparent 25%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: rgba(10, 10, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
}

.language-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.cta-header {
    background: transparent;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.cta-header:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
}

/* Language Overlay */
.language-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(10px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.language-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.language-selector {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.language-selector h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--white), var(--gray));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.language-selector p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.language-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.language-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    min-width: 300px;
}

.language-card:hover {
    transform: translateY(-10px);
    background: var(--glass-highlight);
    border-color: var(--primary);
    box-shadow: var(--neon-shadow);
}

.language-card .flag {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.language-card h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.language-card .price-old {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 1.25rem;
}

.language-card .price {
    color: var(--success);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
    text-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}

.language-card .savings {
    background: rgba(189, 0, 255, 0.2);
    color: #e0aaff;
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(189, 0, 255, 0.4);
}

/* Main Content Visibility */
.main-content {
    opacity: 0;
    transition: opacity 1s ease;
}

.main-content.visible {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
    filter: blur(60px);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 2px rgba(0, 242, 255, 0.3));
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.hero .features-list {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero .features-list div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--light);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--glass-border);
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-primary {
    background: var(--primary);
    color: var(--darker);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: var(--neon-shadow);
    transition: all 0.3s ease;
    border: none;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6), 0 0 40px rgba(0, 242, 255, 0.4);
    background: #fff;
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

#heroTrust {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.hero-image img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid var(--glass-border);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.2);
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: transparent;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: rgba(255, 50, 50, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 50, 50, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 50, 50, 0.4);
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.1);
}

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 50, 50, 0.3));
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.problem-card p {
    color: var(--gray);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: transparent;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    font-weight: 800;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    background: var(--glass);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    border-color: var(--glass-highlight);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.feature-item:nth-child(even) {
    direction: rtl;
}

.feature-item:nth-child(even) .feature-content {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.feature-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.feature-content ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
}

.feature-content ul li::before {
    content: "✓";
    color: var(--success);
    font-weight: 900;
    text-shadow: 0 0 5px var(--success);
}

.feature-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--glass-border);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: transparent;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 0 10px rgba(189, 0, 255, 0.5);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: transparent;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.pricing-card {
    background: rgba(15, 15, 25, 0.6);
    padding: 4rem 3rem;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: visible;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.pricing-badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.price-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 2rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.125rem;
    color: var(--light);
    display: flex;
    align-items: center;
}

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

.pricing-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 900;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-shadow: 0 0 5px var(--success);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: transparent;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.faq-answer p {
    color: var(--gray);
    margin-left: 2rem;
}

/* Footer */
footer {
    background: rgba(5, 5, 8, 0.9);
    color: var(--gray);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

footer p {
    font-size: 0.9rem;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    display: none;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
}

.sticky-mobile-bar .price-label {
    font-size: 0.75rem;
    color: var(--gray);
}

.sticky-mobile-bar .price-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.sticky-mobile-bar .btn-buy {
    background: var(--primary);
    color: var(--darker);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.countdown-timer {
    background: rgba(220, 38, 38, 0.1);
    color: #ff4d4d;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.1);
}

/* Payment Modal */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.payment-modal {
    background: #1a1a24;
    padding: 2.5rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
}

.payment-modal h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.payment-modal p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    text-align: left;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.payment-option .icon {
    font-size: 2rem;
}

.payment-option h3 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.payment-option p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Social Proof Toast */
.social-proof-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 15, 25, 0.9);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 300px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.social-proof-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.social-proof-content p {
    margin: 0;
    line-height: 1.2;
}

.social-proof-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem !important;
}

.social-proof-text {
    font-size: 0.75rem;
    color: var(--gray);
}

.social-proof-product {
    color: var(--primary);
    font-weight: 700;
}

.social-proof-time {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 0.25rem !important;
}

.social-proof-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.2rem;
}

.social-proof-close:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero .features-list {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-item:nth-child(even) {
        direction: ltr;
    }

    .feature-content ul li {
        justify-content: center;
    }

    .sticky-mobile-bar {
        display: flex;
    }

    /* Mobile Header Fixes - Compact */
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .header-right {
        width: auto;
        gap: 0.5rem;
    }

    .cta-header {
        display: none;
        /* Hide header CTA on mobile, use sticky bar instead */
    }

    .language-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    /* Pricing Mobile Fixes */
    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-old {
        font-size: 1.25rem;
    }

    .price-container {
        flex-direction: column;
        gap: 0.25rem;
        margin: 1rem 0;
    }

    .language-selector {
        padding: 1rem;
    }

    .language-selector h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .language-selector p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .language-options {
        gap: 0.75rem;
    }

    .language-card {
        padding: 1rem;
        min-width: 100%;
        border-radius: 1rem;
    }

    .language-card .flag {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .language-card h2 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .language-card .price {
        font-size: 2rem;
    }

    .language-card .price-old {
        font-size: 1rem;
    }

    footer {
        padding-bottom: 15rem;
        /* Space for sticky mobile bar */
    }
}