/* Global Styles */
:root {
    --primary-color: #7D72EA;
    --secondary-color: #08D7FE;
    --accent-color: #FA0BD5;
    --highlight-color: #ccFF03;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --medium-dark: #1a1a1a;
    --light-dark: #222;
    --text-color: #fff;
    --text-light: #ddd;
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #7D72EA 0%, #FA0BD5 100%);
    --gradient-secondary: linear-gradient(135deg, #08D7FE 0%, #7D72EA 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

section {
    padding: 5rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 40px;
    width: auto;
}

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

nav ul {
    display: flex;
    gap: 1.5rem;
}

.nav-cta {
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(250, 11, 213, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--darker-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 2rem;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .nav-cta {
        display: block;
        width: 80%;
        margin: 1rem auto;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background-color: var(--dark-color);
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(125, 114, 234, 0.3) 0%, 
        rgba(8, 215, 254, 0.2) 30%, 
        rgba(250, 11, 213, 0.1) 60%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.cta-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #FA0BD5, #08D7FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers that don't support text-fill-color */
    line-height: 1.2;
}

.hero h2 {
    font-size: 2rem;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    font-size: 1.25rem;
    color: var(--highlight-color);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6), rgba(40, 40, 40, 0.6));
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--highlight-color);
    margin-bottom: 2rem;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 255, 3, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(204, 255, 3, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(204, 255, 3, 0);
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 30, 30, 0.5);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #FA0BD5;
}

.hero-feature i {
    color: #FA0BD5;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-feature span {
    color: var(--text-color);
    font-size: 1.1rem;
}

.hero-cta-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 20px rgba(250, 11, 213, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    cursor: pointer;
    text-decoration: none;
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(250, 11, 213, 0.5);
}

.hero-cta:active, .hero-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(250, 11, 213, 0.4);
    outline: none;
}

.hero-image {
    position: relative;
    z-index: 3;
    margin-top: 3rem;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        width: 100%;
        text-align: center;
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--darker-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 2rem;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .nav-cta {
        display: block;
        width: 80%;
        margin: 1rem auto;
        text-align: center;
    }
    
    /* Hero section mobile improvements */
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 90vh;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-cta {
        width: 100%;
        text-align: center;
    }
    
    /* Features section mobile improvements */
    .features {
        padding: 4rem 1rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    /* Testimonials section mobile improvements */
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    /* Calculator section mobile improvements */
    .calculator {
        padding: 4rem 1rem;
    }
    
    .calculator h2 {
        font-size: 2rem;
    }
    
    .calculator-form {
        padding: 1.5rem;
    }
    
    .calculator-result {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Signup section mobile improvements */
    .signup {
        flex-direction: column;
        padding: 4rem 1rem;
    }
    
    .signup-content {
        padding: 1rem;
    }
    
    .signup h2 {
        font-size: 2rem;
    }
    
    .comparison-table {
        overflow-x: auto;
        padding: 1rem;
    }
    
    .comparison-table table {
        min-width: 500px;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    /* FAQ section mobile improvements */
    .faq {
        padding: 4rem 1rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Footer mobile improvements */
    footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-social {
        width: 100%;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Additional styles for better mobile experience */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .feature-card, .testimonial, .faq-item {
        margin-bottom: 1rem;
    }
    
    .signup-feature span {
        font-size: 0.95rem;
    }
    
    .comparison-table h3 {
        font-size: 1.2rem;
    }
    
    .comparison-table th[colspan="3"] {
        font-size: 1.1rem;
        padding: 0.6rem;
    }
    
    .comparison-table table {
        min-width: 400px;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.85rem;
    }
}

/* Buttons */
.primary-button, .secondary-button, .cta-button, .submit-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.primary-button:hover, .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.direct-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(250, 11, 213, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    border: none;
    outline: none;
}

.direct-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(250, 11, 213, 0.5);
}

/* Header & Navigation */
header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-color);
}

.logo h1 span {
    color: var(--primary-color);
}

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

.nav-links a {
    margin-left: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 5rem;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
        rgba(250, 11, 213, 0.2) 0%, 
        rgba(125, 114, 234, 0.2) 30%, 
        rgba(8, 215, 254, 0.1) 60%, 
        rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 2rem;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ccFF03;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 30, 30, 0.5);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #ccFF03;
}

.hero-feature i {
    color: #ccFF03;
    font-size: 1.2rem;
}

.hero-feature span {
    color: var(--text-color);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.primary-button {
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(250, 11, 213, 0.3);
}

.primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(250, 11, 213, 0.5);
}

.secondary-button {
    background: transparent;
    color: var(--text-color);
    border: 2px solid #08D7FE;
    box-shadow: 0 4px 15px rgba(8, 215, 254, 0.2);
}

.secondary-button:hover {
    background: rgba(8, 215, 254, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(8, 215, 254, 0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 2rem;
    min-height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stats-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(125, 114, 234, 0.3);
    z-index: 2;
    animation: fadeInUp 1s ease-in-out 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #ccFF03;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background-color: var(--medium-dark);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, 
        rgba(125, 114, 234, 0.1) 0%, 
        rgba(8, 215, 254, 0.1) 30%, 
        rgba(250, 11, 213, 0.05) 60%, 
        rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    color: #FA0BD5;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    border-radius: 2px;
}

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

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 114, 234, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(250, 11, 213, 0.3);
}

.highlight-feature {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.8));
    border: 2px solid var(--highlight-color);
    position: relative;
    overflow: hidden;
}

