.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh; /* svh avoids the mobile-browser-chrome jump that 100vh causes */
  /* Pull up flush under the fixed nav. */
  margin-top: calc(-1 * (var(--topbar-h) + var(--nav-h) + var(--nav-offset) + var(--sp-8)));
  padding-top: calc(var(--topbar-h) + var(--nav-h) + var(--nav-offset) + var(--sp-20));
  padding-bottom: var(--sp-24);
  background: var(--clr-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-section canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  contain: strict;
}

/* Dark gradient veil between the tile canvas and the text. */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom,
      rgba(13, 21, 32, 0.55) 0%,
      rgba(13, 21, 32, 0.3)  40%,
      rgba(13, 21, 32, 0.65) 100%),
    linear-gradient(to right,
      rgba(13, 21, 32, 0.7)  0%,
      rgba(13, 21, 32, 0.15) 55%,
      transparent            100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 10%;
}

/* Use literal cubic-bezier in these `animation` shorthands, not var(--ease-smooth)
   — that variable bakes in a duration and a 3rd time value is invalid. */
.hero__heading {
  font-family: var(--font-display);
  color: var(--clr-text-bright);
  font-size: clamp(2.8rem, 2rem + 5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--sp-6);
}

.hero__heading span {
  display: inline-block;
  color: var(--clr-accent);
  text-shadow:
    0 0 30px rgba(15, 187, 245, 0.35),
    0 0 60px rgba(15, 187, 245, 0.15),
    0 2px 20px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 1px rgba(15, 187, 245, 0.3);
  filter: brightness(1.1);
}

.hero__subheading {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--clr-text);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: var(--sp-10);
  animation: fadeInUp 0.8s 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  pointer-events: auto;
  animation: fadeInUp 0.8s 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  animation: fadeIn 0.8s 0.95s cubic-bezier(0.4, 0, 0.2, 1) both;
  pointer-events: auto;
}

.hero__badge-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-success);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

/* Static glow — no animation keeps the paint cost flat. */
.hero__badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 20px 2px rgba(15, 187, 245, 0.65);
  pointer-events: none;
}

/* JS adds these state classes once the opening-hours payload resolves. */
.hero__badge--open,
.hero__badge--closed {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: var(--sp-2) var(--sp-5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.hero__badge--open {
  color: var(--clr-text-muted);
}
.hero__badge--open .hero__badge-dot {
  background: var(--clr-success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}
.hero__badge--closed {
  color: var(--clr-text);
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.06);
}
.hero__badge--closed .hero__badge-dot {
  background: var(--clr-error);
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}
.hero__badge--closed .hero__badge-dot::before {
  opacity: 0;
}

/* JS fades this out on scroll. */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeIn 0.9s 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero__scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
}

.stats-strip {
  background-color: var(--clr-bg-surface-solid);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  padding: var(--sp-10) 0;
}

.stats-strip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--clr-accent), transparent);
  pointer-events: none;
}

.stats-strip__list {
  /* 6 across on desktop, 2 across through all of mobile, 1 across only on
     genuinely tiny screens. The mid 3-across step was dropping each item to
     ~115px wide and squashing the labels — better to commit to 2 columns. */
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
  gap: var(--sp-4);
}

@media (max-width: 767px) {
  .stats-strip__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 360px) {
  .stats-strip__list { grid-template-columns: 1fr; }
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-3);
  position: relative;
}

/* Vertical divider — sits in the column gap to the item's left, gradient
   fade so it doesn't read as a hard line. Same fading treatment as the left
   edge accent on .stats-strip but in the muted border tone. */
.stats-strip__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-4) / 2);
  top: 5%;
  bottom: 5%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--clr-border-bright),
    transparent
  );
  pointer-events: none;
}

/* Horizontal divider — sits in the row gap above the item, same fade
   treatment rotated 90°. Hidden by default (desktop is a single row); the
   mobile layouts switch it back on. The 5% horizontal inset means adjacent
   horizontal segments stop short of the column gap, so the vertical divider
   passes through cleanly and the intersection reads as a cross. */
.stats-strip__item::after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--sp-4) / 2);
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--clr-border-bright),
    transparent
  );
  pointer-events: none;
  display: none;
}

/* Desktop (6 cols, 1 row): vertical dividers between every pair; item 1 has
   no left neighbour so it gets none. */
.stats-strip__item:first-child::before { display: none; }

/* Mobile (2 cols × 3 rows): vertical on the col-2 items (even), horizontal on
   row-2 and row-3 items (i.e. not the first two). */
@media (max-width: 767px) {
  .stats-strip__item::after { display: block; }
  .stats-strip__item:nth-child(odd)::before { display: none; }
  .stats-strip__item:nth-child(-n+2)::after { display: none; }
}

