/* ============================================================
   KAYAK CAPITAL — design system v1
   Clean, confident, conventional. Built for hard money.
   ============================================================ */

:root {
  --kayak-blue: #1568B0;
  --kayak-blue-dark: #0E4F89;
  --kayak-blue-darker: #0A3E6E;
  --kayak-blue-light: #E6F0F9;
  --kayak-gray: #808080;
  --kayak-gray-dark: #4A4A4A;
  --ink: #1A2233;
  --ink-2: #2B3344;
  --muted: #5C6677;
  --line: #E5EAF0;
  --bg: #FFFFFF;
  --bg-soft: #F7FAFD;
  --bg-deep: #0A1929;
  --gold: #F4B942;
  --gold-deep: #DDA431;
  --green-trust: #10804F;
  --shadow-xs: 0 1px 2px rgba(15,45,79,.06);
  --shadow-sm: 0 1px 2px rgba(15,45,79,.06), 0 4px 12px rgba(15,45,79,.06);
  --shadow-md: 0 4px 12px rgba(15,45,79,.10), 0 24px 60px rgba(15,45,79,.16);
  --shadow-lg: 0 4px 14px rgba(21,104,176,.28);
  --r-sm: 8px;
  --r: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --t: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3, h4, h5 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--kayak-blue);
  margin: 0 0 16px;
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.6vw, 40px); }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
em { font-style: normal; }  /* v1: kill the editorial italics */

p { margin: 0 0 16px; line-height: 1.65; color: var(--ink-2); }
.lede { font-size: 19px; line-height: 1.55; color: var(--muted); font-weight: 400; }

a { color: var(--kayak-blue); text-decoration: none; transition: color .18s var(--t); }
a:hover { color: var(--kayak-blue-dark); text-decoration: underline; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kayak-blue);
  margin-bottom: 14px;
}
.eyebrow::before { content: none; }

.tabnum { font-variant-numeric: tabular-nums; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   STATE SWITCHER (AZ ↔ SC)
   ============================================================ */
.state-switcher { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.state-switcher .label {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.state-toggle {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px 5px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s var(--t), border-color .2s var(--t);
}
.state-toggle:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.24); }
.state-toggle .flag {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,185,66,.25);
}
.state-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--kayak-blue-darker);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 6px;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  z-index: 60;
  display: none;
}
.state-menu.open { display: block; }
.state-menu a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,.85) !important;
  margin: 0;
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 600;
  transition: background .18s var(--t);
}
.state-menu a:hover { background: rgba(255,255,255,.08); color: var(--gold) !important; }
.state-menu a small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.state-menu a.active small { color: var(--gold); }

/* ============================================================
   CROSS-PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--gold);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  padding: 10px 32px;
  position: relative;
  letter-spacing: 0.005em;
}
.promo-banner a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo-banner a:hover { color: var(--kayak-blue-darker); }
.promo-banner .promo-dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  opacity: 0.5;
  padding: 4px 8px;
  line-height: 1;
}
.promo-banner .promo-dismiss:hover { opacity: 1; }
.promo-banner.hidden { display: none; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.top-bar {
  background: var(--kayak-blue-darker);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  padding: 9px 0;
}
.top-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  margin-left: 22px;
  text-decoration: none;
}
.top-bar a:first-of-type { margin-left: 0; }
.top-bar a:hover { color: var(--gold); }
.top-bar .phone { color: #fff; font-weight: 700; letter-spacing: 0.02em; }
.top-bar .phone-icon { display: inline-block; width: 12px; height: 12px; vertical-align: -1px; margin-right: 6px; }

/* ============================================================
   HEADER NAV
   ============================================================ */
header.site-header {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
}
.brand img { height: 42px; display: block; transition: opacity .2s var(--t); }
.brand:hover img { opacity: .85; }
nav.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
nav.main-nav a:hover { color: var(--kayak-blue); }
nav.main-nav a.active { color: var(--kayak-blue); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.005em;
  transition: transform .18s var(--t), background .18s var(--t), box-shadow .18s var(--t), color .18s var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--kayak-blue);
  color: #fff !important;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
  background: var(--kayak-blue-dark);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff !important;
}
.btn-ghost {
  background: transparent;
  color: var(--kayak-blue) !important;
  border: 1.5px solid var(--kayak-blue);
}
.btn-ghost:hover {
  background: var(--kayak-blue-light);
  text-decoration: none;
  color: var(--kayak-blue-dark) !important;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink) !important;
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); text-decoration: none; }
.btn-large { padding: 16px 32px; font-size: 16px; }
.btn-arrow { transition: transform .25s var(--t); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--kayak-blue); padding: 6px; }
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  nav.main-nav ul { display: none; flex-direction: column; gap: 14px; align-items: flex-start; padding: 18px 0; width: 100%; }
  nav.main-nav ul.open { display: flex; }
  .nav-inner { flex-wrap: wrap; }
  nav.main-nav { flex-basis: 100%; }
}

