@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── BRAND TOKENS ─────────────────────────────────────── */
:root {
    /* Core brand — from logo */
    --purple: #9B59D0;
    --purple-dark: #7A3DB0;
    --purple-deep: #5C2D8F;
    --purple-light: #C49AE8;
    --purple-pale: #F3EAFC;
    --green: #5BC470;
    --green-dark: #3DA851;
    --green-deep: #2D8A3E;
    --green-light: #9ADDA6;
    --green-pale: #EBF8ED;

    /* Logo accent finger colours */
    --accent-pink: #F2A7C3;
    --accent-blue: #7EC8E3;
    --accent-lilac: #C3A8E8;
    --accent-mint: #A8E8C3;

    /* Neutrals */
    --white: #FFFFFF;
    --off: #FAFBFC;
    --light-grey: #F4F6F8;
    --border: #E8ECF0;
    --text-dark: #1F1635;
    --text-body: #4A4060;
    --text-muted: #8A7FA0;

    /* Font */
    --font: 'Poppins', sans-serif;

    /* Radii */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(155, 89, 208, .08);
    --shadow-md: 0 6px 24px rgba(155, 89, 208, .12);
    --shadow-lg: 0 16px 48px rgba(155, 89, 208, .16);
    --shadow-green-sm: 0 4px 16px rgba(91, 196, 112, .25);
    --shadow-purple-sm: 0 4px 16px rgba(155, 89, 208, .3);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none
}

/* ─── LAYOUT UTILS ──────────────────────────────────────── */
.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem)
}

.section {
    padding: clamp(4rem, 8vw, 5.5rem) 0
}

.section--sm {
    padding: clamp(2rem, 4vw, 3rem) 0
}

/* ─── TYPE ───────────────────────────────────────────────── */
.eyebrow {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: .625rem
}

.eyebrow--green {
    color: var(--green-dark)
}

.eyebrow--dim {
    color: rgba(255, 255, 255, .65)
}

.eyebrow--gold {
    color: #F4C95D
}

.h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -.025em
}

.h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -.02em
}

.h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark)
}

.lead {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.8
}

.white {
    color: #fff !important
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--purple);
    border-radius: var(--r-full);
    margin-bottom: 1.5rem
}

.divider--green {
    background: var(--green)
}

.divider--white {
    background: rgba(255, 255, 255, .4)
}

.divider--gold {
    background: #F4C95D
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 1.875rem;
    font-family: var(--font);
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--r-full);
    transition: all .22s ease;
    white-space: nowrap;
    line-height: 1
}

.btn-purple {
    background: var(--purple);
    color: #fff;
    box-shadow: var(--shadow-purple-sm)
}

.btn-purple:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(155, 89, 208, .38)
}

.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: var(--shadow-green-sm)
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(91, 196, 112, .38)
}

.btn-outline-purple {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple)
}

.btn-outline-purple:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px)
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .55)
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--purple-dark);
    border-color: #fff;
    transform: translateY(-2px)
}

.btn-white {
    background: #fff;
    color: var(--purple-dark)
}

.btn-white:hover {
    background: var(--purple-pale);
    transform: translateY(-2px)
}

.btn-sm {
    padding: .625rem 1.375rem;
    font-size: .875rem
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s
}

.nav.scrolled {
    box-shadow: var(--shadow-md)
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 70px
}

/* Logo — using uploaded image */
.nav__logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    flex-shrink: 0
}

.nav__logo-img {
    height: 46px;
    width: auto
}

/* Links */
.nav__links {
    display: flex;
    align-items: center;
    gap: .125rem;
    flex: 1;
    justify-content: center
}

.nav__link {
    padding: .5rem .875rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--r-md);
    transition: color .15s, background .15s;
    cursor: pointer;
    background: none;
    border: none;
    white-space: nowrap
}

.nav__link:hover {
    color: var(--purple);
    background: var(--purple-pale)
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: .875rem;
    flex-shrink: 0
}

.nav__cta {
    padding: .625rem 1.375rem;
    font-size: .875rem
}

