/* Chasin Coverage - light trust theme + animations
   Conversion-first: white surfaces, navy/blue brand, scroll reveals */

:root {
  color-scheme: light only;
  --bg: #f3f6fb;
  --bg-white: #ffffff;
  --bg-elev: #ffffff;
  --bg-soft: #e8eef7;
  --border: rgba(15, 40, 80, 0.1);
  --border-strong: rgba(10, 61, 143, 0.22);
  --text: #0f1c2e;
  --muted: #5a6d85;
  --cyan: #1a6fd4;
  --cyan-soft: #0a3d8f;
  --navy: #0b1f3a;
  --grad: linear-gradient(135deg, #2b7de9 0%, #1a6fd4 35%, #1256b8 70%, #0a3d8f 100%);
  --grad-cta: linear-gradient(160deg, #3b8aef 0%, #1d6fd6 45%, #0b4fad 100%);
  --banner-bg: linear-gradient(90deg, #072a5c 0%, #0a3d8f 45%, #0c4a9e 100%);
  --shadow: 0 18px 44px rgba(15, 40, 80, 0.1);
  --shadow-sm: 0 6px 18px rgba(15, 40, 80, 0.07);
  --radius: 16px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Drawer-only UI (hidden on desktop) */
.nav-drawer-label,
.nav-drawer-book,
.nav-drawer-call,
.nav-drawer-head,
.nav-drawer-close,
.top-banner-short,
.nav-cta-long {
  display: none;
}

.top-banner-long {
  display: inline;
}

.nav-cta-short {
  display: inline;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--navy);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cyan);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* -- Animations -- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

@keyframes float-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.05);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(10, 61, 143, 0.32);
  }
  50% {
    box-shadow: 0 12px 34px rgba(10, 61, 143, 0.42), 0 0 0 5px rgba(37, 99, 235, 0.14);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Logo - header: no box, fill the header row height */
.brand .logo-on-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
  overflow: visible;
  transition: transform 0.25s var(--ease);
}

.brand:hover .logo-on-white {
  transform: scale(1.04);
  box-shadow: none;
}

/* ~header content height (84px row − vertical padding) */
.brand .logo-on-white img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

/* Footer / small mark - still clean, no card chrome */
.logo-on-white-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.logo-on-white-sm img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s var(--ease);
}

/* At top of page: no shadow so white bar + hero curve read as one surface */
.site-header:not(.scrolled) {
  box-shadow: none;
}

.site-header.scrolled {
  box-shadow: 0 10px 32px rgba(15, 40, 80, 0.12);
}

/* Top banner - deeper navy so hero CTA stays the brighter focal point */
.top-banner {
  background: var(--banner-bg);
  color: #fff;
  padding: 0.7rem 0;
}

.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.top-banner-text {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.top-banner-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
}

.top-banner-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--navy) !important;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.top-banner-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  color: var(--navy) !important;
}

.top-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.top-banner-phone:hover {
  color: #fff !important;
  border-bottom-color: #fff;
}

.header-bar {
  /* No backdrop-filter: it creates a containing block and traps
     position:fixed mobile drawers inside the thin header bar. */
  /* Solid white matches .hero-curve so they fuse at scroll-top */
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

/* Only separate from the page once the user scrolls */
.site-header.scrolled .header-bar {
  background: #ffffff;
  border-bottom-color: var(--border);
}

/* One solid desktop row: brand | nav | actions */
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 1.75rem;
  min-height: 84px;
  padding-block: 0.75rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem 1.1rem;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--cyan);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  min-width: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

/* Logo wordmark: Chasin+ image (cross included) + Coverage */
.brand-name {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.brand-chasin-img {
  display: block;
  height: 2rem; /* fits + in the mark */
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  position: relative;
  top: -0.18em;
}

.brand-coverage {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.035em;
  color: #0a1f3a;
  line-height: 1;
  text-transform: none;
  position: relative;
  top: 0;
}

.brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.15rem 1.15rem;
  min-width: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 0;
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}

.site-nav a:hover {
  color: var(--navy);
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.65rem 1.15rem !important;
  border-radius: 999px;
  background: var(--grad-cta);
  background-color: #1256b8;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  box-shadow: 0 8px 22px rgba(10, 61, 143, 0.3);
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
    filter 0.2s var(--ease) !important;
  white-space: nowrap;
  border: none;
  -webkit-font-smoothing: antialiased;
}

.nav-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 10px 26px rgba(10, 61, 143, 0.36),
    0 0 0 4px rgba(59, 138, 239, 0.18);
}

