/* ==========================================================================
   CARE LOGIC — DESIGN SYSTEM
   Palette sampled directly from careLogicLogo.png:
     - Logo field blue .... #1B56A9
     - EKG pulse red ...... #D6353A
     - Wordmark ink ....... #1D1D1B
   ========================================================================== */

:root {
    /* --- Brand: blue ramp --- */
    --brand-50:  #EEF4FC;
    --brand-100: #DCE8F7;
    --brand-200: #BBD1EF;
    --brand-300: #7FA8DD;
    --brand-400: #4A82CB;
    --brand-500: #2A6BC7;
    --brand-600: #1B56A9;  /* logo blue */
    --brand-700: #14417F;
    --brand-800: #0E2F5C;
    --brand-900: #0A2245;

    /* --- Brand: EKG red accent --- */
    --accent-50:  #FDECEC;
    --accent-100: #FAD5D6;
    --accent-500: #E0464B;
    --accent-600: #D6353A;  /* logo red */
    --accent-700: #B92B30;

    /* --- Neutrals --- */
    --ink:       #1D1D1B;   /* logo wordmark */
    --ink-700:   #33332F;
    --ink-500:   #5C5C57;
    --muted:     #6B7280;
    --line:      #E4EAF2;
    --line-soft: #EFF3F8;
    --surface:   #FFFFFF;
    --surface-2: #F7F9FC;
    --surface-3: #EFF4FA;

    /* --- Gradients --- */
    --grad-brand: linear-gradient(135deg, #2A6BC7 0%, #1B56A9 45%, #0E2F5C 100%);
    --grad-brand-soft: linear-gradient(135deg, #EEF4FC 0%, #FFFFFF 60%);
    --grad-accent: linear-gradient(135deg, #E0464B 0%, #D6353A 100%);
    --grad-sheen: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.28) 50%, rgba(255,255,255,0) 80%);

    /* --- Elevation --- */
    --sh-xs: 0 1px 2px rgba(14, 47, 92, .06);
    --sh-sm: 0 2px 8px rgba(14, 47, 92, .07);
    --sh-md: 0 10px 30px -12px rgba(14, 47, 92, .18);
    --sh-lg: 0 24px 60px -20px rgba(14, 47, 92, .28);
    --sh-brand: 0 18px 40px -16px rgba(27, 86, 169, .55);
    --sh-accent: 0 18px 40px -16px rgba(214, 53, 58, .5);

    /* --- Geometry --- */
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 999px;

    --container: 1200px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);

    /* Legacy aliases (kept so older markup keeps resolving) */
    --navy-blue: var(--brand-800);
    --teal-acc:  var(--brand-600);
    --dark-navy: var(--brand-900);
}

/* ==========================================================================
   BASE
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    /* Bootstrap's `.row.g-5` sets --bs-gutter-x:3rem, giving the row -24px side
       margins while .container keeps only 12px padding — a 12px overflow each
       side. Column padding means no content is lost, but the page would scroll
       sideways on mobile. `clip` (not `hidden`) contains it without turning the
       root into a scroll container, so `position: sticky` keeps working. */
    overflow-x: clip;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink-700);
    background-color: var(--surface);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Plus Jakarta Sans', 'Inter', 'Segoe UI', sans-serif;
    color: var(--brand-900);
    font-weight: 800;
    letter-spacing: -.022em;
    line-height: 1.15;
}

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

a { text-decoration: none; }

::selection {
    background: var(--brand-600);
    color: #fff;
}

img { max-width: 100%; }

/* Focus ring — accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 3px solid var(--brand-300);
    outline-offset: 2px;
    box-shadow: none;
}

/* ==========================================================================
   TYPE HELPERS
   ========================================================================== */

.section {
    padding: clamp(64px, 8vw, 112px) 0;
    position: relative;
}

.section-tight { padding: clamp(48px, 5vw, 72px) 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-600);
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    padding: .45rem 1rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.15rem;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-600);
    box-shadow: 0 0 0 3px var(--accent-50);
}

.eyebrow-light {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
}

.section-title {
    font-size: clamp(1.9rem, 3.3vw, 2.9rem);
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.06rem;
    color: var(--muted);
    max-width: 62ch;
}

