/* ==========================================================================
   CareProRx â€” Design System
   Brand: blue #008ffaâ†’#54b2fe Â· green #30cb70â†’#8acb2f
   ========================================================================== */

:root {
    --blue-600: #007ae0;
    --blue-500: #008ffa;
    --blue-400: #54b2fe;
    --green-500: #30cb70;
    --green-400: #5fd07a;
    --green-lime: #8acb2f;

    --ink-900: #0e1b2b;
    --ink-700: #2b3b4e;
    --ink-500: #5a6b7d;
    --ink-300: #93a2b2;

    --bg: #ffffff;
    --bg-soft: #f5f9fd;
    --bg-mint: #f1faf4;
    --line: #e4ecf3;

    --coral: #ff6a5d;
    --coral-600: #f4503f;

    --grad-blue: linear-gradient(135deg, #008ffa 0%, #54b2fe 100%);
    --grad-green: linear-gradient(135deg, #30cb70 0%, #8acb2f 100%);
    --grad-brand: linear-gradient(120deg, #008ffa 0%, #19b6c9 55%, #30cb70 100%);
    --grad-coral: linear-gradient(135deg, #ff7b5d 0%, #f4503f 100%);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 26px;
    --shadow-sm: 0 2px 10px rgba(14, 27, 43, .06);
    --shadow: 0 14px 40px rgba(14, 27, 43, .10);
    --shadow-lg: 0 30px 70px rgba(0, 122, 224, .16);

    --container: 1180px;
    --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Reset ----------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink-700);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16.5px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: var(--ink-900);
    line-height: 1.12;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.5rem);
    letter-spacing: -.02em;
}

h2 {
    font-size: clamp(1.7rem, 3.3vw, 2.5rem);
    letter-spacing: -.015em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--ink-500);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Helpers --------------------------------------------------------------- */
.text-grad {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-600);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    padding: 7px 14px;
    border-radius: 100px;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--grad-green);
}

.section {
    padding: clamp(64px, 9vw, 110px) 0;
}

.section--soft {
    background: var(--bg-soft);
}

.section--mint {
    background: var(--bg-mint);
}

.section__head {
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vw, 64px);
    text-align: center;
}

.section__head .eyebrow {
    margin-bottom: 18px;
}

.section__head p {
    margin-top: 16px;
    font-size: 1.06rem;
}

.lead {
    font-size: 1.12rem;
    color: var(--ink-500);
}

/* Buttons --------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .96rem;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn--primary {
    background: var(--grad-blue);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 143, 250, .32);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 143, 250, .42);
}

.btn--green {
    background: var(--grad-green);
    color: #fff;
    box-shadow: 0 8px 22px rgba(48, 203, 112, .32);
}

.btn--green:hover {
    transform: translateY(-2px);
}

.btn--outline {
    background: #fff;
    color: var(--ink-900);
    border-color: var(--line);
}

.btn--outline:hover {
    border-color: var(--blue-400);
    color: var(--blue-600);
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--blue-600);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--ghost-white {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.btn--ghost-white:hover {
    background: rgba(255, 255, 255, .2);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.02rem;
}

.btn--sm {
    padding: 9px 18px;
    font-size: .86rem;
}

.btn--coral {
    background: var(--grad-coral);
    color: #fff;
    box-shadow: 0 8px 22px rgba(244, 80, 63, .3);
}

.btn--coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(244, 80, 63, .42);
}

/* Icons ----------------------------------------------------------------- */
[data-ico] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

[data-ico] svg {
    width: 1em;
    height: 1em;
}

/* Header / Nav ---------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar {
    background: var(--ink-900);
    color: #cdd9e6;
    font-size: .82rem;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.topbar__right {
    display: flex;
    gap: 22px;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #cdd9e6;
    transition: color .2s;
}

.topbar__item:hover {
    color: #fff;
}

.topbar__item svg {
    width: 14px;
    height: 14px;
    color: var(--blue-400);
}

.nav {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s;
}

.nav.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner,
.utilbar__inner {
    max-width: 1340px;
}

.nav__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 76px;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-right: 30px;
}

.brand img {
    height: 60px;
}

.brand__mark {
    height: 38px;
    width: 38px;
}

.brand__logo {
    height: 40px;
    width: auto;
    display: block;
}

.brand__name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -.02em;
    color: var(--ink-900);
}

.brand__name span {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2px;
    /* margin-left: auto; */
}

