/*
 * CAH Design System - override layer.
 *
 * Loaded after the theme and after Elementor's generated kit CSS.
 *
 * Elementor Theme Style emits rules like ".elementor-kit-4 button", which has
 * higher specificity than a single component class. Rather than sprinkling
 * !important through the component layer, the small number of genuine clashes
 * are resolved here with an explicit, documented specificity bump.
 *
 * Keep this file short. If it starts growing, the component layer is fighting
 * the kit and the kit should be corrected instead.
 */

/* ---- Buttons that are deliberately not Elementor buttons ---- */
.cah button.cah-navlink,
.cah button.cah-nav-toggle,
.cah button.cah-accordion__trigger,
.cah button.cah-navpanel__trigger,
.cah button.cah-cc__choice {
  background-color: transparent;
  background-image: none;
  border: 0;
  box-shadow: none;
  text-shadow: none;
  color: inherit;
}

.cah button.cah-navlink {
  color: var(--cah-text-soft);
  padding: 9px 12px;
  border-radius: var(--cah-radius-sm);
  font: var(--cah-fw-medium) var(--cah-fs-nav)/1.2 var(--cah-font-sans);
}
.cah button.cah-navlink:hover,
.cah [data-cah-mega].is-open button.cah-navlink {
  color: var(--cah-primary);
  background-color: var(--cah-primary-tint);
}

.cah button.cah-accordion__trigger {
  color: var(--cah-primary);
  font: var(--cah-fw-semibold) var(--cah-fs-h4)/1.4 var(--cah-font-sans);
  padding: var(--cah-space-5) 0;
  border-radius: 0;
  /* The kit styles buttons as inline-block with nowrap, which stopped these
     labels wrapping and pushed a horizontal scrollbar onto phone layouts. */
  display: flex;
  width: 100%;
  white-space: normal;
  text-align: left;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--cah-space-4);
}
.cah button.cah-accordion__trigger:hover { color: var(--cah-secondary-strong); background-color: transparent; }

.cah button.cah-navpanel__trigger {
  color: var(--cah-primary);
  font: var(--cah-fw-semibold) var(--cah-fs-body-lg)/1.3 var(--cah-font-sans);
  padding: var(--cah-space-3) 0;
  border-radius: 0;
  display: flex;
  width: 100%;
  white-space: normal;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  gap: var(--cah-space-4);
}

/* The toggle is hidden on desktop; the theme reset sets buttons to display:block. */
.cah button.cah-nav-toggle { display: none; }
@media (max-width: 1200px) {
  .cah button.cah-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--cah-tap-min);
    height: var(--cah-tap-min);
    margin-left: auto;
    border: 1px solid var(--cah-border);
    border-radius: var(--cah-radius-sm);
    background-color: var(--cah-surface);
    color: var(--cah-primary);
  }
}
/* The close control inside the mobile panel is always visible while the panel is. */
.cah .cah-navpanel button.cah-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--cah-tap-min);
  height: var(--cah-tap-min);
  margin-left: 0;
  border: 1px solid var(--cah-border);
  border-radius: var(--cah-radius-sm);
  background-color: var(--cah-surface);
  color: var(--cah-primary);
}

