﻿:root {
    --teal: #62b7b6;
    --deep-teal: #2f8f9a;
    --blue: #4f7fa3;
    --pink: #d779a8;
    --soft-pink: #f8e8f1;
    --gold: #c9bd5f;
    --soft-gold: #f5f1d8;
    --light-blue: #eaf5f8;
    --dark: #263238;
    --muted: #63727a;
    --white: #ffffff;
    --off-white: #fbfbf8;
    --border: #dce8ea;
    --shadow: 0 20px 45px rgba(38, 50, 56, 0.12);
    --radius-large: 32px;
    --radius-medium: 20px;
    --radius-small: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* Animation */

.fade-up {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1), transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

    .fade-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.delay-1 {
    transition-delay: 0.35s;
}

.delay-2 {
    transition-delay: 0.42s;
}

.delay-3 {
    transition-delay: 0.56s;
}

.delay-4 {
    transition-delay: 0.16s;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
}

.logo-image {
    width: 100px;
    height: auto;
    display: block;
}

.logo:hover {
    opacity: 0.9;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px;
    color: var(--dark);
}

    .main-nav a {
        transition: color 0.2s ease;
    }

        .main-nav a:hover {
            color: var(--deep-teal);
        }

.active-link {
    color: var(--deep-teal);
    font-weight: 800;
}

.nav-button {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--light-blue);
    color: var(--deep-teal);
    font-weight: 700;
}

.active-nav-button {
    background: var(--deep-teal);
    color: var(--white);
}

/* Mobile Hamburger Menu */

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--light-blue);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.menu-icon {
    display: grid;
    gap: 5px;
}

    .menu-icon span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: var(--deep-teal);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

.mobile-menu-button.is-open {
    background: var(--deep-teal);
}

    .mobile-menu-button.is-open .menu-icon span {
        background: var(--white);
    }

        .mobile-menu-button.is-open .menu-icon span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-button.is-open .menu-icon span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-button.is-open .menu-icon span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

/* Hero */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 76px;
    background: radial-gradient(circle at top left, rgba(98, 183, 182, 0.20), transparent 34%), radial-gradient(circle at top right, rgba(215, 121, 168, 0.18), transparent 32%), linear-gradient(135deg, #ffffff 0%, #eef8fa 100%);
}

    .hero-section::after {
        content: "";
        position: absolute;
        right: -120px;
        bottom: -180px;
        width: 420px;
        height: 420px;
        background: rgba(98, 183, 182, 0.22);
        border-radius: 50%;
    }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.eyebrow,
.section-label {
    margin: 0 0 14px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 660px;
    margin-bottom: 24px;
    font-size: clamp(38px, 5.7vw, 66px);
    font-weight: 750;
    line-height: 1.02;
    letter-spacing: -1.6px;
    color: var(--blue);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 720;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--blue);
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--deep-teal);
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 34px;
    font-size: 17px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    .button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.button-primary {
    background: var(--deep-teal);
    color: var(--white);
}

    .button-primary:hover {
        background: #247c86;
    }

.button-secondary {
    background: var(--white);
    color: var(--deep-teal);
    border: 1px solid var(--border);
}

.hero-card {
    position: relative;
    min-height: 420px;
    padding: 30px;
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
    height: 260px;
    border-radius: 26px;
    overflow: hidden;
    background: var(--light-blue);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(0.96);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 127, 163, 0.66), rgba(98, 183, 182, 0.32)), linear-gradient(180deg, transparent 20%, rgba(38, 50, 56, 0.44) 100%);
}

.hero-image-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2;
}

    .hero-image-overlay p {
        margin: 0;
        color: var(--white);
        font-size: 27px;
        font-weight: 900;
        line-height: 1.15;
        text-shadow: 0 4px 18px rgba(38, 50, 56, 0.28);
    }

.hero-stat {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    padding: 22px;
    border-radius: 22px;
    background: var(--soft-gold);
    color: var(--dark);
}

    .hero-stat strong {
        display: block;
        color: var(--deep-teal);
        font-size: 24px;
    }

    .hero-stat span {
        color: var(--muted);
    }

.lotus-shape {
    position: absolute;
    border-radius: 60% 60% 60% 0;
    opacity: 0.35;
    transform: rotate(-35deg);
}

