/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --white: #ffffff;
  --indigo: #2b2d42;
  --indigo-soft: #454864;
  --indigo-deep: #1c1d2e;
  --grey: #8d99ae;
  --grey-light: #eef0f4;
  --grey-lighter: #f8f9fb;
  --border: #e2e5ec;

  /* Accent colours: sage = action (buttons, focus states), periwinkle = passive accent (borders, highlights) */
  --sage: #85b09a;
  --sage-deep: #6d907e;
  --periwinkle: #b9d9eb;
  --periwinkle-deep: #8fbcd6;

  --text-primary: var(--indigo);
  --text-muted: var(--grey);
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #b9c0cd;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(43, 45, 66, 0.06);
  --shadow-md: 0 12px 32px rgba(43, 45, 66, 0.10);
  --shadow-lg: 0 24px 56px rgba(43, 45, 66, 0.16);
  --container-width: 1180px;

  /* Mobile-first spacing scale — grows at larger breakpoints */
  --space-section: 64px;
  --space-gap: 20px;
}

@media (min-width: 640px) {
  :root { --space-section: 88px; --space-gap: 24px; }
}
@media (min-width: 1024px) {
  :root { --space-section: 120px; --space-gap: 28px; }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Lexend', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) {
  .container { padding: 0 32px; }
}

h1, h2, h3 { line-height: 1.18; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.02em; color: var(--indigo); }
h1 { font-size: clamp(2rem, 7vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--indigo); }

.text-accent { position: relative; white-space: nowrap; }
.text-accent::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.32em;
  background: var(--sage);
  z-index: -1;
  border-radius: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--grey-light);
  color: var(--indigo-soft);
  margin-bottom: 18px;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
@media (min-width: 480px) { .header-inner { padding: 16px 20px; } }
@media (min-width: 640px) { .header-inner { padding: 16px 32px; } }
.logo {
  color: var(--indigo);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-shrink: 1;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.75; }
.logo-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.logo span { color: var(--grey); }
.logo-icon { display: block; border-radius: 8px; flex-shrink: 0; transition: transform 0.25s ease; }
.logo:hover .logo-icon { transform: scale(1.08); }
@media (min-width: 480px) { .logo { font-size: 1.05rem; } }
.header-nav { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone, .header-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
  display: none;
}
.header-phone:hover, .header-link:hover { color: var(--indigo); }
@media (min-width: 860px) {
  .header-phone, .header-link { display: inline; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.96rem;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
@media (prefers-reduced-motion: reduce) {
  .btn::before { display: none; }
}
.btn-primary {
  background: var(--periwinkle);
  color: var(--indigo);
  box-shadow: 0 4px 16px rgba(185, 217, 235, 0.45);
}
.btn-primary:hover {
  background: var(--periwinkle-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(185, 217, 235, 0.55);
}
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 17px 30px; font-size: 1.02rem; }
.btn-small { padding: 10px 16px; font-size: 0.86rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 40px 0 var(--space-section); background: var(--white); position: relative; overflow: hidden; }
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .hero-inner { flex-direction: row; align-items: flex-start; gap: 56px; }
  .hero-copy { flex: 1.05; }
  .hero-form-card { flex: 1; }
}
.hero-copy h1 { max-width: 16ch; }
.hero-sub { font-size: 1.08rem; color: var(--text-muted); max-width: 50ch; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 28px 0 32px; }
.hero-cta-note { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.trust-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) {
  .trust-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; }
}
.trust-badges li { font-weight: 500; font-size: 0.92rem; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.badge-icon { color: var(--sage-deep); font-weight: 800; flex-shrink: 0; }

/* Hero photo (homepage) and city banner photo (location pages) */
.hero-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  display: block;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: photo-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}
.hero-banner {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  display: block;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: photo-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}
@keyframes photo-in { to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-photo, .hero-banner { animation: none; opacity: 1; transform: none; }
}

