/* ========================================
   HOME CONTENT - SHARED STYLES ??
   ======================================== */

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    margin-bottom: 60px;
    color: white;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-section h1 i {
    font-size: 48px;
    color: white;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ========== ACTION BUTTONS ========== */
.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* ========== FEATURES SECTION ========== */
.features-section,
.info-section,
.cta-section {
    margin-bottom: 60px;
}

.features-section h2,
.info-section h2,
.cta-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* ========== INFO SECTION ========== */
.info-section {
    background: #f9fafb;
    padding: 60px 40px;
    border-radius: 24px;
}

.info-section p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    font-size: 16px;
    color: #374151;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-section li i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-section h1 {
        font-size: 32px;
        flex-direction: column;
        gap: 12px;
    }

    .hero-section h1 i {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section h2,
    .info-section h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