/* Dropdown */
.nav__dd {
    position: relative
}

.nav__dd-panel {
    position: absolute;
    top: calc(100% + .5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
    pointer-events: none
}

.nav__dd-panel::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
}

.nav__dd:hover .nav__dd-panel, .nav__dd:focus-within .nav__dd-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all
}

.nav__dd-link {
    display: block;
    padding: .625rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--r-md);
    transition: color .15s, background .15s
}

.nav__dd-link:hover {
    color: var(--purple);
    background: var(--purple-pale)
}

.nav__chevron {
    display: inline-block;
    transition: transform .2s;
    margin-left: 2px;
    vertical-align: middle;
    font-size: .8em
}

.nav__dd:hover .nav__chevron {
    transform: rotate(180deg)
}

/* Mobile */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .5rem;
    border-radius: var(--r-md)
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

.nav__mobile {
    display: none;
    border-top: 1px solid var(--border);
    padding: 1rem clamp(1.25rem, 5vw, 3rem) 1.5rem;
    background: #fff
}

.nav__mobile.open {
    display: block
}

.nav__mob-link {
    display: block;
    padding: .75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--r-md);
    transition: background .15s
}

.nav__mob-link:hover {
    background: var(--purple-pale);
    color: var(--purple)
}

.nav__mob-group {
    margin-top: .75rem
}

.nav__mob-label {
    display: block;
    padding: .5rem 1rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted)
}

.nav__mob-sub {
    padding-left: 1rem
}

.nav__mob-sub a {
    display: block;
    padding: .5rem 1rem;
    font-size: .875rem;
    color: var(--text-body);
    border-radius: var(--r-md);
    transition: background .15s
}

.nav__mob-sub a:hover {
    background: var(--purple-pale);
    color: var(--purple)
}

.nav__mob-cta {
    display: block;
    text-align: center;
    margin-top: 1.25rem
}

@media (max-width: 960px) {
    .nav__links {
        display: none
    }

    .nav__actions .nav__contact {
        display: none
    }

    .nav__burger {
        display: flex
    }
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a0a2e
}

/* Full-bleed real photo */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(92, 45, 143, .88) 0%, rgba(92, 45, 143, .72) 40%, rgba(91, 196, 112, .25) 100%)
}

/* Content */
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 5rem 0
}

.hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--r-full);
    padding: .375rem 1rem;
    margin-bottom: 1.25rem
}

.hero__kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    animation: heroPulse 2s ease-in-out infinite
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.75)
    }
}

.hero__kicker-text {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85)
}

.hero__h1 {
    color: #fff;
    margin-bottom: 1.375rem
}

.hero__h1 em {
    font-style: normal;
    color: var(--green-light)
}

.hero__lead {
    color: rgba(255, 255, 255, .82);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 500px
}

.hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem
}

.hero__trust {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .78)
}

.hero__trust-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(91, 196, 112, .25);
    border: 1px solid rgba(91, 196, 112, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hero__trust-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--green-light)
}

/* Right: image mosaic */
.hero__mosaic {
    display: grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto auto;
    gap: 1rem
}

.hero__mosaic-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative
}

.hero__mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease
}

.hero__mosaic-img:hover img {
    transform: scale(1.04)
}

.hero__mosaic-img--tall {
    grid-row: span 2;
    min-height: 340px
}

.hero__mosaic-img--short {
    min-height: 160px
}

.hero__mosaic-badge {
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    background: rgba(255, 255, 255, .95);
    border-radius: var(--r-md);
    padding: .5rem .875rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-dark);
    backdrop-filter: blur(8px)
}

.hero__mosaic-badge span {
    color: var(--purple);
    font-weight: 700
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns:1fr;
        padding: 3.5rem 0
    }

    .hero__mosaic {
        display: none
    }

    .hero {
        min-height: auto
    }
}

/* ═══════════════════════════════════════
   SHARED HERO BASE
   Used by all interior page heroes
   ═══════════════════════════════════════ */