/* ---- Our own button component must beat the kit's button styling ---- */
.cah a.cah-btn,
.cah button.cah-btn,
.cah input.cah-btn {
  background-color: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--cah-control-radius);
  font: var(--cah-fw-semibold) var(--cah-fs-button)/1.2 var(--cah-font-sans);
  text-decoration: none;
  padding: 0 var(--cah-space-6);
  min-height: var(--cah-control-h);
}
.cah a.cah-btn--lg, .cah button.cah-btn--lg { min-height: var(--cah-control-h-lg); padding-inline: var(--cah-space-8); font-size: var(--cah-fs-body-lg); }
.cah a.cah-btn--sm, .cah button.cah-btn--sm { min-height: var(--cah-control-h-sm); padding-inline: var(--cah-space-4); font-size: var(--cah-fs-small); }
.cah a.cah-btn:hover, .cah button.cah-btn:hover { background-color: var(--cah-primary-soft); color: var(--btn-fg); }
.cah a.cah-btn--accent:hover, .cah button.cah-btn--accent:hover { background-color: var(--cah-accent-strong); color: #fff; }
.cah a.cah-btn--secondary:hover, .cah button.cah-btn--secondary:hover { background-color: var(--cah-secondary-strong); color: #fff; }
.cah a.cah-btn--outline:hover, .cah button.cah-btn--outline:hover { background-color: var(--cah-primary-tint); color: var(--cah-primary); border-color: var(--cah-primary); }
.cah a.cah-btn--ghost:hover, .cah button.cah-btn--ghost:hover { background-color: var(--cah-primary-tint); color: var(--cah-primary); }
.cah a.cah-btn--on-dark:hover { background-color: var(--cah-neutral-100); color: var(--cah-primary); }
.cah a.cah-btn--outline-on-dark:hover { background-color: rgba(255,255,255,.10); color: #fff; }

/* ---- Form controls ---- */
.cah input.cah-input,
.cah select.cah-select,
.cah textarea.cah-textarea {
  background-color: var(--cah-surface);
  border: 1px solid var(--cah-border-strong);
  border-radius: var(--cah-control-radius);
  color: var(--cah-text);
  font: var(--cah-fw-regular) var(--cah-fs-body)/1.4 var(--cah-font-sans);
  min-height: var(--cah-control-h);
  padding: 12px 14px;
}
.cah input.cah-input:focus,
.cah select.cah-select:focus,
.cah textarea.cah-textarea:focus {
  border-color: var(--cah-secondary);
  box-shadow: 0 0 0 3px var(--cah-secondary-tint);
  outline: none;
}

/* ---- Header layout at the desktop-to-mobile transition ---- */
@media (max-width: 1200px) {
  .cah .cah-header__nav { display: none; }
  .cah .cah-header__actions .cah-btn--nav-cta,
  .cah .cah-header__actions .cah-navlink--utility { display: none; }
  .cah .cah-header__inner { min-height: var(--cah-header-h-mobile); gap: var(--cah-space-3); }
}
@media (min-width: 1201px) and (max-width: 1340px) {
  .cah .cah-header__nav { gap: 0; }
  .cah button.cah-navlink, .cah a.cah-navlink { padding-inline: 9px; font-size: 0.9375rem; }
}

/* Nav links must not wrap mid-label. */
.cah .cah-header__nav .cah-navlink { white-space: nowrap; }
.cah .cah-header__brand { white-space: nowrap; }


/* ---- Link colours inside our own components ----
 * Elementor's kit emits ".elementor-kit-N a { color: ... }", which ties with a
 * single component class and wins on load order. These restate the intended
 * colour at a specificity the kit cannot beat.
 */
.cah .cah-footer a { color: var(--cah-text-invert-muted); text-decoration: none; }
.cah .cah-footer a:hover { color: #fff; text-decoration: underline; }
.cah .cah-footer__brand { color: #fff; }

.cah a.cah-header__brand { color: var(--cah-primary); text-decoration: none; }
.cah a.cah-navlink { color: var(--cah-text-soft); text-decoration: none; }
.cah a.cah-navlink:hover { color: var(--cah-primary); background-color: var(--cah-primary-tint); }
.cah a.cah-mega__link { color: var(--cah-text); text-decoration: none; }
.cah a.cah-mega__link:hover { color: var(--cah-primary); }
.cah a.cah-navpanel__link { color: var(--cah-primary); text-decoration: none; }
.cah .cah-navpanel__sub a { color: var(--cah-text-soft); text-decoration: none; }
.cah .cah-breadcrumbs a { color: var(--cah-text-muted); text-decoration: none; }
.cah .cah-breadcrumbs a:hover { color: var(--cah-link); text-decoration: underline; }
.cah .cah-toc a { color: var(--cah-text-muted); text-decoration: none; }
.cah .cah-toc a[aria-current] { color: var(--cah-primary); }
.cah .cah-card a.cah-card__link { color: var(--cah-primary); text-decoration: none; }
.cah .cah-section--invert a:not(.cah-btn) { color: #fff; }
.cah .cah-stat__source a { color: inherit; }

/* Headings inside inverted sections stay legible regardless of kit colours. */
.cah .cah-section--invert h1,
.cah .cah-section--invert h2,
.cah .cah-section--invert h3,
.cah .cah-section--invert h4 { color: #fff; }
.cah .cah-section--invert .cah-muted { color: var(--cah-text-invert-muted); }


/* ---- Hero sits on a dark band, so its headings must not inherit the kit's
 * dark heading colour. ".cah h1" ties with ".elementor-kit-N h1"; these win. */
.cah .cah-hero h1,
.cah .cah-hero .cah-hero__title { color: #fff; }
.cah .cah-hero .cah-hero__lede { color: var(--cah-text-invert-muted); }
.cah .cah-hero .cah-path__label { color: #fff; }

/* ---- Inline icons ---- */
.cah svg.cah-icon { display: block; flex: none; max-width: none; height: auto; }

/* ---- Keep the primary call to action reachable on tablet ----
 * Hiding it at the first breakpoint pushed the main conversion path behind a
 * menu on the most common tablet widths.
 */
@media (max-width: 1200px) and (min-width: 641px) {
  .cah .cah-header__actions .cah-btn--nav-cta { display: inline-flex; }
}
@media (max-width: 640px) {
  .cah .cah-header__actions .cah-btn--nav-cta { display: none; }
}


/* The main landmark is focusable so the skip link genuinely moves focus,
   but it must never show a focus ring when reached by mouse. */
.cah .cah-main:focus { outline: none; }
.cah .cah-main:focus-visible { outline: 3px solid var(--cah-focus-ring); outline-offset: -3px; }


/* Any control of ours that carries a text label must be free to wrap.
   Elementor's kit sets buttons to nowrap, which overflows narrow viewports. */
.cah button.cah-choice,
.cah label.cah-choice,
.cah button.cah-cc__back,
.cah a.cah-btn,
.cah button.cah-btn {
  white-space: normal;
}
.cah .cah-accordion__trigger > span:first-child,
.cah .cah-navpanel__trigger > span:first-child { min-width: 0; }
.cah .cah-accordion__icon { flex: none; }


/* ==================================================================
 * PREMIUM LAYER v2
 * Brand marks, elevated chrome, and a tightened motion language.
 * Loaded last so it refines the component layer without forking it.
 * ================================================================== */

/* ------------------------------------------------------------------
 * 1. Brand marks
 * The logo is applied as a background so the accessible brand text
 * stays in the DOM and in the accessibility tree. Vector at every
 * size, one HTTP request, cached across the whole site.
 * ------------------------------------------------------------------ */
.cah-header__brand {
  display: block;
  width: clamp(164px, 16vw, 208px);
  aspect-ratio: 600 / 159;
  background: url("../brand/logo-header.svg") left center / contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  flex: none;
  transition: transform var(--cah-dur) var(--cah-ease-out), opacity var(--cah-dur) var(--cah-ease-out);
}
.cah-header__brand > svg,
.cah-header__brand > span { display: none; }
.cah-header__brand:hover { transform: translateY(-1px); opacity: .9; }
.cah-header__brand:focus-visible { outline-offset: 6px; }

/* On a dark header or the mobile panel, swap to the reversed lockup. */
.cah-header--invert .cah-header__brand,
.cah-navpanel .cah-header__brand,
.cah-section--invert .cah-header__brand {
  background-image: url("../brand/logo-header-reversed.svg");
}

.cah-footer__brand {
  display: block;
  width: clamp(196px, 20vw, 244px);
  aspect-ratio: 600 / 159;
  background: url("../brand/logo-header-reversed.svg") left center / contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: var(--cah-space-5);
}

/* The strapline is set as live text so it stays crisp, translatable
   and selectable rather than being baked into the artwork. */
.cah-footer__brandcol .cah-footer__blurb::before {
  content: "Support When You Need It Most";
  display: block;
  margin-bottom: var(--cah-space-4);
  padding-left: 42px;
  position: relative;
  color: #fff;
  font-weight: var(--cah-fw-semibold);
  font-style: italic;
  font-size: var(--cah-fs-small);
  letter-spacing: .01em;
}
.cah-footer__brandcol .cah-footer__blurb::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--cah-red-600);
  transform: translateY(-2.35em);
}
.cah-footer__brandcol .cah-footer__blurb { position: relative; }

/* ------------------------------------------------------------------
 * 2. Header - glass, depth on scroll, refined nav
 * ------------------------------------------------------------------ */
.cah-header,
.cah-header--static {
  position: sticky;
  top: 0;
  z-index: var(--cah-z-header);
  background: var(--cah-glass);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color var(--cah-dur) var(--cah-ease-out),
              border-color var(--cah-dur) var(--cah-ease-out),
              box-shadow var(--cah-dur) var(--cah-ease-out);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .cah-header, .cah-header--static { background: #fff; }
}
.cah-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--cah-grad-rule);
  opacity: 0;
  transition: opacity var(--cah-dur) var(--cah-ease-out);
}
.cah-header.is-stuck {
  background: rgba(255,255,255,.94);
  border-bottom-color: var(--cah-border-soft);
  box-shadow: 0 6px 24px -12px rgba(3,31,58,.28);
}
.cah-header.is-stuck::after { opacity: .9; }
.cah-header__inner { min-height: 84px; gap: var(--cah-space-8); }
@media (max-width: 1080px) { .cah-header__inner { min-height: 68px; gap: var(--cah-space-4); } }

.cah-navlink {
  position: relative;
  font-weight: var(--cah-fw-semibold);
  color: var(--cah-navy-800);
  padding: 10px 14px;
}
.cah-navlink::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--cah-red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--cah-dur) var(--cah-ease-out);
}
.cah-navlink:hover { background: transparent; color: var(--cah-navy-900); }
.cah-navlink:hover::after,
.cah-navlink[aria-current="page"]::after,
.cah-navlink.is-active::after { transform: scaleX(1); }
[data-cah-mega].is-open .cah-navlink { background: transparent; }
[data-cah-mega].is-open .cah-navlink::after { transform: scaleX(1); }

.cah-mega__panel {
  border-radius: var(--cah-radius-2xl);
  border-color: var(--cah-border-soft);
  box-shadow: 0 40px 80px -24px rgba(3,31,58,.28), 0 12px 28px -12px rgba(3,31,58,.12);
  padding: var(--cah-space-10);
}
.cah-mega__link {
  border: 1px solid transparent;
  transition: background-color var(--cah-dur) var(--cah-ease-out),
              border-color var(--cah-dur) var(--cah-ease-out),
              transform var(--cah-dur) var(--cah-ease-out);
}
.cah-mega__link:hover {
  background: var(--cah-navy-50);
  border-color: var(--cah-navy-100);
  transform: translateX(3px);
}
.cah-mega__feature {
  background: var(--cah-grad-navy);
  color: #fff;
  box-shadow: var(--cah-glow-navy);
}
.cah-mega__feature .cah-mega__heading { color: var(--cah-red-400); }
.cah-mega__feature a { color: #fff; }

/* ------------------------------------------------------------------
 * 3. Buttons - red is the conversion colour and nothing else
 * ------------------------------------------------------------------ */
.cah-btn {
  border-radius: var(--cah-radius-pill);
  font-weight: var(--cah-fw-semibold);
  letter-spacing: -.005em;
  will-change: transform;
}
.cah-btn--accent {
  background: var(--cah-grad-red);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--cah-glow-red);
}
.cah-btn--accent:hover {
  background: var(--cah-grad-red);
  filter: brightness(1.06);
  box-shadow: 0 16px 40px -10px rgba(229,2,14,.55);
  transform: translateY(-2px);
}
.cah-btn--accent:active { transform: translateY(0); filter: brightness(.97); }

.cah-btn:not(.cah-btn--accent):not(.cah-btn--outline):not(.cah-btn--ghost):not(.cah-btn--on-dark):not(.cah-btn--outline-on-dark) {
  background: var(--cah-grad-navy);
  box-shadow: var(--cah-glow-navy);
}
.cah-btn--outline {
  border-width: 1.5px;
  border-color: var(--cah-navy-200, var(--cah-border-strong));
  background: rgba(255,255,255,.6);
}
.cah-btn--outline:hover {
  border-color: var(--cah-navy-900);
  background: #fff;
  color: var(--cah-navy-900);
}

/* A quiet pulse on the primary conversion button only, and only while
   the visitor has not interacted. Never loops indefinitely. */
@keyframes cah-cta-breathe {
  0%, 100% { box-shadow: var(--cah-glow-red); }
  50%      { box-shadow: 0 14px 38px -8px rgba(229,2,14,.62); }
}
.cah-btn--accent.cah-btn--lg { animation: cah-cta-breathe 3.6s var(--cah-ease-in-out) 2s 3; }
@media (prefers-reduced-motion: reduce) {
  .cah-btn--accent.cah-btn--lg { animation: none; }
  .cah-btn--accent:hover { transform: none; }
}


/* ------------------------------------------------------------------
 * 4. Hero - depth without noise
 * A layered navy gradient with one warm red bloom in the corner. The
 * bloom is what makes the brand read as "urgent help" rather than
 * "corporate insurance", and it is the only large use of red.
 * ------------------------------------------------------------------ */
.cah-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--cah-grad-hero);
  color: #fff;
  padding-block: clamp(72px, 9vw, 132px);
}
.cah-hero::before {
  /* Fine grain stops the large gradient from banding on wide screens. */
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cah-hero::after {
  /* Soft road-sweep echoing the logo mark. */
  content: "";
  position: absolute; z-index: -1;
  right: -8%; bottom: -32%;
  width: min(760px, 70vw); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(30,102,171,.30) 0%, transparent 62%);
  pointer-events: none;
}
.cah-hero__title {
  font-size: clamp(2.4rem, 1.3rem + 4.4vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -.03em;
  color: #fff;
  text-wrap: balance;
  max-width: 17ch;
}
.cah-hero__title em,
.cah-hero__title strong {
  font-style: normal;
  color: var(--cah-red-500);
  font-weight: inherit;
}
.cah-hero__lede {
  font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem);
  line-height: 1.62;
  color: #C6D6E8;
  max-width: 56ch;
  margin-top: var(--cah-space-6);
}
.cah-hero__actions { margin-top: var(--cah-space-10); gap: var(--cah-space-4); display: flex; flex-wrap: wrap; }
.cah-hero__trust {
  margin-top: var(--cah-space-10);
  padding-top: var(--cah-space-8);
  border-top: 1px solid rgba(255,255,255,.12);
}
.cah-hero .cah-eyebrow { color: var(--cah-red-400); }

/* Staged entrance: the hero is above the fold, so it animates on load
   rather than on scroll. */
@keyframes cah-rise { from { opacity: 0; transform: translate3d(0,18px,0); } to { opacity: 1; transform: none; } }
html.cah-js .cah-hero__title,
html.cah-js .cah-hero__lede,
html.cah-js .cah-hero__actions,
html.cah-js .cah-hero__trust {
  animation: cah-rise .8s var(--cah-ease-out) both;
}
html.cah-js .cah-hero__lede    { animation-delay: .10s; }
html.cah-js .cah-hero__actions { animation-delay: .20s; }
html.cah-js .cah-hero__trust   { animation-delay: .30s; }

/* ------------------------------------------------------------------
 * 5. The pathway - progressive, not decorative
 * ------------------------------------------------------------------ */
.cah-path { position: relative; }
.cah-path__item {
  position: relative;
  transition: transform var(--cah-dur) var(--cah-ease-out);
}
.cah-path__label { transition: color var(--cah-dur) var(--cah-ease-out); }
.cah-path__item:hover { transform: translateY(-4px); }
.cah-path__item:hover .cah-path__label { color: var(--cah-red-500); }

/* ------------------------------------------------------------------
 * 6. Cards - one elevation language across the site
 * ------------------------------------------------------------------ */
.cah-typecard,
.cah-card {
  position: relative;
  border-radius: var(--cah-radius-xl);
  border: 1px solid var(--cah-border-soft);
  background: var(--cah-surface);
  box-shadow: var(--cah-shadow-sm);
  transition: transform var(--cah-dur) var(--cah-ease-out),
              box-shadow var(--cah-dur) var(--cah-ease-out),
              border-color var(--cah-dur) var(--cah-ease-out);
}
.cah-typecard::before {
  /* Hairline that warms up on hover - the only red on a resting card. */
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, var(--cah-red-600), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--cah-dur) var(--cah-ease-out);
  pointer-events: none;
}
.cah-typecard:hover,
.cah-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cah-shadow-lg);
  border-color: var(--cah-navy-100);
}
.cah-typecard:hover::before { opacity: 1; }
.cah-typecard__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: var(--cah-radius-lg);
  background: var(--cah-navy-50);
  color: var(--cah-navy-800);
  margin-bottom: var(--cah-space-5);
  transition: background-color var(--cah-dur) var(--cah-ease-out),
              color var(--cah-dur) var(--cah-ease-out),
              transform var(--cah-dur) var(--cah-ease-spring);
}
.cah-typecard:hover .cah-typecard__icon {
  background: var(--cah-grad-red);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}
