/* =========================================================
   CarePulse Trans — Design Tokens
   ========================================================= */
:root {
  /* Brand colors — sampled from the CarePulse Trans logo */
  --navy: #0F2A43;         /* deep clinical trust — header/footer */
  --navy-2: #143A5C;       /* secondary navy for gradients/cards on dark */
  --navy-3: #0B2036;
  --blue: #1671C7;         /* primary brand blue */
  --blue-bright: #1DA1F5;  /* icon highlight blue */
  --blue-pale: #E9F3FC;    /* pale blue tint for backgrounds */
  --green: #5EA82E;        /* accessible brand green */
  --green-bright: #7CC142;
  --green-pale: #EEF7E4;   /* pale green tint */
  --bg: #F7FAFB;
  --surface: #FFFFFF;
  --ink: #142330;
  --ink-soft: #4C5F6D;
  --ink-faint: #7C8D99;
  --line: #E2E9EC;
  --shadow-sm: 0 2px 10px rgba(15, 42, 67, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 42, 67, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 42, 67, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
}

/* =========================================================
   Reset & base
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
body.nav-open { overflow: hidden; }

/* Eyebrow / labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
}
.section-head { max-width: 700px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); }
.section-head p { font-size: 18px; }

section { padding: 88px 0; }
.section-alt { background: var(--surface); }
.section-tint { background: var(--blue-pale); }

/* Pulse-line signature divider — echoes the EKG line in the CarePulse mark */
.pulse-rule {
  width: 100%;
  max-width: 220px;
  height: 28px;
  margin: 10px 0 0;
}
.pulse-rule path {
  fill: none;
  stroke: var(--green-bright);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pulse-rule.on-dark path { stroke: var(--blue-bright); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #135ba8; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent {
  background: var(--green-bright);
  color: var(--navy-3);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover { background: #6cae37; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.25); }

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-top a { color: rgba(255,255,255,.9); }
.header-top a:hover { color: #fff; }
.header-top .divider { opacity: .35; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-word { display: none; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-pill);
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav a.is-active {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.header-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-2);
  padding: 8px 24px 20px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav .mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

@media (min-width: 1040px) {
  .main-nav { display: block; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
  .brand-word { display: block; }
  .brand-word b { font-family: var(--font-display); color: #fff; font-size: 19px; display:block; }
  .brand-word span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-bright); }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  overflow: hidden;
  padding: 56px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 85% 10%, rgba(29,161,245,.18), transparent 60%),
    radial-gradient(500px 260px at 10% 90%, rgba(124,193,66,.14), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { color: #fff; padding-bottom: 56px; }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--green-bright);
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 56px);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero-lede {
  color: rgba(255,255,255,.82);
  font-size: 19px;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-strip span { display: inline-flex; align-items: center; gap: 8px; }
.hero-strip span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}
.hero-media {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.hero-media-caption {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  background: rgba(15,42,67,.72);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 30px; }
  .hero-copy { padding-bottom: 70px; }
  .hero-media { margin: 0 0 0 auto; }
}

/* =========================================================
   Intro
   ========================================================= */
.intro { padding-top: 72px; }
.intro-grid {
  display: grid;
  gap: 40px;
}
.intro-text h2 { font-size: clamp(26px, 3vw, 34px); }
.intro-text p { font-size: 18px; }
.intro-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.intro-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.intro-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display:block;
}
@media (min-width: 860px) {
  .intro-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .intro-cards { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Services
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { margin-bottom: 0; font-size: 15.5px; }

.notice-card {
  margin-top: 30px;
  background: var(--green-pale);
  border: 1px solid #d6ebc3;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--navy);
  font-size: 15.5px;
}
.notice-card svg { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.notice-card strong { display:block; margin-bottom: 2px; font-family: var(--font-display); }

/* =========================================================
   Why choose us
   ========================================================= */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px 30px;
}
@media (min-width: 700px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  display: flex;
  gap: 16px;
}
.benefit-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
}
.benefit h3 { font-size: 17.5px; margin-bottom: 4px; }
.benefit p { font-size: 15px; margin-bottom: 0; }

/* =========================================================
   How it works
   ========================================================= */
.steps-wrap { position: relative; }
.steps-line {
  display: none;
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .steps-line { display: block; position: absolute; top: 27px; left: 5%; right: 5%; height: 24px; }
  .steps-line path { fill:none; stroke: var(--green-bright); stroke-width: 2.5; stroke-dasharray: 1 10; stroke-linecap: round; }
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 15px; margin-bottom: 0; }

/* =========================================================
   Service area
   ========================================================= */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .area-grid { grid-template-columns: .95fr 1.05fr; } }
.area-map {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.1;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.area-map svg { width: 100%; height: 100%; }
.chip-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

/* =========================================================
   Safety
   ========================================================= */
.safety-section { background: var(--navy); color: #fff; }
.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .safety-grid { grid-template-columns: 1fr 1fr; } }
.safety-section .eyebrow { color: var(--blue-bright); }
.safety-section h2 { color: #fff; }
.safety-section p { color: rgba(255,255,255,.75); }
.safety-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.safety-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.safety-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 26px 0;
}
@media (min-width: 560px) { .safety-list { grid-template-columns: 1fr 1fr; } }
.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: rgba(255,255,255,.88);
}
.safety-list svg { flex-shrink: 0; color: var(--green-bright); margin-top: 3px; }
.safety-note {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 15px;
  color: rgba(255,255,255,.8);
}

/* =========================================================
   Facilities
   ========================================================= */
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) { .facilities-grid { grid-template-columns: 1fr .95fr; } }
.facility-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.facility-audience span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}

/* =========================================================
   Forms
   ========================================================= */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 620px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.field label .opt { color: var(--ink-faint); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
}
.field textarea { resize: vertical; min-height: 100px; }
.radio-row { display: flex; gap: 18px; padding-top: 6px; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-family: var(--font-body); color: var(--ink); }
.form-disclaimer {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-top: 18px;
}
.form-confirm {
  margin-top: 18px;
  background: var(--green-pale);
  border: 1px solid #d6ebc3;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  color: var(--navy);
  font-size: 15px;
  display: flex;
  gap: 10px;
}
.form-confirm svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   Book a Ride
   ========================================================= */
.book-section {
  background: linear-gradient(180deg, var(--blue-pale), var(--bg));
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 980px) { .book-grid { grid-template-columns: .8fr 1.2fr; align-items: start; } }
.book-side { position: sticky; top: 110px; }
.book-side-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.book-side-card h3 { color: #fff; font-size: 20px; }
.book-side-card p { color: rgba(255,255,255,.75); font-size: 15px; }
.book-side-list { margin: 18px 0; display: flex; flex-direction: column; gap: 12px; }
.book-side-list li { display:flex; align-items:center; gap:10px; font-size: 14.5px; color: rgba(255,255,255,.85); }
.book-side-list svg { color: var(--green-bright); flex-shrink: 0; }
.book-side-phone {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
}

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: .9fr 1.1fr; } }
.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-media img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.mission-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin: 24px 0 30px;
}
.mission-box p { color: #fff; font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 0; line-height: 1.5; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 560px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-pill {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}
.value-pill h4 { font-family: var(--font-display); font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.value-pill p { font-size: 13.5px; margin: 0; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
}
.contact-info-card h3 { color: #fff; font-size: 20px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin: 18px 0; }
.contact-line svg { color: var(--green-bright); flex-shrink: 0; margin-top: 3px; }
.contact-line a, .contact-line span { color: rgba(255,255,255,.88); font-size: 15.5px; }
.contact-line strong { display:block; font-family: var(--font-display); color: #fff; font-size: 14px; margin-bottom: 2px;}
.contact-media { border-radius: var(--radius-md); overflow: hidden; margin-top: 22px; }
.contact-media img { aspect-ratio: 16/10; object-fit: cover; }

/* =========================================================
   Emergency banner
   ========================================================= */
.emergency-banner {
  background: #FDECEC;
  border-top: 1px solid #f7cfcf;
  border-bottom: 1px solid #f7cfcf;
  padding: 16px 0;
}
.emergency-banner .container {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.emergency-banner svg { color: #C23B3B; flex-shrink: 0; }
.emergency-banner strong { color: #8A2020; font-family: var(--font-display); font-size: 15px; font-weight: 700; }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #0c2740 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); }
.final-cta p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 560px; margin-left:auto; margin-right:auto; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-3); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14.5px; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
}
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   Mobile sticky action bar
   ========================================================= */
.mobile-actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15,42,67,.12);
}
.mobile-actionbar .btn { flex: 1; }
@media (min-width: 1040px) { .mobile-actionbar { display: none; } }
@media (max-width: 1039px) { body { padding-bottom: 74px; } }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
