#mt-case-wrapper {
    all: initial;
    font-family: sans-serif;
    line-height: 1.6;
    color: #334155;
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

#mt-case-wrapper * {
    box-sizing: border-box;
}

#mt-case-wrapper .mt-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

#mt-case-wrapper .mt-section {
    padding: 60px 0;
}

#mt-case-wrapper .mt-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 80px 0 100px 0;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 0;
}

#mt-case-wrapper .mt-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 20px 0;
    line-height: 1.2;
}

#mt-case-wrapper .mt-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

#mt-case-wrapper .mt-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

#mt-case-wrapper .mt-kpi-item {
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

#mt-case-wrapper .mt-kpi-item:last-child {
    border-right: none;
}

#mt-case-wrapper .mt-kpi-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffab49;
}

#mt-case-wrapper .mt-kpi-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
}

#mt-case-wrapper h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

#mt-case-wrapper .mt-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

#mt-case-wrapper .mt-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: mt-counter;
}

#mt-case-wrapper .mt-steps-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 1rem;
}

#mt-case-wrapper .mt-steps-list li::before {
    counter-increment: mt-counter;
    content: counter(mt-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    background-color: #fef9e0;
    color: #ffab49;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 800;
    font-size: 0.9rem;
}

#mt-case-wrapper .mt-steps-list li strong {
    color: #0f172a;
    font-weight: 700;
}

#mt-case-wrapper .mt-figure {
    background: #F8FAFC;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin: 0;
}

#mt-case-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

#mt-case-wrapper .mt-cta-box {
    background-color: #F8FAFC;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    margin-top: 50px;
}

#mt-case-wrapper .mt-btn {
    background-color: #ffab49;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s ease;
}

#mt-case-wrapper .mt-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 768px) {
    #mt-case-wrapper .mt-content-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #mt-case-wrapper .mt-kpi-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    #mt-case-wrapper .mt-kpi-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    #mt-case-wrapper .mt-title {
        font-size: 1.8rem;
    }

    #mt-case-wrapper h2 {
        font-size: 1.6rem;
    }
}