/* =========================================================================
   VIBHAVS LLC — Design System
   Concept: "Ledger & Circuit" — the visual grammar of a balanced book and
   a secured network treated as one idea. Ledger rule-lines, account codes
   and mono-spaced figures stand in for accounting; fine grid/trace lines
   and a status read-out stand in for IT & cybersecurity.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
    --ink: #0D1B2A;
    --ink-soft: #142A3F;
    --ink-line: rgba(255, 255, 255, 0.12);
    --paper: #F5F4EF;
    --paper-deep: #EBE9E1;
    --slate: #1C2733;
    --slate-70: rgba(28, 39, 51, 0.7);
    --mist: #5C6B7A;
    --mist-on-dark: #9FB0BE;
    --line: rgba(28, 39, 51, 0.12);
    --emerald: #1E8F6F;
    --emerald-deep: #156B54;
    --emerald-tint: #E3F1EC;
    --brass: #C28B2E;
    --brass-tint: #F3E6CB;
    --danger: #B3463F;
    --white: #FFFFFF;
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(13, 27, 42, 0.07);
    --shadow-md: 0 12px 28px -10px rgba(13, 27, 42, 0.18);
    --shadow-lg: 0 30px 60px -20px rgba(13, 27, 42, 0.28);
    --container: 1180px;
    --gutter: 24px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --header-h: 84px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--slate);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
}
img,
svg {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}
input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
    color: inherit;
}
h1,
h2,
h3,
h4,
p,
figure {
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Focus & a11y ---------- */
:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 3px;
    border-radius: 4px;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 999;
    background: var(--emerald);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 0 0 8px 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}
.skip-link:focus {
    left: 0;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.section {
    padding: 104px 0;
    position: relative;
}
.section--tight {
    padding: 72px 0;
}
.section--alt {
    background: var(--paper-deep);
}
.section--dark {
    background: var(--ink);
    color: var(--paper);
}
.section--dark .mist {
    color: var(--mist-on-dark);
}
.grid {
    display: grid;
    gap: var(--gutter);
}
.g-2 {
    grid-template-columns: repeat(2, 1fr);
}
.g-3 {
    grid-template-columns: repeat(3, 1fr);
}
.g-4 {
    grid-template-columns: repeat(4, 1fr);
}
.flex {
    display: flex;
    align-items: center;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stack {
    display: flex;
    flex-direction: column;
}
.gap-s {
    gap: 8px;
}
.gap-m {
    gap: 16px;
}
.gap-l {
    gap: 32px;
}

/* ---------- Type ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--slate);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--paper);
}

/* HIGH CONTRAST overrides — see bottom of file */
h1 {
    font-size: clamp(2.4rem, 1.7rem + 3vw, 4.2rem);
    line-height: 1.05;
}
h2 {
    font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem);
    line-height: 1.12;
}
h3 {
    font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem);
    line-height: 1.25;
}
h4 {
    font-size: 1.05rem;
    line-height: 1.3;
}
.lede {
    font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem);
    color: var(--mist);
    max-width: 640px;
}
.section--dark .lede {
    color: var(--mist-on-dark);
}
.mist {
    color: var(--mist);
}
p+p {
    margin-top: 14px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 18px;
    font-weight: 500;
}
.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 0 3px var(--emerald-tint);
}
.section--dark .eyebrow::before {
    box-shadow: 0 0 0 3px rgba(30, 143, 111, 0.25);
}

.ledger-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 4px 9px;
    border-radius: 5px;
    border: 1px solid var(--line);
    color: var(--mist);
    white-space: nowrap;
}
.section--dark .ledger-tag {
    border-color: var(--ink-line);
    color: var(--mist-on-dark);
}
.ledger-tag--brass {
    color: var(--brass);
    border-color: rgba(194, 139, 46, 0.4);
    background: var(--brass-tint);
}
.ledger-tag--emerald {
    color: var(--emerald-deep);
    border-color: rgba(30, 143, 111, 0.35);
    background: var(--emerald-tint);
}

.section__header {
    max-width: 720px;
    margin-bottom: 56px;
}
.section__header.center {
    margin-inline: auto;
    text-align: center;
}

.divider {
    height: 1px;
    background: var(--line);
    border: 0;
    margin: 0;
}
.section--dark .divider {
    background: var(--ink-line);
}