.lotus-one {
    width: 180px;
    height: 220px;
    right: -40px;
    top: 20px;
    background: var(--teal);
}

.lotus-two {
    width: 150px;
    height: 190px;
    left: 30px;
    top: -60px;
    background: var(--pink);
}

.lotus-three {
    width: 130px;
    height: 170px;
    right: 110px;
    bottom: -50px;
    background: var(--gold);
}

/* Trust Strip */

.trust-strip {
    padding: 28px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

    .trust-grid div {
        padding: 10px 0;
    }

    .trust-grid strong {
        display: block;
        margin-bottom: 6px;
        color: var(--deep-teal);
    }

    .trust-grid span {
        display: block;
        color: var(--muted);
        font-size: 14px;
    }

/* General Sections */

.section {
    padding: 82px 0;
}

.two-column {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

    .two-column p,
    .section-heading p {
        color: var(--muted);
    }

.text-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--deep-teal);
    font-weight: 800;
}

    .text-link:hover {
        text-decoration: underline;
    }

.meaning-card {
    padding: 34px;
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow);
}

.meaning-list {
    display: grid;
    gap: 16px;
}

    .meaning-list article {
        padding: 20px;
        border-radius: var(--radius-medium);
        background: var(--light-blue);
        border-left: 6px solid var(--teal);
    }

        .meaning-list article:nth-child(2) {
            background: var(--soft-pink);
            border-left-color: var(--pink);
        }

        .meaning-list article:nth-child(3) {
            background: var(--soft-gold);
            border-left-color: var(--gold);
        }

    .meaning-list strong {
        display: block;
        margin-bottom: 6px;
        color: var(--dark);
    }

    .meaning-list p {
        margin-bottom: 0;
    }

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.card-grid {
    display: grid;
    gap: 24px;
}

.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */

.service-card,
.feature-card {
    padding: 32px;
    border-radius: var(--radius-medium);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card {
    min-height: 260px;
}

    .service-card:hover,
    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 42px rgba(38, 50, 56, 0.13);
    }

.card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--light-blue);
    color: var(--deep-teal);
    font-weight: 900;
}

.service-card:nth-child(2) .card-icon,
.feature-card:nth-child(2) .card-icon {
    background: var(--soft-pink);
    color: var(--pink);
}

.service-card:nth-child(3) .card-icon,
.feature-card:nth-child(3) .card-icon {
    background: var(--soft-gold);
    color: #9b9038;
}

.service-card:nth-child(4) .card-icon,
.feature-card:nth-child(4) .card-icon {
    background: #eef0fb;
    color: var(--blue);
}

.service-card p,
.feature-card p {
    color: var(--muted);
    margin-bottom: 0;
}

/* Homepage Sections */

.solutions-preview {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f9 100%);
}

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

    .process-grid article {
        position: relative;
        padding: 26px 20px;
        border-radius: var(--radius-medium);
        background: var(--off-white);
        border: 1px solid var(--border);
        transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

        .process-grid article:hover {
            transform: translateY(-6px);
            background: var(--white);
            box-shadow: 0 18px 36px rgba(38, 50, 56, 0.10);
        }

    .process-grid span {
        display: inline-grid;
        place-items: center;
        width: 38px;
        height: 38px;
        margin-bottom: 18px;
        border-radius: 50%;
        background: var(--deep-teal);
        color: var(--white);
        font-weight: 900;
    }

    .process-grid p {
        margin-bottom: 0;
        color: var(--muted);
        font-size: 15px;
    }

/* CTA */

.cta-section {
    padding: 70px 0;
    background: radial-gradient(circle at left, rgba(215, 121, 168, 0.20), transparent 30%), linear-gradient(135deg, var(--light-blue), #ffffff);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 42px;
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow);
}

    .cta-box h2 {
        max-width: 780px;
        margin-bottom: 0;
        font-size: clamp(26px, 2.8vw, 38px);
    }

/* Footer */

.site-footer {
    padding: 56px 0;
    background: var(--dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
}

.site-footer h2 {
    font-size: 28px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.86);
}

    .site-footer a:hover {
        color: var(--white);
    }

/* Inner Pages */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background: radial-gradient(circle at top left, rgba(98, 183, 182, 0.18), transparent 34%), radial-gradient(circle at top right, rgba(215, 121, 168, 0.16), transparent 32%), linear-gradient(135deg, #ffffff 0%, #eef8fa 100%);
}

    .page-hero::after {
        content: "";
        position: absolute;
        right: -160px;
        bottom: -210px;
        width: 430px;
        height: 430px;
        background: rgba(98, 183, 182, 0.18);
        border-radius: 50%;
    }

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.page-hero-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow);
}

    .page-hero-card h2 {
        margin-bottom: 18px;
        font-size: clamp(28px, 3vw, 42px);
    }

    .page-hero-card p {
        position: relative;
        z-index: 2;
        color: var(--muted);
    }

