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

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

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

p {
    margin-bottom: 1rem;
    color: #5C6465;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #D90707 0%, #0E1850 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(217, 7, 7, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 7, 7, 0.6);
}

.btn-secondary {
    background: white;
    color: #0E1850;
    border: 2px solid #0E1850;
}

.btn-secondary:hover {
    background: #0E1850;
    color: white;
    transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
    padding: 20px 40px;
    font-size: 1.2rem;
    margin: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0E1850 0%, #263764 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8fafc;
}

.problem h2 {
    color: #2d3748;
    margin-bottom: 2rem;
}

.problem-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #4a5568;
}

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

.problem-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    color: #e53e3e;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.problem-item p {
    margin: 0;
    font-size: 1.1rem;
}

.problem-revelation {
    background: #fed7d7;
    border-left: 4px solid #e53e3e;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.problem-revelation p {
    margin: 0;
    font-size: 1.2rem;
    color: #742a2a;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.solution-promise {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #2d3748;
}

.solution p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
}

.benefit-icon {
    color: #48bb78;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.benefit-item p {
    margin: 0;
    color: #4a5568;
}

.schedule {
    background: #edf2f7;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.schedule h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
}

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

.schedule-option {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.schedule-option h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.schedule-option ul {
    list-style: none;
    padding: 0;
}

.schedule-option li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.schedule-option li::before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: """;
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-content {
    margin-top: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: #667eea;
    font-weight: 600;
}

/* Programme Details Section */
.programme-details {
    padding: 80px 0;
    background: white;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.day-item {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border-top: 4px solid #667eea;
    transition: transform 0.3s ease;
}

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

.day-number {
    background: #0E1850;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.day-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.day-item p {
    color: #4a5568;
    margin: 0;
}

.included {
    background: #edf2f7;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.included h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.included-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
}

.included-icon {
    color: #48bb78;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.included-item strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.5rem;
}

.included-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid #0E1850;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D90707;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #0E1850;
    margin-bottom: 0.5rem;
}

.price-description {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-icon {
    color: #48bb78;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.feature p {
    margin: 0;
    color: #4a5568;
}

.pricing-card button {
    width: 100%;
}

.sibling-discount {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0E1850 0%, #263764 100%);
    border-radius: 12px;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sibling-discount h3 {
    color: white;
    margin-bottom: 1rem;
}

.sibling-discount p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}

.payment-plans {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: white;
}

.urgency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.timing-benefits h3 {
    color: #2d3748;
    margin-bottom: 2rem;
}

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

.timing-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
}

.timing-icon {
    color: #48bb78;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.timing-item p {
    margin: 0;
    color: #4a5568;
}

.scarcity-box {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #e53e3e;
    text-align: center;
}

.scarcity-box h3 {
    color: #742a2a;
    margin-bottom: 1rem;
}

.scarcity-box p {
    color: #742a2a;
    margin: 0;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0E1850 0%, #263764 100%);
    color: white;
    text-align: center;
}

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

.final-promise {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.final-urgency {
    font-size: 1.2rem;
    margin-bottom: 3rem !important;
    color: white;
}

.cta-buttons {
    margin: 3rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-item p {
    margin: 0;
    color: white;
}

/* Trust Signals Footer */
.trust-signals {
    padding: 60px 0;
    background: #2d3748;
    color: white;
}

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

.trust-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.trust-icon {
    color: #48bb78;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.trust-item strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.trust-item p {
    margin: 0;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .urgency-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .btn-primary.large, .btn-secondary.large {
        padding: 16px 24px;
        font-size: 1.1rem;
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-img {
        height: 250px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .pricing-card, .testimonial, .day-item {
        padding: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for buttons */
.btn-primary:active, .btn-secondary:active {
    transform: translateY(0);
}

/* Focus states for accessibility */
.btn-primary:focus, .btn-secondary:focus {
    outline: 3px solid rgba(14, 24, 80, 0.5);
    outline-offset: 2px;
}

