/**
 * MME Impact Lab — Home page enhancements
 * Loaded after inline section styles to unify polish and fix contrast.
 */

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

/* ─── Hero ─── */
.home-hero {
    position: relative;
    min-height: min(100vh, 920px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(6rem, 12vh, 8rem) 0 clamp(4.5rem, 8vh, 6rem);
}

.home-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 14, 28, 0.55) 0%, rgba(5, 14, 28, 0.82) 45%, rgba(5, 14, 28, 0.92) 100%),
        linear-gradient(105deg, rgba(5, 14, 28, 0.75) 0%, rgba(5, 14, 28, 0.35) 55%, rgba(5, 14, 28, 0.7) 100%);
}

.home-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.35;
    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%);
}

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

.home-hero-glow--left {
    width: 420px;
    height: 420px;
    top: 15%;
    left: -120px;
    background: rgba(44, 171, 74, 0.2);
}

.home-hero-glow--right {
    width: 380px;
    height: 380px;
    bottom: 5%;
    right: -100px;
    background: rgba(41, 107, 180, 0.22);
}

.home-hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 900px;
    padding-left: clamp(1.25rem, 4vw, 2rem);
    padding-right: clamp(1.25rem, 4vw, 2rem);
}

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

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

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

.home-hero-title--cms,
.home-hero-title--cms h1,
.home-hero-title--cms h2 {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff !important;
}

.home-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;
}

.home-hero-title-main {
    display: block;
    font-size: clamp(2.35rem, 6.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.home-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;
}

.home-hero-lead {
    max-width: 46ch;
    margin: 0;
}

.home-hero-lead-primary {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    margin: 0 0 0.5rem;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.home-hero-lead-secondary {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

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

.home-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;
}

.home-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;
}

.home-hero-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(241, 187, 27, 0.45);
    background: linear-gradient(135deg, #ffd54f, #f1bb1b);
    color: #0f2744 !important;
}

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

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

.home-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);
}

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

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

.home-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.home-hero-trust-item i {
    color: #7dd99a;
    font-size: 0.75rem;
}

.home-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: homeHeroScrollBounce 2.5s ease-in-out infinite;
}

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

.home-hero-scroll i {
    font-size: 0.85rem;
}

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

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

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

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

    .home-hero-trust {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-trust-item {
        justify-content: center;
    }

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

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

    .home-hero-btn:hover {
        transform: none;
    }
}

/* ─── Welcome / What we do ─── */
.home-intro {
    position: relative;
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    overflow: hidden;
    background: #f4f8fb;
}

.home-intro-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.home-intro-blob--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px;
    background: rgba(44, 171, 74, 0.18);
}

.home-intro-blob--2 {
    width: 380px;
    height: 380px;
    bottom: -100px;
    right: -60px;
    background: rgba(41, 107, 180, 0.14);
}

.home-intro-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(41, 107, 180, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 107, 180, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
}

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

.home-intro-content {
    text-align: left;
}

.home-intro-title {
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    font-weight: 800;
    color: #0f2744 !important;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin-bottom: 0.75rem;
}

.home-intro-title-accent {
    display: block;
    margin-top: 0.15em;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-intro-subtitle {
    display: inline-block;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: var(--primary-green) !important;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-green), var(--primary-blue)) 1;
}

.home-intro-text {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: #4a5d6e !important;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 52ch;
}

.home-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.home-intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    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, background 0.25s ease, border-color 0.25s ease;
}

.home-intro-btn--primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary-blue), #1a4d8c);
    box-shadow: 0 10px 28px rgba(41, 107, 180, 0.28);
}

.home-intro-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(41, 107, 180, 0.35);
    background: linear-gradient(135deg, #3a7bc4, var(--primary-blue));
    color: #ffffff !important;
}

.home-intro-btn--primary i {
    transition: transform 0.25s ease;
}

.home-intro-btn--primary:hover i {
    transform: translateX(4px);
}

.home-intro-btn--ghost {
    color: var(--primary-blue) !important;
    background: #ffffff;
    border: 2px solid rgba(41, 107, 180, 0.2);
    box-shadow: 0 4px 16px rgba(22, 50, 79, 0.06);
}

.home-intro-btn--ghost:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    color: var(--primary-green) !important;
    box-shadow: var(--home-shadow-hover);
}

