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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Problem Section */
.problem {
    padding: 60px 20px;
    background-color: white;
}

.problem h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-point {
    text-align: center;
    padding: 20px;
}

.icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.pain-point p {
    font-size: 1.1rem;
    color: #555;
}

/* Solution Section */
.solution {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.solution h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #667eea;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon {
    padding: 60px 20px;
    background-color: white;
}

.coming-soon h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.future-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.future-feature {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.future-feature:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.future-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.future-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.vote-prompt {
    text-align: center;
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-top: 30px;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background-color: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.price-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.price span {
    font-size: 1.5rem;
    color: #666;
}

.price-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.early-bird {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.discount {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}

.discount-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.1rem;
}

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

/* Waitlist Section */
.waitlist {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.waitlist h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.waitlist-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

#waitlistForm {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button {
    width: 100%;
    background-color: #f39c12;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.privacy-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.thank-you {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you h3 {
    color: #27ae60;
    font-size: 2rem;
    margin-bottom: 15px;
}

.thank-you p {
    color: #2c3e50;
    font-size: 1.2rem;
}

/* Trust Section */
.trust {
    padding: 40px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.trust-item {
    font-size: 1.1rem;
    margin: 15px 0;
    color: #555;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    #waitlistForm {
        padding: 30px 20px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .pain-points {
        grid-template-columns: 1fr;
    }
}