/* ---------- Icons ---------- */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.icon--sm {
    width: 18px;
    height: 18px;
}
.icon--lg {
    width: 32px;
    height: 32px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 26px;
    border-radius: 9px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap;
}
.btn .icon {
    width: 18px;
    height: 18px;
    transition: transform .25s var(--ease);
}
.btn--primary {
    background: var(--emerald);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
    background: var(--emerald-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--secondary {
    background: transparent;
    color: var(--slate);
    border: 1.5px solid var(--line);
}
.btn--secondary:hover {
    border-color: var(--slate);
    transform: translateY(-2px);
}
.section--dark .btn--secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
}
.section--dark .btn--secondary:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.18);
}
.btn--ghost {
    padding: 6px 0;
    font-weight: 600;
    color: var(--emerald);
}
.btn--ghost:hover .icon {
    transform: translateX(4px);
}
.section--dark .btn--ghost {
    color: var(--paper);
}
.btn--sm {
    padding: 10px 18px;
    font-size: 0.86rem;
}
.btn--block {
    width: 100%;
}
.btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ---------- Header / Nav ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: rgba(245, 244, 239, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 6px 24px -16px rgba(13, 27, 42, 0.25);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    transition: height .3s var(--ease);
}
.site-header.is-scrolled .nav {
    height: 68px;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.18rem;
    color: var(--slate);
    letter-spacing: -0.01em;
}
.nav__seal {
    width: 36px;
    height: 36px;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 34px;
}
.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-70);
    position: relative;
    padding: 6px 0;
    transition: color .2s;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--emerald);
    transition: right .25s var(--ease);
}
.nav__link:hover,
.nav__link.is-active {
    color: var(--slate);
}
.nav__link:hover::after,
.nav__link.is-active::after {
    right: 0;
}
.nav__item--dropdown {
    position: relative;
}
.nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav__dropdown-trigger .icon {
    width: 14px;
    height: 14px;
    transition: transform .25s var(--ease);
}
.nav__item--dropdown:hover .nav__dropdown-trigger .icon {
    transform: rotate(180deg);
}
.nav__dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 8px);
    width: 300px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__item--dropdown:hover .nav__dropdown-panel,
.nav__item--dropdown:focus-within .nav__dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 8px;
    transition: background .2s;
}
.nav__dropdown-link:hover {
    background: var(--paper-deep);
}
.nav__dropdown-link .ledger-tag {
    flex-shrink: 0;
}
.nav__dropdown-link span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
}
.nav__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    justify-content: center;
}
.nav__toggle span {
    display: block;
    height: 2px;
    background: var(--slate);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.nav__mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
    z-index: 498;
}
.nav__mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.nav__mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 86vw);
    background: var(--paper);
    z-index: 499;
    padding: 100px 28px 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    box-shadow: -12px 0 40px rgba(13, 27, 42, 0.18);
}
.nav__mobile-panel.is-open {
    transform: translateX(0);
}
.nav__mobile-link {
    display: block;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
}
.nav__mobile-sub {
    padding-left: 14px;
}
.nav__mobile-sub .nav__mobile-link {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    padding: 12px 0;
}
.nav__mobile-panel .btn {
    margin-top: 24px;
}
.nav__mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-deep);
    transition: background .2s;
}
.nav__mobile-close:hover {
    background: var(--line);
}

/* ---------- Hero ---------- */
.hero {
    padding: calc(var(--header-h) + 64px) 0 90px;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}
.hero__trace {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero__title {
    margin-bottom: 22px;
    color: #FFFFFF;
}
.hero__title em {
    font-style: normal;
    color: var(--emerald);
}
.hero__subtitle {
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    font-size: 1.08rem;
    margin-bottom: 34px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}
.hero__meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero__meta-item strong {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--paper);
}
.hero__meta-item span {
    font-size: 0.8rem;
    color: var(--mist-on-dark);
}

