:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #1e293b;
    --accent-color: #f43f5e;
    --background-light: #ffffff;
    --background-dark: #0f172a;
    --text-light: #334155;
    --text-dark: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-800: #1e293b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark theme variables */
[data-theme="dark"] {
    --background-light: var(--background-dark);
    --text-light: var(--text-dark);
    --gray-100: var(--gray-800);
    --gray-200: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-light);
    transition: var(--transition);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 2rem;
    background: var(--background-dark);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 2rem;
    background: var(--background-dark);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-brand span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    display: none; /* Hide the text, show only logo */
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(180deg);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
    padding: 0.5rem;
}

/* Dark theme navbar */
[data-theme="dark"] .navbar {
    background: var(--background-dark);
}

[data-theme="dark"] .navbar.scrolled {
    background: var(--background-dark);
}

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

    .nav-links {
        display: none; /* Change from flex to none by default */
        position: fixed;
        top: 0;
        right: 0; /* Change from -100% to 0 */
        height: 100vh;
        width: 80%;
        background: var(--background-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: all 0.3s ease-in-out;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex; /* Show as flex when active */
    }

    .nav-links a {
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-dark);
        opacity: 1; /* Ensure links are visible */
        transform: none; /* Remove transform */
    }

    /* Add overlay */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* Mobile menu button active state */
    .mobile-menu.active {
        color: var(--primary-color);
    }

    /* Adjust the navbar on mobile */
    .navbar {
        padding: 0.6rem 1rem;
        background: var(--background-dark);
    }

    .brand-logo {
        height: 35px;
    }

    .footer-brand .brand-logo {
        height: 40px;
    }

    .theme-toggle {
        margin-top: 2rem;
    }

    [data-theme="dark"] .nav-links {
        background: var(--background-dark);
    }
}

/* Dark theme mobile menu */
[data-theme="dark"] .mobile-menu {
    color: var(--text-dark);
}

[data-theme="dark"] .nav-links {
    background: var(--background-dark);
}

[data-theme="dark"] .nav-links a {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 10% 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    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"><rect width="100" height="100" fill="none" stroke="%23ffffff10" stroke-width="0.25"/></svg>') repeat;
    opacity: 0.1;
}

.brand-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.cta-button.primary {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    position: relative;
    flex: 1;
    max-width: 600px;
    margin-left: 4rem;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.hero-image img {
    width: 500px;
    height: auto;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements i {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
}

.float-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 20%;
    animation: float 8s ease-in-out infinite;
}

.float-3 {
    bottom: 20%;
    left: 30%;
    animation: float 7s ease-in-out infinite;
}

.hero-badges {
    position: absolute;
    bottom: 2rem;
    right: 0;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.badge {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    color: var(--primary-color);
}

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

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

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1.5rem 2rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 1.2rem 2rem;
    }

    .hero-stats {
        display: none;
    }

    .hero-image {
        display: none; /* Hide the entire hero image section on mobile */
    }

    .hero-badges {
        display: none; /* Hide the badges on mobile */
    }

    .hero-content {
        max-width: 100%;
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Mode Enhancements */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="dark"] .brand-tag {
    background: rgba(255, 255, 255, 0.05);
}

/* Mailbox Section */
.mailbox {
    padding: 6rem 2rem 2rem;
    background-color: var(--background-light);
}

.email-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background-light);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.temp-email {
    padding: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-radius: 8px 8px 0 0;
}

.temp-email span {
    flex: 1;
    font-size: 1.2rem;
    word-break: break-all;
    min-width: 200px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 0.5px;
    text-align: center;
}

.temp-email-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.copy-btn, .refresh-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover, .refresh-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.copy-btn.copied {
    background-color: #4CAF50;
    color: white;
}

.inbox {
    padding: 1rem;
}