.cah-typecard__title { font-size: var(--cah-fs-h4); letter-spacing: -.01em; }
.cah-typecard__more {
  margin-top: auto;
  color: var(--cah-navy-700);
  font-weight: var(--cah-fw-semibold);
  font-size: var(--cah-fs-small);
  display: inline-flex; align-items: center; gap: 6px;
}
.cah-typecard:hover .cah-typecard__more { color: var(--cah-red-700); }
.cah-typecard:hover .cah-btn__arrow,
.cah-typecard:hover .cah-typecard__more svg { transform: translateX(4px); }

/* ------------------------------------------------------------------
 * 7. Section rhythm and hierarchy
 * ------------------------------------------------------------------ */
.cah-section, .cah-main > section { padding-block: clamp(64px, 7.5vw, 116px); }
.cah-section-header { margin-bottom: clamp(40px, 5vw, 72px); }
.cah-section-header__title { font-size: clamp(1.85rem, 1.3rem + 2.1vw, 2.7rem); letter-spacing: -.022em; }
.cah-section-header__intro { font-size: var(--cah-fs-body-lg); color: var(--cah-text-muted); }
.cah-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cah-red-700);
}
.cah-eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--cah-red-600); flex: none;
}
.cah-section--invert { background: var(--cah-grad-navy); }
.cah-section--invert .cah-eyebrow { color: var(--cah-red-400); }
.cah-section--invert .cah-eyebrow::before { background: var(--cah-red-500); }