/* Hero form card */
.hero-form-card {
  background: var(--white);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 26px 22px;
}
@media (min-width: 640px) { .hero-form-card { padding: 32px; } }
.hero-form-card h2 { font-size: 1.3rem; }
.form-intro { color: var(--text-muted); margin-top: 0; margin-bottom: 22px; font-size: 0.94rem; }
.form-row { margin-bottom: 16px; }
.form-row-split { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .form-row-split { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(133, 176, 154, 0.22);
}
textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent-row { margin-bottom: 18px; }
.consent-label { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; font-size: 0.84rem; color: var(--text-muted); }
.consent-label input { margin-top: 3px; width: auto; }
.form-status { min-height: 1.4em; margin: 12px 0 0; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.form-status.success { color: var(--indigo); }
.form-status.error { color: #b3261e; }
.status-check { width: 20px; height: 20px; flex-shrink: 0; }
.status-check circle { stroke: var(--indigo); }
.status-check path {
  stroke: var(--indigo);
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: draw-check 0.5s ease forwards 0.15s;
}
@keyframes draw-check { to { stroke-dashoffset: 0; } }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
@media (min-width: 640px) { .section-head { margin-bottom: 52px; } }
.section-sub { color: var(--text-muted); font-size: 1.02rem; }
.section-alt { background: var(--grey-lighter); }

/* Cost of waiting */
.cost-section { padding: var(--space-section) 0; background: var(--white); }
.cost-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-gap); }
@media (min-width: 640px) { .cost-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cost-grid { grid-template-columns: repeat(3, 1fr); } }
.cost-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.cost-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cost-icon { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.cost-card p { color: var(--text-muted); margin: 0; font-size: 0.94rem; }
.cost-card-highlight { background: var(--indigo); border: none; color: #fff; }
.cost-card-highlight h3 { color: #fff; }
.cost-card-highlight p { color: var(--text-on-dark-muted); }

/* How it works */
.how-it-works { padding: var(--space-section) 0; background: var(--white); }
.steps { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; }
.step-photo {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  box-shadow: var(--shadow-sm);
}
.step-number {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--indigo); color: #fff; font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* Timeline / your choice */
.timeline-section { padding: var(--space-section) 0; background: var(--grey-lighter); }
.timeline-inner { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 1024px) { .timeline-inner { flex-direction: row; align-items: center; gap: 56px; } .timeline-copy, .timeline-compare { flex: 1; } }
.timeline-copy p { color: var(--text-muted); font-size: 1.02rem; }
.timeline-compare { display: grid; gap: 20px; }
.compare-card { border-radius: var(--radius-md); padding: 26px; }
.compare-card h3 { margin-bottom: 14px; }
.compare-card ul { margin: 0; padding-left: 20px; }
.compare-card li { margin-bottom: 8px; font-size: 0.93rem; }
.compare-card-muted { background: var(--white); border: 1px solid var(--border); color: var(--text-muted); }
.compare-card-muted h3 { color: var(--text-primary); }
.compare-card-highlight { background: var(--indigo); color: #fff; }
.compare-card-highlight h3 { color: #fff; }

/* Situations */
.situations-section { padding: var(--space-section) 0; background: var(--white); }
.situations-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-gap); }
@media (min-width: 640px) { .situations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .situations-grid { grid-template-columns: repeat(3, 1fr); } }
.situation-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.situation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-deep); }
.situation-card h3 { color: var(--indigo); font-size: 1.02rem; }
.situation-card p { color: var(--text-muted); margin: 0; font-size: 0.93rem; }

/* Locations grid */
.locations-section { padding: var(--space-section) 0; background: var(--grey-lighter); }
.locations-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-gap); }
@media (min-width: 640px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
.location-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 22px; text-decoration: none; color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sage-deep); }
.location-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--indigo);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.location-card h3 { margin: 0 0 2px; color: var(--text-primary); font-size: 1rem; }
.location-card p { margin: 0; color: var(--text-muted); font-size: 0.87rem; }
.location-card .chevron { margin-left: auto; color: var(--indigo); font-size: 1.3rem; }

/* Why us */
.why-us { background: var(--white); padding: var(--space-section) 0; }
.why-us-inner { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 1024px) {
  .why-us-inner { flex-direction: row; align-items: center; gap: 56px; }
  .why-us-photo-col, .why-us-content-col { flex: 1; }
}
.why-us-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.why-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-gap); }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item { background: var(--white); border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--border); }
.why-item h3 { color: var(--indigo); font-size: 1.02rem; }
.why-item p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

