/* =========================================
   Why Matmoe Section
   ========================================= */

.why-matmoe {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(144, 192, 39, 0.10), transparent 34%),
        linear-gradient(180deg, #0b0d0a 0%, #050505 100%);
    overflow: hidden;
}

.why-matmoe::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.08;
    pointer-events: none;
}

.why-matmoe-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.why-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(144, 192, 39, 0.12);
    color: var(--matmoe-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-matmoe h2 {
    margin: 0 0 24px;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.why-matmoe h2 span {
    color: var(--matmoe-primary);
}

.why-matmoe-content p {
    max-width: 620px;
    margin: 0 0 18px;
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.75;
}

.why-matmoe-content .btn-primary {
    margin-top: 24px;
}

.why-matmoe-cards {
    display: grid;
    gap: 22px;
}

.why-card {
    position: relative;
    padding: 30px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 70px rgba(0,0,0,0.30);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(144,192,39,0.42);
    box-shadow: 0 28px 80px rgba(144,192,39,0.12);
}

.why-card span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--matmoe-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.why-card h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.25;
}

.why-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .why-matmoe {
        padding: 80px 0;
    }

    .why-matmoe-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .why-matmoe h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .why-matmoe h2 {
        font-size: 31px;
    }

    .why-matmoe-content p {
        font-size: 16px;
    }

    .why-card {
        padding: 24px;
    }
}