.section-head-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.section-head-center .section-lead { margin-inline: auto; }

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

.text-accent { color: var(--accent-600) !important; }
.text-brand  { color: var(--brand-600) !important; }
.text-ink    { color: var(--ink) !important; }
.text-muted  { color: var(--muted) !important; }

/* Legacy colour utilities remapped onto the logo palette */
.text-navy { color: var(--brand-800) !important; }
.text-teal { color: var(--brand-600) !important; }
.bg-navy   { background-color: var(--brand-900) !important; }
.bg-teal   { background-color: var(--brand-600) !important; }
.bg-cream  { background-color: var(--surface-2) !important; }
.text-warning { color: #FFC53D !important; }

.bg-surface-2 { background-color: var(--surface-2); }
.bg-brand-grad { background: var(--grad-brand); }

/* ==========================================================================
   DECORATIVE BACKDROPS
   ========================================================================== */

.bg-dots::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--brand-200) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .35;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 72%);
    mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 72%);
}

.bg-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(27, 86, 169, .07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(27, 86, 169, .07) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 75%);
    mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 75%);
}

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

.glow-brand { background: rgba(42, 107, 199, .22); }
.glow-accent { background: rgba(214, 53, 58, .16); }

/* EKG pulse motif — a nod to the logo's heartbeat line */
.pulse-rule {
    display: block;
    width: 100%;
    height: 26px;
    color: var(--accent-600);
    opacity: .9;
}

.pulse-rule path {
    stroke-dasharray: 340;
    stroke-dashoffset: 340;
    animation: ekg 3.2s var(--ease) infinite;
}

@keyframes ekg {
    0%   { stroke-dashoffset: 340; }
    55%  { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -340; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -.01em;
    border-radius: var(--r-pill);
    padding: .8rem 1.65rem;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), background-color .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
    border: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-lg {
    padding: 1rem 2.1rem;
    font-size: 1.02rem;
}

.btn:active { transform: translateY(0) scale(.985); }

/* Sheen sweep on hover */
.btn-brand::after,
.btn-accent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-sheen);
    transform: translateX(-120%);
    transition: transform .7s var(--ease-out);
    z-index: -1;
}

.btn-brand:hover::after,
.btn-accent:hover::after { transform: translateX(120%); }

.btn-brand {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: var(--sh-brand);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -18px rgba(27, 86, 169, .7);
}

.btn-accent {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: var(--sh-accent);
}

.btn-accent:hover,
.btn-accent:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -18px rgba(214, 53, 58, .65);
}

.btn-ghost {
    background: transparent;
    color: var(--brand-800);
    border: 1.5px solid var(--line);
    box-shadow: var(--sh-xs);
}

.btn-ghost:hover {
    color: var(--brand-700);
    border-color: var(--brand-300);
    background: var(--brand-50);
    transform: translateY(-2px);
}

.btn-on-dark {
    background: #fff;
    color: var(--brand-800);
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .6);
}

.btn-on-dark:hover {
    color: var(--brand-900);
    transform: translateY(-2px);
    background: #fff;
}

.btn-outline-light-brand {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn-outline-light-brand:hover {
    color: var(--brand-800);
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Legacy button names remapped to brand */
.btn-teal {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: var(--sh-brand);
}

.btn-teal:hover,
.btn-teal:focus {
    background: var(--brand-700);
    color: #fff;
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--brand-900);
    color: #fff;
    box-shadow: var(--sh-md);
}

.btn-navy:hover,
.btn-navy:focus {
    background: var(--brand-700);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-navy {
    background: transparent;
    color: var(--brand-800);
    border: 1.5px solid var(--brand-200);
}

.btn-outline-navy:hover {
    background: var(--brand-50);
    color: var(--brand-800);
    border-color: var(--brand-400);
}

.btn-outline-teal {
    background: transparent;
    color: var(--brand-600);
    border: 1.5px solid var(--brand-300);
}

.btn-outline-teal:hover {
    background: var(--brand-600);
    color: #fff;
    border-color: var(--brand-600);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.site-nav {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
    padding-block: .55rem;
}

.site-nav.is-stuck {
    box-shadow: var(--sh-sm);
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, .94);
}

.site-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: contain;
    transition: transform .4s var(--ease-out);
}

.site-nav .navbar-brand:hover .brand-mark { transform: rotate(-4deg) scale(1.05); }

.brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.32rem;
    color: var(--brand-900);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.brand-tag {
    display: block;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav .nav-link {
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink-700);
    padding: .55rem .95rem !important;
    border-radius: var(--r-pill);
    position: relative;
    transition: color .25s var(--ease), background-color .25s var(--ease);
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: .28rem;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-600);
    transform: translateX(-50%);
    transition: width .3s var(--ease);
}

