.service-area__layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 24px;
    align-items: start;
}

.service-area__tabs {
    display: grid;
    gap: 14px;
}

.service-area__tab {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(20, 39, 23, 0.1);
    border-radius: 22px;
    background: rgba(243, 247, 240, 0.82);
    color: #163121;
    cursor: pointer;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-area__tab.is-active,
.service-area__tab:hover {
    transform: translateY(-3px);
    border-color: rgba(95, 119, 47, 0.32);
    background: rgba(249, 252, 247, 0.96);
}

.service-area__panel {
    padding: 28px;
    border: 1px solid rgba(20, 39, 23, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(240, 216, 82, 0.16), transparent 28%),
        rgba(244, 248, 240, 0.88);
    box-shadow: 0 24px 42px rgba(15, 31, 20, 0.1);
}

.service-area__eyebrow {
    margin: 0 0 10px;
    color: #5f772f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.service-area__panel h3 {
    margin: 0;
    color: #163121;
    font-size: 30px;
    line-height: 1.05;
}

.service-area__summary,
.service-area__details {
    margin: 15px 0 0;
    color: rgba(22, 49, 33, 0.84);
    line-height: 1.65;
}

.service-area__list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.service-area__panel .home-pill-row,
.service-area__panel .home-cta-row {
    margin-top: 20px;
}

@media (max-width: 980px) {
    .service-area__layout {
        grid-template-columns: 1fr;
    }
}
