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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #2E8B57, #228B22);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.kit-name {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
    padding: 120px 0 80px;
    margin-top: 80px;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2E8B57;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #228B22;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
}

.disclaimer {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
}

.cta-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section h3 {
    color: #2E8B57;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 20px;
}

.lead-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.lead-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.lead-form input:focus {
    outline: none;
    border-color: #2E8B57;
}

.btn-primary {
    background: linear-gradient(135deg, #228B22, #32CD32);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

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

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.problem-item h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.problem-conclusion {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.problem-conclusion p {
    font-size: 1.2rem;
    color: #555;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: linear-gradient(135deg, #E6F3FF, #F0F8FF);
}

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

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

.solution h3 {
    color: #228B22;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.solution p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.benefits-list {
    display: grid;
    gap: 15px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.benefit-icon {
    color: #228B22;
    font-size: 1.2rem;
}

/* Guide Preview Section */
.guide-preview {
    padding: 80px 0;
    background: white;
}

.guide-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 50px;
}

.guide-chapters {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.chapter {
    background: #F8F9FA;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #228B22;
}

.chapter h3 {
    color: #2E8B57;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

.guide-cta {
    text-align: center;
    background: linear-gradient(135deg, #2E8B57, #228B22);
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.guide-cta h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.guide-cta .lead-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #2E8B57;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Training Program Section */
.training-program {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8DC, #FFFACD);
}

.training-program h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.program-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.program-description h3 {
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.program-description p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.program-features {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature h4 {
    color: #8B4513;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    margin: 0;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: sticky;
    top: 100px;
}

.pricing-card h3 {
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
}

.price-period {
    display: block;
    color: #888;
    font-size: 0.9rem;
}

.price-features {
    text-align: left;
    margin-bottom: 30px;
}

.price-features p {
    margin-bottom: 10px;
    color: #555;
}

.guarantee {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem;
}

.template-info {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .lead-form {
        flex-direction: column;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .program-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .pricing-card {
        position: static;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.problem-item,
.testimonial,
.chapter {
    animation: fadeInUp 0.6s ease-out;
}

