.svc-page {
    min-height: calc(100dvh - 4.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem 2rem;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 45%, #f0fdfa 100%);
    overflow: hidden;
}

.svc-page__inner {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    min-height: calc(100dvh - 7rem);
}

.svc-toggle {
    display: inline-flex;
    padding: 0.35rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
    flex-shrink: 0;
}

.svc-toggle__btn {
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.65rem 1.35rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.svc-toggle__btn.is-active {
    color: #fff;
    background: linear-gradient(135deg, #0284c7, #9333ea);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.svc-toggle__btn:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

.svc-carousel {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 0;
}

.svc-viewport {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    position: relative;
    overflow: hidden;
    outline: none;
}

.svc-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 22rem;
}

.svc-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 3.5rem;
    opacity: 0;
    transform: translateY(1.25rem);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.svc-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.svc-slide.is-exiting {
    opacity: 0;
    transform: translateY(-1rem);
    z-index: 1;
}

.svc-slide__icon {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1.75rem;
    box-shadow: 0 16px 32px -12px rgba(14, 165, 233, 0.45);
}

.svc-slide__name {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.svc-slide__overview {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #475569;
    max-width: 28rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.svc-slide__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 0.85rem;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #0284c7, #9333ea);
    text-decoration: none;
    box-shadow: 0 10px 24px -8px rgba(2, 132, 199, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-slide__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(147, 51, 234, 0.45);
}

.svc-slide__cta:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 3px;
}

.svc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    color: #334155;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.svc-arrow:hover {
    background: #fff;
    color: #0284c7;
    transform: translateY(-50%) scale(1.05);
}

.svc-arrow:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

.svc-arrow--prev {
    left: 0;
}

.svc-arrow--next {
    right: 0;
}

.svc-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.svc-dot {
    width: 0.65rem;
    height: 0.65rem;
    border: none;
    border-radius: 9999px;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: width 0.25s ease, background 0.25s ease;
}

.svc-dot.is-active {
    width: 1.75rem;
    background: linear-gradient(90deg, #0284c7, #9333ea);
}

.svc-dot:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .svc-slide {
        padding: 0.5rem 2.75rem;
    }

    .svc-arrow {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.85rem;
    }

    .svc-slide__icon {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 1.85rem;
    }
}