.site-nav .nav-link:hover {
    color: var(--brand-700);
    background: var(--brand-50);
}

.site-nav .nav-link.active {
    color: var(--brand-700);
    font-weight: 700;
}

.site-nav .nav-link.active::after { width: 18px; }

.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .45rem .6rem;
}

.navbar-toggler:focus { box-shadow: none; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1100px 620px at 78% 8%, rgba(42, 107, 199, .10), transparent 62%),
        radial-gradient(760px 520px at 4% 96%, rgba(214, 53, 58, .07), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, var(--surface-2) 100%);
    padding: clamp(72px, 9vw, 132px) 0 clamp(64px, 8vw, 108px);
}

.hero__title {
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.06;
    margin-bottom: 1.35rem;
}

.hero__lead {
    font-size: clamp(1.03rem, 1.35vw, 1.19rem);
    color: var(--ink-500);
    max-width: 58ch;
    margin-bottom: 2.15rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 2.75rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--ink-500);
}

.trust-item i {
    color: var(--brand-600);
    font-size: 1.05rem;
}

/* Hero visual: layered stat panel */
.hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 460px;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    padding: 1.9rem;
    z-index: 2;
}

.hero-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.15rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid var(--line-soft);
}

.hero-card__title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--brand-900);
    margin: 0;
}

.hero-card__pill {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--brand-700);
    background: var(--brand-50);
    border-radius: var(--r-pill);
    padding: .3rem .75rem;
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
}

.metric-row + .metric-row { border-top: 1px dashed var(--line); }

.metric-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--ink-500);
}

.metric-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-800);
    letter-spacing: -.03em;
}

.metric-bar {
    height: 7px;
    border-radius: var(--r-pill);
    background: var(--surface-3);
    overflow: hidden;
    margin-top: .45rem;
}

.metric-bar > span {
    display: block;
    height: 100%;
    border-radius: var(--r-pill);
    background: var(--grad-brand);
    width: 0;
    transition: width 1.6s var(--ease-out);
}

.is-visible .metric-bar > span { width: var(--fill, 70%); }

/* Floating accent chip behind hero card */
.hero-chip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    padding: .85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.hero-chip__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    flex: 0 0 auto;
}

.hero-chip__icon--brand { background: var(--grad-brand); }
.hero-chip__icon--accent { background: var(--grad-accent); }

.hero-chip__k {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--brand-900);
    line-height: 1.1;
}

.hero-chip__s {
    font-size: .74rem;
    color: var(--muted);
    font-weight: 600;
}

.hero-chip--tl { top: 6%; left: -4%; animation-delay: -1.4s; }
.hero-chip--br { bottom: 7%; right: -3%; }

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

/* ==========================================================================
   STAT STRIP
   ========================================================================== */

.stat-strip {
    background: var(--grad-brand);
    position: relative;
    overflow: hidden;
}

.stat-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .5;
}

.stat {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.25rem .5rem;
}

.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .14); }

.stat__num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1;
    margin-bottom: .4rem;
}

.stat__label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .74);
    margin: 0;
}

@media (max-width: 767.98px) {
    .stat + .stat { border-left: none; }
    .stat:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .14); }
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card-elevate {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    overflow: hidden;
    transition: transform .42s var(--ease-out), box-shadow .42s var(--ease-out), border-color .42s var(--ease-out);
    z-index: 1;
}

/* Gradient wash that fades in on hover */
.card-elevate::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-brand-soft);
    opacity: 0;
    transition: opacity .42s var(--ease-out);
    z-index: -1;
}