/* ============================================================
   HERO — centered, with kayak photo (or fallback waves)
   ============================================================ */
.hero {
  position: relative;
  /* Soft white wash at top for text legibility; photo shows through bottom 60% */
  background-image:
    linear-gradient(180deg,
      rgba(255,255,255,0.75) 0%,
      rgba(255,255,255,0.55) 30%,
      rgba(255,255,255,0.20) 60%,
      rgba(255,255,255,0.05) 100%),
    url('hero-kayak.jpg'),
    linear-gradient(180deg, var(--kayak-blue-light) 0%, #FFFFFF 100%);
  background-size: cover, cover, auto;
  background-position: top, center bottom, top;
  background-repeat: no-repeat;
  padding: 80px 0 240px;
  overflow: hidden;
  text-align: center;
}
/* Same path works from /sc/ since CSS is in /assets/ */
/* When photo is showing, hide the SVG waves (they're a fallback only) */
.hero-water { display: none; }
/* Boost text contrast against photo */
.hero h1 { text-shadow: 0 2px 12px rgba(255,255,255,0.7); }
.hero .tagline { text-shadow: 0 1px 8px rgba(255,255,255,0.7); }
.hero .sub { text-shadow: 0 1px 6px rgba(255,255,255,0.7); }
.hero-stats { background: rgba(255,255,255,0.85); border-radius: 12px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); padding: 28px 0 22px !important; margin-top: 36px !important; border-top: none !important; }
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kayak-blue);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-trust);
  box-shadow: 0 0 0 4px rgba(16,128,79,.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,128,79,.15); }
  50% { box-shadow: 0 0 0 8px rgba(16,128,79,.05); }
}
.hero h1 {
  color: var(--kayak-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
}
.hero h1 .accent { color: var(--kayak-blue); }    /* keep flat — v1 doesn't use color accents */
.hero h1 br + .accent { display: inline; }
.hero .tagline {
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--kayak-blue-dark);
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero .sub {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin: 0 0 30px;
}
.hero-form {
  display: flex;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  padding: 7px;
  max-width: 580px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
}
.hero-form input {
  flex: 1;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  border-radius: 999px;
}
.hero-form input::placeholder { color: var(--muted); }
.hero-form .btn { font-size: 14.5px; padding: 13px 26px; }
.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: 12px; }
.hero-meta {
  display: flex; gap: 6px; align-items: center;
  font-size: 13.5px; color: var(--muted);
  margin-left: 4px;
}
.hero-meta strong { color: var(--ink); font-weight: 700; }

/* Kayak waves SVG at bottom of hero */
.hero-water {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  z-index: 1;
}

/* Stats strip below hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 56px auto 0;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.hero-stats .stat {
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat-num {
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1;
  color: var(--kayak-blue);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero-stats .stat-num em { color: var(--kayak-blue-dark); font-weight: 700; }
.hero-stats .stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
@media (max-width: 880px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero-stats .stat { padding: 0 14px; }
  .hero-stats .stat:nth-child(2) { border-right: none; }
}

.hero-kayak { display: none; } /* v1 doesn't use the corner silhouette */

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: 80px 0; }
.section-tight { padding: 60px 0; }
.section-soft { background: var(--bg-soft); }
.section-cream { background: var(--bg); }
.section-deep {
  background: var(--bg-deep);
  color: rgba(255,255,255,.92);
}
.section-deep h1, .section-deep h2, .section-deep h3 { color: #fff; }
.section-deep p { color: rgba(255,255,255,.8); }
.section-deep .eyebrow { color: var(--gold); }

.section-head { max-width: 760px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-head .lede { color: var(--muted); font-size: 18px; }

/* ============================================================
   "WHY KAYAK" — feature grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 740px) { .why-grid { grid-template-columns: 1fr; } }
.why-cell {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--t), box-shadow .25s var(--t), border-color .25s var(--t);
}
.why-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--kayak-blue-light); }
.why-cell .ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--kayak-blue-light);
  border-radius: 12px;
  color: var(--kayak-blue);
  margin-bottom: 6px;
}
.why-cell h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--kayak-blue-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.why-cell p { color: var(--muted); margin: 0; font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head { background: var(--bg-soft); }
.compare-row .cell {
  padding: 18px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-row .cell.label {
  font-weight: 700;
  color: var(--kayak-blue-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-row.head .cell {
  font-size: 18px;
  font-weight: 800;
  padding: 22px 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.compare-row.head .cell.label { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; }
.compare-row .cell.kayak {
  background: var(--kayak-blue);
  color: #fff;
  font-weight: 800;
  justify-content: center;
}
.compare-row.head .cell.kayak {
  background: var(--kayak-blue-darker);
  color: #fff;
}
.compare-row .cell.other {
  color: var(--muted);
  justify-content: center;
}
.compare-row.head .cell.other {
  color: var(--ink);
  background: #F0F4F9;
}
.compare-row .cell.kayak .check {
  width: 16px; height: 16px;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  font-size: 11px;
}
.compare-savings {
  background: var(--gold);
  color: var(--ink);
  padding: 18px 28px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}
.compare-savings strong { font-weight: 800; font-size: 17px; }

/* ============================================================
   PROCESS — circled numbers, centered
   ============================================================ */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 880px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-list { grid-template-columns: 1fr; } }
.process-step {
  text-align: center;
  padding: 0 8px;
}
.process-step .num {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--kayak-blue);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(21,104,176,.28);
  font-style: normal;
}
.process-step h3 {
  font-size: 17px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-weight: 800;
}
.process-step p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ============================================================
   PULL QUOTE / TESTIMONIAL FEATURE
   ============================================================ */