.status-ledger {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.status-ledger__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.status-ledger__title {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mist-on-dark);
}
.status-ledger__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 0 4px rgba(30, 143, 111, 0.25);
    animation: pulse 2.2s infinite;
}
.status-ledger__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--ink-line);
}
.status-ledger__row:first-of-type {
    border-top: none;
}
.status-ledger__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--paper);
}
.status-ledger__label .icon {
    width: 19px;
    height: 19px;
    color: var(--mist-on-dark);
}
.status-ledger__value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--emerald);
}
.status-ledger__value .icon {
    width: 16px;
    height: 16px;
    color: var(--emerald);
}
.status-ledger__scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(30, 143, 111, 0) 0%, rgba(30, 143, 111, 0.12) 50%, rgba(30, 143, 111, 0) 100%);
    animation: scan 3.6s linear infinite;
    pointer-events: none;
}
.status-ledger__foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--ink-line);
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--mist-on-dark);
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}
@keyframes scan {
    0% {
        transform: translateY(-70px);
    }
    100% {
        transform: translateY(280px);
    }
}

.hero__scroll-cue {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 54px;
    color: var(--mist-on-dark);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}
.hero__scroll-cue .icon {
    width: 16px;
    height: 16px;
    animation: bob 1.8s infinite;
}
@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* ---------- Trust strip ---------- */
.trust-strip {
    padding: 46px 0;
    border-bottom: 1px solid var(--line);
}
.trust-strip__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}
.trust-strip__item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.trust-strip__item strong {
    font-family: var(--font-mono);
    font-size: 1.55rem;
    color: var(--slate);
}
.trust-strip__item span {
    font-size: 0.85rem;
    color: var(--mist);
    max-width: 140px;
}

/* ---------- Pillar cards (services overview) ---------- */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.pillar-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(28, 39, 51, 0.2);
}
.pillar-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}
.pillar-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-tint);
    color: var(--emerald-deep);
}
.pillar-card__icon .icon {
    width: 26px;
    height: 26px;
}
.pillar-card h3 {
    margin-bottom: 12px;
}
.pillar-card p {
    color: var(--mist);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.pillar-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
    flex-grow: 1;
}
.pillar-card__list li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--slate-70);
    align-items: flex-start;
}
.pillar-card__list .icon {
    width: 16px;
    height: 16px;
    color: var(--emerald);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---------- Process ---------- */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-step {
    position: relative;
    padding: 0 22px 0 0;
}
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    right: -22px;
    height: 1px;
    background: var(--line);
}
.section--dark .process-step:not(:last-child)::after {
    background: var(--ink-line);
}
.process-step__code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--emerald);
    margin-bottom: 18px;
    display: inline-block;
    background: var(--paper);
    padding-right: 14px;
    position: relative;
    z-index: 2;
}
.section--dark .process-step__code {
    background: var(--ink);
}
.process-step h4 {
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--mist);
}

/* ---------- Stats ---------- */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.stat {
    text-align: left;
}
.stat__value {
    font-family: var(--font-mono);
    font-size: clamp(2.1rem, 1.8rem + 1vw, 2.8rem);
    color: var(--emerald);
    display: block;
    margin-bottom: 6px;
}
.stat__label {
    font-size: 0.92rem;
    color: var(--mist);
}

/* ---------- Testimonials ---------- */
.carousel {
    position: relative;
}
.carousel__track-wrap {
    overflow: hidden;
}
.carousel__track {
    display: flex;
    transition: transform .5s var(--ease);
}
.carousel__slide {
    flex: 0 0 100%;
    padding: 4px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.05rem + .4vw, 1.5rem);
    line-height: 1.45;
    color: var(--slate);
    margin-bottom: 26px;
}
.testimonial-card__quote::before {
    content: "“";
    color: var(--emerald);
}
.testimonial-card__quote::after {
    content: "”";
    color: var(--emerald);
}
.testimonial-card__person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--emerald-tint);
    color: var(--emerald-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.9rem;
}
.testimonial-card__person strong {
    display: block;
    font-size: 0.92rem;
}
.testimonial-card__person span {
    display: block;
    font-size: 0.8rem;
    color: var(--mist);
}
.carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 30px;
}
.carousel__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}
.carousel__arrow:hover {
    background: var(--slate);
    color: var(--white);
    border-color: var(--slate);
}
.carousel__dots {
    display: flex;
    gap: 8px;
}
.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: background .25s, width .25s;
}
.carousel__dot.is-active {
    background: var(--emerald);
    width: 22px;
    border-radius: 5px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-banner h2 {
    max-width: 480px;
}
.cta-banner__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: var(--mist-on-dark);
    padding: 80px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1.3fr;
    gap: 32px;
    padding-bottom: 60px;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--paper);
    margin-bottom: 16px;
}
.footer__brand .nav__seal {
    width: 32px;
    height: 32px;
}
.footer__blurb {
    font-size: 0.9rem;
    max-width: 280px;
    margin-bottom: 22px;
}
.footer__social {
    display: flex;
    gap: 12px;
}
.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--ink-line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}
.footer__social a:hover {
    background: var(--emerald);
    border-color: var(--emerald);
    color: var(--white);
}
.footer__social .icon {
    width: 16px;
    height: 16px;
}
.footer__heading {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 20px;
}
.footer__list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer__list a {
    font-size: 0.9rem;
    transition: color .2s;
}
.footer__list a:hover {
    color: var(--paper);
}
.footer__contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    align-items: flex-start;
}
.footer__contact-item .icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--emerald);
    flex-shrink: 0;
}
.footer__newsletter {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}
.footer__newsletter input {
    flex-grow: 1;
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--paper);
    font-size: 0.88rem;
}
.footer__newsletter input::placeholder {
    color: var(--mist-on-dark);
}
.footer__newsletter-msg {
    font-size: 0.82rem;
    margin-top: 10px;
    color: var(--emerald);
    display: none;
}
.footer__newsletter-msg.is-visible {
    display: block;
}
.footer__bottom {
    border-top: 1px solid var(--ink-line);
    padding: 24px 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
}
.footer__bottom-links {
    display: flex;
    gap: 22px;
}

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    z-index: 300;
    border: 1px solid var(--ink-line);
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--emerald);
}