.quote-mark {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    color: var(--pink);
    font-size: 74px;
    font-weight: 900;
    line-height: 0.7;
}

.soft-info-card {
    padding: 38px;
    border-radius: var(--radius-large);
    background: linear-gradient(135deg, rgba(234, 245, 248, 0.96), rgba(248, 232, 241, 0.88));
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

    .soft-info-card h3 {
        font-size: 28px;
        color: var(--blue);
    }

    .soft-info-card p {
        margin-bottom: 0;
        color: var(--muted);
    }

.lotus-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f9 100%);
}

.purpose-section {
    background: var(--white);
}

.values-section {
    background: var(--off-white);
}

/* Supporting Page Images */

.support-image-panel {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--light-blue);
}

.support-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(0.96) contrast(0.98);
}

.support-image-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 127, 163, 0.08), rgba(98, 183, 182, 0.10)), linear-gradient(180deg, transparent 60%, rgba(38, 50, 56, 0.12) 100%);
    pointer-events: none;
}

.support-image-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 24px;
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(38, 50, 56, 0.14);
    backdrop-filter: blur(12px);
}

    .support-image-caption .section-label {
        margin-bottom: 8px;
    }

    .support-image-caption h3 {
        margin-bottom: 8px;
        color: var(--blue);
        font-size: 24px;
        line-height: 1.2;
    }

    .support-image-caption p {
        margin-bottom: 0;
        color: var(--muted);
    }

/* Solutions Page */

.solutions-hero-card {
    min-height: 390px;
}

.mini-badge-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

    .mini-badge-grid div {
        padding: 20px;
        border-radius: var(--radius-medium);
        background: var(--light-blue);
        border: 1px solid var(--border);
    }

        .mini-badge-grid div:nth-child(2) {
            background: var(--soft-gold);
        }

    .mini-badge-grid strong {
        display: block;
        margin-bottom: 4px;
        color: var(--deep-teal);
        font-size: 18px;
    }

    .mini-badge-grid span {
        display: block;
        color: var(--muted);
        font-size: 14px;
    }

.solutions-intro {
    background: var(--white);
}

.solution-detail-card {
    min-height: 330px;
    padding: 30px;
    border-radius: var(--radius-medium);
    background: var(--off-white);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .solution-detail-card:hover {
        transform: translateY(-6px);
        background: var(--white);
        box-shadow: 0 20px 42px rgba(38, 50, 56, 0.13);
    }

    .solution-detail-card p {
        color: var(--muted);
        margin-bottom: 0;
    }

.mdcs-difference-section {
    background: radial-gradient(circle at top left, rgba(215, 121, 168, 0.12), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f0f8f9 100%);
}

.difference-timeline {
    display: grid;
    gap: 18px;
}

.timeline-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: flex-start;
    padding: 26px;
    border-radius: var(--radius-medium);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .timeline-card:hover {
        transform: translateX(6px);
        box-shadow: 0 18px 36px rgba(38, 50, 56, 0.11);
    }

    .timeline-card span {
        display: inline-grid;
        place-items: center;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--deep-teal);
        color: var(--white);
        font-weight: 900;
    }

    .timeline-card:nth-child(2) span {
        background: var(--pink);
    }

    .timeline-card:nth-child(3) span {
        background: var(--gold);
    }

    .timeline-card:nth-child(4) span {
        background: var(--blue);
    }

    .timeline-card:nth-child(5) span {
        background: var(--teal);
    }

    .timeline-card h3 {
        margin-bottom: 6px;
    }

    .timeline-card p {
        margin-bottom: 0;
        color: var(--muted);
    }

.outcome-section {
    background: var(--white);
}