/* Tiny single-column fallback: no verticals, horizontals between every row.
   The nth-child(2)::after override is needed because the mobile rule
   :nth-child(-n+2)::after has higher specificity than the bare
   .stats-strip__item::after below, so it would otherwise keep item 2's
   divider hidden. */
@media (max-width: 360px) {
  .stats-strip__item::before { display: none; }
  .stats-strip__item::after,
  .stats-strip__item:nth-child(2)::after { display: block; }
  .stats-strip__item:first-child::after { display: none; }
}

.stats-strip__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-accent);
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  /* Fixed-height box matching the responsive font scale. Smaller-font items
     (like "10-Year") still occupy the same vertical space, so all numbers
     across the row baseline-align cleanly. */
  height: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* "10-Year" is 7 chars — at the standard scale it overflows the item width
   and wraps to 2 lines, which makes the cell look disproportionately tall.
   A tighter ramp keeps it on one line and reading as a peer to the others. */
.stats-strip__item:nth-child(4) .stats-strip__number {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.stats-strip__label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  max-width: 120px;
  line-height: 1.3;
  /* Reserve two lines so single-line labels ("Quotes", "Guarantee") don't
     pull their items up out of alignment with multi-line ones. */
  min-height: calc(0.8rem * 1.3 * 2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.areas-section {
  background-color: var(--clr-bg-dark);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.areas-list__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.55rem 1.1rem;
  background: var(--clr-bg-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--clr-text);
  transition: background-color var(--ease), border-color var(--ease),
              color var(--ease), transform var(--ease-fast);
}

.areas-list__link:hover {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-text-bright);
  transform: translateY(-2px);
}

.areas-group {
  margin-bottom: var(--sp-8);
}

.areas-group__heading {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
}

.areas-group__desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
  max-width: 56ch;
}

.areas-group--secondary {
  margin-bottom: var(--sp-8);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
}

.areas-list--secondary .areas-list__link {
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  opacity: 0.8;
}

.areas-group .areas-list {
  margin-bottom: 0;
}

.intro-section {
  position: relative;
  background-color: #141d2b;
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image:
    linear-gradient(135deg, rgba(148, 163, 184, 0.3) 1px, transparent 1px),
    linear-gradient(225deg, rgba(148, 163, 184, 0.3) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

.intro-section .container {
  position: relative;
  z-index: 1;
}

.intro-section__heading {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--clr-text-bright);
  margin-bottom: var(--sp-6);
  line-height: 1.3;
}

.intro-section__body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text);
  margin-bottom: var(--sp-5);
  max-width: 780px;
}

.intro-section__body p:last-child {
  margin-bottom: 0;
}

.intro-section__body a:not(.btn) {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.intro-section__body a:not(.btn):hover {
  color: var(--clr-accent-hover);
}

.intro-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.intro-section__actions .btn {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 600px) {
  .intro-section__actions .btn {
    flex: 0 0 auto;
  }
}

.intro-callout {
  max-width: 780px;
  margin: var(--sp-8) 0;
  padding: var(--sp-6);
  background: var(--clr-accent-subtle);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.intro-callout__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.intro-callout__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--clr-accent);
  color: var(--clr-bg-surface-solid);
  flex-shrink: 0;
}

.intro-callout__icon svg {
  width: 24px;
  height: 24px;
}

.intro-callout .intro-callout__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin: 0;
}

.intro-callout__heading {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.3;
  color: var(--clr-text-bright);
  margin: 0 0 var(--sp-4);
}

.intro-callout__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--clr-text);
  margin: 0 0 var(--sp-4);
}

.intro-callout__text:last-of-type {
  margin-bottom: var(--sp-4);
}

.intro-callout__link {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.intro-callout__link:hover {
  color: var(--clr-accent-hover);
}

.intro-callout__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-2);
}

.intro-callout__list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--clr-text-bright);
  font-weight: 500;
}

.intro-callout__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: var(--radius-full);
  background-color: var(--clr-accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141d2b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 0.75rem;
}

@media (max-width: 540px) {
  .intro-callout {
    padding: var(--sp-5);
  }
}

/* Specialist feature cards. Lives here (not services.css) so the home page
   doesn't have to load the services bundle. */
.sp-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.sp-cta {
  text-align: center;
  margin-top: var(--sp-6);
}

.sp-feature {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--clr-bg-surface-solid);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: border-color var(--ease), box-shadow var(--ease),
              transform var(--ease), background-color var(--ease);
}

.sp-feature:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--clr-accent);
  transform: translateY(-3px);
}

.sp-feature__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.sp-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-smooth);
}

.sp-feature:hover .sp-feature__img {
  transform: scale(1.05);
}

.sp-feature__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sp-feature__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-heading);
  margin-bottom: var(--sp-3);
}

.sp-feature__text {
  font-size: 0.93rem;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  flex: 1;
}

.sp-feature__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--ease), gap var(--ease);
}

.sp-feature__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sp-feature__link:hover {
  color: var(--clr-accent-hover);
  gap: var(--sp-3);
}