/* Conversion band */
.cah-cta {
  position: relative;
  overflow: hidden;
  background: var(--cah-grad-navy);
  border-radius: var(--cah-radius-2xl);
  color: #fff;
}
.cah-cta::after {
  content: "";
  position: absolute; right: -10%; top: -60%;
  width: 620px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(229,2,14,.30) 0%, transparent 62%);
  pointer-events: none;
}

/* ------------------------------------------------------------------
 * 8. Motion refinements
 * ------------------------------------------------------------------ */
html.cah-js .cah-reveal {
  transform: translate3d(0, 20px, 0);
  transition-duration: .7s;
}
.cah-hover-lift:hover { box-shadow: var(--cah-shadow-lg); }

/* Focus stays unmistakable on every surface. */
.cah-section--invert :focus-visible,
.cah-hero :focus-visible,
.cah-footer :focus-visible { outline-color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html.cah-js .cah-hero__title,
  html.cah-js .cah-hero__lede,
  html.cah-js .cah-hero__actions,
  html.cah-js .cah-hero__trust { animation: none; }
  .cah-typecard:hover, .cah-card:hover, .cah-path__item:hover { transform: none; }
  .cah-typecard:hover .cah-typecard__icon { transform: none; }
}


/* ------------------------------------------------------------------
 * 9. Corrections from rendered QA
 * ------------------------------------------------------------------ */

