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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #F8FAFC;
}

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

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h2 {
    color: #1E3A8A;
    font-weight: 800;
    font-size: 1.5rem;
}

.header-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: #F59E0B;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #F59E0B;
}

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

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.urgency-text {
    color: #F59E0B;
    font-weight: 600;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.cta-button.secondary:hover {
    background: #1E3A8A;
    color: white;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.25rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1E3A8A;
}

/* Problem Section */
.problem {
    background: white;
}

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

.problem-text p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.pain-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #FEF2F2;
    border-radius: 12px;
    border-left: 4px solid #EF4444;
}

.pain-icon {
    font-size: 1.5rem;
}

.solution-intro {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 20px;
    text-align: left;
}

.solution-intro h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #F59E0B;
}

/* Program Section */
.program {
    background: #F8FAFC;
}

.program-days {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.program-day {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.day-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.day-info h3 {
    font-size: 1.5rem;
    color: #F59E0B;
    font-weight: 800;
}

.day-info h4 {
    font-size: 1.8rem;
    color: #1E3A8A;
    font-weight: 700;
    margin: 8px 0;
}

.day-subtitle {
    color: #6B7280;
    font-style: italic;
}

.day-content h5 {
    font-size: 1.2rem;
    color: #1E3A8A;
    margin-bottom: 16px;
    font-weight: 600;
}

.day-content ul {
    list-style: none;
}

.day-content li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.day-content li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 0;
}

.day-content strong {
    color: #1E3A8A;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

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

.testimonial {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #F59E0B;
    font-weight: 800;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: 20px;
}

.testimonial-author h4 {
    color: #1E3A8A;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author p {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    background: #F8FAFC;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.pricing-header h3 {
    font-size: 1.5rem;
    color: #1E3A8A;
    margin-bottom: 16px;
    font-weight: 700;
}

.price {
    margin-bottom: 32px;
}

.currency {
    font-size: 1.5rem;
    color: #6B7280;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1E3A8A;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

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

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

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    color: white;
    margin-bottom: 24px;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #F59E0B;
}

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

.event-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #F59E0B;
}

.final-urgency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F59E0B;
    margin-top: 24px;
    animation: pulse 2s infinite;
}

/* Registration Section */
.registration {
    background: white;
    padding: 100px 0;
}

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

.registration-content h2 {
    color: #1E3A8A;
    margin-bottom: 16px;
}

.registration-content p {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 40px;
}

.registration-form {
    text-align: left;
}

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

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

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

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

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: #F59E0B;
    background: #FEF3C7;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #F59E0B;
    background: #F59E0B;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Footer */
.footer {
    background: #1E3A8A;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-info h3 {
    color: #F59E0B;
    margin-bottom: 16px;
}

.footer-contact h4 {
    margin-bottom: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .day-header {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 16px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 20px 32px;
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
}

