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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* EventAgent Brand Colors */
:root {
    --eventagent-purple: #6200EE;
    --eventagent-purple-dark: #6200EE;
    --eventagent-purple-light: #f0e6ff;
    --eventagent-accent: #fbbf24;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    height: 110px;
    overflow: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eventagent-purple);
    height: 100%;
    gap: 0;
}

.logo-icon {
    height: 70px;
    width: auto;
    margin-left: -50px;
    border-radius: 10px;
    align-self: center;
}

.logo-text {
    height: 50px;
    width: auto;
    object-fit: contain;
    align-self: center;
    margin-top: 15px;
    margin-right:15px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--eventagent-purple);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    margin-top: 1.0rem;
}

.nav-link:hover {
    color: var(--eventagent-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--eventagent-purple);
    transition: width 0.3s ease;
}

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

/* Navigation Waitlist Button */
.nav-waitlist-btn {
    background: linear-gradient(45deg, var(--eventagent-accent), #f59e0b);
    color: #1f2937;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 3rem;
}

.nav-waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Hero Section */
.hero {
    min-height: 110vh;
    background: linear-gradient(135deg, #9575CD 0%, var(--eventagent-purple-dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 30px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 300px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, var(--eventagent-accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--eventagent-accent), #f59e0b);
    color: #1f2937;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(98, 0, 238, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem 1rem;
    padding-right: 0;
}

.floating-cards {
    position: relative;
    width: 600px;
    height: 450px;
    margin-right: -150px;
    margin-left: 100px;
}

.event-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    animation: float 6s ease-in-out infinite;
    min-width: 140px;
    max-width: 210px;
    white-space: nowrap;
    font-size: 0.9rem;
}

.event-card i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.card-1 {
    top: 8%;
    left: 0%;
    animation-delay: 0s;
}

.card-2 {
    top: 8%;
    right: 0%;
    animation-delay: 2s;
}

.card-3 {
    top: 35%;
    left: 0%;
    animation-delay: 4s;
}

.card-4 {
    top: 35%;
    right: 0%;
    animation-delay: 1s;
}

.card-5 {
    top: 62%;
    left: 5%;
    animation-delay: 3s;
}

.card-6 {
    top: 62%;
    right: 0%;
    animation-delay: 5s;
}

.card-7 {
    bottom: 8%;
    left: 15%;
    animation-delay: 2.5s;
}

.card-8 {
    bottom: 8%;
    right: 15%;
    animation-delay: 4.5s;
}

.card-9 {
    top: 20%;
    left: 35%;
    animation-delay: 6s;
}

.card-10 {
    top: -5%;
    right: 35%;
    animation-delay: 7s;
}

.card-11 {
    top: 38%;
    left: 32%;
    animation-delay: 8s;
}

.card-12 {
    top: 60%;
    left: 38%;
    animation-delay: 1.5s;
}



.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9575CD, var(--eventagent-purple-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--eventagent-purple);
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-size: 0.9rem;
}

.ai-visualization {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.ai-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9575CD, var(--eventagent-purple-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: pulse 3s ease-in-out infinite;
}

.ai-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--eventagent-accent), #f59e0b);
}

.ai-node.node-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.5s; }
.ai-node.node-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1s; }
.ai-node.node-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.ai-node.node-4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 2s; }

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #64748b;
}

.contact-item i {
    width: 20px;
    color: var(--eventagent-purple);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--eventagent-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(98, 0, 238, 0.3);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--eventagent-purple-dark), var(--eventagent-purple));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(98, 0, 238, 0.3);
}

/* Waitlist Section */
.waitlist-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--eventagent-purple) 0%, var(--eventagent-purple-dark) 100%);
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waitlist-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23waitlist-pattern)"/></svg>');
    opacity: 0.3;
}

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

.waitlist-text {
    color: white;
}

.waitlist-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, white, var(--eventagent-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
}

.benefit-item i {
    color: var(--eventagent-accent);
    font-size: 1.2rem;
    width: 20px;
}

.waitlist-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    color: white;
}