@media (min-width: 768px) {
  .sp-cards {
    flex-direction: row;
    gap: var(--sp-5);
  }

  .sp-feature {
    flex: 1;
  }
}

.services-secondary {
  padding-top: var(--sp-12);
}

.ss-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.ss-grid__item {
  flex: 1 1 160px;
  max-width: calc((100% - var(--sp-4)) / 2);
}

.ss-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  height: 100%;
  background: var(--clr-bg-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease),
              background-color var(--ease);
}

.ss-card:hover {
  border-color: var(--clr-border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  background-color: var(--clr-bg-surface-solid);
}

.ss-card__icon {
  width: 36px;
  height: 36px;
  color: var(--clr-accent);
  opacity: 0.8;
  transition: opacity var(--ease), transform var(--ease);
}

.ss-card:hover .ss-card__icon {
  opacity: 1;
  transform: scale(1.1);
}

.ss-card__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-text-heading);
  transition: color var(--ease);
}

.ss-card:hover .ss-card__title {
  color: var(--clr-accent);
}

.ss-card--feature {
  border-color: rgba(15, 187, 245, 0.45);
  background-color: var(--clr-accent-subtle);
  animation: ss-card-feature-pulse 3.6s ease-in-out infinite;
}

.ss-card--feature .ss-card__icon {
  opacity: 1;
}

.ss-card--feature:hover {
  border-color: rgba(15, 187, 245, 0.75);
  animation-play-state: paused;
  box-shadow: 0 0 22px rgba(15, 187, 245, 0.35);
}

@keyframes ss-card-feature-pulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(15, 187, 245, 0.15);
  }
  50% {
    box-shadow: 0 0 14px rgba(15, 187, 245, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-card--feature {
    animation: none;
    box-shadow: 0 0 12px rgba(15, 187, 245, 0.22);
  }
}

.ss-cta {
  text-align: center;
}

.btn--lg {
  padding: var(--sp-5) var(--sp-10);
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .ss-grid__item {
    flex: 1 1 calc((100% - 4 * var(--sp-4)) / 5);
    max-width: calc((100% - 4 * var(--sp-4)) / 5);
  }
}

/* Lives here (not areas.css) so the home page doesn't have to load the areas bundle. */
/* Promise / leak-response callout. Treated visually as a CTA, not a generic strip,
   so it pulls the eye between #specialist-services and #more-services. */
.guarantee-strip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 100% 50%, rgba(15, 187, 245, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #15202f 0%, #1a2436 100%);
  border-top: 3px solid var(--clr-accent);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-16) 0;
  box-shadow:
    inset 0 1px 0 rgba(15, 187, 245, 0.25),
    inset 0 -1px 0 rgba(15, 187, 245, 0.08);
}

/* Cyan glow blob behind the actions to anchor the CTA visually. */
.guarantee-strip::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(15, 187, 245, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.guarantee-strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.guarantee-strip__content {
  flex: 1 1 320px;
  padding-left: var(--sp-5);
  border-left: 3px solid var(--clr-accent);
}

.guarantee-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  padding: 0.35rem 0.75rem;
  background: rgba(15, 187, 245, 0.12);
  border: 1px solid rgba(15, 187, 245, 0.35);
  border-radius: 999px;
}

.guarantee-strip__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  color: var(--clr-text-bright);
  margin-bottom: var(--sp-3);
  line-height: 1.15;
  font-weight: 800;
}

.guarantee-strip__text {
  font-size: 1rem;
  color: var(--clr-text);
  max-width: 540px;
  line-height: 1.7;
}

.guarantee-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.guarantee-strip__actions .btn--primary {
  box-shadow:
    0 0 0 1px rgba(15, 187, 245, 0.35),
    0 10px 28px -8px rgba(15, 187, 245, 0.55);
}

.guarantee-strip__actions .btn--primary:hover,
.guarantee-strip__actions .btn--primary:focus-visible {
  box-shadow:
    0 0 0 1px rgba(15, 187, 245, 0.55),
    0 14px 32px -8px rgba(15, 187, 245, 0.7);
}

@media (max-width: 639px) {
  .guarantee-strip .container {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-1);
  }

  .guarantee-strip__content {
    padding-left: 0;
    border-left: none;
  }

  .guarantee-strip__actions {
    flex-direction: column;
    width: 100%;
  }

  .guarantee-strip__actions .btn {
    width: 100%;
  }
}

/* FAQ section closer: soft prompt under the question list pointing visitors
   to the full FAQ page or the contact page. Sits below .faq-list. */
.faq-section__more {
  max-width: 640px;
  margin: var(--sp-6) auto 0;
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  color: var(--clr-text-muted);
  background: var(--clr-bg-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-section__more a {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.faq-section__more a:hover,
.faq-section__more a:focus-visible {
  color: var(--clr-text-bright);
}