/* ---------- Reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}
[data-reveal-group]>* {
    transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------- Page hero (secondary pages) ---------- */
.page-hero {
    padding: calc(var(--header-h) + 60px) 0 80px;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}
.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--mist-on-dark);
    margin-bottom: 24px;
}
.page-hero__breadcrumb .icon {
    width: 13px;
    height: 13px;
}
.page-hero h1 {
    max-width: 780px;
    margin-bottom: 20px;
}
.page-hero .lede {
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
}
.page-hero__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

/* ---------- Sub nav ---------- */
.subnav-wrap {
    position: sticky;
    top: var(--header-h);
    z-index: 200;
    background: rgba(245, 244, 239, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.subnav {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 18px var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.subnav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--mist);
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.subnav a.is-active,
.subnav a:hover {
    color: var(--slate);
    border-color: var(--emerald);
}

/* ---------- Detail blocks ---------- */
.detail-block {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 150px;
}
.detail-block:last-child {
    border-bottom: none;
}
.detail-block__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--emerald-tint);
    color: var(--emerald-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.detail-block__icon .icon {
    width: 30px;
    height: 30px;
}
.detail-block ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}
.detail-block ul li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--slate-70);
    align-items: flex-start;
}
.detail-block ul li .icon {
    width: 18px;
    height: 18px;
    color: var(--emerald);
    margin-top: 2px;
    flex-shrink: 0;
}
.detail-block__panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.detail-block__panel h4 {
    margin-bottom: 16px;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 760px;
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    text-align: left;
    gap: 20px;
}
.faq-item__q h4 {
    font-size: 1.02rem;
    font-weight: 600;
}
.faq-item__q .icon {
    flex-shrink: 0;
    transition: transform .3s var(--ease);
    color: var(--emerald);
}
.faq-item.is-open .faq-item__q .icon {
    transform: rotate(45deg);
}
.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}
.faq-item__a-inner {
    padding-bottom: 24px;
    color: var(--mist);
    font-size: 0.94rem;
    max-width: 640px;
}

