/**
 * MME Impact Lab — Services page
 * Scoped under .page-services (loaded after style.css)
 */

.page-services {
    --svc-radius: 20px;
    --svc-radius-lg: 28px;
    --svc-shadow: 0 12px 40px rgba(22, 50, 79, 0.08);
    --svc-shadow-hover: 0 24px 48px rgba(41, 107, 180, 0.14);
}

/* ─── Hero ─── */
.services-hero {
    position: relative;
    min-height: min(92vh, 880px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(6rem, 12vh, 8rem) 0 clamp(4.5rem, 8vh, 6rem);
    background-color: #050e1c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 14, 28, 0.5) 0%, rgba(5, 14, 28, 0.78) 50%, rgba(5, 14, 28, 0.9) 100%),
        linear-gradient(105deg, rgba(5, 14, 28, 0.7) 0%, rgba(5, 14, 28, 0.35) 50%, rgba(5, 14, 28, 0.65) 100%);
}

.services-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 15%, transparent 72%);
}

.services-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 2;
    pointer-events: none;
}

.services-hero-glow--left {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
    background: rgba(44, 171, 74, 0.22);
}

.services-hero-glow--right {
    width: 360px;
    height: 360px;
    bottom: 0;
    right: -80px;
    background: rgba(41, 107, 180, 0.2);
}

.services-hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 920px;
}

.services-hero-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 3vh, 1.75rem);
    animation: svcHeroFadeIn 0.9s ease-out both;
}

@keyframes svcHeroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.services-hero-title {
    margin: 0;
    max-width: 22ch;
}

.services-hero-title-top {
    display: block;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7dd99a;
    margin-bottom: 0.65rem;
}

.services-hero-title-main {
    display: block;
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.services-hero-title-main em {
    font-style: normal;
    background: linear-gradient(135deg, #a8e6b8 0%, #5eb3ff 55%, #7dd99a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-title-sub {
    display: block;
    margin-top: 0.35rem;
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.02em;
}

.services-hero-lead {
    max-width: 46ch;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 0;
}

.services-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.services-hero-btn--primary {
    color: #0f2744 !important;
    background: linear-gradient(135deg, #f1bb1b, #e5a80a);
    box-shadow: 0 10px 32px rgba(241, 187, 27, 0.35);
    border: none;
}

.services-hero-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(241, 187, 27, 0.45);
    color: #0f2744 !important;
}

.services-hero-btn--primary .services-hero-btn-arrow {
    transition: transform 0.25s ease;
}

.services-hero-btn--primary:hover .services-hero-btn-arrow {
    transform: translateX(4px);
}

.services-hero-btn--ghost {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.services-hero-btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #7dd99a;
    color: #ffffff !important;
}

.services-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 760px;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.services-hero-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.services-hero-stat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 171, 74, 0.2);
    color: #7dd99a;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.services-hero-stat-body {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.15rem;
}

.services-hero-stat-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.services-hero-stat-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.services-hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.25s ease;
    animation: svcHeroScrollBounce 2.5s ease-in-out infinite;
}

.services-hero-scroll:hover {
    color: #7dd99a;
}

@keyframes svcHeroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Section headers (shared) ─── */
.services-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.services-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    color: #0f2744;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

.services-section-header h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    margin: 0.85rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.services-section-header h2 span {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-section-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #5a6874;
    margin: 0;
}

/* ─── Core features ─── */
.services-core {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #f4f8fb;
    overflow: hidden;
}

.services-core-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-core-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.services-core-blob--1 {
    width: 360px;
    height: 360px;
    top: -80px;
    right: -60px;
    background: rgba(41, 107, 180, 0.12);
}

.services-core-blob--2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -40px;
    background: rgba(44, 171, 74, 0.1);
}

.services-core .container {
    position: relative;
    z-index: 1;
}

.services-core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
}

.services-core-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--svc-radius);
    border: 1px solid rgba(41, 107, 180, 0.08);
    box-shadow: var(--svc-shadow);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.services-core-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--card-accent, var(--primary-blue)), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-core-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--svc-shadow-hover);
    border-color: rgba(41, 107, 180, 0.18);
}

.services-core-card:hover::before {
    opacity: 1;
}

.services-core-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--card-accent, #296bb4), color-mix(in srgb, var(--card-accent, #296bb4) 70%, #000));
    box-shadow: 0 8px 24px color-mix(in srgb, var(--card-accent, #296bb4) 35%, transparent);
    transition: transform 0.3s ease;
}

.services-core-card:hover .services-core-icon {
    transform: scale(1.06) rotate(-4deg);
}

.services-core-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f2744;
    margin: 0 0 0.65rem;
}

.services-core-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #5a6874;
    margin: 0;
}

/* ─── Professional offerings grid ─── */
.services-offerings {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #ffffff;
}

.services-offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    max-width: 1180px;
    margin: 0 auto;
}

.services-offering-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--svc-radius);
    border: 1px solid rgba(41, 107, 180, 0.08);
    box-shadow: var(--svc-shadow);
    padding: 1.75rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-offering-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--svc-shadow-hover);
}

.services-offering-index {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(15, 39, 68, 0.12);
    letter-spacing: 0.05em;
}

.services-offering-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: var(--svc-accent-soft, rgba(41, 107, 180, 0.12));
    color: var(--svc-accent, #296bb4);
    transition: transform 0.3s ease;
}

.services-offering-card:hover .services-offering-icon {
    transform: scale(1.08);
}

.services-offering-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f2744;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.services-offering-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a6874;
    margin: 0;
}