.pull-quote {
  background: var(--bg-deep);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pull-quote-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; padding: 0 28px; }
.pull-quote blockquote {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  margin: 0 0 28px;
}
.pull-quote blockquote em { color: var(--gold); font-style: normal; font-weight: 700; }
.pull-quote cite {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.02em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pull-quote cite::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.testi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi .stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
  font-style: italic;
  font-weight: 400;
}
.testi cite {
  font-style: normal;
  font-weight: 700;
  color: var(--kayak-blue-dark);
  font-size: 14px;
}
.testi cite small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 12.5px;
  margin-top: 2px;
}

/* ============================================================
   STATS BAND (alt — solid blue band)
   ============================================================ */
.stats-band {
  background: var(--kayak-blue);
  color: #fff;
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.stat-num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-num small {
  font-size: 18px;
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-top: 10px;
  font-weight: 700;
}

/* ============================================================
   SEO CONTENT BLOCK
   ============================================================ */
.seo-block { padding: 80px 0; }
.seo-block .container-narrow { font-size: 17px; }
.seo-block h2 {
  color: var(--kayak-blue);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.seo-block p { font-size: 17px; line-height: 1.75; color: var(--ink-2); margin-bottom: 18px; }

/* ============================================================
   PAGE HEADER (sub-pages) — centered, blue uppercase
   ============================================================ */
.page-header {
  background: linear-gradient(180deg, var(--kayak-blue-light) 0%, #FFFFFF 100%);
  padding: 70px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-header .container { max-width: 880px; }
.page-header .eyebrow { margin-bottom: 18px; }
.page-header h1 {
  color: var(--kayak-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.page-header .subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 50px 22px 26px;
  font-weight: 700;
  color: var(--kayak-blue-dark);
  cursor: pointer;
  font-size: 16.5px;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--kayak-blue);
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 26px 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.faq-item .faq-body p { margin-bottom: 14px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; max-width: 320px; } }
.team-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--kayak-blue-light), var(--kayak-blue));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 36px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(15,45,79,.18);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card h3 {
  font-size: 20px;
  color: var(--kayak-blue-dark);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.team-card .role {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 700;
}
.team-card a { font-size: 14px; word-break: break-all; }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 740px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  font-weight: 700;
  color: var(--kayak-blue-dark);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--t), box-shadow .25s var(--t), color .2s var(--t);
  text-decoration: none;
}
.area-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--kayak-blue);
  text-decoration: none;
}
.area-card .pin {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--kayak-blue-light);
  border-radius: 50%;
  margin: 0 auto 12px;
  color: var(--kayak-blue);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 740px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.blog-card .date {
  font-size: 12px;
  color: var(--kayak-blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 22px;
  color: var(--kayak-blue-dark);
  margin: 0 0 12px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.blog-card p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
}
.blog-card .read-more {
  font-weight: 700;
  font-size: 13px;
  color: var(--kayak-blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-post { max-width: 720px; margin: 0 auto; padding: 60px 28px; }
.blog-post .meta {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 18px;
}
.blog-post h1 {
  font-size: clamp(30px, 4.2vw, 44px);
  color: var(--kayak-blue);
  margin-bottom: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.blog-post h2 {
  font-size: 26px;
  color: var(--kayak-blue);
  margin: 44px 0 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.blog-post h3 { font-size: 20px; color: var(--ink); margin: 28px 0 12px; font-weight: 700; }
.blog-post p { font-size: 17px; line-height: 1.75; color: var(--ink-2); margin-bottom: 18px; }
.blog-post p:first-of-type { font-size: 19px; color: var(--ink); }
.blog-post ul, .blog-post ol { padding-left: 24px; margin-bottom: 22px; font-size: 17px; }
.blog-post li { margin-bottom: 8px; line-height: 1.7; color: var(--ink-2); }
.blog-post strong { color: var(--ink); font-weight: 700; }
.blog-post .post-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--kayak-blue);
  text-align: center;
}
.blog-post .post-cta h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--kayak-blue-dark);
}

/* ============================================================
   RECENTLY FUNDED CARDS
   ============================================================ */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 980px) { .deals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .deals-grid { grid-template-columns: 1fr; } }