/* Visual panel */
.home-intro-visual {
    position: relative;
}

.home-intro-panel {
    position: relative;
    background: #ffffff;
    border-radius: var(--home-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(41, 107, 180, 0.1);
    box-shadow:
        0 24px 60px rgba(15, 39, 68, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.home-intro-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(41, 107, 180, 0.08);
}

.home-intro-panel-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7a86;
}

.home-intro-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #0f2744;
    background: linear-gradient(135deg, rgba(241, 187, 27, 0.25), rgba(44, 171, 74, 0.15));
    border-radius: 999px;
}

.home-intro-panel-badge i {
    color: var(--primary-green);
    font-size: 0.65rem;
}

.home-intro-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.home-intro-pillar {
    padding: 1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fbfd, #ffffff);
    border: 1px solid rgba(41, 107, 180, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-intro-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(41, 107, 180, 0.12);
    border-color: rgba(44, 171, 74, 0.25);
}

.home-intro-pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 0.65rem;
    border-radius: 12px;
    background: color-mix(in srgb, var(--pillar-color) 14%, transparent);
    color: var(--pillar-color);
    font-size: 1rem;
}

.home-intro-pillar h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f2744 !important;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.home-intro-pillar p {
    font-size: 0.8rem;
    color: #6b7a86 !important;
    line-height: 1.5;
    margin: 0;
}

.home-intro-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: #ffffff;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    border: 1px solid rgba(41, 107, 180, 0.12);
    box-shadow: 0 8px 24px rgba(41, 107, 180, 0.12);
    animation: introFloat 5s ease-in-out infinite;
}

.home-intro-float i {
    color: var(--primary-green);
    font-size: 0.75rem;
}

.home-intro-float--1 {
    top: -12px;
    right: -8px;
    animation-delay: 0s;
}

.home-intro-float--2 {
    bottom: 24px;
    left: -16px;
    animation-delay: 1.5s;
}

@keyframes introFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
    .home-intro-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .home-intro-content {
        text-align: center;
    }

    .home-intro-text {
        margin-left: auto;
        margin-right: auto;
    }

    .home-intro-actions {
        justify-content: center;
    }

    .home-intro-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .home-intro-float--1 {
        right: 8px;
    }

    .home-intro-float--2 {
        left: 8px;
    }
}

@media (max-width: 480px) {
    .home-intro-pillars {
        grid-template-columns: 1fr;
    }

    .home-intro-actions {
        flex-direction: column;
        width: 100%;
    }

    .home-intro-btn {
        width: 100%;
    }

    .home-intro-float {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-intro-float {
        animation: none;
    }
}

/* ─── Core capabilities strip ─── */
.home-capabilities {
    position: relative;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background: #ffffff;
    overflow: hidden;
}

.home-capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(41, 107, 180, 0.15), transparent);
}

.home-capabilities-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.home-capabilities-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    color: #0f2744 !important;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.home-capabilities-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));
}

.home-capabilities-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;
}

.home-capabilities-lead {
    font-size: 1.05rem;
    color: #5a6874 !important;
    line-height: 1.7;
    margin: 0;
}

.home-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}

.home-cap-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem 1.5rem;
    min-height: 260px;
    background: #ffffff;
    border-radius: var(--home-radius-lg);
    border: 1px solid rgba(41, 107, 180, 0.1);
    box-shadow: 0 8px 32px rgba(15, 39, 68, 0.06);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cap-accent), color-mix(in srgb, var(--cap-accent) 60%, white));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.home-cap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(15, 39, 68, 0.12);
    border-color: color-mix(in srgb, var(--cap-accent) 35%, transparent);
}

.home-cap-card:hover::before {
    transform: scaleX(1);
}

.home-cap-index {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    color: var(--cap-accent-soft);
    -webkit-text-fill-color: transparent;
    background: linear-gradient(180deg, var(--cap-accent-soft), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    pointer-events: none;
    user-select: none;
}

.home-cap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.15rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cap-accent), color-mix(in srgb, var(--cap-accent) 70%, #000));
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--cap-accent) 35%, transparent);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-cap-card:hover .home-cap-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--cap-accent) 45%, transparent);
}

.home-cap-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f2744 !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.home-cap-desc {
    flex: 1;
    font-size: 0.88rem;
    color: #6b7a86 !important;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    position: relative;
    z-index: 1;
}