/* Top accent bar that grows on hover */
.card-elevate::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--grad-accent);
    transition: width .5s var(--ease-out);
}

.card-elevate:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: var(--brand-200);
}

.card-elevate:hover::before { opacity: 1; }
.card-elevate:hover::after { width: 100%; }

.card-elevate__title {
    font-size: 1.16rem;
    font-weight: 800;
    color: var(--brand-900);
    margin-bottom: .65rem;
}

.card-elevate__text {
    font-size: .93rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* Icon tile */
.icon-tile {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 1.35rem;
    background: var(--brand-50);
    color: var(--brand-600);
    border: 1px solid var(--brand-100);
    transition: transform .42s var(--ease-out), background .42s var(--ease-out), color .42s var(--ease-out), border-color .42s var(--ease-out);
}

.card-elevate:hover .icon-tile,
.svc-card:hover .icon-tile {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px) rotate(-5deg) scale(1.06);
}

.icon-tile--accent {
    background: var(--accent-50);
    color: var(--accent-600);
    border-color: var(--accent-100);
}

.card-elevate:hover .icon-tile--accent {
    background: var(--grad-accent);
    color: #fff;
}

/* Numbered feature card */
.card-num {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-50);
    transition: color .42s var(--ease-out);
    user-select: none;
}

.card-elevate:hover .card-num { color: var(--brand-100); }

/* Service card (compact grid) */
.svc-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 1.6rem 1.4rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .42s var(--ease-out), box-shadow .42s var(--ease-out), border-color .42s var(--ease-out);
}

.svc-card::after {
    content: "";
    position: absolute;
    right: -30%;
    bottom: -60%;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--brand-50);
    opacity: 0;
    transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
    transform: scale(.6);
    z-index: 0;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--brand-200);
}

.svc-card:hover::after { opacity: 1; transform: scale(1); }

.svc-card > * { position: relative; z-index: 1; }

.svc-card .icon-tile {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
    border-radius: 14px;
    margin-bottom: 1.05rem;
}

.svc-card__title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--brand-900);
    margin-bottom: .4rem;
}

.svc-card__text {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* Split feature card (icon left, copy right) */
.split-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 1.7rem 1.5rem;
    height: 100%;
    transition: transform .42s var(--ease-out), box-shadow .42s var(--ease-out), border-color .42s var(--ease-out);
}

.split-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--brand-200);
}

.split-card .icon-tile { margin-bottom: 0; flex: 0 0 auto; }

.split-card:hover .icon-tile {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
    transform: rotate(-5deg) scale(1.06);
}

.split-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-900);
    margin-bottom: .4rem;
}

.split-card__text {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* Glass card on dark backgrounds */
.glass-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--r-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: transform .42s var(--ease-out), background .42s var(--ease-out), border-color .42s var(--ease-out);
}

.glass-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .3);
}

.glass-card h4,
.glass-card h5 { color: #fff; }

.glass-card p { color: rgba(255, 255, 255, .74); }

.glass-card .icon-tile {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.border-top-teal { border-top: 4px solid var(--brand-600) !important; }
.border-teal { border-color: var(--brand-600) !important; }
.border-navy { border-color: var(--brand-800) !important; }

/* ==========================================================================
   PROCESS / WORKFLOW
   ========================================================================== */

.process {
    position: relative;
}

.process-track {
    position: relative;
}

/* The connecting rail behind the step nodes */
.process-rail {
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--line);
    overflow: hidden;
    border-radius: 2px;
}

.process-rail::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--grad-brand);
    transition: width 1.8s var(--ease-out);
}

.process.is-visible .process-rail::after { width: 100%; }

.step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.process.is-visible .step { opacity: 1; transform: translateY(0); }
.process.is-visible .step:nth-child(1) { transition-delay: .1s; }
.process.is-visible .step:nth-child(2) { transition-delay: .3s; }
.process.is-visible .step:nth-child(3) { transition-delay: .5s; }
.process.is-visible .step:nth-child(4) { transition-delay: .7s; }