/* Worked-example comparison table */
.worked-example-section { padding: var(--space-section) 0; background: var(--grey-lighter); }
.comparison-table-wrap {
  max-width: 820px; margin: 0 auto; width: 100%;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md); background: var(--white);
}
.comparison-table { width: 100%; min-width: 520px; border-collapse: collapse; background: var(--white); font-size: 0.92rem; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.comparison-table thead th { font-size: 0.82rem; font-weight: 700; }
.comparison-table thead th.col-agent { background: var(--grey-lighter); color: var(--text-primary); }
.comparison-table thead th.col-us { background: var(--indigo); color: #fff; }
.comparison-table td.col-agent { background: var(--grey-lighter); font-weight: 600; }
.comparison-table td.col-us { background: rgba(43, 45, 66, 0.06); font-weight: 700; color: var(--indigo); }
.comparison-table tr.row-final td { border-bottom: none; font-size: 1.02rem; padding-top: 18px; padding-bottom: 18px; }
.comparison-table tr.row-final td.col-us { background: var(--indigo); color: #fff; }
.comparison-takeaway { max-width: 700px; margin: 24px auto 0; text-align: center; color: var(--text-muted); font-size: 0.96rem; padding: 0 20px; }

/* FAQ */
.faq-section { padding: var(--space-section) 0; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 20px; margin-bottom: 14px; }
.faq-item summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--indigo); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-muted); padding-bottom: 18px; margin: 0; }

/* Final CTA */
.final-cta { padding: 72px 0; background: var(--indigo); color: #fff; text-align: center; }
.final-cta-inner { max-width: 600px; margin: 0 auto; }
.final-cta h2 { color: #fff; }
.final-cta p { color: var(--text-on-dark-muted); font-size: 1.02rem; margin-bottom: 28px; }

/* Blog */
.blog-section { padding: var(--space-section) 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-gap); }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; text-decoration: none; color: inherit; display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-deep); }
.blog-card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--indigo); background: var(--grey-light); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.blog-card h3 { color: var(--text-primary); font-size: 1.05rem; margin-bottom: 8px; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.blog-card-date { display: block; margin-top: 14px; color: var(--text-muted); font-size: 0.78rem; }

/* Article */
.article-section { padding: 40px 0 var(--space-section); background: var(--white); }
.article-inner { max-width: 720px; margin: 0 auto; }
.article-meta { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 8px; }
.article-inner h1 { font-size: clamp(1.7rem, 6vw, 2.3rem); max-width: none; }
.article-inner h2 { font-size: 1.3rem; margin-top: 1.6em; }
.article-inner p { color: var(--text-primary); font-size: 1.02rem; line-height: 1.75; }
.article-inner ul { padding-left: 22px; }
.article-inner li { margin-bottom: 8px; font-size: 1rem; }
.article-sources { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }
.article-cta { margin: 40px 0; padding: 26px; background: var(--grey-lighter); border-radius: var(--radius-md); text-align: center; }
.article-cta p { margin-bottom: 16px; font-weight: 600; }
.breadcrumb { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 16px; word-break: break-word; }
.breadcrumb a { color: var(--indigo); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Footer */
.site-footer { background: var(--indigo-deep); color: rgba(255, 255, 255, 0.65); padding: 48px 0 28px; font-size: 0.85rem; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; margin-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
@media (min-width: 640px) { .footer-cols { grid-template-columns: 2fr 1fr 1fr; } }
.footer-heading { color: #fff; font-weight: 700; font-size: 0.92rem; margin-bottom: 12px; }
.footer-col p, .footer-inner p { margin: 0 0 8px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-note { max-width: 70ch; opacity: 0.65; font-size: 0.76rem; }

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--periwinkle); color: var(--indigo); text-align: center; padding: 15px;
  font-weight: 700; text-decoration: none; box-shadow: 0 -8px 24px rgba(185, 217, 235, 0.4);
  transition: background 0.2s ease;
}
.mobile-sticky-cta:active { background: var(--periwinkle-deep); }
body { padding-bottom: 60px; }
@media (min-width: 860px) {
  .mobile-sticky-cta { display: none; }
  body { padding-bottom: 0; }
}