.hero-page {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0
}

.hero-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0
}

.hero-page__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.hero-page__blob--1 {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -70px;
    background: rgba(255, 255, 255, .055)
}

.hero-page__blob--2 {
    width: 240px;
    height: 240px;
    bottom: -80px;
    left: -50px;
    background: rgba(91, 196, 112, .1)
}

.hero-page__print {
    position: absolute;
    right: 2%;
    bottom: -15px;
    opacity: .07;
    width: min(34vw, 360px);
    pointer-events: none;
    z-index: 0
}

.hero-page__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 3rem;
    align-items: center
}

.hero-page__kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-full);
    padding: .375rem 1rem;
    margin-bottom: 1.125rem
}

.hero-page__kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    animation: heroPulse 2s ease-in-out infinite
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.75)
    }
}

.hero-page__kicker-text {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85)
}

.hero-page__h1 {
    color: #fff;
    margin-bottom: 1rem
}

.hero-page__h1 em {
    font-style: normal;
    color: var(--green-light)
}

.hero-page__lead {
    color: rgba(255, 255, 255, .82);
    font-weight: 300;
    margin-bottom: 1.875rem;
    max-width: 510px
}

.hero-page__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.hero-page__card {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--r-xl);
    padding: 1.625rem;
    backdrop-filter: blur(8px)
}

.hero-page__card-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 1rem;
    display: block
}

.hero-page__list {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.hero-page__list-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .85)
}

.hero-page__list-tick {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(91, 196, 112, .25);
    border: 1px solid rgba(91, 196, 112, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hero-page__list-tick svg {
    width: 10px;
    height: 10px;
    stroke: var(--green-light)
}

@media (max-width: 860px) {
    .hero-page__inner {
        grid-template-columns:1fr
    }

    .hero-page__card {
        display: none
    }
}

/* ─── SIGNPOST ──────────────────────────────────────────────── */
.signpost {
    background: var(--white)
}

.signpost__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3rem
}

.signpost__head .lead {
    margin-top: .875rem
}

.sp-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.5rem
}

.sp-card {
    border-radius: var(--r-xl);
    padding: 2.25rem;
    border: 1.5px solid var(--border);
    background: var(--off);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .25s, box-shadow .25s, border-color .25s
}

.sp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-light)
}

.sp-card--featured {
    background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple) 100%);
    border-color: transparent
}

.sp-card--featured:hover {
    border-color: transparent
}

.sp-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.sp-icon--purple {
    background: var(--purple-pale)
}

.sp-icon--white {
    background: rgba(255, 255, 255, .15)
}

.sp-icon--green {
    background: var(--green-pale)
}

.sp-lbl {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted)
}

.sp-card--featured .sp-lbl {
    color: rgba(255, 255, 255, .5)
}

.sp-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark)
}

.sp-card--featured .sp-title {
    color: #fff
}

.sp-body {
    font-size: .9375rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
    flex: 1
}

.sp-card--featured .sp-body {
    color: rgba(255, 255, 255, .78)
}

.sp-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--purple);
    margin-top: auto;
    transition: gap .15s
}

.sp-card--featured .sp-link {
    color: var(--green-light)
}

.sp-link:hover {
    gap: .75rem
}

@media (max-width: 860px) {
    .sp-grid {
        grid-template-columns:1fr;
        max-width: 440px;
        margin: 0 auto
    }
}

/* ─── STATS ─────────────────────────────────────────────────── */
.stats {
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
    padding: 3.5rem 0
}

.stats__inner {
    display: grid;
    grid-template-columns:repeat(4, 1fr)
}

.stats__item {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative
}

.stats__item + .stats__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .15)
}

.stats__num {
    display: block;
    font-size: clamp(2rem, 3.5vw, 2.625rem);
    font-weight: 700;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: .5rem
}

.stats__num--warn {
    color: #F2A7C3
}

.stats__lbl {
    display: block;
    font-size: .875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .8);
    line-height: 1.45;
    max-width: 150px;
    margin: 0 auto .375rem
}