.nav__item {
    position: relative;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink-700);
    padding: 10px 12px;
    border-radius: 10px;
    transition: color .2s, background .2s;
}

.nav__link svg {
    width: 14px;
    height: 14px;
    opacity: .6;
    transition: transform .25s;
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--blue-600);
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 226px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .22s var(--ease);
}

.dropdown li a {
    display: block;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink-700);
    transition: background .18s, color .18s;
}

.dropdown li a:hover {
    background: var(--bg-soft);
    color: var(--blue-600);
}

.nav__cta {
    margin-left: 6px;
}

.nav__cta-mobile {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink-900);
    border-radius: 2px;
    transition: .3s;
}

.nav__toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Utility bar ----------------------------------------------------------- */
.utilbar {
    background: var(--ink-900);
    color: #c5d2e0;
    font-size: .82rem;
}

.utilbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
}

.utilbar__left,
.utilbar__right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.utilbar__item {
    color: #c5d2e0;
    transition: color .2s;
    position: relative;
}

.utilbar__item:hover {
    color: #fff;
}

.utilbar__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.utilbar__phone svg {
    width: 14px;
    height: 14px;
    color: var(--green-400);
}

.utilbar__btn {
    background: none;
    border: none;
    color: #c5d2e0;
    cursor: pointer;
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.utilbar__btn svg {
    width: 13px;
    height: 13px;
}

.utilbar__item.has-dropdown:hover .utilbar__btn {
    color: #fff;
}

.dropdown--util {
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    min-width: 180px;
}

.utilbar__item.has-dropdown:hover .dropdown--util {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.utilbar__follow {
    font-size: .8rem;
    color: #8b9bad;
}

.utilbar__social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.utilbar__social a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: #c5d2e0;
    border: 1px solid rgba(255, 255, 255, .16);
    transition: .2s;
}

.utilbar__social a:hover {
    background: var(--grad-blue);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
}

.utilbar__social svg {
    width: 15px;
    height: 15px;
}

/* Mega menu ------------------------------------------------------------- */
.has-mega {
    position: static;
}

.mega {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(1100px, calc(100% - 48px));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .24s var(--ease);
    z-index: 50;
}

/* Mobile-only sub-drawer back button; hidden on desktop */
.submenu-back {
    display: none;
}

.mega__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.mega__item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 13px 14px;
    border-radius: 12px;
    transition: background .18s;
}

.mega__item:hover {
    background: var(--bg-soft);
}

.mega__ico {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 11px;
    background: var(--bg-soft);
    color: var(--blue-600);
    display: grid;
    place-items: center;
}

.mega__item:hover .mega__ico {
    background: var(--grad-blue);
    color: #fff;
}

.mega__ico svg {
    width: 20px;
    height: 20px;
}

.mega__item strong {
    display: block;
    font-family: var(--font-head);
    font-size: .92rem;
    color: var(--ink-900);
}

.mega__item small {
    display: block;
    font-size: .8rem;
    color: var(--ink-500);
    margin-top: 2px;
    line-height: 1.4;
}

.mega__foot {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.mega__foot-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .88rem;
    color: var(--blue-600);
}

.mega__foot-link svg {
    width: 15px;
    height: 15px;
}

.mega__foot .btn {
    margin-left: auto;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 6px;
}

.nav__cta .btn {
    padding: 11px 18px;
    font-size: .9rem;
}

/* Estimator ------------------------------------------------------------- */
.estimator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 5vw, 56px);
}

.estimator__intro h2 {
    margin: 16px 0 14px;
}