.inbox-header {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.inbox-messages {
    max-height: 400px;
    overflow-y: auto;
}

.email-item {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
}

.email-item:hover {
    background-color: var(--gray-100);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        display: none; /* Hide stats on mobile */
    }

    .temp-email {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .temp-email span {
        text-align: center;
        font-size: 1rem;
    }

    .temp-email-buttons {
        justify-content: center;
    }

    .inbox-header, .email-item {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .inbox-header {
        grid-template-columns: 1.5fr 2fr 1fr;
    }

    .email-item {
        grid-template-columns: 1.5fr 2fr 1fr;
        gap: 0.5rem;
    }

    .copy-btn, .refresh-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mailbox {
        padding: 6rem 1rem 2rem;
    }

    .inbox-header, .email-item {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .email-item {
        gap: 0.25rem;
    }

    .copy-btn, .refresh-btn {
        padding: 0.5rem;
    }
}

/* Dark Mode Enhancements */
[data-theme="dark"] .email-container {
    background-color: var(--background-dark);
}

[data-theme="dark"] .temp-email {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
}

[data-theme="dark"] .copy-btn, [data-theme="dark"] .refresh-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--background-light), var(--gray-100));
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.pricing-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.pricing-cards::-webkit-scrollbar {
    display: none;
}

.price-card {
    flex: 0 0 calc(100% - 4rem);
    max-width: 400px;
    min-width: 280px;
    scroll-snap-align: center;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.price-card.active {
    opacity: 1;
    transform: scale(1);
}

/* Scroll Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.scroll-arrow.scroll-left {
    left: 10px;
}

.scroll-arrow.scroll-right {
    right: 10px;
}

.scroll-arrow i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.scroll-arrow:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 0 40px;
    }

    .price-card {
        flex: 0 0 calc(100% - 2rem);
        min-width: 260px;
        margin: 0 1rem;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

    .scroll-arrow i {
        font-size: 1rem;
    }
}

.price-card {
    background: var(--background-light);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

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

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.price-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.price-card .price small {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
}

.price-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--gray-100) 100%);
    text-align: center;
}

.features h2 {
    margin-bottom: 4rem;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.features-grid {
    display: flex;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.features-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.feature-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--background-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

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

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

/* Contact Form Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--gray-100) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    padding: 3rem;
    background: var(--background-light);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background-color: var(--background-light);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::after {
    width: 300%;
    height: 300%;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--text-dark);
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand .brand-logo {
    height: 50px;
    width: auto;
}

.footer-brand span {
    display: none; /* Hide the text, show only logo */
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    color: var(--text-dark);
    margin: 0 1rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section Enhancements */
.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.price-card ul {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.price-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    color: var(--text-light);
}

.price-card li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.price-card li.disabled {
    opacity: 0.5;
}

.price-card li.disabled i {
    color: var(--accent-color);
}

/* Enhanced Dark Theme */
[data-theme="dark"] {
    --background-light: var(--background-dark);
    --text-light: var(--text-dark);
    --gray-100: var(--gray-800);
    --gray-200: #334155;
}

[data-theme="dark"] .hero h1 {
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
}

[data-theme="dark"] .price-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--background-light);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-cards {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        gap: 1rem;
        padding: 1rem 0;
    }

    .pricing-cards::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .price-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin: 0 0.5rem;
    }

    .scroll-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .scroll-arrow:hover {
        opacity: 1;
    }

    .scroll-left {
        left: 0;
    }

    .scroll-right {
        right: 0;
    }

    .scroll-arrow i {
        font-size: 1.2rem;
    }

    .scroll-arrow.hidden {
        display: none;
    }

    .features-grid {
        padding: 0.5rem;
        gap: 1rem;
    }

    .feature-card {
        flex: 0 0 260px;
        padding: 2rem 1.5rem;
    }
}

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

.hero-content, .price-card, .feature-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.price-card:nth-child(2) {
    animation-delay: 0.2s;
}

.price-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Enhanced Buttons */
.cta-button, .price-btn, .submit-btn {
    position: relative;
    overflow: hidden;
}

.cta-button::after, .price-btn::after, .submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::after, .price-btn:hover::after, .submit-btn:hover::after {
    width: 300%;
    height: 300%;
}

/* Email Modal */
.email-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.email-modal-content {
    background: var(--background-light);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.email-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-modal-header h3 {
    margin: 0;
    color: var(--text-light);
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.email-modal-body {
    padding: 1.5rem;
}

.email-content {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 5px;
}

/* Button Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.refresh-btn.spinning i {
    animation: spin 1s linear infinite;
}

.copy-btn.copied {
    background-color: var(--primary-color) !important;
    transform: scale(1.1);
}

/* Email Item Hover */
.email-item {
    position: relative;
    cursor: pointer;
}

.email-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.email-item:hover::after {
    transform: scaleX(1);
}

/* Dark Mode Enhancements */
[data-theme="dark"] .email-modal-content {
    background: var(--background-dark);
    border: 1px solid var(--gray-200);
}

[data-theme="dark"] .email-content {
    background: rgba(255, 255, 255, 0.05);
}

/* Message Counter */
.message-counter {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--background-light);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
        text-align: center;
    }
    
    .theme-toggle {
        margin-top: 2rem;
    }
    
    .email-modal-content {
        width: 95%;
        margin: 1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--background-light);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    background: var(--gray-100);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-200);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: var(--background-light);
}

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

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1rem;
}

.faq-answer li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    opacity: 0.8;
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Dark Mode Enhancements for FAQ */
[data-theme="dark"] .faq {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .faq-question {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 1rem;
    }

    .faq h2 {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.25rem;
    }
} 