.stats__src {
    display: block;
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .05em
}

@media (max-width: 740px) {
    .stats__inner {
        grid-template-columns:1fr 1fr
    }

    .stats__item + .stats__item::before {
        display: none
    }

    .stats__item {
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }
}

@media (max-width: 440px) {
    .stats__inner {
        grid-template-columns:1fr
    }
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.services {
    background: var(--light-grey)
}

.services__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem
}

.services__head .lead {
    margin-top: .875rem
}

.svc-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.25rem
}

.svc-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: .875rem;
    transition: transform .25s, box-shadow .25s, border-color .25s
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple-light)
}

.svc-card--cta {
    background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
    border-color: transparent;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px
}

.svc-card--cta:hover {
    border-color: transparent;
    box-shadow: var(--shadow-green-sm)
}

.svc-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r-md);
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.svc-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark)
}

.svc-body {
    font-size: .875rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
    flex: 1
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--purple);
    margin-top: auto;
    transition: gap .15s
}

.svc-link:hover {
    gap: .625rem
}

.svc-cta-txt {
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 1.25rem;
    line-height: 1.5
}

@media (max-width: 1000px) {
    .svc-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 580px) {
    .svc-grid {
        grid-template-columns:1fr
    }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
    background: var(--white)
}

.about__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center
}

.about__media {
    position: relative
}

.about__frame {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--purple-pale);
    position: relative;
    box-shadow: var(--shadow-lg)
}

.about__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* Green accent bar on image frame */
.about__frame::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: -1.5rem;
    width: 100%;
    height: 100%;
    border-radius: var(--r-xl);
    border: 2px solid var(--green);
    z-index: -1;
    opacity: .35
}

.about__badge {
    position: absolute;
    bottom: 1.75rem;
    right: -1.5rem;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    gap: .875rem;
    min-width: 210px
}

.about__badge-icon {
    width: 42px;
    height: 42px;
    background: var(--green-pale);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.about__badge-title {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    color: var(--text-dark)
}

.about__badge-sub {
    display: block;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 1px
}

.about__body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 1.25rem
}

.about__pillars {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    margin: 1.75rem 0 2.25rem
}

.about__pillar {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    font-size: .9375rem;
    font-weight: 400;
    color: var(--text-body)
}

.about__pillar-dot {
    width: 28px;
    height: 28px;
    background: var(--purple-pale);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .2rem
}

.about__pillar-dot svg {
    width: 14px;
    height: 14px;
    stroke: var(--purple)
}

@media (max-width: 880px) {
    .about__grid {
        grid-template-columns:1fr
    }

    .about__badge {
        right: 1rem;
        bottom: 1rem;
        min-width: auto
    }

    .about__frame::before {
        display: none
    }
}

/* ─── COVERAGE ────────────────────────────────────────────────── */
.coverage {
    background: var(--purple-pale)
}

.coverage__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center
}

.coverage__body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    margin: 1rem 0 1.75rem
}

.coverage__regions {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    margin-bottom: 2rem
}

.coverage__region {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--green);
    box-shadow: var(--shadow-sm)
}

.coverage__region-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block
}

.coverage__region-cities {
    font-size: .8125rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: .125rem;
    display: block
}

.coverage__note {
    font-size: .875rem;
    font-weight: 300;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem
}

.coverage__map-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md)
}

.coverage__map-card svg {
    width: 100%;
    height: auto;
    max-height: 400px
}

.coverage__legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border)
}

.coverage__legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--text-body)
}

.coverage__legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0
}

@media (max-width: 880px) {
    .coverage__grid {
        grid-template-columns:1fr
    }
}

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
    background: var(--white)
}

.testimonials__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3rem
}

.testimonials__head .lead {
    margin-top: .875rem
}

.testi-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem
}

.testi-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.375rem;
    position: relative;
    transition: box-shadow .25s, border-color .25s
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--purple-light)
}

.testi-card__mark {
    font-size: 5rem;
    line-height: .5;
    color: var(--purple);
    opacity: .12;
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    pointer-events: none;
    user-select: none;
    font-weight: 700
}