.home-cap-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cap-accent) !important;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.25s ease, color 0.25s ease;
}

.home-cap-link i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.home-cap-link:hover {
    gap: 0.65rem;
}

.home-cap-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .home-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home-capabilities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .home-cap-card {
        min-height: auto;
    }
}

/* ─── Our Services (home) ─── */
.home-services {
    position: relative;
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 50%, #f0f7f2 100%);
    overflow: hidden;
}

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

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

.home-services-blob--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    background: rgba(44, 171, 74, 0.12);
}

.home-services-blob--2 {
    width: 360px;
    height: 360px;
    bottom: -80px;
    left: -60px;
    background: rgba(41, 107, 180, 0.1);
}

.home-services-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.home-services-header h2 {
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: 800;
    color: #0f2744 !important;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.home-services-lead {
    font-size: 1.05rem;
    color: #5a6874 !important;
    line-height: 1.75;
    margin: 1.25rem 0 0;
}

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

.home-service-card {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: var(--home-radius-lg);
    outline: none;
}

.home-service-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(41, 107, 180, 0.35);
}

.home-service-card-inner {
    position: relative;
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem 1.5rem 1.4rem;
    background: #ffffff;
    border-radius: var(--home-radius-lg);
    border: 1px solid rgba(41, 107, 180, 0.09);
    box-shadow: 0 10px 36px rgba(15, 39, 68, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--svc-from), var(--svc-to));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-service-card:hover .home-service-card-inner,
.home-service-card:focus-visible .home-service-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 39, 68, 0.12);
    border-color: rgba(41, 107, 180, 0.18);
}

.home-service-card:hover .home-service-card-inner::before,
.home-service-card:focus-visible .home-service-card-inner::before {
    opacity: 1;
}

.home-service-num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(15, 39, 68, 0.06);
    pointer-events: none;
}

.home-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--svc-from), var(--svc-to));
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 8px 22px rgba(15, 39, 68, 0.15);
    transition: transform 0.35s ease;
}

.home-service-card:hover .home-service-icon {
    transform: scale(1.06);
}

.home-service-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f2744 !important;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.home-service-card:hover .home-service-title {
    color: var(--svc-from) !important;
}

.home-service-desc {
    flex: 1;
    font-size: 0.9rem;
    color: #6b7a86 !important;
    line-height: 1.65;
    margin: 0 0 1rem;
}

.home-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--svc-from);
    margin-top: auto;
    opacity: 0.85;
    transition: gap 0.25s ease, opacity 0.25s ease;
}

.home-service-link i {
    font-size: 0.68rem;
    transition: transform 0.25s ease;
}

.home-service-card:hover .home-service-link {
    opacity: 1;
    gap: 0.6rem;
}

.home-service-card:hover .home-service-link i {
    transform: translateX(3px);
}

/* Staggered reveal */
.home-service-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

.home-services-cta {
    text-align: center;
    margin-top: 2.75rem;
    position: relative;
    z-index: 1;
}

.home-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary-blue), #1a4d8c);
    box-shadow: 0 10px 28px rgba(41, 107, 180, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(41, 107, 180, 0.35);
    color: #ffffff !important;
}

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

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

@media (max-width: 992px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home-services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .home-service-card-inner {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-service-card:hover .home-service-card-inner {
        transform: none;
    }
}

/* ─── Partners ─── */
.page-home .partners-section {
    background: linear-gradient(180deg, #eef4fa 0%, #e8f5ec 100%) !important;
    padding: clamp(4rem, 7vw, 5.5rem) 0 !important;
}

.page-home .partners-title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem) !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    letter-spacing: -0.02em;
}

.page-home .partners-title span {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-home .partners-header p {
    color: #5a6874 !important;
}

.page-home .partner-item {
    background: #ffffff !important;
    border-radius: var(--home-radius) !important;
    border: 1px solid rgba(41, 107, 180, 0.08) !important;
    box-shadow: var(--home-shadow) !important;
    min-width: 200px !important;
    height: 110px !important;
}

.page-home .partner-item:hover {
    box-shadow: var(--home-shadow-hover) !important;
    border-color: rgba(44, 171, 74, 0.2) !important;
}

.page-home .partners-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: max-content;
    padding: 1rem 0;
    animation: scrollPartners 30s linear infinite;
    will-change: transform;
}

