/* ── MT Informative Board ─────────────────────────────────────────── */

/* Section wrapper */
.mtfe-ib-section {
    background-color: #f8f8f8;
    padding: 60px 30px;
}

/* Two-column grid */
.mtfe-ib-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    align-items: stretch;
    position: relative;
}

/* ── Left: Image ──────────────────────────────────────────────────────────── */

.mtfe-ib-image-col {
    padding-right: 48px;
}

.mtfe-ib-image-outer {
    background-color: #ffffff;
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 100%;
    min-height: 560px;
    box-sizing: border-box;
}

.mtfe-ib-image-inner {
    border-radius: 40px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.mtfe-ib-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.mtfe-ib-image-inner:hover .mtfe-ib-image {
    transform: scale(1.08);
}

.mtfe-ib-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(249, 115, 22, 0.10);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.mtfe-ib-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 60%);
    pointer-events: none;
}

/* ── Vertical Divider ─────────────────────────────────────────────────────── */

.mtfe-ib-divider {
    display: none;
}

/* ── Right: Cards Column ──────────────────────────────────────────────────── */

.mtfe-ib-cards-col {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

/* ── Card Base ────────────────────────────────────────────────────────────── */

.mtfe-ib-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

/* ── Stat Card ────────────────────────────────────────────────────────────── */

.mtfe-ib-stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.mtfe-ib-stat-number-wrap {
    flex-shrink: 0;
    display: flex;
    gap: 25px;
}

.mtfe-ib-stat-number {
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #000000;
    display: block;
}

.mtfe-ib-stat-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.mtfe-ib-stat-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.mtfe-ib-stat-title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.mtfe-ib-stat-desc {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    max-width: 440px;
}

.mtfe-ib-stat-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 8px;
}

/* ── Avatars ──────────────────────────────────────────────────────────────── */

.mtfe-ib-avatars {
    display: flex;
    align-items: center;
}

.mtfe-ib-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    border-style: solid;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.mtfe-ib-avatars .mtfe-ib-avatar:not(:first-child) {
    margin-left: -16px;
}

/* ── Tagline ──────────────────────────────────────────────────────────────── */

.mtfe-ib-tagline {
    font-size: 13px;
    line-height: 1.5;
}

.mtfe-ib-tagline-muted {
    color: #9ca3af;
}

.mtfe-ib-tagline-bold {
    font-weight: 600;
    color: #000000;
}

/* ── Bottom Row ───────────────────────────────────────────────────────────── */

.mtfe-ib-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* ── Skills Card ──────────────────────────────────────────────────────────── */

.mtfe-ib-skills-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mtfe-ib-progress-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mtfe-ib-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mtfe-ib-progress-label {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.mtfe-ib-progress-pct {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.mtfe-ib-progress-track {
    height: 6px;
    width: 100%;
    background-color: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden;
}

.mtfe-ib-progress-fill {
    height: 100%;
    background-color: #000000;
    border-radius: 9999px;
    width: 0;
    transition: width 1s ease-out;
}

/* ── Satisfaction Card ────────────────────────────────────────────────────── */

.mtfe-ib-satisfaction-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}

.mtfe-ib-icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    border-radius: 16px;
    margin-bottom: 32px;
    flex-shrink: 0;
}

.mtfe-ib-icon-box i {
    font-size: 40px;
    color: #000000;
    line-height: 1;
}

.mtfe-ib-icon-box svg {
    width: 40px;
    height: 40px;
    color: #000000;
    fill: none;
    stroke-width: 1.5;
}

.mtfe-ib-satisfaction-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin: 0;
    max-width: 200px;
}

.mtfe-ib-satisfaction-number {
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #000000;
    margin-top: 32px;
    display: block;
}

/* ── Responsive: Laptop ───────────────────────────────────────────────────── */

@media (min-width: 1025px) {
    .mtfe-ib-divider {
        display: block;
        position: absolute;
        left: 41.6667%;
        top: 48px;
        bottom: 48px;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .mtfe-ib-stat-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* ── Responsive: Tablet ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .mtfe-ib-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mtfe-ib-image-col {
        padding-right: 0;
    }

    .mtfe-ib-image-outer {
        min-height: 400px;
    }

    .mtfe-ib-cards-col {
        padding-left: 0;
    }

    .mtfe-ib-stat-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* ── Responsive: Mobile ───────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .mtfe-ib-stat-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .mtfe-ib-stat-number-wrap {
        flex-direction: column;
    }

    .mtfe-ib-bottom-row {
        grid-template-columns: 1fr;
    }

    .mtfe-ib-satisfaction-card {
        min-height: unset;
        gap: 32px;
    }

    .mtfe-ib-card {
        padding: 32px;
    }

    .mtfe-ib-stat-number,
    .mtfe-ib-satisfaction-number {
        font-size: 64px;
    }

    .mtfe-ib-image-outer {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .mtfe-ib-stat-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .mtfe-ib-section {
        padding: 40px 16px;
    }
}