.nav-toggle {
  display: none; /* shown in mobile media query */
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

/* Hamburger → X when menu open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sticky header shouldn't hide in-page section targets */
main section[id],
#contact,
#fit,
#services,
#process,
#reviews,
#faq,
#about {
  scroll-margin-top: calc(var(--header-offset, 120px) + 12px);
}

/* Keyboard focus - visible, not mouse-only outline spam */
:focus-visible {
  outline: 3px solid rgba(26, 111, 212, 0.55);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-cta:focus-visible,
.sticky-cta-book:focus-visible,
.nav-drawer-book:focus-visible {
  outline-offset: 3px;
}

/* Hero */
/*
 * Hero = original copy layout + video on the right + white panel behind the words.
 *
 * Critical: the white band must track the *centered* copy column on any
 * viewport. A fixed left-edge width (e.g. clamp/vw only) desyncs on wide
 * monitors — empty white gutter on the left, words over the video.
 *
 * Tokens:
 *   --hero-pad   = same horizontal inset as .container (centers with page)
 *   --hero-copy  = readable copy column width
 *   --hero-white = left edge → past end of copy (pad + copy + right cushion)
 */
.hero {
  position: relative;
  padding: 3.5rem 0 3.75rem;
  overflow: hidden;
  background: #0a2f6b;
  --hero-pad: max(1.25rem, calc((100vw - var(--max)) / 2));
  /*
   * Copy column: readable measure, shrinks on mid widths, and never so wide
   * that white + pad would leave almost no room for the video band.
   */
  --hero-copy: min(36rem, max(20rem, 42vw), calc(58vw - var(--hero-pad) - 2.75rem));
  /* White always covers left gutter + full copy column (never desyncs) */
  --hero-white: calc(var(--hero-pad) + var(--hero-copy) + 2.75rem);
}

/*
 * Video only lives in the OPEN right band (not under white).
 * That way faces are framed in the visible area by default.
 */
.hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: var(--hero-white);
  background: #0a2f6b;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Center subject in the visible video pane */
  object-position: 50% 28%;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  filter: saturate(0.92) contrast(1.05) brightness(0.95);
}

/* Keep people mid-frame in the visible right video pane */
#hero-video-a {
  object-position: 48% 30%;
}

#hero-video-b {
  object-position: 45% 24%;
}

#hero-video-c {
  object-position: 50% 28%;
}

.hero-video.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-media-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(7, 42, 92, 0.42) 0%,
    rgba(10, 61, 143, 0.5) 55%,
    rgba(10, 61, 143, 0.55) 100%
  );
}

/* White column - same width token as copy so nothing spills onto video */
.hero-curve {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--hero-white);
  background: #ffffff;
  border-radius: 0;
  box-shadow: 8px 0 24px rgba(5, 20, 50, 0.12);
  pointer-events: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-curve::after {
  display: none;
}

/* Copy column width = --hero-copy; white panel = pad + copy (always behind words) */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, var(--hero-copy)) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  /* Full-bleed grid; left pad matches page container so copy aligns with header */
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: var(--hero-pad);
  padding-right: 0;
  box-sizing: border-box;
}

.hero-copy.reveal {
  animation: rise-in 0.8s var(--ease) both;
}