.page-home .partners-container-fullwidth:hover .partners-track,
.page-home .partners-track:hover,
.page-home .partners-track:has(.partner-item:hover),
.page-home .partners-track:has(.partner-link:hover) {
    animation-play-state: paused !important;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ─── Our Impact ─── */
.home-impact {
    position: relative;
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 45%, #f2f8f4 100%);
    overflow: hidden;
}

.home-impact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-impact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.home-impact-blob--1 {
    width: 480px;
    height: 480px;
    top: 20%;
    right: -120px;
    background: rgba(41, 107, 180, 0.1);
}

.home-impact-blob--2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -100px;
    background: rgba(44, 171, 74, 0.1);
}

.home-impact-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.home-impact-header h2 {
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: 800;
    color: #0f2744 !important;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0;
}

.home-impact-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));
}

.home-impact-header h2 span {
    background: linear-gradient(135deg, var(--primary-green), #1e8a38);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-impact-lead {
    font-size: 1.05rem;
    color: #5a6874 !important;
    line-height: 1.75;
    margin: 1.15rem 0 0;
}

.home-impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: var(--home-radius-lg);
    border: 1px solid rgba(41, 107, 180, 0.1);
    box-shadow: 0 20px 60px rgba(15, 39, 68, 0.08);
    overflow: hidden;
}

.home-impact-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.25rem 1.5rem 2rem;
    transition: background 0.3s ease;
}

.home-impact-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: linear-gradient(180deg, transparent, rgba(41, 107, 180, 0.12), transparent);
}

.home-impact-stat:hover {
    background: linear-gradient(180deg, rgba(41, 107, 180, 0.03), transparent);
}

.home-impact-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.15rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--stat-accent), color-mix(in srgb, var(--stat-accent) 75%, #000));
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--stat-accent) 30%, transparent);
    transition: transform 0.35s ease;
}

.home-impact-stat:hover .home-impact-stat-icon {
    transform: scale(1.08) translateY(-2px);
}

.home-impact-stat-value {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.home-impact-stat-value .count-up {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f2744;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.home-impact-stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #5a6874 !important;
    margin: 0;
    line-height: 1.45;
    max-width: 16ch;
}

.home-impact-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-impact-reveal:nth-child(1) { transition-delay: 0.08s; }
.home-impact-reveal:nth-child(2) { transition-delay: 0.16s; }
.home-impact-reveal:nth-child(3) { transition-delay: 0.24s; }

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

@media (max-width: 768px) {
    .home-impact-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .home-impact-stat:not(:last-child)::after {
        top: auto;
        bottom: 0;
        right: 10%;
        left: 10%;
        width: 80%;
        height: 1px;
    }

    .home-impact-stat {
        padding: 1.75rem 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-impact-stat:hover .home-impact-stat-icon {
        transform: none;
    }
}

/* ─── Testimonials ─── */
.home-testimonials {
    position: relative;
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 50%, #f8fbfd 100%);
    overflow: hidden;
}

.home-testimonials-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(41, 107, 180, 0.06), transparent 55%),
        radial-gradient(ellipse 45% 35% at 90% 80%, rgba(44, 171, 74, 0.06), transparent 50%);
    pointer-events: none;
}

.home-testimonials-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
    position: relative;
    z-index: 1;
}

.home-testimonials-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    color: #0f2744 !important;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.home-testimonials-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));
}

.home-testimonials-lead {
    font-size: 1.05rem;
    color: #5a6874 !important;
    line-height: 1.7;
    margin: 1rem 0 0;
}

.home-testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
    z-index: 1;
}

.home-testimonials-card {
    flex: 1;
    min-width: 0;
}