.step__node {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.35rem;
    border-radius: 26px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    background: #fff;
    color: var(--brand-600);
    border: 1px solid var(--line);
    box-shadow: var(--sh-md);
    position: relative;
    z-index: 1;
    transition: transform .45s var(--ease-out), background .45s var(--ease-out), color .45s var(--ease-out);
}

.step:hover .step__node {
    background: var(--grad-brand);
    color: #fff;
    transform: translateY(-6px) scale(1.05);
}

.step__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    background: var(--grad-accent);
    border: 3px solid #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-900);
    margin-bottom: .4rem;
}

.step__text {
    font-size: .875rem;
    color: var(--muted);
    max-width: 30ch;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .process-rail { display: none; }
}

/* ==========================================================================
   SPLIT / SHOWCASE PANEL
   ========================================================================== */

.showcase {
    background: var(--grad-brand);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .45;
    pointer-events: none;
}

.showcase > * { position: relative; z-index: 1; }

.showcase h2, .showcase h3 { color: #fff; }
.showcase p { color: rgba(255, 255, 255, .78); }

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .5rem 0;
    font-size: .95rem;
    font-weight: 500;
}

.check-list i {
    color: var(--accent-500);
    margin-top: .28rem;
    flex: 0 0 auto;
}

.check-list--dark i { color: #fff; }
.check-list--dark li { color: rgba(255, 255, 255, .88); }

/* ==========================================================================
   SPECIALTIES
   ========================================================================== */

.spec-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    text-align: center;
    padding: 1.75rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    height: 100%;
    color: var(--brand-900);
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}

.spec-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity .4s var(--ease-out);
}

.spec-tile > * { position: relative; z-index: 1; }

.spec-tile:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
    color: #fff;
}

.spec-tile:hover::before { opacity: 1; }

.spec-tile__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: var(--brand-50);
    color: var(--brand-600);
    border: 1px solid var(--brand-100);
    transition: transform .4s var(--ease-out), background .4s var(--ease-out), color .4s var(--ease-out), border-color .4s var(--ease-out);
}

.spec-tile:hover .spec-tile__icon {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    transform: scale(1.08);
}

.spec-tile__name {
    font-size: .875rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
    position: relative;
    overflow: hidden;
    background: var(--brand-900);
    color: #fff;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(720px 420px at 12% 20%, rgba(42, 107, 199, .45), transparent 60%),
        radial-gradient(620px 400px at 88% 80%, rgba(214, 53, 58, .30), transparent 62%);
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 25%, transparent 78%);
    mask-image: radial-gradient(ellipse at 50% 50%, #000 25%, transparent 78%);
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .76); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--brand-900);
    color: rgba(255, 255, 255, .68);
    position: relative;
    overflow: hidden;
    padding-top: clamp(56px, 6vw, 84px);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-600), var(--accent-600), var(--brand-600));
}

.site-footer h5 {
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
}

.site-footer p,
.site-footer li { font-size: .9rem; color: rgba(255, 255, 255, .64); }

.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.15rem;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
    padding: 3px;
}

.footer-brand span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.28rem;
    color: #fff;
    letter-spacing: -.03em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: .6rem; }

.footer-links a {
    color: rgba(255, 255, 255, .64);
    font-size: .9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: color .25s var(--ease), transform .25s var(--ease);
}

.footer-links a::before {
    content: "";
    width: 0;
    height: 1.5px;
    background: var(--accent-600);
    transition: width .28s var(--ease);
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-links a:hover::before { width: 12px; }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    margin-bottom: .95rem;
}

.footer-contact i {
    color: var(--brand-300);
    margin-top: .3rem;
    flex: 0 0 auto;
}

.footer-contact a {
    color: rgba(255, 255, 255, .64);
    transition: color .25s var(--ease);
}

.footer-contact a:hover { color: #fff; }

.social-row {
    display: flex;
    gap: .6rem;
    margin-top: 1.35rem;
}

.social-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .3s var(--ease-out), background .3s var(--ease), color .3s var(--ease);
}

.social-dot:hover {
    background: var(--brand-600);
    color: #fff;
    transform: translateY(-3px);
}

.subscribe-form { position: relative; }

.subscribe-form .form-control {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    border-radius: var(--r-pill);
    padding: .85rem 1.2rem;
}