.hero-copy {
  max-width: none;
  width: 100%;
  /* Keep every line clear of the white/video seam */
  padding-right: 2.75rem;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.hero-trust {
  max-width: 100%;
  flex-wrap: wrap;
  row-gap: 0.45rem;
}

.hero-trust li {
  flex: 0 1 auto;
}

/* Right column = empty spacer matching video pane */
.hero-side {
  min-height: 320px;
  pointer-events: none;
}

.hero-blob {
  display: none;
}

.hero-panel,
.hero-panel-inner {
  display: contents;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero h1 {
  margin-bottom: 1.15rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.lead {
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  line-height: 1.7;
  color: #3a4d63; /* darker than --muted for weight + WCAG on light hero */
  max-width: 36rem;
  margin: 0 0 1.85rem;
  font-weight: 500;
}

.muted {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

/* CTA stack: button + doubt-removing microcopy (high leverage) */
.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.cta-micro {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #3a4d63;
  line-height: 1.35;
}

.cta-micro-center {
  text-align: center;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.calendly-cta + .cta-micro {
  margin-bottom: 1rem;
  max-width: 360px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), filter 0.2s, background 0.2s, border-color 0.2s,
    box-shadow 0.2s;
}

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

.btn:active {
  transform: scale(0.98);
}

/* Solid fallback + multi-stop gradient reduces banding vs 2-stop gradients */
.btn-primary {
  color: #fff;
  background-color: #1256b8;
  background-image: var(--grad-cta);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
  box-shadow: 0 10px 28px rgba(10, 61, 143, 0.32);
  position: relative;
  z-index: 0;
  overflow: visible;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
    filter 0.2s var(--ease);
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.05);
  box-shadow:
    0 12px 32px rgba(10, 61, 143, 0.38),
    0 0 0 4px rgba(59, 138, 239, 0.18);
}

.btn-primary:active {
  filter: brightness(0.98);
  transform: translateY(0) scale(0.99);
}

.btn-pulse {
  animation: soft-pulse 2.8s ease-in-out infinite;
}

/* No pseudo rainbow layers - they made the pill edge look jagged */

.btn-ghost {
  background: #fff;
  border-color: rgba(15, 40, 80, 0.18);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: #f7faff;
  color: var(--navy);
  border-color: rgba(10, 61, 143, 0.28);
}

.btn-block {
  width: 100%;
}

/* Hero trust line - darker for AA contrast on light gray/blue bg */
.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  color: #2f4258;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a3d8f;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(10, 61, 143, 0.12);
}

/* Hero photo card removed from top - headshot lives in About */

.hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #4a5d75;
  text-decoration: none;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero-social .social-link:hover {
  color: var(--cyan-soft);
}

.hero-social .social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-social .social-link:hover .social-icon {
  opacity: 1;
}

/* Product bar - stronger color band */
.product-bar {
  border: none;
  background: var(--navy);
  padding: 1rem 0;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.18);
}

.product-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.product-bar .dot {
  color: var(--cyan);
  opacity: 0.9;
  letter-spacing: 0;
}

/* Trust strip - one unified panel with vertical dividers */
.trust-strip {
  padding: 0 0 2.25rem;
  background: var(--bg);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.trust-item {
  background: transparent;
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(15, 40, 80, 0.1);
  padding: 1.15rem 1.15rem 1.2rem;
  text-align: center;
  box-shadow: none;
  transition: background 0.2s var(--ease);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  transform: none;
  background: #f7faff;
  box-shadow: none;
}

.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.trust-item span {
  font-size: 0.84rem;
  color: #4a5d75;
  font-weight: 500;
  line-height: 1.35;
}

/*
 * Section rhythm (after product bar):
 * grey → white → grey → white → grey → white → grey
 * .section = light grey | .section-alt = white
 * Solid fills only - no gradient “missteps” between bands.
 */
.section {
  padding: 4.75rem 0;
  background: var(--bg); /* light grey */
}

.section-alt {
  background: #ffffff;
  border-block: 1px solid var(--border);
}

/* sticky mobile CTA reserve space so content isn't covered */
body.has-sticky-cta {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .sticky-cta:not([hidden]) {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(15, 40, 80, 0.12);
    box-shadow: 0 -8px 28px rgba(15, 40, 80, 0.12);
    backdrop-filter: blur(10px);
  }

  .sticky-cta-call,
  .sticky-cta-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
  }

  .sticky-cta-call {
    flex: 0 0 34%;
    color: var(--navy);
    background: #fff;
    border: 1.5px solid rgba(10, 61, 143, 0.28);
  }

  .sticky-cta-book {
    flex: 1 1 auto;
    color: #fff;
    background-color: #1256b8;
    background-image: var(--grad-cta);
    box-shadow: 0 6px 18px rgba(10, 61, 143, 0.3);
    border: none;
  }

  .sticky-cta-call:hover {
    color: var(--navy);
    background: #f7faff;
  }

  .sticky-cta-book:hover {
    color: #fff;
    filter: brightness(1.05);
    box-shadow:
      0 8px 22px rgba(10, 61, 143, 0.36),
      0 0 0 4px rgba(59, 138, 239, 0.18);
  }
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

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

.section-head p {
  color: var(--muted);
  margin: 0;
}

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 2rem;
}

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

.card-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card-grid-follow {
  margin-top: 1rem;
}

.card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}

.section-alt .card {
  background: var(--bg-soft);
  box-shadow: none;
}

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

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s;
}

.card:hover .card-icon {
  transform: scale(1.08);
  background: #e0ecff;
}

/* Fit grid (you're in the right place if) */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fit-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}

.fit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.fit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.fit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Process */
.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.process-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

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

.process-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 6px 16px rgba(26, 111, 212, 0.3);
}

.process-card h3 {
  font-size: 1.1rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* FAQ */
.faq-wrap {
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-family: var(--display);
  color: var(--navy);
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cyan);
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  border-top: 1px solid transparent;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: #fff;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.review-text {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: var(--grad);
  flex-shrink: 0;
}