.highlight-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(204, 255, 3, 0.1) 0%, 
        rgba(250, 11, 213, 0.1) 50%, 
        rgba(125, 114, 234, 0.1) 100%);
    z-index: 0;
    pointer-events: none;
}

.highlight-feature .feature-icon,
.highlight-feature h3,
.highlight-feature p {
    position: relative;
    z-index: 1;
}

.highlight-feature h3 {
    color: var(--highlight-color);
}

.highlight-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(204, 255, 3, 0.2);
    border-color: var(--highlight-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7D72EA 0%, #FA0BD5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(125, 114, 234, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #08D7FE;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Features */
@media (max-width: 768px) {
    .features {
        padding: 4rem 1rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* Earnings Section */
.earnings {
    background-color: var(--dark-color);
    text-align: center;
}

.earnings h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-table {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.platform {
    background: var(--light-dark);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    flex: 1;
    position: relative;
}

.platform.promeet {
    background: linear-gradient(135deg, rgba(42, 42, 42, 1) 0%, rgba(36, 36, 36, 1) 100%);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
}

.best-choice {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.platform h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.platform.promeet h3 {
    color: var(--highlight-color);
}

.platform ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.platform ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.platform ul li i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.platform ul li i.fa-check {
    color: var(--accent-color);
}

.platform ul li i.fa-times {
    color: var(--primary-color);
}

.average-earnings {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.platform.promeet .average-earnings {
    color: var(--highlight-color);
}

/* Calculator */
.calculator {
    padding: 6rem 2rem;
    background-color: var(--dark-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(250, 11, 213, 0.1) 0%, 
        rgba(125, 114, 234, 0.1) 30%, 
        rgba(8, 215, 254, 0.05) 60%, 
        rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.calculator h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #08D7FE;
    position: relative;
    z-index: 2;
}

.calculator h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    border-radius: 2px;
}

.calculator-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.6);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(125, 114, 234, 0.2);
    position: relative;
    z-index: 2;
}

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

.form-group label {
    font-size: 1.1rem;
    color: var(--text-color);
}

.form-group input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(125, 114, 234, 0.3);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #FA0BD5;
    border-radius: 50%;
    cursor: pointer;
}

.form-group input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #FA0BD5;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.form-group span {
    font-size: 1.1rem;
    color: #ccFF03;
    align-self: flex-end;
    font-weight: 600;
}

.calculator-result {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(125, 114, 234, 0.3);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-item h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 2rem;
    color: #ccFF03;
    font-weight: 700;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, 
        rgba(250, 11, 213, 0.1) 0%, 
        rgba(125, 114, 234, 0.1) 30%, 
        rgba(8, 215, 254, 0.05) 60%, 
        rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #08D7FE;
    position: relative;
    z-index: 2;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    border-radius: 2px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial {
    background: rgba(30, 30, 30, 0.6);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(125, 114, 234, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #FA0BD5, #7D72EA);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7D72EA;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    text-align: center;
}

.testimonial-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ccFF03;
}

.stars {
    color: #ccFF03;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(125, 114, 234, 0.2);
}

.testimonial-stats .stat {
    text-align: center;
}

.testimonial-stats .stat h4 {
    font-size: 1.5rem;
    color: #08D7FE;
    margin-bottom: 0.3rem;
}

.testimonial-stats .stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* FAQ Section Improvements */
.faq {
    padding: 6rem 2rem;
    background-color: var(--dark-color);
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #FA0BD5;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--darker-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(125, 114, 234, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background-color: var(--darker-color);
    border: none;
    border-left: 3px solid #7D72EA;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: rgba(125, 114, 234, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(125, 114, 234, 0.1);
    color: #7D72EA;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    background-color: #7D72EA;
    color: var(--text-color);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(30, 30, 30, 0.5);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Signup Section Improvements */
.signup {
    padding: 6rem 2rem;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
        rgba(8, 215, 254, 0.1) 0%, 
        rgba(125, 114, 234, 0.1) 30%, 
        rgba(250, 11, 213, 0.05) 60%, 
        rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.signup-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.signup h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FA0BD5;
    text-align: center;
}

.signup p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.signup-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.signup-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 30, 30, 0.5);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #FA0BD5;
    width: calc(50% - 0.5rem);
    min-width: 250px;
}

.signup-feature i {
    color: #FA0BD5;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.signup-feature span {
    color: var(--text-color);
    font-size: 1.1rem;
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 2rem auto;
}

.comparison-table {
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(125, 114, 234, 0.2);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #08D7FE;
    text-align: center;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th, 
.comparison-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid rgba(125, 114, 234, 0.2);
}

.comparison-table th {
    color: #ccFF03;
    font-weight: 600;
}

.comparison-table th[colspan="3"] {
    font-size: 1.5rem;
    padding: 1rem;
    color: #08D7FE;
    background-color: rgba(8, 215, 254, 0.05);
    border-bottom: 2px solid rgba(8, 215, 254, 0.3);
}

.comparison-table td {
    color: var(--text-color);
}

.comparison-table td.highlight {
    color: #ccFF03;
    font-weight: 600;
}

.cta-button {
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 2rem auto 0;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 20px rgba(250, 11, 213, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(250, 11, 213, 0.5);
}

.signup-image {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.signup-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    height: auto;
}

.earnings-calculator {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: rgba(30, 30, 30, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(125, 114, 234, 0.3);
}

.earnings-calculator h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #08D7FE;
    text-align: center;
}

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

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

.form-group label {
    font-size: 1rem;
    color: var(--text-color);
}

.form-group input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(125, 114, 234, 0.3);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #FA0BD5;
    border-radius: 50%;
    cursor: pointer;
}

.form-group input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #FA0BD5;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.form-group span {
    font-size: 1rem;
    color: #ccFF03;
    align-self: flex-end;
    font-weight: 600;
}

.calculator-result {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(125, 114, 234, 0.3);
}

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

.result-item h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 1.5rem;
    color: #ccFF03;
    font-weight: 700;
    margin: 0;
}