.estimator__tool {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.estimator__result {
    background: var(--grad-brand);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 8px 0 18px;
    color: #fff;
    text-align: center;
}

.estimator__result-lbl {
    display: block;
    font-size: .82rem;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.estimator__result-num {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.3rem;
    margin-top: 4px;
}

/* Highlight tiles ------------------------------------------------------- */
.tile {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    transition: box-shadow .3s, transform .3s;
}

.tile:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.tile__ico {
    width: 48px;
    height: 48px;
    flex: none;
    border-radius: 13px;
    background: var(--grad-brand);
    color: #fff;
    display: grid;
    place-items: center;
}

.tile__ico svg {
    width: 23px;
    height: 23px;
}

.tile strong {
    font-family: var(--font-head);
    font-size: 1.08rem;
    color: var(--ink-900);
    display: block;
    margin-bottom: 5px;
}

.tile p {
    font-size: .92rem;
}

/* Platform preview ------------------------------------------------------ */
.platform-preview {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.platform-preview__bar {
    display: flex;
    gap: 7px;
    padding: 16px 20px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.platform-preview__bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d4dee8;
}

.platform-preview__bar span:first-child {
    background: var(--coral);
}

.platform-preview__bar span:nth-child(2) {
    background: #ffce4a;
}

.platform-preview__bar span:nth-child(3) {
    background: var(--green-500);
}

.platform-preview__body {
    padding: 22px;
    display: grid;
    gap: 14px;
}

.pp-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--bg-soft);
    border-radius: 13px;
    padding: 16px 18px;
}

.pp-ico {
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 11px;
    background: var(--grad-blue);
    color: #fff;
    display: grid;
    place-items: center;
}

.pp-ico--green {
    background: var(--grad-green);
}

.pp-ico svg {
    width: 21px;
    height: 21px;
}

.pp-card b {
    font-family: var(--font-head);
    color: var(--ink-900);
    display: block;
    font-size: .98rem;
}

.pp-card small {
    color: var(--ink-500);
    font-size: .85rem;
}

/* Transition tracker ---------------------------------------------------- */
.tracker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}

.tracker::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-400), var(--green-400));
    z-index: 0;
}

.tracker__step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: transparent;
}

.tracker__dot {
    width: 46px;
    height: 46px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(0, 122, 224, .25);
    border: 4px solid var(--bg-mint);
}

.tracker__week {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--blue-600);
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tracker__step h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.tracker__step p {
    font-size: .9rem;
}

/* Testimonials ---------------------------------------------------------- */
.quote {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
}

.quote__stars {
    color: #ffb400;
    letter-spacing: 2px;
    font-size: .95rem;
    margin-bottom: 14px;
}

.quote blockquote {
    font-size: 1.02rem;
    color: var(--ink-700);
    line-height: 1.6;
}

.quote figcaption {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.quote figcaption strong {
    font-family: var(--font-head);
    color: var(--ink-900);
    display: block;
    font-size: .95rem;
}

.quote figcaption span {
    font-size: .85rem;
    color: var(--ink-500);
}

/* Resource cards -------------------------------------------------------- */
.resource {
    display: block;
}

.resource__cat {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue-600);
    background: var(--bg-soft);
    padding: 5px 11px;
    border-radius: 100px;
}

.resource__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: .82rem;
    color: var(--ink-300);
}

/* Floating module ------------------------------------------------------- */
.float-savings {
    position: fixed;
    right: -2px;
    top: 42%;
    z-index: 89;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    background: var(--grad-coral);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    padding: 16px 9px;
    border-radius: 10px 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: -4px 6px 18px rgba(244, 80, 63, .32);
    transition: padding .25s;
}

.float-savings:hover {
    padding-right: 13px;
}

.float-savings svg {
    width: 16px;
    height: 16px;
}

.float-stack {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow);
    transition: transform .25s;
}

.float-btn:hover {
    transform: scale(1.08);
}

.float-btn svg {
    width: 23px;
    height: 23px;
}

.float-btn--chat {
    background: #25d366;
}

.float-btn--call {
    background: var(--grad-blue);
    animation: pulse 2.4s infinite;
}