/* ---------- Values / team ---------- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.value-card {
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--white);
}
.value-card .detail-block__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 18px;
}
.value-card .detail-block__icon .icon {
    width: 24px;
    height: 24px;
}
.value-card h4 {
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.9rem;
    color: var(--mist);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    text-align: left;
    transition: transform .25s var(--ease), box-shadow .25s;
    width: 100%;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.team-card__avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 18px;
    border: 2px solid var(--brass);
}
.team-card h4 {
    margin-bottom: 3px;
}
.team-card__role {
    font-size: 0.82rem;
    color: var(--emerald-deep);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}
.team-card p {
    font-size: 0.86rem;
    color: var(--mist);
}

.timeline {
    position: relative;
    padding-left: 34px;
    border-left: 1px solid var(--line);
}
.timeline__item {
    position: relative;
    padding-bottom: 44px;
}
.timeline__item:last-child {
    padding-bottom: 0;
}
.timeline__item::before {
    content: "";
    position: absolute;
    left: -39px;
    top: 4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--emerald);
}
.timeline__year {
    font-family: var(--font-mono);
    color: var(--emerald-deep);
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: block;
}
.timeline__item h4 {
    margin-bottom: 6px;
}
.timeline__item p {
    font-size: 0.9rem;
    color: var(--mist);
    max-width: 520px;
}

/* ---------- Modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
}
.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 620px;
    width: 100%;
    max-height: 84vh;
    overflow-y: auto;
    padding: 42px;
    position: relative;
    transform: translateY(16px) scale(0.98);
    transition: transform .3s var(--ease);
    box-shadow: var(--shadow-lg);
}
.modal-overlay.is-open .modal {
    transform: translateY(0) scale(1);
}
.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-deep);
    transition: background .2s;
}
.modal__close:hover {
    background: var(--line);
}
.modal__meta {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}
.modal h3 {
    margin-bottom: 18px;
    padding-right: 30px;
}
.modal__body p {
    color: var(--slate-70);
    font-size: 0.96rem;
    margin-bottom: 14px;
}

/* ---------- Forms ---------- */
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.field label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--slate);
}
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px var(--emerald-tint);
    outline: none;
}
.field textarea {
    resize: vertical;
    min-height: 120px;
}
.field--error input,
.field--error textarea {
    border-color: var(--danger);
}
.field__error {
    font-size: 0.78rem;
    color: var(--danger);
    margin-top: 6px;
    display: none;
}
.field--error .field__error {
    display: block;
}
.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.checkbox-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1.5px solid var(--line);
    border-radius: 30px;
    font-size: 0.86rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.checkbox-pill input {
    accent-color: var(--emerald);
}
.checkbox-pill:has(input:checked) {
    border-color: var(--emerald);
    background: var(--emerald-tint);
}
.form__success {
    display: none;
    text-align: center;
    padding: 50px 20px;
}
.form__success.is-visible {
    display: block;
}
.form__success .icon {
    width: 54px;
    height: 54px;
    color: var(--emerald);
    margin: 0 auto 18px;
}
.form.is-hidden {
    display: none;
}

/* ---------- Pricing ---------- */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    background: var(--paper-deep);
    border-radius: 30px;
    padding: 6px;
    width: fit-content;
    margin-inline: auto;
}
.pricing-tab {
    padding: 11px 22px;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--mist);
    transition: background .25s, color .25s;
}
.pricing-tab.is-active {
    background: var(--ink);
    color: var(--paper);
}
.pricing-panel {
    display: none;
}
.pricing-panel.is-active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
}
.pricing-card--featured {
    border-color: var(--emerald);
    box-shadow: var(--shadow-md);
    position: relative;
}
.pricing-card--featured::before {
    content: "Most popular";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}
.pricing-card__name {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--emerald-deep);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pricing-card__price {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.pricing-card__price span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--mist);
}
.pricing-card__desc {
    font-size: 0.88rem;
    color: var(--mist);
    margin-bottom: 26px;
}
.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 30px;
    flex-grow: 1;
}
.pricing-card ul li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    align-items: flex-start;
}
.pricing-card ul li .icon {
    width: 16px;
    height: 16px;
    color: var(--emerald);
    margin-top: 3px;
    flex-shrink: 0;
}

.bundle-builder {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
}
.bundle-builder__group {
    margin-bottom: 26px;
}
.bundle-builder__group>label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 14px;
    display: block;
}
.bundle-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.bundle-option:has(input:checked) {
    border-color: var(--emerald);
    background: var(--emerald-tint);
}
.bundle-option-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bundle-option input {
    accent-color: var(--emerald);
    width: 17px;
    height: 17px;
}
.bundle-option strong {
    font-size: 0.92rem;
    display: block;
}
.bundle-option span {
    font-size: 0.78rem;
    color: var(--mist);
}
.bundle-summary {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius-md);
    padding: 30px;
    align-self: start;
    position: sticky;
    top: 120px;
}
.bundle-summary__total {
    font-family: var(--font-mono);
    font-size: 2.4rem;
    margin: 14px 0 4px;
    color: var(--paper);
}
.bundle-summary__total span {
    font-size: 0.9rem;
    color: var(--mist-on-dark);
    font-family: var(--font-body);
}
.bundle-summary__line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 10px 0;
    border-top: 1px solid var(--ink-line);
    color: var(--mist-on-dark);
}
.bundle-summary .btn {
    width: 100%;
    margin-top: 20px;
}
.bundle-summary__note {
    font-size: 0.76rem;
    color: var(--mist-on-dark);
    margin-top: 14px;
}

