/* 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.7;
    color: #1f2937;
    background: #ffffff;
    font-size: 16px;
}

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

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #111827;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1E3A8A;
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: #374151;
}

.highlight {
    color: #B91C1C;
}

.lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E3A8A;
}

.emphasis {
    font-weight: 600;
    color: #B91C1C;
    font-size: 1.125rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #B91C1C;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(185, 28, 28, 0.2);
}

.cta-button:hover {
    background: #991B1B;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(185, 28, 28, 0.3);
}

.cta-button.primary {
    background: #B91C1C;
}

.cta-button.secondary {
    background: #1E3A8A;
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.2);
}

.cta-button.secondary:hover {
    background: #1E40AF;
    box-shadow: 0 6px 12px rgba(30, 58, 138, 0.3);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

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

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #B91C1C 100%);
    color: white;
    padding: 4rem 0;
}

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

.hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.subheadline {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #E0E7FF;
    line-height: 1.7;
}

/* Video Styling - COMPACT SIZE */
.video-wrapper {
    margin: 2.5rem auto;
}

.video-container {
    max-width: 400px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-container.youtube iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.video-caption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: #D1D5DB;
    font-style: italic;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1.25rem;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: #F9FAFB;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: white;
}

.benefit-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #B91C1C;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.25rem;
}

.card p {
    color: #4B5563;
    line-height: 1.7;
}

.card-highlight {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    color: #1E3A8A;
    font-weight: 600;
    background: #DBEAFE;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

/* What's Included */
.whats-included {
    padding: 5rem 0;
    background: #DBEAFE;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.0625rem;
}

.inclusion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.inclusion-column h3 {
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.inclusion-list {
    list-style: none;
}

.inclusion-list li {
    padding: 0.75rem 0;
    font-size: 1.0625rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkmark {
    color: #059669;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.coverage-note {
    text-align: center;
    margin: 3rem 0 0;
    color: #6B7280;
    font-style: italic;
    font-size: 1rem;
}

/* Value Stack */
.value-stack {
    padding: 5rem 0;
    background: #F3F4F6;
}

.value-card {
    max-width: 700px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #D1D5DB;
}

.value-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1E3A8A;
    font-size: 1.375rem;
}

.value-items {
    margin-bottom: 1.5rem;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
    align-items: center;
    gap: 1rem;
}

.value-label {
    flex: 1;
    font-size: 1rem;
}

.value-amount {
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.9375rem;
}

.value-amount.savings {
    color: #059669;
}

.value-divider {
    height: 2px;
    background: linear-gradient(90deg, #B91C1C 0%, #1E3A8A 100%);
    margin: 1.5rem 0;
}

.value-total,
.value-payment,
.value-result {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-weight: 700;
    align-items: center;
}

.total-amount {
    font-size: 1.875rem;
    color: #1E3A8A;
}

.payment-amount {
    font-size: 1.875rem;
    color: #B91C1C;
}

.value-arrow {
    text-align: center;
    font-size: 2.5rem;
    color: #059669;
    margin: 1rem 0;
}

.result-amount {
    font-size: 2.25rem;
    color: #059669;
}

.value-bonus {
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    color: #6B7280;
    font-size: 0.9375rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial {
    background: #F9FAFB;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid #B91C1C;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #F59E0B;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-align: center;
}

.quote {
    font-size: 1.0625rem;
    font-style: italic;
    margin-bottom: 1.25rem;
    color: #374151;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: #1E3A8A;
    text-align: center;
}

/* Detailed Video Section */
.detailed-video {
    padding: 5rem 0;
    background: #1F2937;
    color: white;
}

.detailed-video h2,
.detailed-video .section-subtitle {
    color: white;
}

.detailed-video .section-subtitle {
    color: #D1D5DB;
}

.video-benefits {
    max-width: 800px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
}

.video-benefits h3 {
    color: white;
    margin-bottom: 1.25rem;
}

.video-benefits ul {
    list-style: none;
}

.video-benefits li {
    padding: 0.625rem 0;
    font-size: 1.0625rem;
    color: #E5E7EB;
}

/* Who This Is For */
.who-for {
    padding: 5rem 0;
    background: #F9FAFB;
}

.for-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.for-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 3px solid #B91C1C;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.for-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.15);
}

.for-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
}

.for-card p {
    color: #4B5563;
    line-height: 1.7;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #F9FAFB;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #E5E7EB;
    transition: border 0.3s ease;
}

.faq-item:hover {
    border-color: #B91C1C;
}

.faq-question {
    padding: 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    color: #1E3A8A;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #F3F4F6;
}

.toggle {
    font-size: 1.75rem;
    font-weight: 300;
    color: #B91C1C;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.75rem 1.75rem;
    line-height: 1.8;
    color: #4B5563;
}

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

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #B91C1C 0%, #1E3A8A 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.cta-subtitle {
    color: white;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    color: #E5E7EB;
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-secure {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin-top: 1.25rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    color: #9CA3AF;
}

.close:hover {
    color: #374151;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    margin-bottom: 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #B91C1C;
}

#contact-form textarea {
    resize: vertical;
}

#contact-success {
    text-align: center;
    padding: 2rem;
    color: #059669;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: #111827;
    color: #9CA3AF;
    padding: 3.5rem 0 1.5rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    color: #D1D5DB;
}

.footer-col a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 0.625rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #B91C1C;
}

.disclaimer {
    border-top: 1px solid #374151;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
}

.disclaimer p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #9CA3AF;
}

/* Desktop Responsive */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.75rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .benefit-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .inclusion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }
    
    .container {
        padding: 0 32px;
    }
}