.testi-card__text {
    font-size: .9375rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    font-style: italic;
    flex: 1
}

.testi-card__foot {
    display: flex;
    align-items: center;
    gap: .875rem;
    flex-wrap: wrap
}

.testi-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0
}

.testi-card__name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block
}

.testi-card__role {
    font-size: .75rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block
}

.testi-card__tag {
    margin-left: auto;
    padding: .25rem .875rem;
    background: var(--green-pale);
    color: var(--green-deep);
    border-radius: var(--r-full);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap
}

.testimonials__cta {
    text-align: center
}

@media (max-width: 720px) {
    .testi-grid {
        grid-template-columns:1fr
    }
}

/* ─── ACCREDITATIONS TICKER ─────────────────────────── */
.accreditations {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.625rem 0;
    overflow: hidden
}

.accreditations__label {
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.125rem
}

/* Scrolling track */
.accred-track-wrap {
    position: relative;
    overflow: hidden
}

/* Fade edges */
.accred-track-wrap::before, .accred-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.accred-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent)
}

.accred-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent)
}

.accred-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: accredScroll 28s linear infinite
}

.accred-track:hover {
    animation-play-state: paused
}

@keyframes accredScroll {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-50%)
    }
}

/* Individual items */
.accred-item {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: 0 2.5rem;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity .2s
}

.accred-item:hover {
    opacity: .75
}

.accred-item__wordmark svg {
    height: 28px;
    width: auto;
    display: block
}

.accred-item__text {
    display: flex;
    flex-direction: column;
    gap: .125rem
}

.accred-item__name {
    font-size: .75rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    line-height: 1.2
}

.accred-item__sub {
    font-size: .68rem;
    font-weight: 300;
    color: var(--text-muted);
    white-space: nowrap
}

/* Pause on reduced motion */
@media (prefers-reduced-motion: reduce) {
    .accred-track {
        animation: none
    }
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.cta-banner__deco {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.cta-banner__circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07)
}

.cta-banner__circle--1 {
    width: 400px;
    height: 400px;
    top: -140px;
    right: -70px
}

.cta-banner__circle--2 {
    width: 220px;
    height: 220px;
    bottom: -70px;
    left: -40px
}

.cta-banner__print {
    position: absolute;
    right: 5%;
    bottom: -25px;
    opacity: .07;
    width: 200px;
    pointer-events: none
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto
}

.cta-banner__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.875rem
}

.cta-banner--purple {
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%)
}

.cta-banner--green {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%)
}

.cta-banner--blue {
    background: linear-gradient(135deg, #1E5799 0%, #4A90D9 100%)
}

@media (max-width: 480px) {
    .cta-banner__btns {
        flex-direction: column;
        align-items: stretch
    }

    .cta-banner__btns .btn {
        justify-content: center
    }
}


/* ─── IMPACT STRIP ──────────────────────────────────────── */
.impact-strip {
    overflow: hidden;
    background: var(--text-dark);
    padding: .5rem 0
}

.impact-strip__inner {
    display: flex;
    gap: .5rem
}

.impact-strip__img {
    flex: 1;
    min-width: 0;
    aspect-ratio: 16/9;
    overflow: hidden
}

.impact-strip__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
    transition: opacity .3s, transform .3s
}

.impact-strip__img:hover img {
    opacity: .9;
    transform: scale(1.04)
}

@media (max-width: 680px) {
    .impact-strip__img:nth-child(n+3) {
        display: none
    }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, .6)
}

.footer__main {
    padding: 4rem 0
}

.footer__grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap: 2.5rem
}

.footer__logo-wrap {
    margin-bottom: 1.25rem
}

.footer__logo-wrap img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85
}

.footer__tagline {
    font-size: .875rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, .5);
    max-width: 285px;
    margin-bottom: 1.5rem
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.footer__badge {
    display: inline-block;
    padding: .25rem .75rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--r-full);
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .04em
}