/* ---------- Contact layout ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
}
.contact-info-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 24px;
}
.contact-info-card h3 {
    color: var(--paper);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}
.hours-row:last-child {
    border-bottom: none;
}
.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    height: 260px;
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.15) contrast(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
    .pillar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer__grid> :nth-child(1) {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
    .bundle-builder {
        grid-template-columns: 1fr;
    }
    .bundle-summary {
        position: static;
    }
}
@media (max-width: 900px) {
    .nav__list {
        display: none;
    }
    .nav__actions .btn--primary {
        display: none;
    }
    .nav__toggle {
        display: flex;
    }
    .pillar-grid,
    .pricing-grid,
    .stat-grid,
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .process {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 0;
    }
    .process-step:nth-child(2)::after {
        display: none;
    }
}
@media (max-width: 640px) {
    .section {
        padding: 72px 0;
    }
    .pillar-grid,
    .pricing-grid,
    .stat-grid,
    .value-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__grid> :nth-child(1) {
        grid-column: 1 / -1;
    }
    .form__row {
        grid-template-columns: 1fr;
    }
    .cta-banner {
        padding: 42px 28px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .cta-banner__actions {
        justify-content: center;
    }
    .process {
        grid-template-columns: 1fr;
    }
    .process-step::after {
        display: none !important;
    }
    .trust-strip__grid {
        justify-content: flex-start;
    }
    .modal {
        padding: 30px 22px;
    }
    .nav__brand span {
        display: none;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   HIGH CONTRAST OVERRIDES — always last, always wins
   Dark backgrounds: hero, page-hero, cta-banner
   ============================================================ */

/* All headings on dark backgrounds → pure white */
.hero h1, .hero h2, .hero h3, .hero h4,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4,
.cta-banner h1, .cta-banner h2, .cta-banner h3, .cta-banner h4 {
    color: #FFFFFF !important;
}

/* Emerald accent on hero title */
.hero__title em {
    color: #1E8F6F !important;
    font-style: normal;
}

/* Body text and subtitles on dark backgrounds → near-white */
.hero p,
.hero .hero__subtitle,
.hero .lede,
.page-hero p,
.page-hero .lede,
.cta-banner p,
.cta-banner .lede {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Secondary buttons on dark backgrounds — full border + white text */
.hero .btn--secondary,
.hero .hero__actions .btn--secondary,
.page-hero .btn--secondary,
.cta-banner .btn--secondary,
.cta-banner .cta-banner__actions .btn--secondary {
    color: #FFFFFF !important;
    background-color: rgba(255, 255, 255, 0.10) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.70) !important;
    border-color: rgba(255, 255, 255, 0.70) !important;
}

.hero .btn--secondary:hover,
.hero .hero__actions .btn--secondary:hover,
.page-hero .btn--secondary:hover,
.cta-banner .btn--secondary:hover,
.cta-banner .cta-banner__actions .btn--secondary:hover {
    color: #FFFFFF !important;
    background-color: rgba(255, 255, 255, 0.20) !important;
    border: 1.5px solid #FFFFFF !important;
    border-color: #FFFFFF !important;
}

/* ============================================================ */

/* ============================================================
   NUCLEAR OVERRIDE — catches even old HTML with inline styles
   Targets btn--secondary by class regardless of inline styles
   ============================================================ */

/* The browser can't override inline style="" with CSS.
   Solution: we must ensure the HTML has NO inline styles.
   These rules are the safety net for clean HTML. */

a.btn.btn--secondary:is(.hero *, .page-hero *, .cta-banner *),
button.btn.btn--secondary:is(.hero *, .page-hero *, .cta-banner *) {
    color: #FFFFFF !important;
    background-color: rgba(255,255,255,0.10) !important;
    border: 1.5px solid rgba(255,255,255,0.70) !important;
}

/* Hero title text — force white, em stays emerald */
.hero__title {
    color: #FFFFFF !important;
}
.hero__title em {
    color: #1E8F6F !important;
    font-style: normal;
}