.deal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.deal-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.deal-card h3 {
  font-size: 16px;
  color: var(--kayak-blue);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.deal-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  gap: 12px;
}
.deal-label { color: var(--muted); font-weight: 600; }
.deal-val { color: var(--ink); font-weight: 700; text-align: right; }
.deal-val.zero { color: var(--green-trust); }

/* ============================================================
   APPLY / PAY FORM PAGES
   ============================================================ */
.form-embed {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-embed h2 { font-size: 26px; margin-bottom: 14px; text-transform: uppercase; }
.form-embed iframe { width: 100%; min-height: 720px; border: none; }
.form-placeholder {
  background: var(--bg-soft);
  padding: 48px 32px;
  text-align: center;
  border-radius: var(--r);
  border: 1.5px dashed var(--line);
}
.form-placeholder .icon {
  width: 60px; height: 60px;
  background: var(--kayak-blue-light);
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  color: var(--kayak-blue);
}
.form-placeholder h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--kayak-blue-dark);
  text-transform: uppercase;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 740px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  text-align: center;
}
.contact-card h3 {
  font-size: 22px;
  color: var(--kayak-blue-dark);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.contact-card .phone-large {
  font-size: 32px;
  font-weight: 800;
  color: var(--kayak-blue);
  margin: 14px 0 10px;
  display: block;
}
.contact-card .label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 6px; }

/* ============================================================
   RESOURCE LIST
   ============================================================ */
.resource-list { max-width: 820px; margin: 0 auto; list-style: none; padding: 0; }
.resource-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  box-shadow: var(--shadow-xs);
}
.resource-list h3 {
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--kayak-blue-dark);
  text-transform: uppercase;
}
.resource-list p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--kayak-blue) 0%, var(--kayak-blue-darker) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 900;
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary {
  background: var(--gold);
  color: var(--ink) !important;
  box-shadow: 0 4px 14px rgba(244,185,66,.35);
}
.cta-banner .btn-primary:hover { background: #fff; color: var(--kayak-blue) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 60px 0 28px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
footer.site-footer h5 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 14px;
  font-weight: 800;
}
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer li { margin-bottom: 8px; }
footer.site-footer a { color: rgba(255,255,255,.72); }
footer.site-footer a:hover { color: var(--gold); text-decoration: none; }
.footer-logo {
  background: #fff;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.footer-logo img { height: 32px; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   APPLY PAGE — compact inline layout, form above the fold
   ============================================================ */
.apply-section {
  padding: 14px 0 22px;
  background: linear-gradient(180deg, #EAF3FB 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--line);
}
.apply-section .apply-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 14px;
  padding: 0 28px;
}
.apply-section .apply-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kayak-blue);
  margin-bottom: 4px;
}
.apply-section h1 {
  font-size: clamp(20px, 2.2vw, 26px);
  text-transform: uppercase;
  font-weight: 900;
  color: var(--kayak-blue);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 6px;
}
.apply-section .apply-subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   APPLY FORM — final-step loan request
   ============================================================ */