.review-meta strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}

.review-meta span {
  font-size: 0.78rem;
  color: var(--muted);
}

.review-disclaimer {
  margin: 1.5rem auto 0;
  max-width: 36rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  padding-left: 1.6rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
}

.stat-panel {
  display: grid;
  gap: 0.85rem;
}

.stat {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 0.25s var(--ease);
}

.stat:hover {
  transform: translateX(4px);
}

.stat strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.state-grid {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.state-grid li {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-weight: 600;
  font-family: var(--display);
  color: var(--navy);
  transition: transform 0.22s var(--ease), background 0.22s, box-shadow 0.22s;
}

.state-grid li:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.fine {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.center {
  text-align: center;
}

/* About: full blue feature band + clean gradient/pattern + logo watermark */
.about-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #072a5c;
  background-image: linear-gradient(
    145deg,
    #04162f 0%,
    #072a5c 32%,
    #0a3d8f 62%,
    #1256b8 100%
  );
  border-block: none;
  color: #f4f8ff;
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Soft ambient light only — no hard shapes */
.about-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.4;
}

.about-bg-glow-a {
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  top: -18%;
  right: -10%;
  background: radial-gradient(circle, rgba(120, 180, 255, 0.45) 0%, transparent 68%);
}

.about-bg-glow-b {
  width: min(50vw, 460px);
  height: min(50vw, 460px);
  bottom: -22%;
  left: -12%;
  background: radial-gradient(circle, rgba(20, 70, 160, 0.55) 0%, transparent 70%);
}

/* Very light texture — no boxy layers */
.about-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.06) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 52%, rgba(255, 255, 255, 0.04) 0 1px, transparent 2px);
  background-size: 42px 42px, 42px 42px, 42px 42px;
  background-position: 0 0, 21px 10px, 8px 24px;
}

/* Soft concentric rings (right side) — no fill */
.about-bg-mesh {
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 34%, rgba(255, 255, 255, 0.045) 35%, transparent 36%),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(255, 255, 255, 0.035) 49%, transparent 50%),
    radial-gradient(circle at 50% 50%, transparent 62%, rgba(255, 255, 255, 0.025) 63%, transparent 64%);
  opacity: 0.85;
}

/*
 * Logo sits in its own grid column (photo | copy | logo).
 * Never absolutely overlaid under text/pills.
 * Uses logo-mark.png (transparent canvas).
 */
.about-logo-side {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 240px;
  margin: 0;
  padding: 0.5rem;
  line-height: 0;
  background: transparent;
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 18px 36px rgba(0, 12, 40, 0.28));
}

.about-logo-side picture,
.about-logo-side img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: none;
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) minmax(150px, 230px);
  gap: 2.25rem 2.5rem;
  align-items: center;
}

.about-photo-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 28px 60px rgba(0, 12, 40, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.about-photo-wrap:hover {
  transform: translateY(-5px);
  box-shadow:
    0 34px 70px rgba(0, 12, 40, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 14%;
  display: block;
}

.about-photo-cap {
  padding: 1rem 1.15rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-photo-cap strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.about-photo-cap span {
  font-size: 0.88rem;
  color: rgba(232, 242, 255, 0.82);
  font-weight: 500;
}

.about-copy {
  max-width: 34rem;
  min-width: 0;
}

.about-copy .eyebrow {
  color: #9fd0ff;
  letter-spacing: 0.14em;
}

.about-copy h2 {
  margin-bottom: 1rem;
  max-width: 18ch;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 20, 60, 0.25);
}

.about-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(244, 248, 255, 0.96);
  font-weight: 500;
  margin: 0 0 0.9rem;
}

.about-copy > p {
  margin: 0 0 0.9rem;
  color: rgba(220, 234, 252, 0.88);
  line-height: 1.65;
}

.about-points {
  list-style: none;
  margin: 1.15rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.about-points li {
  position: relative;
  padding: 0.55rem 0.85rem 0.55rem 2.35rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.35;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 16, 48, 0.12);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #7ec4ff;
  box-shadow: 0 0 0 3px rgba(126, 196, 255, 0.28);
}

.about-verify {
  margin: 0 0 1.35rem !important;
  font-size: 0.88rem !important;
  color: rgba(210, 228, 250, 0.78) !important;
  font-weight: 500;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.about-actions .btn {
  margin: 0;
}

/* High-contrast CTAs on blue band */
.about-section .about-btn-primary {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #0a3d8f !important;
  box-shadow: 0 12px 32px rgba(0, 16, 48, 0.28);
}

.about-section .about-btn-primary:hover {
  background-color: #f0f6ff !important;
  color: #072a5c !important;
  filter: none;
  box-shadow:
    0 14px 36px rgba(0, 16, 48, 0.34),
    0 0 0 4px rgba(255, 255, 255, 0.18);
}

.about-section .about-btn-ghost {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
  box-shadow: none;
}

.about-section .about-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  color: #ffffff !important;
}

.about-micro {
  margin: 0.75rem 0 0;
  color: rgba(232, 244, 255, 0.92) !important;
}

/* Beat global/mobile .cta-micro dark grey on the blue About band */
.about-section .cta-micro,
.about-section .about-micro {
  color: rgba(232, 244, 255, 0.92) !important;
}

/* Contact */
/* Contact is a grey band (same as .section) */
.contact-section {
  padding-bottom: 5.5rem;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.calendly-cta {
  margin: 0.25rem 0 1.25rem;
  width: 100%;
  max-width: 360px;
}

/* One clean card - icon rows, not five stacked boxes */
.contact-direct {
  margin-top: 1.35rem;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.contact-direct .cd-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(15, 40, 80, 0.08);
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  transition: background 0.18s var(--ease);
}

.contact-direct .cd-row:last-child {
  border-bottom: none;
}

.contact-direct .cd-row:hover {
  background: #f5f8fc;
  transform: none;
  box-shadow: none;
  color: inherit;
}

.cd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #eef4fb;
  color: var(--cyan-soft);
}

.cd-icon svg {
  display: block;
}

.cd-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.cd-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cd-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.3;
}