.outcome-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

    .outcome-grid > div:first-child {
        max-width: 620px;
    }

.outcome-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

    .outcome-list div {
        padding: 18px 20px;
        border-radius: var(--radius-medium);
        background: var(--light-blue);
        border-left: 5px solid var(--teal);
    }

        .outcome-list div:nth-child(2) {
            background: var(--soft-pink);
            border-left-color: var(--pink);
        }

        .outcome-list div:nth-child(3) {
            background: var(--soft-gold);
            border-left-color: var(--gold);
        }

    .outcome-list strong {
        display: block;
        margin-bottom: 4px;
        color: var(--dark);
    }

    .outcome-list span {
        display: block;
        color: var(--muted);
    }

.absorption-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.pathway-card {
    overflow: hidden;
    border-radius: var(--radius-large);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.pathway-header {
    padding: 22px 28px;
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blue-header {
    background: var(--blue);
}

.gold-header {
    background: #b8ad4f;
}

.pathway-step {
    position: relative;
    padding: 24px 28px 24px 54px;
    border-bottom: 1px solid var(--border);
}

    .pathway-step:last-child {
        border-bottom: none;
    }

    .pathway-step::before {
        content: "";
        position: absolute;
        left: 28px;
        top: 31px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--deep-teal);
    }

    .pathway-step strong {
        display: block;
        margin-bottom: 6px;
        color: var(--dark);
        font-size: 18px;
    }

    .pathway-step p {
        margin-bottom: 0;
        color: var(--muted);
    }

.charter-section {
    background: var(--white);
}

.charter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.charter-card {
    padding: 30px;
    border-radius: var(--radius-large);
    background: var(--off-white);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .charter-card:hover {
        transform: translateY(-6px);
        background: var(--white);
        box-shadow: 0 20px 42px rgba(38, 50, 56, 0.13);
    }

    .charter-card h3 {
        color: var(--blue);
    }

    .charter-card p {
        color: var(--muted);
    }

    .charter-card ul {
        margin: 20px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 9px;
    }

    .charter-card li {
        position: relative;
        padding-left: 24px;
        color: var(--muted);
    }

        .charter-card li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--deep-teal);
            font-weight: 900;
        }

/* Programmes Page */

.programmes-hero-card {
    min-height: 390px;
}

.programme-highlight-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

    .programme-highlight-list span {
        display: block;
        padding: 14px 18px;
        border-radius: var(--radius-medium);
        background: var(--light-blue);
        color: var(--deep-teal);
        font-weight: 800;
    }

        .programme-highlight-list span:nth-child(2) {
            background: var(--soft-pink);
            color: var(--pink);
        }

        .programme-highlight-list span:nth-child(3) {
            background: var(--soft-gold);
            color: #8f8536;
        }

        .programme-highlight-list span:nth-child(4) {
            background: #eef0fb;
            color: var(--blue);
        }

.programme-overview-section {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.portfolio-card {
    overflow: hidden;
    border-radius: var(--radius-large);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.portfolio-card-header {
    padding: 30px;
    color: var(--white);
}

    .portfolio-card-header p {
        margin-bottom: 8px;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0.9;
    }

    .portfolio-card-header h3 {
        margin-bottom: 0;
        color: var(--white);
        font-size: 25px;
        line-height: 1.2;
    }

.management-header {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%), linear-gradient(135deg, var(--blue), var(--deep-teal));
}

.finance-header {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%), linear-gradient(135deg, #b8ad4f, var(--gold));
}

.programme-list {
    display: grid;
}

    .programme-list div {
        padding: 22px 30px;
        border-bottom: 1px solid var(--border);
    }

        .programme-list div:last-child {
            border-bottom: none;
        }

    .programme-list strong {
        display: block;
        margin-bottom: 5px;
        color: var(--dark);
        font-size: 18px;
    }

    .programme-list span {
        display: block;
        color: var(--muted);
    }

.digital-skills-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f9 100%);
}

.digital-feature-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

    .digital-feature-grid div {
        padding: 20px;
        border-radius: var(--radius-medium);
        background: var(--white);
        border-left: 5px solid var(--teal);
        box-shadow: 0 10px 24px rgba(38, 50, 56, 0.07);
    }

        .digital-feature-grid div:nth-child(2) {
            border-left-color: var(--pink);
        }

        .digital-feature-grid div:nth-child(3) {
            border-left-color: var(--gold);
        }

    .digital-feature-grid strong {
        display: block;
        margin-bottom: 5px;
        color: var(--dark);
    }

    .digital-feature-grid span {
        display: block;
        color: var(--muted);
    }