.apply-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 32px 28px;
  box-shadow: var(--shadow-md);
  max-width: 880px;
  margin: 0 auto;
}
.apply-form h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 8px;
}
.apply-form .form-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 36px;
}
.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 18px;
}
@media (max-width: 640px) { .apply-grid { grid-template-columns: 1fr; gap: 10px; } }
.apply-grid label,
.apply-grid .field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.apply-grid .field-wide { grid-column: 1 / -1; }
.apply-grid .field-label,
.apply-grid label > span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--kayak-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.apply-grid input,
.apply-grid select,
.apply-grid textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  transition: border-color .18s var(--t), box-shadow .18s var(--t);
  outline: none;
}
.apply-grid input::placeholder { color: var(--muted-2, #8B92A3); }
.apply-grid input:focus,
.apply-grid select:focus,
.apply-grid textarea:focus {
  border-color: var(--kayak-blue);
  box-shadow: 0 0 0 4px rgba(21,104,176,.12);
}
.btn-full-width {
  width: 100%;
  font-size: 16px;
  padding: 14px 28px;
}
.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 0;
}
.hidden-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* eCheck form — section headings and auth block */
.form-section-heading {
  font-size: 13px;
  font-weight: 800;
  color: var(--kayak-blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 24px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.form-section-heading:first-of-type { margin-top: 0; }
.apply-grid select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231568B0' stroke-width='2.4' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.auth-block {
  margin: 28px 0 22px;
  padding: 22px 24px;
  background: var(--bg-soft);
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.auth-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--kayak-blue);
  cursor: pointer;
}
.auth-checkbox span { display: block; }
.auth-block .field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--kayak-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}
.auth-block input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  outline: none;
  transition: border-color .18s var(--t), box-shadow .18s var(--t);
}
.auth-block input[type="text"]:focus {
  border-color: var(--kayak-blue);
  box-shadow: 0 0 0 4px rgba(21,104,176,.12);
}

/* ============================================================
   GOOGLE PLACES AUTOCOMPLETE (.pac-container)
   ============================================================ */
.pac-container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  margin-top: 8px;
  font-family: inherit;
  z-index: 9999;
  overflow: hidden;
}
.pac-item {
  padding: 12px 18px;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover, .pac-item-selected { background: var(--kayak-blue-light); }
.pac-item-query { font-weight: 700; color: var(--kayak-blue-dark); font-size: 15px; }
.pac-icon { background-image: none; }
.pac-icon-marker {
  width: 18px; height: 18px;
  margin-right: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231568B0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.pac-matched { color: var(--kayak-blue); }
.pac-logo:after {
  margin: 6px 14px 8px;
  background-position-y: 4px;
}

/* ============================================================
   ACCESSIBILITY + ANIMATIONS
   ============================================================ */
.skip-nav { position: absolute; left: -9999px; }
.skip-nav:focus {
  left: 12px; top: 12px;
  background: var(--kayak-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  z-index: 9999;
  text-decoration: none;
  font-weight: 700;
}
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--t), transform .7s var(--t); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE FLOATING "CALL BARRY" BUTTON
   Mobile-only conversion CTA. Desktop has the phone in the top bar.
   ============================================================ */
.fab-call {
  display: none; /* desktop hides via default */
}
@media (max-width: 768px) {
  .fab-call {
    display: flex;
    position: fixed;
    bottom: 16px;
    right: 16px;
    left: 16px;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #1568b0 0%, #0f4d85 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(15,77,133,.45), 0 4px 10px rgba(0,0,0,.18);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.01em;
    animation: fab-pulse 2.6s ease-in-out infinite;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    /* Respect iOS bottom safe area */
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
  .fab-call:active {
    transform: scale(0.98);
    box-shadow: 0 6px 16px rgba(15,77,133,.45);
  }
  .fab-call .fab-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
  }
  .fab-call .fab-icon svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
  }
  .fab-call .fab-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
  }
  .fab-call .fab-primary {
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.01em;
  }
  .fab-call .fab-sub {
    font-weight: 600;
    font-size: 11px;
    opacity: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 1px;
  }
  .fab-call .fab-phone {
    margin-left: auto;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: rgba(255,255,255,.16);
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.01em;
  }
  /* Shrink phone pill on smallest screens */
  @media (max-width: 380px) {
    .fab-call { padding-left: 16px; padding-right: 16px; gap: 10px; }
    .fab-call .fab-phone { font-size: 13px; padding: 4px 8px; }
    .fab-call .fab-primary { font-size: 16px; }
  }
  /* Add padding to the bottom of body so the button doesn't cover footer content */
  body { padding-bottom: 78px; }
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(15,77,133,.45), 0 4px 10px rgba(0,0,0,.18), 0 0 0 0 rgba(245,166,35,0); }
  50%      { box-shadow: 0 10px 28px rgba(15,77,133,.45), 0 4px 10px rgba(0,0,0,.18), 0 0 0 12px rgba(245,166,35,0.18); }
}
@media (prefers-reduced-motion: reduce) {
  .fab-call { animation: none; }
}