.contact-direct .cd-row:hover .cd-value {
  color: var(--cyan-soft);
}

/* legacy short/long helpers (unused) */
.cd-value-short {
  display: none;
}

.cd-value-long {
  display: inline;
}

.contact-form {
  padding: 1.5rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.field {
  margin-bottom: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.field .opt {
  font-weight: 400;
  opacity: 0.7;
}

.field .req {
  color: #c2410c;
  font-weight: 800;
}

/* Screen-reader only */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Contact form honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#contact-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

body.nav-open {
  overflow: hidden;
}

.logo-on-white picture,
.logo-on-white-sm picture,
.hero-photo-wrap picture,
.about-photo-wrap picture {
  display: contents;
}

.logo-on-white picture img,
.logo-on-white-sm picture img {
  display: block;
}

.hero-photo-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo-wrap picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.about-photo-wrap picture {
  display: block;
  width: 100%;
}

.about-photo-wrap picture img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.12);
  background: #fff;
}

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

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  background-color: #f8fafc;
}

.form-note {
  min-height: 1.25em;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--cyan);
}

.form-note.error {
  color: #b91c1c;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  background: var(--navy);
  color: #c8d6ea;
}

.site-footer .fine {
  color: #8fa3bc;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  color: #fff;
}

.footer-brand span {
  font-size: 0.8rem;
  color: #8fa3bc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.about-actions .cta-stack {
  width: auto;
}

.footer-links a {
  color: #a8bdd6;
}

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

.footer-legal {
  max-width: 48rem;
  margin: 0;
}