.icdl-section {
    background: var(--white);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.module-card {
    padding: 30px;
    border-radius: var(--radius-large);
    background: var(--off-white);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.07);
}

    .module-card h3 {
        padding-bottom: 14px;
        margin-bottom: 18px;
        border-bottom: 3px solid var(--teal);
        color: var(--blue);
    }

    .module-card:nth-child(2) h3 {
        border-bottom-color: var(--gold);
    }

    .module-card:nth-child(3) h3 {
        border-bottom-color: var(--pink);
    }

    .module-card ul,
    .workforce-card ul {
        display: grid;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .module-card li,
    .workforce-card li {
        position: relative;
        padding-left: 24px;
        color: var(--muted);
    }

        .module-card li::before,
        .workforce-card li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--deep-teal);
            font-weight: 900;
        }

.workforce-section {
    background: radial-gradient(circle at top left, rgba(215, 121, 168, 0.12), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.workforce-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.workforce-card {
    padding: 28px;
    border-radius: var(--radius-large);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .workforce-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 42px rgba(38, 50, 56, 0.13);
    }

    .workforce-card h3 {
        min-height: 52px;
        color: var(--deep-teal);
    }

    .workforce-card:nth-child(2) h3 {
        color: var(--pink);
    }

    .workforce-card:nth-child(3) h3 {
        color: #9b9038;
    }

    .workforce-card:nth-child(4) h3 {
        color: var(--blue);
    }

.industry-section {
    background: var(--white);
}

.industry-list {
    display: grid;
    gap: 14px;
}

    .industry-list div {
        padding: 18px 20px;
        border-radius: var(--radius-medium);
        background: var(--light-blue);
        border-left: 5px solid var(--teal);
    }

        .industry-list div:nth-child(2) {
            background: var(--soft-pink);
            border-left-color: var(--pink);
        }

        .industry-list div:nth-child(3) {
            background: var(--soft-gold);
            border-left-color: var(--gold);
        }

        .industry-list div:nth-child(4) {
            background: #eef0fb;
            border-left-color: var(--blue);
        }

        .industry-list div:nth-child(5) {
            background: var(--off-white);
            border-left-color: var(--deep-teal);
        }

    .industry-list strong {
        display: block;
        margin-bottom: 4px;
        color: var(--dark);
    }

    .industry-list span {
        display: block;
        color: var(--muted);
    }

.masterclass-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f9 100%);
}

.masterclass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

    .masterclass-grid span {
        display: flex;
        align-items: center;
        min-height: 88px;
        padding: 20px;
        border-radius: var(--radius-medium);
        background: var(--white);
        border: 1px solid var(--border);
        color: var(--dark);
        font-weight: 800;
        box-shadow: 0 10px 24px rgba(38, 50, 56, 0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

        .masterclass-grid span:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 34px rgba(38, 50, 56, 0.12);
        }

/* Impact Page */

.impact-hero-card {
    min-height: 410px;
}

.impact-stat-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

    .impact-stat-grid div {
        padding: 18px;
        border-radius: var(--radius-medium);
        background: var(--light-blue);
        text-align: center;
        border: 1px solid var(--border);
    }

        .impact-stat-grid div:nth-child(2) {
            background: var(--soft-pink);
        }

        .impact-stat-grid div:nth-child(3) {
            background: var(--soft-gold);
        }

    .impact-stat-grid strong {
        display: block;
        margin-bottom: 4px;
        color: var(--deep-teal);
        font-size: 18px;
    }

    .impact-stat-grid span {
        display: block;
        color: var(--muted);
        font-size: 13px;
    }

.difference-project-section {
    background: var(--white);
}

.project-highlight-card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: var(--radius-large);
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 32%), linear-gradient(135deg, var(--blue), var(--deep-teal));
    color: var(--white);
    box-shadow: var(--shadow);
}

    .project-highlight-card::after {
        content: "";
        position: absolute;
        right: -60px;
        bottom: -90px;
        width: 220px;
        height: 260px;
        border-radius: 60% 60% 60% 0;
        background: rgba(255, 255, 255, 0.18);
        transform: rotate(-35deg);
    }

    .project-highlight-card .section-label,
    .project-highlight-card h3,
    .project-highlight-card p {
        position: relative;
        z-index: 1;
    }

    .project-highlight-card .section-label {
        color: rgba(255, 255, 255, 0.78);
    }

    .project-highlight-card h3 {
        color: var(--white);
        font-size: 30px;
        line-height: 1.2;
    }

    .project-highlight-card p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.82);
    }

