.service-showcase-section {
    background: var(--soft);
}

.service-showcase {
    display: grid;
    grid-template-columns: minmax(280px, .36fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.service-overview-panel {
    position: sticky;
    top: 108px;
    padding: clamp(26px, 3.4vw, 38px);
    border: 1px solid rgba(217, 224, 232, .95);
    border-radius: var(--radius-lg);
    color: #ffffff;
    background:
        linear-gradient(rgba(7, 17, 31, .9), rgba(7, 17, 31, .94)),
        url("../../images/gallery/33.jpeg") center / cover;
    box-shadow: 0 20px 46px rgba(7, 17, 31, .14);
}

.service-overview-panel .eyebrow {
    color: var(--amber);
}

.service-overview-panel h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.03;
    font-weight: 800;
}

.service-overview-panel p:not(.eyebrow) {
    margin: 22px 0 0;
    color: #dbe4ef;
    font-weight: 650;
}

.service-overview-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.service-overview-stats article {
    min-height: 118px;
    padding: 18px;
    border: 1px solid rgba(219, 228, 239, .18);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .08);
}

.service-overview-stats strong,
.service-overview-stats span {
    display: block;
}

.service-overview-stats strong {
    color: var(--amber);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 800;
}

.service-overview-stats span {
    margin-top: 10px;
    color: #ffffff;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
}

.service-detail-list {
    display: grid;
    gap: 22px;
}

.service-detail {
    position: relative;
    display: grid;
    grid-template-columns: 154px minmax(0, 1fr);
    gap: 0;
    scroll-margin-top: 96px;
    padding: 0;
    border: 1px solid rgba(217, 224, 232, .95);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: 0 16px 38px rgba(7, 17, 31, .07);
    overflow: hidden;
    isolation: isolate;
    transition: opacity 520ms ease, transform 520ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-detail::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--amber);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 260ms ease;
}

.service-detail.reveal {
    transition-delay: calc(var(--service-index, 0) * 90ms);
}

.service-detail:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 78, 166, .32);
    box-shadow: 0 24px 54px rgba(7, 17, 31, .12);
}

.service-detail:hover::before {
    transform: scaleY(1);
}

.service-detail-rail {
    display: grid;
    align-content: space-between;
    justify-items: center;
    gap: 28px;
    min-height: 100%;
    padding: 30px 22px;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, .96), rgba(7, 17, 31, .88)),
        radial-gradient(circle at 50% 18%, rgba(242, 183, 5, .24), transparent 36%);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(242, 183, 5, .46);
    border-radius: 999px;
    color: var(--amber);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1;
}

.service-detail-rail .icon-box {
    width: 78px;
    height: 78px;
    color: var(--black);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
    transition: transform 220ms ease, background-color 220ms ease;
}

.service-detail:hover .service-detail-rail .icon-box {
    transform: rotate(-5deg) scale(1.06);
    background: var(--amber);
}

.service-detail-main {
    padding: clamp(24px, 4vw, 42px);
}

.service-detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.service-tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(23, 78, 166, .08);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-detail-head h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(1.65rem, 2.5vw, 2.5rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: 0;
}

.service-detail-head p {
    max-width: 860px;
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    font-weight: 650;
}

.service-detail-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 16px;
    border: 2px solid var(--blue);
    border-radius: var(--radius-sm);
    color: var(--blue);
    background: #ffffff;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.service-detail-head a:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: var(--blue);
}

.service-feature-list {
    margin-top: 24px;
}

.service-feature-list li {
    min-height: 58px;
    padding: 15px 16px 15px 46px;
    border: 1px solid rgba(217, 224, 232, .9);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(180deg, rgba(244, 247, 250, .84), rgba(255, 255, 255, 0)),
        #ffffff;
    color: var(--ink);
    font-weight: 750;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.service-feature-list li:hover {
    transform: translateX(4px);
    border-color: rgba(23, 78, 166, .32);
    background: #f8fbfb;
}

.service-feature-list li::before {
    left: 17px;
    top: 1.55em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--teal);
}