.float-btn--top {
    background: var(--ink-700);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.show-top .float-btn--top {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* High contrast --------------------------------------------------------- */
body.high-contrast {
    --ink-500: #1a2531;
    --ink-700: #0a121c;
    --line: #9bb0c4;
}

body.high-contrast p {
    color: var(--ink-700);
}

/* Hero ------------------------------------------------------------------ */
.hero {
    position: relative;
    padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 104px);
    background: radial-gradient(1100px 520px at 78% -8%, #e8f4ff 0%, transparent 60%), radial-gradient(900px 500px at 8% 110%, #ecfbf1 0%, transparent 55%), #fff;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
}

.hero__content h1 {
    margin: 20px 0 0;
}

.hero__content .lead {
    margin: 22px 0 32px;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__trust {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero__stat .num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.9rem;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__stat .lbl {
    font-size: .85rem;
    color: var(--ink-500);
}

.hero__media {
    position: relative;
}

.hero__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/4.4;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    bottom: 26px;
    left: -26px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero__badge .ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--grad-green);
    color: #fff;
    display: grid;
    place-items: center;
}

.hero__badge .ico svg {
    width: 24px;
    height: 24px;
}

.hero__badge strong {
    font-family: var(--font-head);
    color: var(--ink-900);
    display: block;
    font-size: 1rem;
}

.hero__badge span {
    font-size: .82rem;
    color: var(--ink-500);
}

.hero__blob {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: var(--grad-blue);
    filter: blur(10px);
    opacity: .14;
    border-radius: 50% 50% 46% 54% / 54% 46% 54% 46%;
    z-index: -1;
}

/* Trust logos strip ----------------------------------------------------- */
.trustbar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trustbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 40px;
    padding: 26px 0;
}

.trustbar__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--ink-700);
    font-size: .95rem;
}

.trustbar__item svg {
    width: 22px;
    height: 22px;
    color: var(--green-500);
}

/* Cards ----------------------------------------------------------------- */
.grid {
    display: grid;
    gap: 24px;
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.card__ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: var(--bg-soft);
    color: var(--blue-600);
}

.card__ico svg {
    width: 27px;
    height: 27px;
}

.card:nth-child(3n+2) .card__ico {
    background: var(--bg-mint);
    color: var(--green-500);
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: .96rem;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .9rem;
    color: var(--blue-600);
}

.card__link svg {
    width: 16px;
    height: 16px;
    transition: transform .25s;
}

.card:hover .card__link svg {
    transform: translateX(4px);
}

/* Feature list ---------------------------------------------------------- */
.checks {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.checks li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink-700);
    font-size: .98rem;
}

.checks li::before {
    content: "";
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 2px;
    background: var(--grad-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
    box-shadow: 0 4px 10px rgba(48, 203, 112, .3);
}

/* Split feature --------------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.split--rev .split__media {
    order: 2;
}

.split__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
}

.split__content h2 {
    margin-bottom: 18px;
}

.split__content .eyebrow {
    margin-bottom: 18px;
}

/* Process steps --------------------------------------------------------- */
.steps {
    display: grid;
    gap: 22px;
    position: relative;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 28px;
    transition: box-shadow .3s, transform .3s;
}

.step:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.step__num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad-blue);
    color: #fff;
    display: grid;
    place-items: center;
}

.step:nth-child(even) .step__num {
    background: var(--grad-green);
}

.step h3 {
    margin-bottom: 6px;
}

.step p {
    font-size: .96rem;
}

/* Stats band ------------------------------------------------------------ */
.statband {
    background: var(--grad-brand);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 56px);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.statband .grid {
    gap: 30px;
}

.statband__num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.statband__lbl {
    opacity: .9;
    font-size: .96rem;
}

.statband__lbl,
.statband__num {
    color: #fff;
}

/* CTA band -------------------------------------------------------------- */
.cta-band {
    background: var(--grad-brand);
    color: #fff;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(48px, 6vw, 72px) 0;
    flex-wrap: wrap;
}

.cta-band__title {
    color: #fff;
    max-width: 620px;
}

.cta-band__text {
    color: rgba(255, 255, 255, .9);
    margin-top: 10px;
}

.cta-band__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Footer ---------------------------------------------------------------- */
.site-footer {
    background: var(--ink-900);
    color: #aebccd;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: clamp(56px, 7vw, 84px) 24px 50px;
}