.how-it-works-section {
    background: radial-gradient(circle at top left, rgba(215, 121, 168, 0.12), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f0f8f9 100%);
}

.impact-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.impact-step-card {
    min-height: 260px;
    padding: 28px;
    border-radius: var(--radius-large);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .impact-step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 42px rgba(38, 50, 56, 0.13);
    }

    .impact-step-card span {
        display: inline-grid;
        place-items: center;
        width: 48px;
        height: 48px;
        margin-bottom: 22px;
        border-radius: 50%;
        background: var(--deep-teal);
        color: var(--white);
        font-weight: 900;
    }

    .impact-step-card:nth-child(2) span {
        background: var(--pink);
    }

    .impact-step-card:nth-child(3) span {
        background: var(--gold);
    }

    .impact-step-card:nth-child(4) span {
        background: var(--blue);
    }

    .impact-step-card p {
        color: var(--muted);
        margin-bottom: 0;
    }

.esd-section {
    background: var(--white);
}

.inclusive-development-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.learner-voices-section {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    min-height: 250px;
    padding: 30px;
    border-radius: var(--radius-large);
    background: var(--off-white);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        background: var(--white);
        box-shadow: 0 20px 42px rgba(38, 50, 56, 0.13);
    }

.featured-testimonial {
    grid-column: span 2;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 30%), linear-gradient(135deg, var(--deep-teal), var(--blue));
    color: var(--white);
}

    .featured-testimonial .testimonial-quote,
    .featured-testimonial strong {
        color: var(--white);
    }

.testimonial-quote {
    position: relative;
    margin-bottom: 26px;
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
}

    .testimonial-quote::before {
        content: "“";
        display: block;
        margin-bottom: 10px;
        color: var(--pink);
        font-size: 58px;
        line-height: 0.7;
    }

.featured-testimonial .testimonial-quote::before {
    color: rgba(255, 255, 255, 0.72);
}

.testimonial-card strong {
    color: var(--deep-teal);
}

.impact-message-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f9 100%);
}

.impact-message-box {
    position: relative;
    overflow: hidden;
    padding: 54px;
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

    .impact-message-box::before,
    .impact-message-box::after {
        content: "";
        position: absolute;
        border-radius: 60% 60% 60% 0;
        opacity: 0.18;
        transform: rotate(-35deg);
    }

    .impact-message-box::before {
        width: 160px;
        height: 210px;
        left: -40px;
        top: -70px;
        background: var(--pink);
    }

    .impact-message-box::after {
        width: 180px;
        height: 230px;
        right: -50px;
        bottom: -80px;
        background: var(--teal);
    }

    .impact-message-box h2,
    .impact-message-box p,
    .impact-message-box .section-label {
        position: relative;
        z-index: 1;
    }

    .impact-message-box h2 {
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }

    .impact-message-box p {
        max-width: 760px;
        margin: 0 auto;
        color: var(--muted);
    }

/* Contact Page */

.contact-hero-card {
    min-height: 410px;
}

.quick-contact-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

    .quick-contact-list a {
        display: block;
        padding: 18px 20px;
        border-radius: var(--radius-medium);
        background: var(--light-blue);
        border: 1px solid var(--border);
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

        .quick-contact-list a:nth-child(2) {
            background: var(--soft-pink);
        }

        .quick-contact-list a:nth-child(3) {
            background: var(--soft-gold);
        }

        .quick-contact-list a:hover {
            transform: translateY(-4px);
            background: var(--white);
            box-shadow: 0 14px 30px rgba(38, 50, 56, 0.11);
        }

    .quick-contact-list span {
        display: block;
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .quick-contact-list strong {
        display: block;
        color: var(--deep-teal);
        font-size: 18px;
    }

.contact-main-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.contact-info-column > p {
    color: var(--muted);
}

.contact-card-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border-radius: var(--radius-medium);
    background: var(--off-white);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        background: var(--white);
        box-shadow: 0 16px 34px rgba(38, 50, 56, 0.10);
    }

.contact-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--light-blue);
    color: var(--deep-teal);
    font-weight: 900;
}

