
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-icon.small {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.badge {
    background: #dcfce7;
    color: #166534;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breaking-badge {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #2563eb;
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.alert-box {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
    border-radius: 8px;
}

.alert-box h3 {
    color: #92400e;
    font-weight: bold;
    margin-bottom: 8px;
}

.alert-box p {
    color: #b45309;
}

.cta-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.cta-button.white {
    background: white;
    color: #2563eb;
}

.cta-button.white:hover {
    background: #f9fafb;
}

.disclaimer {
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    background: #dcfce7;
    color: #166534;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.section-badge.purple {
    background: #f3e8ff;
    color: #7c2d12;
}

.section-badge.orange {
    background: #fed7aa;
    color: #ea580c;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 64px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.benefit-card {
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.join-box {
    background: #f0f8ff;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.join-box h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.join-box p {
    font-size: 18px;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials {
    padding: 64px 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.testimonial-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
}

.testimonial-author strong {
    color: #1f2937;
    display: block;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

.testimonial-disclaimer {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 64px 0;
    background: white;
}

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

.faq-item {
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    background: white;
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.faq-icon {
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-answer {
    padding: 0 24px 24px 68px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-box {
    background: #f0f8ff;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.contact-box h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.contact-box p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

.contact-email {
    color: #2563eb !important;
    font-weight: 600;
    margin-bottom: 0 !important;
}

/* Final CTA Section */
.final-cta {
    padding: 64px 0;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 20px;
    color: #bfdbfe;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-small {
    font-size: 12px !important;
    color: #6b7280 !important;
}

.footer-links {
    margin-top: 16px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 20px;
    }
}