.footer__logo {
    height: 70px;
    margin-bottom: 10px;
}

.footer__desc {
    font-size: .94rem;
    color: #9fb0c2;
    max-width: 320px;
}

.footer__areas {
    margin-top: 16px;
    font-size: .85rem;
    color: var(--blue-400);
}

.footer__col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer__col a {
    display: block;
    padding: 6px 0;
    font-size: .92rem;
    color: #aebccd;
    transition: color .2s, padding-left .2s;
}

.footer__col a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer__contact p {
    color: #aebccd;
    font-size: .92rem;
    margin-bottom: 14px;
    display: flex;
    gap: 9px;
}

.footer__contact p span {
    color: #8195a8;
}

.footer__contact svg,
.footer__col svg {
    width: 16px;
    height: 16px;
    color: var(--blue-400);
    flex: none;
}

.footer__contact a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    font-size: .85rem;
    color: #7d8fa0;
    flex-wrap: wrap;
    gap: 8px;
}

.footer__bottom-inner p {
    color: #7d8fa0;
}

/* Floating call --------------------------------------------------------- */
.float-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--grad-green);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(48, 203, 112, .45);
    transition: transform .25s;
    animation: pulse 2.4s infinite;
}

.float-call:hover {
    transform: scale(1.08);
}

.float-call svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(48, 203, 112, .45);
    }

    50% {
        box-shadow: 0 10px 30px rgba(48, 203, 112, .45), 0 0 0 14px rgba(48, 203, 112, 0);
    }
}

/* Page hero (inner pages) ----------------------------------------------- */
.page-hero {
    background: radial-gradient(900px 400px at 85% -20%, #e8f4ff, transparent 60%), var(--bg-soft);
    padding: clamp(48px, 7vw, 84px) 0 clamp(44px, 6vw, 70px);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.page-hero .eyebrow {
    margin-bottom: 18px;
}

.page-hero p {
    max-width: 640px;
    margin: 18px auto 0;
    font-size: 1.08rem;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
    font-size: .85rem;
    color: var(--ink-300);
}

.breadcrumb a:hover {
    color: var(--blue-600);
}

/* Prose / article + legal content --------------------------------------- */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose>*+* {
    margin-top: 18px;
}

.prose h2 {
    margin-top: 44px;
    scroll-margin-top: 110px;
}

.prose h3 {
    margin-top: 30px;
}

.prose p,
.prose li {
    color: var(--ink-700);
    font-size: 1.04rem;
    line-height: 1.75;
}

.prose ul,
.prose ol {
    padding-left: 1.25rem;
    display: grid;
    gap: 10px;
}

.prose li {
    list-style: disc;
}

.prose ol li {
    list-style: decimal;
}

.prose a {
    color: var(--blue-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose strong {
    color: var(--ink-900);
}

.prose .lead {
    color: var(--ink-500);
}

.prose hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 40px 0;
}

.prose .muted {
    color: var(--ink-300);
    font-size: .92rem;
}

/* Values / who-serve cards ---------------------------------------------- */
.value {
    text-align: left;
}

.value__ico {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--grad-blue);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.value:nth-child(even) .value__ico {
    background: var(--grad-green);
}

.value__ico svg {
    width: 24px;
    height: 24px;
}

/* Team ------------------------------------------------------------------ */
.team-card {
    text-align: center;
}

.team-card__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.9rem;
    color: #fff;
    background: var(--grad-brand);
}

.team-card__avatar--img {
    background: none;
    overflow: hidden;
}

.team-card__avatar--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:nth-child(2) .team-card__avatar {
    background: var(--grad-green);
}

.team-card:nth-child(3) .team-card__avatar {
    background: var(--grad-blue);
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-card .role {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--blue-600);
    font-size: .9rem;
    margin-bottom: 14px;
}

.team-card p {
    font-size: .92rem;
    text-align: left;
}

.team-card.is-link {
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.team-card.is-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

/* Single team-member profile ------------------------------------------- */
.profile__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.4rem;
    color: #fff;
    background: var(--grad-brand);
}

.profile__avatar--green {
    background: var(--grad-green);
}

.profile__avatar--blue {
    background: var(--grad-blue);
}

.profile__avatar--img {
    background: none;
    overflow: hidden;
}

.profile__avatar--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile__role {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--blue-600);
    margin-top: 12px;
}

.profile__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.profile__tag {
    font-size: .82rem;
    font-weight: 600;
    font-family: var(--font-head);
    color: var(--ink-700);
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 14px;
    border-radius: 100px;
}

.profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

/* Improved profile layout ---------------------------------------------- */
.page-hero--profile {
    text-align: left;
}

.breadcrumb--start {
    justify-content: flex-start;
    margin: 0 0 26px;
}

.profile-head {
    display: flex;
    align-items: center;
    gap: 28px;
}

.profile-head .profile__avatar {
    margin: 0;
    flex: none;
}

.profile-head__text .eyebrow {
    margin-bottom: 12px;
}

.profile-head__text h1 {
    margin: 0;
}

.profile-head__text .profile__role {
    margin-top: 8px;
    font-size: 1.05rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.profile-side__card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    position: sticky;
    top: 100px;
}

.profile-side__card h4 {
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: 14px;
}

.profile-side__card hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 22px 0;
}