.subscribe-form .form-control::placeholder { color: rgba(255, 255, 255, .42); }

.subscribe-form .form-control:focus {
    background: rgba(255, 255, 255, .12);
    border-color: var(--brand-400);
    color: #fff;
    box-shadow: none;
}

.footer-bottom {
    margin-top: clamp(40px, 5vw, 64px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.5rem 0;
    font-size: .84rem;
    color: rgba(255, 255, 255, .5);
}

.footer-bottom a { color: rgba(255, 255, 255, .62); }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--brand-900);
    color: #fff;
    padding: clamp(72px, 8vw, 116px) 0 clamp(60px, 7vw, 92px);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 460px at 20% 10%, rgba(42, 107, 199, .5), transparent 62%),
        radial-gradient(680px 420px at 85% 90%, rgba(214, 53, 58, .26), transparent 60%);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 25%, transparent 76%);
    mask-image: radial-gradient(ellipse at 50% 40%, #000 25%, transparent 76%);
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4.2vw, 3.35rem);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, .76);
    max-width: 64ch;
    font-size: 1.04rem;
}

.crumbs {
    display: flex;
    justify-content: center;
    gap: .55rem;
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 1.35rem;
}

.crumbs a { color: rgba(255, 255, 255, .78); }
.crumbs a:hover { color: #fff; }

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-control,
.form-select {
    border-radius: var(--r-sm);
    border: 1.5px solid var(--line);
    padding: .85rem 1rem;
    font-size: .95rem;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(27, 86, 169, .12);
}

.form-label {
    color: var(--brand-800);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .45rem;
}

.form-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    padding: clamp(1.75rem, 3.5vw, 3rem);
}

/* Contact info tiles */
.contact-tile {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    height: 100%;
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}

.contact-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
    border-color: var(--brand-200);
}

.contact-tile .icon-tile {
    margin-bottom: 0;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    border-radius: 14px;
}

.contact-tile h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-900);
    margin-bottom: .3rem;
}

.contact-tile p,
.contact-tile a {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
}

.contact-tile a:hover { color: var(--brand-600); }

/* ==========================================================================
   ACCORDION (FAQ)
   ========================================================================== */

.accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--r-md) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--brand-900);
    background: #fff;
    padding: 1.25rem 1.4rem;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--brand-50);
    color: var(--brand-700);
    box-shadow: none;
}

.accordion-button:focus { box-shadow: none; border-color: var(--brand-200); }

.accordion-button::after {
    background-size: 1rem;
    transition: transform .3s var(--ease);
}

.accordion-body {
    padding: 0 1.4rem 1.35rem;
    color: var(--muted);
    font-size: .94rem;
}

/* ==========================================================================
   PRODUCT / DME PAGE
   ========================================================================== */

.img-wrapper {
    height: 230px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
}

.img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform .5s var(--ease-out);
}

.product-card {
    background: #fff;
    border: 1px solid var(--line) !important;
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .42s var(--ease-out), box-shadow .42s var(--ease-out), border-color .42s var(--ease-out);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg) !important;
    border-color: var(--brand-200) !important;
}

.product-card:hover .img-wrapper img { transform: scale(1.07); }

.hcpcs-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--brand-700);
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--r-pill);
    padding: .3rem .7rem;
}

.price-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--brand-800);
    letter-spacing: -.02em;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Floating action buttons */
.fab {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    box-shadow: var(--sh-lg);
    border: none;
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
    z-index: 1000;
}

.fab:hover { transform: translateY(-4px) scale(1.05); }

.modal-content {
    border: none;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

.modal-header.bg-teal { background: var(--grad-brand) !important; }

.offcanvas-header.bg-navy { background: var(--brand-900) !important; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
    will-change: opacity, transform;
}

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

.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }
.reveal-d4 { transition-delay: .36s; }
.reveal-d5 { transition-delay: .45s; }
.reveal-d6 { transition-delay: .54s; }

/* Legacy hero animation hooks */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp .85s var(--ease-out) forwards;
}

.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .22s; }
.delay-300 { animation-delay: .34s; }
.delay-400 { animation-delay: .46s; }
.delay-500 { animation-delay: .58s; }