.home-testimonials-card-inner {
    display: flex;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: flex-start;
    text-align: left;
    background: #ffffff;
    border-radius: var(--home-radius-lg);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    border: 1px solid rgba(41, 107, 180, 0.1);
    box-shadow: 0 20px 50px rgba(15, 39, 68, 0.08);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.home-testimonials-card-inner.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

.home-testimonials-aside {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.home-testimonials-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 24px rgba(41, 107, 180, 0.15);
    background: linear-gradient(135deg, #e8f4fc, #e8f5ec);
}

.home-testimonials-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-testimonials-avatar img[hidden] {
    display: none;
}

.home-testimonials-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.75rem;
}

.home-testimonials-avatar-fallback[hidden] {
    display: none;
}

.home-testimonials-stars {
    display: flex;
    gap: 0.2rem;
    color: #f1bb1b;
    font-size: 0.9rem;
}

.home-testimonials-body {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-top: 0.25rem;
}

.home-testimonials-quote-icon {
    position: absolute;
    top: -0.25rem;
    left: 0;
    font-size: 2rem;
    color: rgba(41, 107, 180, 0.12);
    line-height: 1;
}

.home-testimonials-quote {
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.75;
    color: #334155 !important;
    font-style: normal;
    font-weight: 500;
    margin: 0 0 1.25rem;
    padding: 0 0 0 0.25rem;
    border: none;
}

.home-testimonials-author {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(41, 107, 180, 0.1);
}

.home-testimonials-author cite {
    font-style: normal;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f2744;
}

.home-testimonials-author span {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
}

.home-testimonials-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(15, 39, 68, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.home-testimonials-nav:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(41, 107, 180, 0.25);
}

.home-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    position: relative;
    z-index: 1;
}

.home-testimonials-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.home-testimonials-dot.is-active {
    width: 32px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.home-testimonials-dot:hover:not(.is-active) {
    background: #94a3b8;
}

.home-testimonials-empty {
    text-align: center;
    color: #5a6874;
    padding: 2rem;
}

@media (max-width: 768px) {
    .home-testimonials-nav {
        display: none;
    }

    .home-testimonials-slider {
        display: block;
    }

    .home-testimonials-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-testimonials-body {
        text-align: center;
    }

    .home-testimonials-quote-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-testimonials-author {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .home-testimonials-nav {
        width: 42px;
        height: 42px;
    }
}

/* ─── Team ─── */
.page-home .team-section-premium {
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%) !important;
}

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

.home-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, #0a1628 0%, #0f2744 35%, #134a3d 70%, #0d3328 100%);
    pointer-events: none;
}

.home-cta-mesh {
    position: absolute;
    inset: 0;
    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: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black, transparent);
}

.home-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.home-cta-glow--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -80px;
    background: rgba(41, 107, 180, 0.25);
}

.home-cta-glow--2 {
    width: 450px;
    height: 450px;
    bottom: -120px;
    left: -100px;
    background: rgba(44, 171, 74, 0.2);
}

.home-cta-panel {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-cta-content {
    text-align: center;
    margin-bottom: 2rem;
}

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

.home-cta-tagline {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #a8d4ff !important;
    line-height: 1.5;
    margin-bottom: 0.65rem;
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72) !important;
    line-height: 1.75;
    margin: 0 auto 1.75rem;
    max-width: 52ch;
}

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

.home-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, background 0.25s ease, border-color 0.25s ease;
}

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

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

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

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

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

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

.home-cta-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.25s ease;
}

.home-cta-trust-item:hover {
    background: rgba(0, 0, 0, 0.25);
}

.home-cta-trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1rem;
    color: #ffffff;
}

.home-cta-trust-icon--blue {
    background: linear-gradient(135deg, #296bb4, #1e4d7a);
}

.home-cta-trust-icon--green {
    background: linear-gradient(135deg, #2cab4a, #1e8a38);
}

.home-cta-trust-icon--gold {
    background: linear-gradient(135deg, #f1bb1b, #c49210);
    color: #0f2744;
}

.home-cta-trust-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.35;
    text-align: left;
}

.home-cta-trust-text strong {
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 768px) {
    .home-cta-panel {
        padding: 2rem 1.25rem;
    }

    .home-cta-trust {
        grid-template-columns: 1fr;
    }

    .home-cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

@media (prefers-reduced-motion: reduce) {
    .home-cta-btn--primary:hover,
    .home-cta-btn--secondary:hover {
        transform: none;
    }
}

/* ─── Motion accessibility ─── */
@media (prefers-reduced-motion: reduce) {
    .home-hero-scroll,
    .page-home .partners-track,
    .page-home .section-title-premium::after {
        animation: none !important;
    }

    .home-cap-card:hover,
    .home-service-card:hover .home-service-card-inner,
    .home-impact-stat:hover .home-impact-stat-icon,
    .page-home .partner-item:hover {
        transform: none;
    }
}

/* ─── Responsive ─── */