/* The strapline sits under the footer mark with its own short rule.
   The previous absolutely-positioned rule landed over the blurb text. */
.cah-footer__brandcol .cah-footer__blurb::after { content: none; }
.cah-footer__brandcol .cah-footer__blurb::before {
  content: "Support When You Need It Most";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 var(--cah-space-5);
  padding: 14px 0 0;
  background-image: linear-gradient(var(--cah-red-600), var(--cah-red-600));
  background-size: 30px 2px;
  background-repeat: no-repeat;
  background-position: left top;
  color: #fff;
  font-weight: var(--cah-fw-semibold);
  font-style: italic;
  font-size: var(--cah-fs-small);
  letter-spacing: .01em;
  text-wrap: balance;
}

/* Card titles: balance the line break instead of orphaning one word,
   and hold a consistent card height across the grid. */
.cah-typecard__title,
.cah-card__title {
  text-wrap: balance;
  font-size: clamp(1.06rem, 1rem + .3vw, 1.22rem);
  line-height: 1.28;
}
.cah-typecard { min-height: 100%; }
.cah-grid { align-items: stretch; }

/* Trust row: restrained, but no longer completely flat. */
.cah-trust__item,
.cah-grid--4 > .cah-reveal {
  transition: transform var(--cah-dur) var(--cah-ease-out);
}

/* Footer link affordance kept consistent - no stray underlines at rest. */
.cah-footer a { text-decoration: none; }
.cah-footer a:hover,
.cah-footer a:focus-visible { text-decoration: underline; text-underline-offset: .2em; }
