/* ============================================
   Services panel — Orisa at-service-area clone
   ============================================ */

.svc-panel {
    padding: clamp(72px, 9vw, 120px) 0;
    background: #fff;
}

.svc-panel .section-header {
    margin-bottom: clamp(40px, 5vw, 64px);
}

.svc-panel__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.5fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: start;
}

.svc-panel__pin {
    position: relative;
}

.svc-panel__images {
    position: relative;
    height: clamp(300px, 36vw, 450px);
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #dfe6ee;
}

.svc-panel__hover-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    will-change: transform, opacity;
}

.svc-panel__hover-image.is-active {
    opacity: 1;
    z-index: 2;
}

.svc-panel__hover-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-panel__metric {
    margin-top: 14px;
}

.svc-panel__metric-num {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary);
    line-height: 1;
}

.svc-panel__metric-plus {
    color: var(--highlight);
}

.svc-panel__metric-label {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.svc-panel__list {
    display: flex;
    flex-direction: column;
}

.svc-panel__item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) minmax(140px, 220px);
    gap: 16px 28px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(6, 26, 46, 0.1);
    cursor: pointer;
    background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
}

.svc-panel__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    letter-spacing: -0.04em;
    color: var(--text-muted);
    opacity: 0.3;
    transition: color 0.45s ease, opacity 0.45s ease;
}

.svc-panel__content {
    display: block;
    min-width: 0;
}

.svc-panel__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.55rem, 3.2vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--primary);
    opacity: 0.28;
    transition: opacity 0.45s ease;
}

.svc-panel__title.heading-split .word {
    white-space: normal;
}

.svc-panel__body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.45s ease, margin 0.45s ease;
    margin-top: 0;
}

.svc-panel__desc {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 48ch;
}

.svc-panel__checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.svc-panel__checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.svc-panel__checks svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--highlight);
}

.svc-panel__thumb {
    justify-self: end;
    overflow: hidden;
    border-radius: 10px;
    width: 160px;
    height: 96px;
    background: #dfe6ee;
}

.svc-panel__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.45s ease, filter 0.45s ease, width 0.45s ease, height 0.45s ease;
}

.svc-panel__item.is-active .svc-panel__num,
.svc-panel__item:hover .svc-panel__num {
    color: var(--highlight);
    opacity: 1;
}

.svc-panel__item.is-active .svc-panel__title,
.svc-panel__item:hover .svc-panel__title {
    opacity: 1;
}

.svc-panel__item.is-active .svc-panel__body,
.svc-panel__item:hover .svc-panel__body {
    opacity: 1;
    max-height: 280px;
    margin-top: 14px;
}

.svc-panel__item.is-active .svc-panel__thumb,
.svc-panel__item:hover .svc-panel__thumb {
    width: 210px;
    height: 128px;
}

.svc-panel__item.is-active .svc-panel__thumb img,
.svc-panel__item:hover .svc-panel__thumb img {
    transform: scale(1.08);
    filter: brightness(1.06);
}

.svc-panel__cta {
    margin-top: 32px;
}

@media (max-width: 960px) {
    .svc-panel__grid {
        grid-template-columns: 1fr;
    }

    .svc-panel__pin {
        position: relative !important;
        transform: none !important;
    }

    .svc-panel__images {
        height: min(52vw, 380px);
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .svc-panel__item {
        grid-template-columns: 56px 1fr;
        gap: 10px 14px;
    }

    .svc-panel__thumb {
        display: none;
    }

    .svc-panel__title {
        font-size: clamp(1.35rem, 7vw, 1.9rem);
    }

    .svc-panel__item.is-active .svc-panel__body,
    .svc-panel__item:hover .svc-panel__body {
        max-height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-panel__num,
    .svc-panel__title,
    .svc-panel__body,
    .svc-panel__thumb img {
        transition: none;
    }
}