.profile-creds {
    display: grid;
    gap: 12px;
}

.profile-creds li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .94rem;
    color: var(--ink-700);
    line-height: 1.5;
}

.profile-creds li [data-ico] {
    color: var(--blue-600);
    margin-top: 3px;
    flex: none;
}

.profile-main {
    margin: 0;
}

/* Locations ------------------------------------------------------------- */
.loc {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: box-shadow .3s, transform .3s;
}

.loc:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.loc__pin {
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 12px;
    background: var(--bg-mint);
    color: var(--green-500);
    display: grid;
    place-items: center;
}

.loc__pin svg {
    width: 22px;
    height: 22px;
}

.loc h3 {
    font-size: 1.04rem;
    margin-bottom: 3px;
}

.loc p {
    font-size: .88rem;
}

/* FAQ ------------------------------------------------------------------- */
.faq {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--ink-900);
    font-size: 1.04rem;
}

.faq__q .ico {
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: 9px;
    background: var(--bg-soft);
    color: var(--blue-600);
    display: grid;
    place-items: center;
    transition: transform .3s, background .3s;
}

.faq__q .ico svg {
    width: 18px;
    height: 18px;
}

.faq__item.is-open .faq__q .ico {
    transform: rotate(45deg);
    background: var(--grad-blue);
    color: #fff;
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq__a p {
    padding: 0 26px 22px;
    font-size: .98rem;
}

/* Contact --------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 18px;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
}

.contact-info__ico {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 12px;
    background: var(--grad-blue);
    color: #fff;
    display: grid;
    place-items: center;
}

.contact-info__ico svg {
    width: 22px;
    height: 22px;
}

.contact-info__item:nth-child(even) .contact-info__ico {
    background: var(--grad-green);
}

.contact-info__item h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-info__item p,
.contact-info__item a {
    font-size: .94rem;
    color: var(--ink-500);
}

.contact-info__item a:hover {
    color: var(--blue-600);
}

.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 40px);
    box-shadow: var(--shadow-sm);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .88rem;
    color: var(--ink-700);
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: .96rem;
    color: var(--ink-900);
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 143, 250, .1);
}

.field textarea {
    resize: vertical;
    min-height: 130px;
}

.form__note {
    font-size: .82rem;
    color: var(--ink-300);
    margin-top: 6px;
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    margin-top: 50px;
}

.map-embed iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* Reveal animation ------------------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Bootstrap-grid bridge helpers ─────────────────────────────────────
   bootstrap-grid.min.css ships row/col/order/align utils but NOT sizing.
   These let cards inside .col stretch to equal height. */
.h-100 { height: 100%; }
/* anchor cards inside a .col are no longer grid items, so blockify them
   (otherwise an <a> stays inline and the bg/border wraps only the text). */
a.card { display: block; }
