/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-section h2 {
    font-size: 32px;
    color: #64ffda;
    margin-bottom: 30px;
}

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

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background: #64ffda;
    color: #1a237e;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.video-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.video-link:hover {
    color: #64ffda;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #1a237e;
    font-size: 16px;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Framework Modules Section */
.framework-modules {
    padding: 80px 0;
}

.framework-modules h2 {
    text-align: center;
    color: #1a237e;
    font-size: 36px;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.module-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.module-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.module-card h3 {
    color: #1a237e;
    font-size: 24px;
    margin-bottom: 15px;
}

.module-card p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.module-card li {
    padding: 8px 0;
    color: #2c3e50;
    font-size: 16px;
    border-bottom: 1px solid #e9ecef;
}

.module-card li:last-child {
    border-bottom: none;
}

.module-link {
    display: inline-block;
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.module-link:hover {
    color: #0d47a1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section h2 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-group {
        flex-direction: column;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }
}

/* Transformation Section */
.transformation {
    padding: 100px 0;
    background: #f8f9fa;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.transformation-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.transformation-card h3 {
    color: #1a237e;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.transformation-card h3::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #64ffda;
}

.transformation-card p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    color: #1a237e;
    font-size: 24px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
}

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

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
}

/* Framework Categories */
.category-section {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.category-header h3 {
    font-size: 24px;
    color: #1a237e;
}

.view-all {
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #64ffda;
}

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

.framework-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.framework-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.framework-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.framework-content {
    padding: 20px;
}

.framework-content h4 {
    color: #1a237e;
    font-size: 18px;
    margin-bottom: 10px;
}

.framework-content p {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .frameworks-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Add to existing CSS */
.framework-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #64ffda;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.framework-navigator {
    padding: 60px 0;
    background: #f8f9fa;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.nav-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.nav-card h3 {
    color: #1a237e;
    margin-bottom: 10px;
}

.nav-card p {
    color: #666;
    font-size: 16px;
} 