.footer__col-title {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 1rem
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.footer__link {
    font-size: .875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    transition: color .15s
}

.footer__link:hover {
    color: var(--green-light)
}

.footer__email {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    transition: color .15s;
    font-style: normal
}

.footer__email:hover {
    color: var(--green-light)
}

.footer__address {
    font-size: .875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    line-height: 1.85;
    margin-top: .875rem;
    font-style: normal
}

.footer__bottom {
    background: rgba(0, 0, 0, .25);
    padding: 1rem 0
}

.footer__bot-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem
}

.footer__copy {
    font-size: .8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .3)
}

.footer__legal {
    display: flex;
    gap: 1.5rem
}

.footer__legal a {
    font-size: .8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .3);
    transition: color .15s
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, .7)
}

@media (max-width: 1000px) {
    .footer__grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 560px) {
    .footer__grid {
        grid-template-columns:1fr
    }
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

/* ─── FOCUS / A11Y ─────────────────────────────────────────── */
:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 3px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

.reveal-d4 {
    transition-delay: .4s
}

/* HERO CONTACT */
.hero_contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple) 60%, #7B3EC8 100%);
    padding: clamp(3rem, 6vw, 4.5rem) 0
}

.hero_contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0
}

.hero_contact__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.hero_contact__blob--1 {
    width: 380px;
    height: 380px;
    top: -120px;
    right: -60px;
    background: rgba(255, 255, 255, .055)
}

.hero_contact__blob--2 {
    width: 220px;
    height: 220px;
    bottom: -70px;
    left: -40px;
    background: rgba(91, 196, 112, .1)
}

.hero_contact__print {
    position: absolute;
    right: 3%;
    bottom: -20px;
    opacity: .07;
    width: min(35vw, 380px);
    pointer-events: none;
    z-index: 0
}

.hero_contact__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto
}

.hero_contact__kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-full);
    padding: .375rem 1rem;
    margin-bottom: 1.25rem
}

.hero_contact__kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(.8)
    }
}

.hero_contact__kicker-text {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85)
}

.hero_contact__h1 {
    color: #fff;
    margin-bottom: 1.125rem
}

.hero_contact__h1 em {
    font-style: normal;
    color: var(--green-light)
}

.hero_contact__lead {
    color: rgba(255, 255, 255, .8);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto
}

/* Response time badges */
.hero_contact__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center
}

.hero_contact__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--r-full);
    padding: .375rem 1rem;
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85)
}

.hero_contact__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */
.breadcrumb {
    background: var(--purple-pale);
    padding: .875rem 0;
    border-bottom: 1px solid rgba(155, 89, 208, .1)
}

.breadcrumb__inner {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--text-muted)
}

.breadcrumb__link {
    color: var(--purple);
    transition: color .15s
}

.breadcrumb__link:hover {
    color: var(--purple-dark)
}

.breadcrumb__sep {
    color: var(--purple-light);
    font-size: .75rem
}

.breadcrumb__current {
    color: var(--text-muted)
}

.explainer {
    background: var(--white);
    padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 3vw, 3rem);
    border-radius: var(--r-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Mobile-first Grid */
.explainer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem,5vw,4.5rem);
    align-items: start
}

@media (min-width: 900px) {
    .explainer__grid {
        grid-template-columns: 1fr 1fr; /* Two columns on desktop */
        gap: 4.5rem;
    }
}

/* WHAT IS / EXPLAINER */
.explainer__body {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
}

.explainer__body:last-child {
    margin-bottom: 0;
}

/* --- VISUAL BOX --- */
.explainer__visual {
    background: var(--page-accent-pale);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    border-left: 6px solid var(--page-accent);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); /* Added soft shadow */
}

.explainer__visual-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.explainer__fact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.explainer__fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

.explainer__fact strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Custom SVG Icon replaces the basic dot */
.explainer__fact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--page-accent);
    margin-top: 0.15rem;
}

@media(max-width:820px) {
    .explainer__grid {
        grid-template-columns: 1fr
    }
}