/* Footer */
footer {
    background-color: var(--darker-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo h3 span {
    color: var(--primary-color);
}

.footer-logo p {
    color: #aaa;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    min-width: 300px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column a {
    display: block;
    color: #aaa;
    margin-bottom: 0.8rem;
}

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

.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background-color: var(--light-dark);
    color: var(--text-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.footer-bottom p {
    color: #aaa;
    margin-bottom: 0;
}

.language-selector select {
    background: var(--light-dark);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-family: inherit;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        text-align: center;
        padding: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .stats-card {
        position: static;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .comparison-table {
        flex-direction: column;
    }
    
    .platform.promeet {
        transform: none;
    }
    
    .signup {
        flex-direction: column;
    }
    
    .testimonial {
        flex-direction: column;
    }
    
    .testimonial-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .earnings-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .results {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--darker-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 2rem;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .nav-cta {
        display: block;
        width: 80%;
        margin: 1rem auto;
        text-align: center;
    }
    
    /* Hero section mobile improvements */
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 90vh;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-cta {
        width: 100%;
        text-align: center;
    }
    
    /* Features section mobile improvements */
    .features {
        padding: 4rem 1rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    /* Testimonials section mobile improvements */
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    /* Calculator section mobile improvements */
    .calculator {
        padding: 4rem 1rem;
    }
    
    .calculator h2 {
        font-size: 2rem;
    }
    
    .calculator-form {
        padding: 1.5rem;
    }
    
    .calculator-result {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Signup section mobile improvements */
    .signup {
        flex-direction: column;
        padding: 4rem 1rem;
    }
    
    .signup-content {
        padding: 1rem;
    }
    
    .signup h2 {
        font-size: 2rem;
    }
    
    .comparison-table {
        overflow-x: auto;
        padding: 1rem;
    }
    
    .comparison-table table {
        min-width: 500px;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    /* FAQ section mobile improvements */
    .faq {
        padding: 4rem 1rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Footer mobile improvements */
    footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-social {
        width: 100%;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Signup section mobile improvements */
    .signup {
        padding: 4rem 1rem;
    }
    
    .signup-content {
        padding: 1rem;
    }
    
    .signup h2 {
        font-size: 2rem;
    }
    
    .signup-feature {
        width: 100%;
        min-width: unset;
    }
    
    .comparison-table {
        padding: 1rem;
    }
    
    .comparison-table h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .comparison-table th[colspan="3"] {
        font-size: 1.3rem;
        padding: 0.8rem;
    }
    
    .comparison-table table {
        min-width: 450px;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.9rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Additional styles for better mobile experience */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .feature-card, .testimonial, .faq-item {
        margin-bottom: 1rem;
    }
    
    .signup-feature span {
        font-size: 0.95rem;
    }
    
    .comparison-table h3 {
        font-size: 1.2rem;
    }
    
    .comparison-table th[colspan="3"] {
        font-size: 1.1rem;
        padding: 0.6rem;
    }
    
    .comparison-table table {
        min-width: 400px;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.85rem;
    }
}

/* Language Switcher */
.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    background: rgba(125, 114, 234, 0.1);
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(125, 114, 234, 0.2);
}

.language-toggle i {
    color: #08D7FE;
}

.language-toggle .fa-chevron-down {
    font-size: 0.8em;
    margin-left: 2px;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--darker-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 114, 234, 0.2);
}

.language-dropdown:hover .language-menu,
.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    display: block;
    width: 100%;
}

.language-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: var(--text-color);
    transition: all 0.2s ease;
    text-align: left;
}

.flag-icon {
    font-size: 1.2em;
    margin-right: 2px;
}

.language-menu li a:hover {
    background-color: rgba(125, 114, 234, 0.1);
    color: #FA0BD5;
}

.language-menu li a.active {
    background-color: rgba(125, 114, 234, 0.2);
    color: #08D7FE;
}

/* Mobile language menu */
@media (max-width: 768px) {
    .language-dropdown {
        margin-bottom: 10px;
    }
    
    .language-toggle {
        justify-content: center;
        width: 100%;
        padding: 8px 15px;
        background: linear-gradient(to right, rgba(125, 114, 234, 0.1), rgba(8, 215, 254, 0.1));
        border: 1px solid rgba(125, 114, 234, 0.2);
    }
    
    .language-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        margin-top: 10px;
        margin-left: 15px;
        width: 100%;
        border: none;
    }
    
    .language-dropdown.active .language-menu {
        display: block;
    }
    
    .language-menu li a {
        padding: 8px 10px;
        justify-content: center;
    }
}

.join-now-container {
    margin-top: 2rem;
    text-align: center;
    z-index: 3;
}

.join-now-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(to right, #FA0BD5, #7D72EA);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(250, 11, 213, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 3;
}

.join-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(250, 11, 213, 0.5);
}