/* ─── Digital showcase ─── */
.services-showcase {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    overflow: hidden;
    background: linear-gradient(165deg, #eef4fa 0%, #e8f5ec 50%, #f4f8fb 100%);
}

.services-showcase-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-showcase-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.services-showcase-blob--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -80px;
    background: rgba(41, 107, 180, 0.15);
}

.services-showcase-blob--2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -60px;
    background: rgba(44, 171, 74, 0.12);
}

.services-showcase-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.services-showcase-content {
    text-align: left;
}

.services-showcase-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0f2744;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

.services-showcase-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.services-showcase-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6874;
    margin: 0 0 1.75rem;
}

.services-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.services-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.35rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid transparent;
}

.services-showcase-btn--dark {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f2744, #1a3a5c);
    box-shadow: 0 8px 24px rgba(15, 39, 68, 0.25);
}

.services-showcase-btn--dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 39, 68, 0.35);
    color: #ffffff !important;
}

.services-showcase-btn--outline {
    color: var(--primary-blue) !important;
    background: #ffffff;
    border-color: rgba(41, 107, 180, 0.2);
    box-shadow: 0 4px 16px rgba(41, 107, 180, 0.08);
}

.services-showcase-btn--outline:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    color: var(--primary-blue) !important;
}

.services-showcase-btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1rem;
}

.services-showcase-btn--outline .services-showcase-btn-icon {
    background: rgba(41, 107, 180, 0.1);
    color: var(--primary-blue);
}

.services-showcase-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.services-showcase-btn-text small {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.services-showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-device {
    position: relative;
    width: min(280px, 85vw);
    aspect-ratio: 9 / 19;
    max-height: 520px;
}

.services-device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 24px 60px rgba(15, 39, 68, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.services-device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fa 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.services-device-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #0f2744;
}

.services-device-status-icons {
    display: flex;
    gap: 0.35rem;
    font-size: 0.65rem;
    color: #5a6874;
}

.services-device-app {
    flex: 1;
    padding: 1.25rem 1rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-device-app-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(41, 107, 180, 0.15), rgba(44, 171, 74, 0.12));
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.services-device-app h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f2744;
    margin: 0 0 0.25rem;
}

.services-device-app .tagline {
    font-size: 0.75rem;
    color: #5a6874;
    margin: 0 0 1rem;
}

.services-device-features {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.services-device-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #0f2744;
    padding: 0.45rem 0.65rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(41, 107, 180, 0.08);
}

.services-device-feature i {
    color: var(--primary-green);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.services-device-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(41, 107, 180, 0.2), transparent 65%);
    z-index: -1;
    pointer-events: none;
}

/* ─── CTA ─── */
.services-cta {
    position: relative;
    padding: clamp(4rem, 8vw, 5.5rem) 0;
    overflow: hidden;
}

.services-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #0f2744 40%, #163a5c 100%);
}

.services-cta-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.services-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.services-cta-glow--1 {
    width: 320px;
    height: 320px;
    top: -80px;
    left: 10%;
    background: rgba(44, 171, 74, 0.2);
}

.services-cta-glow--2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    right: 15%;
    background: rgba(241, 187, 27, 0.12);
}

.services-cta .container {
    position: relative;
    z-index: 1;
}

.services-cta-panel {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--svc-radius-lg);
    backdrop-filter: blur(12px);
}

.services-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 2rem;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.75rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-cta-btn--primary {
    color: #0f2744 !important;
    background: linear-gradient(135deg, #f1bb1b, #e8a80f);
    box-shadow: 0 10px 28px rgba(241, 187, 27, 0.35);
    border: none;
}

.services-cta-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(241, 187, 27, 0.45);
    color: #0f2744 !important;
}

.services-cta-btn--primary i:last-child {
    transition: transform 0.25s ease;
}

.services-cta-btn--primary:hover i:last-child {
    transform: translateX(4px);
}

.services-cta-btn--secondary {
    color: #ffffff !important;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.services-cta-btn--secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #7dd99a;
    color: #ffffff !important;
}

/* ─── Reveal animations ─── */
.svc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.svc-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.svc-reveal:nth-child(1) { transition-delay: 0.05s; }
.svc-reveal:nth-child(2) { transition-delay: 0.1s; }
.svc-reveal:nth-child(3) { transition-delay: 0.15s; }
.svc-reveal:nth-child(4) { transition-delay: 0.2s; }
.svc-reveal:nth-child(5) { transition-delay: 0.25s; }
.svc-reveal:nth-child(6) { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 992px) {
    .services-core-grid,
    .services-offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-showcase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-showcase-content {
        text-align: center;
    }

    .services-showcase-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: auto;
        padding-top: 5.5rem;
        padding-bottom: 4rem;
    }

    .services-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .services-hero-btn {
        width: 100%;
    }

    .services-hero-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .services-hero-stat {
        justify-content: center;
    }

    .services-hero-scroll {
        display: none;
    }

    .services-core-grid,
    .services-offerings-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .services-showcase-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .services-showcase-btn {
        width: 100%;
        justify-content: center;
    }

    .services-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .services-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .services-hero-title-main {
        font-size: 1.85rem;
    }

    .services-hero-stat {
        padding: 0.5rem 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-hero-inner,
    .services-hero-scroll,
    .svc-reveal {
        animation: none;
        transition: none;
    }

    .services-hero-btn:hover,
    .services-core-card:hover,
    .services-offering-card:hover,
    .services-showcase-btn:hover,
    .services-cta-btn:hover {
        transform: none;
    }

    .svc-reveal {
        opacity: 1;
        transform: none;
    }
}