/* Counter number */
.counter { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   CHECKOUT (structure preserved, restyled)
   ========================================================================== */

.checkout-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.checkout-main {
    flex: 1 1 55%;
    padding: 40px 5%;
    border-right: 1px solid var(--line);
    background: #fff;
}

.checkout-sidebar {
    flex: 1 1 45%;
    padding: 40px 5%;
    background: var(--surface-2);
}

.btn-shop {
    background-color: #5a31f4;
    color: #fff;
    transition: .3s;
    border-radius: var(--r-sm);
}

.btn-shop:hover { background-color: #4824cf; color: #fff; }

.btn-paypal {
    background-color: #ffc439;
    color: #111;
    transition: .3s;
    border-radius: var(--r-sm);
}

.btn-paypal:hover { background-color: #f2ba36; }

.form-floating > .form-control,
.form-floating > .form-select {
    height: 58px !important;
    min-height: 58px;
    border-radius: var(--r-sm);
    border-color: var(--line);
    line-height: 1.25;
}

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}

.form-floating > label {
    padding-top: .95rem;
    color: var(--muted);
}

.payment-box {
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
}

.payment-header {
    background: var(--brand-50);
    border-bottom: 1px solid var(--line);
    padding: 15px;
    cursor: pointer;
    transition: background .25s var(--ease);
}

.payment-header.active,
.payment-header.active-header {
    background: var(--brand-50);
    border-color: var(--brand-500);
    border-left: 3px solid var(--brand-600);
}

.payment-header input {
    margin-right: 10px;
    accent-color: var(--brand-600);
    transform: scale(1.2);
}

.payment-icons { float: right; font-size: 1.2rem; }

.payment-body {
    background: var(--surface-2);
    padding: 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cc-group input { border-radius: 0; }
.cc-group input:first-child { border-top-left-radius: var(--r-sm); border-top-right-radius: var(--r-sm); }
.cc-group input:last-child { border-bottom-left-radius: var(--r-sm); border-bottom-right-radius: var(--r-sm); }

.cc-middle { display: flex; }
.cc-middle input:first-child { border-bottom-left-radius: var(--r-sm); }
.cc-middle input:last-child { border-bottom-right-radius: var(--r-sm); border-left: 0; }

.product-thumbnail {
    position: relative;
    width: 70px;
    height: 70px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 5px;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.qty-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--brand-700);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#phoneHelpIcon {
    cursor: pointer;
    font-size: .85rem;
    z-index: 5;
}

@media (max-width: 992px) {
    .checkout-layout { flex-direction: column-reverse; }
    .checkout-sidebar { border-bottom: 1px solid var(--line); }
    .checkout-main { border-right: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1199.98px) {
    .hero-chip--tl { left: 0; }
    .hero-chip--br { right: 0; }
}

@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        background: #fff;
        margin-top: .85rem;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: var(--r-lg);
        box-shadow: var(--sh-md);
    }

    .site-nav .nav-link { padding: .7rem .9rem !important; }
    .site-nav .nav-link::after { display: none; }
    .site-nav .navbar-nav .btn { margin-top: .6rem; width: 100%; }

    .hero { padding-top: 56px; text-align: left; }
    .hero__visual { min-height: 380px; margin-top: 3.25rem; }
    .hero-card { max-width: 100%; }
}

@media (max-width: 767.98px) {
    body { line-height: 1.6; }

    .section { padding: 56px 0; }

    .hero__actions .btn { width: 100%; }

    .hero-chip { display: none; }

    .hero__trust { gap: .85rem 1.5rem; }

    .card-elevate,
    .split-card { padding: 1.5rem 1.35rem; }

    .split-card { flex-direction: column; gap: .95rem; }

    .step__node { width: 74px; height: 74px; font-size: 1.35rem; }

    .stat__num { font-size: 1.7rem; }

    .footer-bottom { text-align: center; }
}

/* ==========================================================================
   MOTION PREFERENCES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal { opacity: 1; transform: none; }
    .animate-up { opacity: 1; }
    .step { opacity: 1; transform: none; }
    .hero-chip { animation: none; }
}
