/* ================================
   LANDING PAGE SPECIFIC STYLES
   ================================ */

/* Body padding for fixed header */
body {
    padding-top: 70px;
}

/* Hero Section - Module 1 Featured */
.hero-module1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-module1::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-module1 h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-module1 .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-module1 .features-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.hero-module1 .feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    margin: 0.5rem;
}

.hero-cta .btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Other Modules Section */
.other-modules {
    padding: 80px 20px;
    background: #f8f9fa;
}

.other-modules h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.other-modules .subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.module-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.module-card.disabled::after {
    content: 'COMING SOON';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #fbbf24;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: bold;
}

.module-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.module-card .module-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.module-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-info {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.module-info-item {
    text-align: center;
}

.module-info-item .label {
    font-size: 0.8rem;
    color: #666;
    display: block;
}

.module-info-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
}

.module-card .btn {
    width: 100%;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero-module1 h1 {
        font-size: 2rem;
    }

    .hero-module1 .subtitle {
        font-size: 1.1rem;
    }

    .hero-module1 .features-list {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        display: block;
        margin: 0.5rem auto;
    }

    .other-modules h2 {
        font-size: 2rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* Partner Promo Section */
.partner-promo {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.partner-promo-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: white;
}

.partner-promo-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.partner-promo .btn {
  font-size: 18px;
  padding: 15px 40px;
}
/* ============================================
   RESPONSIVE FIX - Add this to the END of landing.css removed this part 
   ============================================ */
   