/* Mobile - conversion-first layout (Book path > everything else) */
@media (max-width: 900px) {
  /*
   * Fight browser “force dark” / Brave invert:
   * color-scheme + background-image solid fills survive better than plain bg alone.
   */
  html {
    color-scheme: only light !important;
    background-color: #f3f6fb !important;
    background-image: linear-gradient(#f3f6fb, #f3f6fb) !important;
  }

  body {
    background-color: #f3f6fb !important;
    background-image: linear-gradient(#f3f6fb, #f3f6fb) !important;
    color: #0f1c2e !important;
  }

  .site-header,
  .header-bar,
  .site-nav,
  .sticky-cta,
  .hero,
  .contact-form {
    color-scheme: only light;
    forced-color-adjust: none;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid-2,
  .review-grid,
  .fit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(15, 40, 80, 0.1);
  }

  /* -- Compact chrome so Book CTAs sit above the fold -- */
  .top-banner {
    padding: 0.4rem 0;
  }

  .top-banner-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    text-align: left;
  }

  .top-banner-long {
    display: none !important;
  }

  .top-banner-short {
    display: inline !important;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .top-banner-text {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.4rem;
    font-size: 0.8rem;
    min-width: 0;
  }

  .top-banner-tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    flex-shrink: 0;
  }

  .top-banner-actions {
    width: auto;
    flex-shrink: 0;
    justify-content: flex-end;
  }

  .top-banner-phone {
    font-size: 0.92rem;
    min-height: 36px;
    padding: 0.15rem 0;
    border-bottom: none;
    white-space: nowrap;
  }

  /* Header: logo + Book + menu - solid light, short height */
  .header-bar {
    background-color: #ffffff !important;
    background-image: linear-gradient(#ffffff, #ffffff) !important;
    border-bottom: 1px solid transparent;
  }

  .site-header.scrolled .header-bar {
    border-bottom-color: rgba(15, 40, 80, 0.1);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    min-height: 56px;
    padding-block: 0.35rem;
  }

  .brand {
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-name {
    white-space: nowrap;
  }

  .brand-chasin-img {
    height: 1.4rem;
    max-width: 5.75rem;
  }

  .brand-coverage {
    font-size: 1rem;
    color: #0a1f3a !important;
  }

  .brand-text em {
    display: none !important;
  }

  .brand .logo-on-white {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .brand .logo-on-white img {
    width: 48px;
    height: 48px;
  }

  .header-actions {
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(15, 40, 80, 0.14);
    background-color: #ffffff !important;
    background-image: linear-gradient(#ffffff, #ffffff) !important;
    flex-shrink: 0;
  }

  .nav-toggle span {
    background: #0b1f3a !important;
  }

  /* Header Book - always visible, high contrast blue pill */
  .header-actions .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    min-height: 44px;
    min-width: 72px;
    background-color: #1256b8 !important;
    background-image: linear-gradient(160deg, #3b8aef 0%, #1d6fd6 45%, #0b4fad 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(10, 61, 143, 0.35);
    border: none !important;
  }

  .header-actions .nav-cta .nav-cta-short {
    display: none;
  }

  .header-actions .nav-cta .nav-cta-long {
    display: inline;
  }

  /* Mobile: video strip on top, then clear stacked copy */
  .hero {
    padding: 0 0 1.65rem;
    background-color: #0a2f6b !important;
    background-image: none !important;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: min(48vw, 240px);
    min-height: 190px;
  }

  .hero-curve {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - min(48vw, 240px) + 28px);
    min-height: 62%;
    border-radius: 26px 26px 0 0;
    margin-top: 0;
    box-shadow: 0 -12px 32px rgba(5, 20, 50, 0.18);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0.55rem;
    width: min(var(--max), calc(100% - 1.75rem));
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-side {
    display: none;
  }

  .hero-copy {
    text-align: center;
    max-width: none;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.45rem);
    margin-bottom: 0.65rem;
    line-height: 1.08;
  }

  .eyebrow {
    text-align: center;
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
  }

  .lead {
    font-size: 1.02rem;
    line-height: 1.52;
    margin-bottom: 1.15rem;
    color: #2f4258 !important;
    max-width: 28rem;
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-bottom: 1.15rem;
  }

  .hero-actions .cta-stack {
    width: 100%;
    align-items: stretch;
  }

  .hero-actions .btn-primary {
    width: 100%;
    min-height: 56px;
    font-size: 1.08rem;
    font-weight: 800;
    justify-content: center;
    background-color: #1256b8 !important;
    background-image: linear-gradient(160deg, #3b8aef 0%, #1d6fd6 45%, #0b4fad 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(10, 61, 143, 0.4);
  }

  .hero-actions .btn-ghost {
    width: 100%;
    min-height: 50px;
    font-size: 1rem;
    justify-content: center;
    background-color: #ffffff !important;
    color: #0b1f3a !important;
  }

  .cta-micro {
    text-align: center;
    width: 100%;
    font-size: 0.82rem;
    color: #3a4d63 !important;
  }

  .hero-trust {
    justify-content: center;
    text-align: center;
    font-size: 0.86rem;
    gap: 0.45rem 1rem;
    margin-bottom: 0.9rem;
  }

  .hero-trust li {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  .hero-social .social-link {
    min-height: 44px;
    padding: 0.35rem 0.55rem;
  }

  /* Section rhythm — less sparse, more app-like */
  .section {
    padding: 3.15rem 0;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 6.5vw, 1.95rem);
  }

  .section-head p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .fit-card,
  .process-card,
  .card,
  .review-card {
    padding: 1.15rem 1.1rem;
  }

  .fit-grid,
  .process-grid,
  .card-grid,
  .card-grid-2,
  .review-grid {
    gap: 0.75rem;
  }

  .product-bar {
    padding: 0.85rem 0;
  }

  .product-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .section-cta {
    margin-top: 1.5rem;
  }

  .section-cta .btn-primary {
    width: 100%;
    max-width: 100%;
  }

  /* Dim page when menu open */
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(7, 12, 22, 0.62);
    z-index: 70;
    pointer-events: auto;
  }

  /*
   * Full solid menu panel - never transparent / ghosted.
   * When open, JS moves #site-nav onto <body> so fixed covers the real viewport
   * (avoids sticky/header containing-block traps).
   * background-image fill helps against Brave force-dark invert.
   */
  .site-nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100dvh !important;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0 !important;
    padding: calc(0.75rem + env(safe-area-inset-top, 0px)) 1.15rem
      calc(1.25rem + env(safe-area-inset-bottom, 0px));
    background-color: #ffffff !important;
    background-image: linear-gradient(#ffffff, #f7f9fc) !important;
    color: #0f1c2e !important;
    border: none;
    box-shadow: none;
    z-index: 200 !important;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
  }

  .site-nav.open {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .header-bar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible;
  }

  .site-header,
  .header-inner {
    overflow: visible;
  }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(15, 40, 80, 0.1);
  }

  .nav-drawer-label {
    display: block;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a6d85 !important;
  }

  .nav-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(15, 40, 80, 0.14);
    background: #fff !important;
    color: #0b1f3a !important;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
  }

  /* Book right under close - biggest target, conversion-first */
  .site-nav .nav-drawer-book {
    display: flex !important;
    margin: 0 0 0.65rem;
    min-height: 54px;
    justify-content: center;
    align-items: center;
    border: none !important;
    border-radius: 999px;
    background-color: #1256b8 !important;
    background-image: linear-gradient(160deg, #3b8aef 0%, #1d6fd6 45%, #0b4fad 100%) !important;
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(10, 61, 143, 0.35);
    text-decoration: none;
  }

  .site-nav .nav-drawer-book:hover {
    filter: brightness(1.05);
    box-shadow:
      0 12px 28px rgba(10, 61, 143, 0.38),
      0 0 0 4px rgba(59, 138, 239, 0.18);
  }

  .site-nav .nav-drawer-call {
    display: flex !important;
    margin: 0 0 1rem;
    min-height: 48px;
    justify-content: center;
    align-items: center;
    border: 1.5px solid rgba(10, 61, 143, 0.28) !important;
    border-radius: 999px;
    background-color: #ffffff !important;
    background-image: linear-gradient(#ffffff, #ffffff) !important;
    color: #0b1f3a !important;
    font-weight: 700;
    text-decoration: none;
  }

  .site-nav > a:not(.nav-drawer-book):not(.nav-drawer-call) {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid rgba(15, 40, 80, 0.08);
    color: #0f1c2e !important;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent !important;
  }

  .site-nav > a::after {
    display: none;
  }

  /* Sticky bar: Book dominates (~68%) */
  .sticky-cta:not([hidden]) {
    background-color: #ffffff !important;
    background-image: linear-gradient(#ffffff, #ffffff) !important;
    border-top: 1px solid rgba(15, 40, 80, 0.12);
    box-shadow: 0 -10px 30px rgba(15, 40, 80, 0.14);
    z-index: 65;
  }

  .sticky-cta-call {
    flex: 0 0 30%;
    min-height: 50px;
    background: #fff !important;
    color: #0b1f3a !important;
  }

  .sticky-cta-book {
    flex: 1 1 auto;
    min-height: 50px;
    font-size: 1.02rem;
    font-weight: 800;
    background-color: #1256b8 !important;
    background-image: linear-gradient(160deg, #3b8aef 0%, #1d6fd6 45%, #0b4fad 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(10, 61, 143, 0.35);
  }

  body.has-sticky-cta {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  /* Section CTAs full width */
  .section-cta .btn-primary {
    width: min(100%, 360px);
    min-height: 52px;
    font-weight: 800;
  }

  .about-section {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }

  .about-bg-mesh {
    right: -22%;
    width: min(90vw, 340px);
    height: min(90vw, 340px);
    opacity: 0.55;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    text-align: center;
    justify-items: center;
  }

  /* Stack: photo → logo (clear, not under text) → copy */
  .about-photo-wrap {
    order: 1;
    max-width: 240px;
    width: 100%;
    margin-inline: auto;
  }

  .about-logo-side {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    max-width: 108px;
    width: 108px;
    opacity: 0.95;
    padding: 0.35rem;
    margin: 0.15rem auto 0.35rem;
    filter: drop-shadow(0 10px 22px rgba(0, 12, 40, 0.28));
  }

  .about-logo-side img {
    max-width: 100%;
  }

  .about-copy {
    order: 3;
    max-width: none;
    width: 100%;
  }

  .about-copy h2 {
    max-width: 16ch;
    margin-inline: auto;
    font-size: clamp(1.55rem, 6.8vw, 1.9rem);
  }

  .about-lead,
  .about-copy > p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .about-points {
    text-align: left;
    max-width: none;
    width: 100%;
    margin: 1rem 0 0.85rem;
    gap: 0.45rem;
  }

  .about-points li {
    padding: 0.7rem 0.9rem 0.7rem 2.35rem;
    font-size: 0.94rem;
  }

  .about-verify {
    margin-bottom: 1.1rem !important;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    width: 100%;
    gap: 0.55rem;
  }

  .about-actions .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .about-micro {
    text-align: center;
  }

  /* Mobile .cta-micro forces dark grey — keep About line light on blue */
  .about-section .cta-micro,
  .about-section .about-micro {
    color: rgba(240, 248, 255, 0.95) !important;
  }

  .calendly-cta {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    justify-content: center;
  }

  .contact-grid {
    gap: 1.75rem;
  }

  .contact-direct {
    max-width: 100%;
    gap: 0.55rem;
  }

  .contact-direct .cd-row {
    min-height: 52px;
    padding: 0.85rem 1rem;
  }

  .faq-wrap {
    max-width: none;
  }

  .faq-item summary {
    min-height: 54px;
    padding: 1.05rem 1.1rem;
    padding-right: 2.6rem;
    font-size: 0.98rem;
  }

  .review-card {
    gap: 0.7rem;
  }

  .footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner {
    text-align: center;
    justify-items: center;
    gap: 1.1rem;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 0.55rem;
  }

  .footer-links {
    justify-content: center;
    text-align: center;
    gap: 0.55rem 0.9rem;
    flex-wrap: wrap;
  }

  .footer-legal {
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.45;
    max-width: 34rem;
  }

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

  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .contact-form {
    padding: 1.25rem 1.1rem;
    background: #fff !important;
    border-radius: 18px;
  }

  .field {
    margin-bottom: 0.75rem;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    font-size: 16px; /* prevents iOS zoom */
    background: #fff !important;
    color: #0f1c2e !important;
    border-radius: 12px;
  }

  .field textarea {
    min-height: 110px;
  }

  /* Avoid sticky bar covering last form fields on short phones */
  .contact-section {
    padding-bottom: calc(6.25rem + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta:not([hidden]) {
    gap: 0.5rem;
    padding: 0.7rem 0.8rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Mid desktop: keep logo column readable; compact nav */
@media (min-width: 901px) and (max-width: 1100px) {
  .about-grid {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr) minmax(120px, 170px);
    gap: 1.5rem 1.75rem;
  }

  .about-logo-side {
    max-width: 160px;
  }

  .about-logo-side img {
    max-width: 150px;
  }

  .site-nav {
    gap: 0.1rem 0.75rem;
  }

  .site-nav a {
    font-size: 0.85rem;
  }

  .header-phone span:last-child {
    font-size: 0.88rem;
  }

  .brand-text em {
    display: none;
  }
}

@media (max-width: 560px) {
  .card-grid,
  .card-grid-2,
  .review-grid,
  .fit-grid,
  .process-grid,
  .trust-strip-inner,
  .state-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(15, 40, 80, 0.1);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .header-phone {
    display: none;
  }

  /* Ultra-compact header on small phones */
  .top-banner-short {
    font-size: 0.74rem !important;
  }

  .top-banner-phone .phone-num {
    letter-spacing: -0.01em;
  }

  .brand-chasin-img {
    height: 1.25rem;
    max-width: 5.25rem;
  }

  .brand-coverage {
    font-size: 0.92rem;
  }

  .brand .logo-on-white img {
    width: 44px;
    height: 44px;
  }

  .header-actions .nav-cta {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.84rem !important;
    min-width: 64px;
  }

  .hero-media {
    height: min(48vw, 200px);
    min-height: 160px;
  }

  .hero-panel {
    margin-top: -16px;
    padding-top: 1.15rem;
    padding-bottom: 1.2rem;
  }

  .product-bar-inner {
    letter-spacing: 0.1em;
    font-size: 0.82rem;
    gap: 0.25rem 0.45rem;
  }

  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .btn-pulse {
    animation: none;
  }

  /* Keep sticky Book pulse subtle on small screens for attention */
  .sticky-cta-book {
    animation: soft-pulse 2.8s ease-in-out infinite;
  }
}
