/* =====================================================================
   Tentang MidLab
   ===================================================================== */

/* --- Hero --- */
.tt-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #dce5f5 0%, #d0dff5 30%, #c5d5f0 60%, #b8cce8 100%);
}

.tt-hero .ln-badge {
    margin-bottom: 16px;
    animation: fadeInDown .6s ease-out both;
}

.tt-hero h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--blue-dark, #345796);
    margin: 0 0 16px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp .7s ease-out .1s both;
}

.tt-hero p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sub, #6b7280);
    margin: 0 auto;
    max-width: 640px;
    animation: fadeInUp .7s ease-out .2s both;
}

/* --- Sections --- */
.tt-section {
    padding: 60px 0;
    background: var(--white, #fff);
}

.tt-section-alt {
    background: var(--blue-pale, #eaf0fa);
}

.tt-container-narrow {
    max-width: 800px;
}

.tt-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.tt-section-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink, #231f20);
    margin: 0 0 12px;
}

.tt-section-header p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sub, #6b7280);
    margin: 0 auto;
    max-width: 640px;
}

.tt-section-header p + p {
    margin-top: 10px;
}

.tt-container-narrow h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink, #231f20);
    margin: 0 0 14px;
}

.tt-container-narrow p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sub, #6b7280);
    margin: 0 0 14px;
}

.tt-container-narrow p:last-child {
    margin-bottom: 0;
}

/* --- 3 Feature Cards (Mengapa) --- */
.tt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tt-feature-card {
    padding: 28px 24px;
    background-color: var(--white, #fff);
    border-radius: 14px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.tt-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(66, 106, 179, .1);
}

.tt-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--blue, #426ab3);
    background: var(--blue-pale, #eaf0fa);
    border-radius: 14px;
    margin: 0 auto 16px;
}

.tt-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink, #231f20);
    margin: 0 0 8px;
}

.tt-feature-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--sub, #6b7280);
    margin: 0;
}

/* --- 4 Fitur Cards --- */
.tt-fitur-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tt-fitur-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--blue-pale, #eaf0fa);
    border-radius: 14px;
    transition: transform .2s;
}

.tt-fitur-card:hover {
    transform: translateY(-2px);
}

.tt-fitur-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue, #426ab3);
    background: #d6e0f0;
    border-radius: 12px;
}

.tt-fitur-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink, #231f20);
    margin: 0 0 4px;
}

.tt-fitur-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--sub, #6b7280);
    margin: 0;
}

/* --- Disclaimer --- */
.tt-disclaimer {
    margin-top: 24px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .6);
    border-left: 3px solid var(--blue, #426ab3);
    border-radius: 0 8px 8px 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--sub, #6b7280);
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 768px) {
    .tt-hero {
        padding: 120px 0 40px;
    }

    .tt-hero h1 {
        font-size: 26px;
    }

    .tt-section {
        padding: 40px 0;
    }

    .tt-features-grid {
        grid-template-columns: 1fr;
    }

    .tt-fitur-grid {
        grid-template-columns: 1fr;
    }
}