.waitlist-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    border-radius: 50px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.input-group input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    font-size: 1rem;
    background: transparent;
    color: #333;
}

.input-group input::placeholder {
    color: #999;
}

.input-group input:focus {
    outline: none;
}

.waitlist-btn {
    background: linear-gradient(45deg, var(--eventagent-accent), #f59e0b);
    color: #1f2937;
    padding: 1.2rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.waitlist-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.waitlist-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.waitlist-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--eventagent-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Temporarily disable waitlist elements */
.nav-waitlist-btn,
.waitlist-section,
.hero-buttons {
    display: none !important;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--eventagent-accent);
}

.footer-logo-icon {
    height: 25px;
    width: auto;
    margin-right: 0.5rem;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: 80px;
        padding: 0.8rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 3rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-waitlist-btn {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        text-align: center;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo-icon {
        height: 45px;
        margin-left: 0;
    }
    
    .logo-text {
        height: 35px;
        margin-top: 8px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .hero-visual {
        padding: 1rem 0;
        margin-left: 0;
        justify-content: center;
    }
    
    .floating-cards {
        width: 300px;
        height: 350px;
        margin-right: 0;
        margin-left: 0;
    }
    
    .event-card {
        padding: 0.7rem;
        font-size: 0.75rem;
        min-width: 100px;
        max-width: 130px;
        gap: 0.5rem;
    }
    
    /* Mobile card positioning adjustments */
    .card-1 { left: -15px !important; }
    .card-2 { right: -15px !important; }
    .card-3 { left: -20px !important; }
    .card-4 { right: -20px !important; }
    .card-5 { left: -15px !important; }
    .card-6 { right: -15px !important; }
    .card-7 { left: -20px !important; }
    .card-8 { right: -20px !important; }
    .card-9 { left: 35% !important; }
    .card-10 { right: 15px !important; }
    .card-11 { left: 30% !important; }
    .card-12 { left: 35% !important; }
    
    .event-card i {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .ai-visualization {
        width: 250px;
        height: 250px;
    }
    
    .stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .footer-logo-icon {
        height: 20px;
    }
    
    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .waitlist-text h2 {
        font-size: 2.5rem;
    }
    
    .waitlist-text p {
        font-size: 1.1rem;
    }
    
    .waitlist-form {
        padding: 2rem;
    }
    
    .waitlist-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 75px;
    }
    
    .nav-menu {
        top: 75px;
        height: calc(100vh - 75px);
        padding-top: 2rem;
    }
    
    .logo-icon {
        height: 40px;
        margin-left: 0;
    }
    
    .logo-text {
        height: 30px;
        margin-top: 6px;
    }
    
    .hero {
        padding-top: 75px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .floating-cards {
        width: 280px;
        height: 320px;
    }
    
    .event-card {
        padding: 0.6rem;
        font-size: 0.7rem;
        min-width: 90px;
        max-width: 120px;
        gap: 0.4rem;
    }
    
    .event-card i {
        font-size: 0.8rem;
    }
    
    /* Extra small mobile card positioning */
    .card-1 { left: -25px !important; }
    .card-2 { right: -25px !important; }
    .card-3 { left: -30px !important; }
    .card-4 { right: -30px !important; }
    .card-5 { left: -25px !important; }
    .card-6 { right: -25px !important; }
    .card-7 { left: -30px !important; }
    .card-8 { right: -30px !important; }
    .card-9 { left: 32% !important; }
    .card-10 { right: 5px !important; }
    .card-11 { left: 28% !important; }
    .card-12 { left: 32% !important; }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .waitlist-text h2 {
        font-size: 2rem;
    }
    
    .waitlist-text p {
        font-size: 1rem;
    }
    
    .waitlist-form {
        padding: 1.5rem;
    }
    
    .waitlist-form h3 {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .input-group input {
        border-radius: 15px 15px 0 0;
    }
    
    .waitlist-btn {
        border-radius: 0 0 15px 15px;
        padding: 1rem 2rem;
    }
    
    .waitlist-stats {
        flex-direction: column;
        gap: 1rem;
    }
} 