.contact-card:nth-child(2) .contact-icon {
    background: var(--soft-pink);
    color: var(--pink);
}

.contact-card:nth-child(3) .contact-icon {
    background: var(--soft-gold);
    color: #8f8536;
}

.contact-card:nth-child(4) .contact-icon {
    background: #eef0fb;
    color: var(--blue);
}

.contact-card h3 {
    margin-bottom: 4px;
}

.contact-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.contact-card a {
    color: var(--deep-teal);
    font-weight: 800;
}

.contact-form-card {
    padding: 36px;
    border-radius: var(--radius-large);
    background: radial-gradient(circle at top right, rgba(98, 183, 182, 0.14), transparent 32%), var(--off-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

    .contact-form-card > p {
        color: var(--muted);
    }

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.form-row {
    display: grid;
    gap: 8px;
}

    .form-row label {
        color: var(--dark);
        font-size: 14px;
        font-weight: 800;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        width: 100%;
        min-height: 48px;
        padding: 13px 15px;
        border: 1px solid var(--border);
        border-radius: var(--radius-small);
        background: var(--white);
        color: var(--dark);
        font: inherit;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-row textarea {
        resize: vertical;
    }

        .form-row input:focus,
        .form-row select:focus,
        .form-row textarea:focus {
            border-color: var(--deep-teal);
            box-shadow: 0 0 0 4px rgba(47, 143, 154, 0.12);
        }

.two-fields {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-button {
    border: none;
    cursor: pointer;
    justify-self: start;
}

.form-note {
    margin: 0;
    padding: 14px 16px;
    border-radius: var(--radius-small);
    background: var(--light-blue);
    color: var(--muted);
    font-size: 14px;
}

.lead-support-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f9 100%);
}

.contact-location-section {
    background: var(--white);
}

.map-placeholder {
    min-height: 410px;
    border-radius: var(--radius-large);
    background: linear-gradient(135deg, rgba(79, 127, 163, 0.84), rgba(98, 183, 182, 0.78)), radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 28%);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    padding: 34px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .map-placeholder::before,
    .map-placeholder::after {
        content: "";
        position: absolute;
        border-radius: 60% 60% 60% 0;
        opacity: 0.22;
        transform: rotate(-35deg);
    }

    .map-placeholder::before {
        width: 180px;
        height: 230px;
        background: var(--pink);
        left: -40px;
        top: -80px;
    }

    .map-placeholder::after {
        width: 210px;
        height: 260px;
        background: var(--gold);
        right: -50px;
        bottom: -90px;
    }

    .map-placeholder div {
        position: relative;
        z-index: 1;
    }

    .map-placeholder span {
        display: block;
        margin-bottom: 10px;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0.82;
    }

    .map-placeholder strong {
        display: block;
        margin-bottom: 8px;
        font-size: clamp(34px, 4vw, 52px);
        line-height: 1;
    }

    .map-placeholder p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 18px;
    }

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.contact-faq-section {
    background: radial-gradient(circle at top left, rgba(215, 121, 168, 0.12), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    padding: 28px;
    border-radius: var(--radius-large);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .faq-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 42px rgba(38, 50, 56, 0.13);
    }

    .faq-card h3 {
        color: var(--blue);
    }

    .faq-card p {
        margin-bottom: 0;
        color: var(--muted);
    }

/* Responsive */

@media (max-width: 980px) {
    .header-inner {
        position: relative;
        min-height: 88px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .mobile-menu-button {
        display: inline-flex;
        flex-shrink: 0;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 50px rgba(38, 50, 56, 0.16);
        backdrop-filter: blur(14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

        .main-nav.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .main-nav a {
            display: block;
            padding: 13px 16px;
            border-radius: 14px;
            color: var(--dark);
            font-weight: 700;
        }

            .main-nav a:hover,
            .main-nav .active-link {
                background: var(--light-blue);
                color: var(--deep-teal);
            }

        .main-nav .nav-button {
            margin-top: 6px;
            padding: 14px 18px;
            text-align: center;
            background: var(--deep-teal);
            color: var(--white);
        }

            .main-nav .nav-button:hover,
            .main-nav .active-nav-button {
                background: var(--deep-teal);
                color: var(--white);
            }

    .hero-grid,
    .two-column,
    .footer-grid,
    .page-hero-grid,
    .outcome-grid,
    .contact-grid,
    .two-fields,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .four-columns,
    .process-grid,
    .impact-steps-grid,
    .testimonial-grid,
    .workforce-grid,
    .masterclass-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .three-columns,
    .portfolio-grid,
    .module-grid,
    .pathway-grid,
    .charter-grid {
        grid-template-columns: 1fr;
    }

    .featured-testimonial {
        grid-column: span 2;
    }

    .impact-stat-grid,
    .mini-badge-grid {
        grid-template-columns: 1fr;
    }

    .support-image-panel,
    .support-image {
        min-height: 360px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 44px, 1120px);
    }

    .header-inner {
        min-height: 84px;
    }

    .main-nav {
        left: 14px;
        right: 14px;
        padding: 20px;
    }

        .main-nav a {
            padding: 14px 16px;
        }

    .logo-image {
        width: 94px;
    }

    .hero-section,
    .page-hero,
    .section {
        padding: 52px 0;
    }

    h1 {
        font-size: clamp(32px, 9.5vw, 42px);
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    h2 {
        font-size: clamp(25px, 7.4vw, 34px);
        line-height: 1.12;
        letter-spacing: -0.6px;
    }

    h3 {
        font-size: 19px;
        line-height: 1.25;
    }

    .hero-lead,
    .section-heading p,
    .two-column p,
    .contact-info-column > p {
        font-size: 15.5px;
        line-height: 1.68;
    }

    .eyebrow,
    .section-label {
        font-size: 12px;
        letter-spacing: 1.8px;
    }

    .trust-grid,
    .four-columns,
    .process-grid,
    .impact-steps-grid,
    .testimonial-grid,
    .workforce-grid,
    .masterclass-grid {
        grid-template-columns: 1fr;
    }

    .featured-testimonial {
        grid-column: span 1;
    }

    .hero-card {
        min-height: 360px;
    }

    .hero-image-wrap {
        height: 230px;
    }

    .hero-image-overlay p {
        font-size: 24px;
    }

    .page-hero-card,
    .cta-box,
    .contact-form-card,
    .soft-info-card,
    .project-highlight-card {
        padding: 28px;
    }

    .service-card,
    .feature-card,
    .solution-detail-card,
    .impact-step-card,
    .testimonial-card,
    .module-card,
    .workforce-card,
    .charter-card,
    .faq-card {
        padding: 24px;
    }

    .outcome-list div,
    .digital-feature-grid div,
    .industry-list div {
        padding: 17px 18px;
    }

    .support-image-panel,
    .support-image {
        min-height: 300px;
    }

    .support-image-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }

        .support-image-caption h3 {
            font-size: 21px;
        }

    .timeline-card {
        grid-template-columns: 1fr;
    }

        .timeline-card:hover {
            transform: translateY(-4px);
        }

    .solution-detail-card,
    .impact-step-card,
    .testimonial-card {
        min-height: auto;
    }

    .pathway-step {
        padding-left: 44px;
    }

        .pathway-step::before {
            left: 22px;
        }

    .portfolio-card-header {
        padding: 24px;
    }

    .programme-list div {
        padding: 20px 24px;
    }

    .module-card,
    .workforce-card {
        padding: 24px;
    }

    .impact-message-box {
        padding: 34px 24px;
    }

    .testimonial-quote {
        font-size: 20px;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }

    .map-placeholder {
        min-height: 340px;
    }

    .form-button {
        width: 100%;
    }
}

/* Reduce animation for users who prefer less motion */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fade-up,
    .fade-up.is-visible,
    .button,
    .service-card,
    .feature-card,
    .process-grid article {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.hidden-honeypot {
    display: none !important;
}
.main-nav a.active-link {
    font-weight: 800 !important;
    color: var(--deep-teal) !important;
}

.main-nav a.active-nav-button {
    font-weight: 800 !important;
}
.main-nav a.active-nav-button {
    font-weight: 800 !important;
}