/* Process Legal Support — Industry site styles
   Shared system with sister domains; software product composition */

:root {
  --pls-blue: #1f7fd4;
  --pls-blue-bright: #3c9df0;
  --pls-blue-deep: #0b6bc7;
  --pls-blue-ink: #045aaf;
  --pls-navy: #0a2342;
  --pls-ink: #153047;
  --pls-muted: #5c7188;
  --pls-ice: #e7f3fc;
  --pls-mist: #f2f7fc;
  --pls-white: #ffffff;
  --pls-coral: #e26a3c;
  --pls-line: rgba(10, 35, 66, 0.1);
  --pls-shadow: 0 18px 50px rgba(10, 35, 66, 0.1);
  --pls-radius: 1.1rem;
  --pls-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Figtree", "Helvetica Neue", sans-serif;
  /* Clearance below fixed header for in-page anchors + inner page heroes */
  --pls-nav-offset: 5.25rem;
}

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

html {
  scroll-behavior: smooth;
  /* Single global offset for fixed nav — do not also use large scroll-margins on section anchors */
  scroll-padding-top: var(--pls-nav-offset);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--pls-ink);
  background: var(--pls-mist);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--pls-blue-deep);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--pls-blue-ink);
}

/* ---------- Type ---------- */
.display-heading {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--pls-navy);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  margin-bottom: 1rem;
}

.display-heading .accent {
  color: var(--pls-blue);
  font-style: italic;
  font-weight: 500;
}

.section-kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pls-blue-deep);
  margin-bottom: 0.85rem;
}

.kicker-light {
  color: rgba(255, 255, 255, 0.72);
}

.section-intro {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.section-lead,
.lead-body {
  color: var(--pls-muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn-pls,
.btn-pls-outline,
.btn-pls-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-pls i,
.btn-pls-outline i,
.btn-pls-light i {
  font-size: 1.05em;
  line-height: 1;
  opacity: 0.95;
}

.btn-pls .btn-label,
.btn-pls-outline .btn-label,
.btn-pls-light .btn-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-pls {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--pls-blue-deep);
  --bs-btn-border-color: var(--pls-blue-deep);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--pls-blue-ink);
  --bs-btn-hover-border-color: var(--pls-blue-ink);
  --bs-btn-focus-shadow-rgb: 11, 107, 199;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--pls-blue-ink);
  --bs-btn-active-border-color: var(--pls-blue-ink);
  font-weight: 700;
  border-radius: 0.55rem;
  padding: 0.75rem 1.4rem;
}

.btn-pls-outline {
  --bs-btn-color: var(--pls-navy);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(10, 35, 66, 0.2);
  --bs-btn-hover-color: var(--pls-navy);
  --bs-btn-hover-bg: rgba(31, 127, 212, 0.08);
  --bs-btn-hover-border-color: var(--pls-blue);
  --bs-btn-focus-shadow-rgb: 31, 127, 212;
  --bs-btn-active-color: var(--pls-navy);
  --bs-btn-active-bg: rgba(31, 127, 212, 0.12);
  --bs-btn-active-border-color: var(--pls-blue);
  font-weight: 700;
  border-radius: 0.55rem;
  padding: 0.75rem 1.4rem;
}

.btn-pls-light {
  --bs-btn-color: var(--pls-navy);
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: var(--pls-navy);
  --bs-btn-hover-bg: var(--pls-ice);
  --bs-btn-hover-border-color: var(--pls-ice);
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  font-weight: 700;
  border-radius: 0.55rem;
  padding: 0.8rem 1.5rem;
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  padding: 0.55rem 0;
  transition: background 0.35s var(--pls-ease), box-shadow 0.35s var(--pls-ease);
  background: transparent;
}

/* Home: clear over hero until scrolled. Inner pages: solid bar like Engage sticky nav */
body:has(.page-hero) .site-nav,
.site-nav.is-scrolled {
  background: rgba(242, 247, 252, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--pls-line);
}

body:has(.page-hero) .site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--pls-navy) !important;
  text-decoration: none;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.brand-logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  display: block;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--pls-navy);
}

.brand-wordmark span {
  display: block;
}

/* Legacy class kept for safety if referenced */
.brand-logo {
  height: 60px;
  width: auto;
}

.nav-link-pls {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--pls-ink) !important;
  padding: 0.4rem 0.7rem !important;
  opacity: 0.88;
}

.nav-link-pls:hover,
.nav-link-pls:focus {
  opacity: 1;
  color: var(--pls-blue-deep) !important;
}

.nav-phone {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--pls-navy);
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

.navbar-toggler {
  border: 1px solid var(--pls-line);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 127, 212, 0.2);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: clip;
  padding: 9.75rem 0 5.25rem;
  background:
    radial-gradient(ellipse 65% 50% at 92% 18%, rgba(60, 157, 240, 0.28), transparent 58%),
    radial-gradient(ellipse 40% 40% at 8% 85%, rgba(226, 106, 60, 0.1), transparent 55%),
    linear-gradient(160deg, #f9fcff 0%, #e7f3fc 45%, #cfe6fb 100%);
}

.hero-facet {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 48%, rgba(11, 107, 199, 0.07) 48.2%, rgba(11, 107, 199, 0.07) 62%, transparent 62.2%),
    linear-gradient(rgba(11, 107, 199, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 107, 199, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  mask-image: radial-gradient(ellipse 85% 75% at 55% 35%, #000 10%, transparent 78%);
  pointer-events: none;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--pls-navy);
  margin: 0 0 1.05rem;
  line-height: 1.15;
}

.hero-specialty {
  display: inline-block;
  margin: 0 0 1.05rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pls-blue-deep);
  background: rgba(11, 107, 199, 0.1);
  border: 1px solid rgba(11, 107, 199, 0.14);
  border-radius: 999px;
  padding: 0.48rem 0.95rem 0.42rem;
  line-height: 1.2;
}

.hero-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(11, 107, 199, 0.25);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--pls-navy);
  margin: 0 0 1.1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--pls-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-col-visual {
  display: flex;
  align-items: center;
}

.hero-visual {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-visual-frame {
  position: relative;
}

.hero-visual-frame > img {
  width: 100%;
  height: auto;
  display: block;
  animation: heroFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 25px 40px rgba(10, 35, 66, 0.14));
}

.hero-visual-glow {
  position: absolute;
  width: 70%;
  height: 55%;
  left: 16%;
  top: 18%;
  background: radial-gradient(circle, rgba(60, 157, 240, 0.35), transparent 68%);
  z-index: -1;
  pointer-events: none;
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.hero-stat-strip > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 107, 199, 0.12);
  border-radius: 0.65rem;
  padding: 0.7rem 0.35rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.25s var(--pls-ease), border-color 0.25s ease, background 0.25s ease;
}

.hero-stat-strip > div:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 107, 199, 0.28);
  background: rgba(255, 255, 255, 0.9);
}

.hero-stat-strip i {
  font-size: 1.15rem;
  color: var(--pls-blue-deep);
  line-height: 1;
}

.hero-stat-strip span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pls-navy);
  text-transform: uppercase;
  line-height: 1.2;
}

/* Pillars sit inside the hero (not a separate band)
   Fill uses Bootstrap .bg-transparent — do not set background here */
.hero-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.85rem;
  padding: 0.75rem;
  border-radius: calc(var(--pls-radius) + 0.15rem);
  border: 1px solid rgba(11, 107, 199, 0.12);
  box-shadow: 0 16px 40px rgba(10, 35, 66, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  scroll-margin-top: 0;
}

.hero-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 1.1rem 1rem 1.15rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--pls-ease);
}

.hero-pillar:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(10, 35, 66, 0.1);
  transform: translateY(-2px);
}

.hero-pillar img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
  margin-bottom: 0.35rem;
}

.hero-pillar h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--pls-navy);
}

.hero-pillar p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--pls-muted);
}

/* Desktop: visual column stretches to left copy; stat strip bottoms with proof text */
@media (min-width: 992px) {
  .hero-row {
    align-items: stretch !important;
  }

  .hero-col-copy,
  .hero-col-visual {
    padding-top: 0.25rem;
  }

  .hero-col-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-col-visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-left: 0.35rem;
    padding-right: 0;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .hero-visual-frame {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    min-height: 100%;
  }

  .hero-visual-frame > img {
    width: 100%;
    max-width: none;
    height: auto;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    flex: 0 1 auto;
  }

  .hero-stat-strip {
    margin-top: auto;
    margin-left: 0;
    margin-right: 0;
    width: auto;
  }
}

@media (min-width: 1200px) {
  .hero-col-visual {
    padding-left: 0.15rem;
  }

  .hero-visual {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-visual-frame > img {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }

  .hero-pillars {
    gap: 0.35rem;
    padding: 0.85rem;
  }

  .hero-pillar {
    padding: 0.9rem 0.95rem;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---------- Trust bar (in hero) ---------- */
.hero-trust.trust-bar {
  margin-top: 2.75rem;
  padding: 1.75rem 0 0;
  position: relative;
  z-index: 2;
  scroll-margin-top: 0;
  border-top: 1px solid rgba(11, 107, 199, 0.12);
}

.trust-item {
  background: #fff;
  border: 1px solid var(--pls-line);
  border-radius: var(--pls-radius);
  padding: 1.25rem 1rem;
  height: 100%;
  transition:
    transform 0.35s var(--pls-ease),
    box-shadow 0.35s var(--pls-ease),
    background 0.35s ease;
}

.trust-item--tint {
  background: linear-gradient(160deg, #f4faff, #e7f3fc);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--pls-shadow);
  background: linear-gradient(160deg, #f4faff, #e7f3fc);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin: 0 auto 0.7rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--pls-blue-deep);
  background: rgba(31, 127, 212, 0.12);
  border-radius: 0.7rem;
}

.trust-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pls-navy);
  margin-bottom: 0.35rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--pls-muted);
}

/* ---------- Challenges ---------- */
.challenges {
  position: relative;
  padding: 5.25rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(60, 157, 240, 0.35), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(4, 90, 175, 0.55), transparent 40%),
    linear-gradient(145deg, #0a2342 0%, #0d3d78 48%, #0b6bc7 100%);
  overflow: hidden;
}

.challenges::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 30%, rgba(255, 255, 255, 0.05) 30.2%, rgba(255, 255, 255, 0.05) 45%, transparent 45.2%);
  pointer-events: none;
}

.challenges-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.challenges .display-heading {
  margin-bottom: 0;
}

.challenge-item {
  height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: var(--pls-radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s var(--pls-ease);
}

.challenge-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.challenge-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.challenge-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

/* ---------- How we show up / approach ---------- */
.why {
  padding: 5.75rem 0 6rem;
  background:
    linear-gradient(180deg, #fff 0%, var(--pls-mist) 55%, #fff 100%);
  scroll-margin-top: 0;
}

.why .lead-body {
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.why .display-heading {
  margin-bottom: 1.15rem;
}

.why .row.g-3 {
  --bs-gutter-y: 1rem;
  --bs-gutter-x: 1rem;
}

.feature-block {
  position: relative;
  height: 100%;
  padding: 1.55rem 1.45rem;
  padding-right: 3.75rem;
  border-radius: var(--pls-radius);
  border: 1px solid var(--pls-line);
  background: #fff;
  overflow: hidden;
  transition: transform 0.35s var(--pls-ease), box-shadow 0.35s var(--pls-ease), border-color 0.3s ease;
}

.feature-block--tint {
  background: linear-gradient(160deg, #f4faff, #e7f3fc);
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--pls-shadow);
  border-color: rgba(31, 127, 212, 0.28);
}

.feature-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  display: block;
  pointer-events: none;
  transition: transform 0.35s var(--pls-ease);
}

.feature-block:hover .feature-icon {
  transform: translateY(-2px) scale(1.04);
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pls-navy);
  margin: 0 0 0.65rem;
  line-height: 1.25;
  padding-right: 0.25rem;
}

.feature-block p {
  margin: 0;
  color: var(--pls-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Services ---------- */
.services {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(60, 157, 240, 0.1), transparent 45%),
    var(--pls-mist);
}

.service-spotlight {
  max-width: none;
  margin: 0 0 2.75rem;
  position: relative;
}

.service-spotlight__trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 1.6rem;
  text-align: left;
  padding: 1.65rem 1.65rem 1.65rem 1.45rem;
  border: none;
  border-radius: calc(var(--pls-radius) + 0.2rem);
  background:
    radial-gradient(ellipse at 12% 20%, rgba(60, 157, 240, 0.35), transparent 42%),
    radial-gradient(ellipse at 90% 80%, rgba(226, 106, 60, 0.18), transparent 40%),
    linear-gradient(145deg, #0a2342 0%, #0d3d78 55%, #0b6bc7 140%);
  box-shadow: 0 20px 48px rgba(10, 35, 66, 0.2);
  cursor: pointer;
  transition:
    transform 0.35s var(--pls-ease),
    box-shadow 0.35s var(--pls-ease);
}

.service-spotlight__trigger:hover,
.service-spotlight__trigger:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(10, 35, 66, 0.26);
  outline: none;
}

.service-spotlight__trigger:focus-visible {
  box-shadow:
    0 26px 56px rgba(10, 35, 66, 0.26),
    0 0 0 3px rgba(31, 127, 212, 0.35);
}

.service-spotlight__icon {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.service-spotlight__icon img {
  width: 2.85rem;
  height: 2.85rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.service-spotlight__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.35rem;
}

.service-spotlight__kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #7ec4ff;
  box-shadow: 0 0 0 3px rgba(126, 196, 255, 0.28);
}

.service-spotlight__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.service-spotlight__desc {
  display: block;
  color: rgba(231, 243, 252, 0.88);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 38rem;
}

.service-spotlight__action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.15rem;
  border-radius: 0.55rem;
  background: #fff;
  color: var(--pls-navy);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(10, 35, 66, 0.18);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-spotlight__trigger:hover .service-spotlight__action,
.service-spotlight__trigger:focus-visible .service-spotlight__action {
  background: var(--pls-ice);
  color: var(--pls-blue-ink);
}

.service-spotlight__action i {
  font-size: 1em;
  transition: transform 0.25s var(--pls-ease);
}

.service-spotlight__trigger:hover .service-spotlight__action i {
  transform: translate(2px, -2px);
}

.service-panel {
  height: 100%;
  width: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: var(--pls-radius);
  background: #fff;
  border: 1px solid var(--pls-line);
  transition: transform 0.35s var(--pls-ease), box-shadow 0.35s var(--pls-ease), border-color 0.35s ease;
  text-align: left;
}

.service-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--pls-shadow);
  border-color: rgba(31, 127, 212, 0.35);
}

.service-panel img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.service-panel h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--pls-navy);
  margin-bottom: 0.5rem;
}

.service-panel p {
  margin: 0;
  color: var(--pls-muted);
  font-size: 0.96rem;
}

/* ---------- Services modal ---------- */
.service-modal .modal-content {
  border: none;
  border-radius: calc(var(--pls-radius) + 0.15rem);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(10, 35, 66, 0.22);
}

.service-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.6rem 1.15rem;
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  background:
    linear-gradient(135deg, rgba(11, 107, 199, 0.09), rgba(231, 243, 252, 0.65)),
    #fff;
}

.service-modal__heading {
  min-width: 0;
}

.service-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pls-blue-deep);
}

.service-modal .modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 1.9rem);
  font-weight: 600;
  color: var(--pls-navy);
  line-height: 1.25;
}

.service-modal .modal-body {
  padding: 1.35rem 1.6rem 0.25rem;
  color: var(--pls-ink);
}

.service-modal__section {
  margin-bottom: 1.45rem;
}

.service-modal__section--last {
  margin-bottom: 0.75rem;
}

.service-modal__section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pls-navy);
  margin-bottom: 0.55rem;
}

.service-modal__section p {
  margin-bottom: 0.75rem;
  color: var(--pls-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-modal__section p:last-child {
  margin-bottom: 0;
}

.service-modal__list {
  list-style: none;
  padding: 0;
  margin: 0.65rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.service-modal__list li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 1.85rem;
  border-radius: 0.55rem;
  background: rgba(231, 243, 252, 0.55);
  border: 1px solid rgba(11, 107, 199, 0.08);
  color: var(--pls-ink);
  font-weight: 500;
  font-size: 0.94rem;
}

.service-modal__list li::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pls-blue-deep);
  transform: translateY(-50%);
}

.service-modal__chips {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-modal__chips li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.06);
  border: 1px solid rgba(10, 35, 66, 0.08);
  color: var(--pls-navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.service-modal .modal-footer {
  padding: 1rem 1.6rem 1.35rem;
  border-top: 1px solid rgba(10, 35, 66, 0.08);
  gap: 0.65rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.service-modal .btn-close {
  margin-top: 0.15rem;
  opacity: 0.65;
}

.service-modal .btn-close:hover {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .service-spotlight__trigger {
    grid-template-columns: auto 1fr;
  }

  .service-spotlight__action {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

  .service-spotlight__action-text {
    flex: 0 0 auto;
  }
}

.service-focus {
  margin-top: 2.75rem;
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem);
  border-radius: calc(var(--pls-radius) + 0.2rem);
  background:
    linear-gradient(135deg, rgba(11, 107, 199, 0.08), rgba(231, 243, 252, 0.9)),
    #fff;
  border: 1px solid rgba(11, 107, 199, 0.14);
}

.service-focus > .row > [class*="col-"] > p {
  color: var(--pls-muted);
}

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

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--pls-muted);
  font-weight: 400;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--pls-blue-bright);
  box-shadow: inset 0 0 0 3px rgba(11, 107, 199, 0.18);
}

.focus-panel {
  background: linear-gradient(160deg, var(--pls-navy), #0d3d78);
  color: #fff;
  border-radius: var(--pls-radius);
  padding: 1.75rem 1.5rem;
  min-height: 100%;
  box-shadow: var(--pls-shadow);
}

.focus-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.focus-attr {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Coverage ---------- */
.coverage {
  padding: 5rem 0 5.5rem;
  background: #fff;
}

.coverage-panel {
  height: 100%;
  padding: 1.6rem 1.4rem;
  border-radius: var(--pls-radius);
  background: linear-gradient(165deg, #f7fbff, #e7f3fc);
  border: 1px solid var(--pls-line);
  position: relative;
  overflow: hidden;
}

.coverage-panel::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -40px;
  top: -40px;
  border-radius: 30% 70% 60% 40%;
  background: rgba(60, 157, 240, 0.14);
  pointer-events: none;
}

.coverage-panel--mid {
  background: linear-gradient(165deg, #e7f3fc, #d3e9fb);
}

.coverage-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pls-blue-deep);
  background: rgba(11, 107, 199, 0.1);
  padding: 0.3rem 0.55rem;
  border-radius: 0.35rem;
  margin-bottom: 0.85rem;
}

.coverage-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pls-navy);
  margin-bottom: 0.55rem;
}

.coverage-panel p {
  margin: 0;
  color: var(--pls-muted);
}

.eservice {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem;
  border-radius: var(--pls-radius);
  border: 1px dashed rgba(11, 107, 199, 0.35);
  background: var(--pls-mist);
}

.eservice h3 {
  color: var(--pls-navy);
  font-weight: 700;
}

.eservice p {
  color: var(--pls-muted);
}

/* ---------- Contact ---------- */
.contact {
  padding: 5.5rem 0 5.75rem;
  background: var(--pls-white);
  scroll-margin-top: 0;
}

.contact-shell {
  border-radius: calc(var(--pls-radius) + 0.35rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(60, 157, 240, 0.28), transparent 40%),
    linear-gradient(135deg, #0a2342 0%, #123d70 50%, #0b4f96 100%);
  color: #fff;
  padding: clamp(2rem, 4vw, 3.25rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--pls-shadow);
}

.contact-shell::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -100px;
  border-radius: 40% 60% 55% 45%;
  background: rgba(60, 157, 240, 0.22);
  pointer-events: none;
}

.contact-shell p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-direct {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-direct > * {
  margin: 0;
  line-height: 1.3;
}

.contact-direct a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.contact-direct a.contact-email {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.92;
}

.contact-direct a.contact-email:hover {
  color: #fff;
  opacity: 1;
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-hints {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.contact-hints li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 500;
}

.contact-hints li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--pls-blue-bright);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 0.55rem;
  padding: 0.8rem 1rem;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(154, 212, 255, 0.75);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(60, 157, 240, 0.25);
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.35rem;
}

.contact-form .invalid-feedback {
  color: #ffc7b5;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 0.75rem;
}

.form-status {
  display: none;
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

.contact-form {
  position: relative;
}

.contact-form .btn-pls-light {
  position: relative;
  min-width: 11.5rem;
  min-height: 2.95rem;
}

.contact-form .btn-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form .btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form .btn-pls-light.is-loading .btn-label {
  display: none;
}

.contact-form .btn-pls-light.is-loading .btn-loading {
  display: inline-flex;
}

.contact-form .btn-pls-light.is-loading,
.contact-form .btn-pls-light:disabled {
  opacity: 0.92;
  cursor: wait;
  pointer-events: none;
}

.btn-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(10, 35, 66, 0.2);
  border-top-color: var(--pls-navy);
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

.form-status.is-success {
  color: #9bffc6;
}

.form-status.is-error {
  color: #ffc7b5;
}

.form-status.is-pending {
  color: rgba(231, 243, 252, 0.9);
}

/* Honeypot — off-screen for real users */
.contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.75rem 0 1.75rem;
  background: var(--pls-navy);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

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

.site-footer > .container > .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

@media (min-width: 768px) {
  .site-footer > .container > .row {
    --bs-gutter-x: 2rem;
  }
}

@media (min-width: 992px) {
  .site-footer > .container > .row {
    --bs-gutter-x: 2.5rem;
  }
}

.footer-brand-col {
  padding-right: 0.75rem;
}

@media (min-width: 768px) {
  .footer-brand-col {
    padding-right: 1.25rem !important;
  }
}

@media (min-width: 992px) {
  .footer-brand-col {
    padding-right: 1.5rem !important;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.footer-logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 0.45rem;
  display: block;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.95);
}

.footer-wordmark span {
  display: block;
}

.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  background: #f7fafd;
  border-radius: 0.55rem;
  padding: 0.45rem 0.7rem;
  image-rendering: auto;
}

/* Keep blurb from crowding Useful links without a huge empty band */
.footer-tagline {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 992px) {
  .footer-tagline {
    max-width: 26rem;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

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

/* Floating back-to-top — above Tawk.to chat widget (bottom-right) */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  /* Tawk bubble is ~60–72px; leave room under Go to top */
  bottom: calc(1.25rem + 4.75rem);
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--pls-blue-deep);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(10, 35, 66, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.28s var(--pls-ease), transform 0.28s var(--pls-ease),
    visibility 0.28s, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--pls-blue-ink);
  color: #fff !important;
}

.back-to-top i {
  font-size: 1rem;
  line-height: 1;
}

.back-to-top[hidden] {
  display: none !important;
}

.back-to-top.is-visible[hidden] {
  display: inline-flex !important;
}

/* ---------- Motion helpers ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--pls-ease), transform 0.8s var(--pls-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.32s;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: rgba(242, 247, 252, 0.98);
    border-radius: 0.85rem;
    margin-top: 0.75rem;
    padding: 0.85rem;
    box-shadow: 0 12px 40px rgba(10, 35, 66, 0.1);
  }

  .hero {
    padding: 8.25rem 0 4.5rem;
    min-height: auto;
  }

  .hero-trust.trust-bar {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .hero-headline {
    max-width: none;
  }

  .hero-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-pillars {
    grid-template-columns: 1fr 1fr;
    margin-top: 2.25rem;
  }

  .why {
    padding: 4.5rem 0 4.75rem;
  }

  .feature-block {
    padding: 1.35rem 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .brand-logo-mark {
    width: 44px;
    height: 44px;
  }

  .brand-wordmark {
    font-size: 0.95rem;
  }

  .hero-brand {
    font-size: 1.35rem;
  }

  .hero-trust.trust-bar {
    margin-top: 1.75rem;
    padding-top: 1.35rem;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
    padding: 0.55rem;
    gap: 0.35rem;
  }

  .hero-pillar {
    padding: 0.75rem 0.7rem;
  }

  .hero-pillar img {
    width: 42px;
    height: 42px;
  }

  .footer-logo-mark {
    width: 42px;
    height: 42px;
  }

  .footer-wordmark {
    font-size: 0.92rem;
  }

  .back-to-top span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .back-to-top {
    right: 1rem;
    bottom: calc(0.85rem + 4.5rem);
    width: 3rem;
    height: 3rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-visual-frame > img,
  .reveal,
  .service-panel,
  .feature-block,
  .challenge-item,
  .trust-item,
  .mobile-shot,
  .mobile-shot-frame,
  .btn-spinner {
    animation: none !important;
    transition: none !important;
  }

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


/* ---------- Industry-specific layout ---------- */
.hero-proof {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--pls-muted);
}

.hero-proof li {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.hero-proof li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pls-blue-bright);
  flex-shrink: 0;
  transform: translateY(-0.1rem);
}

.hero-proof strong {
  color: var(--pls-navy);
}

/* Advantage band */
.advantage {
  padding: 5.25rem 0 5.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(60, 157, 240, 0.1), transparent 45%),
    #fff;
  scroll-margin-top: 0;
}

.advantage-card {
  height: 100%;
  padding: 1.55rem 1.35rem 1.65rem;
  border-radius: var(--pls-radius);
  background: linear-gradient(165deg, #f7fbff, #e7f3fc);
  border: 1px solid var(--pls-line);
  transition: transform 0.35s var(--pls-ease), box-shadow 0.35s var(--pls-ease), border-color 0.3s ease;
}

.advantage-card--mid {
  background: linear-gradient(165deg, #e7f3fc, #d3e9fb);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pls-shadow);
  border-color: rgba(31, 127, 212, 0.3);
}

.advantage-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 0.95rem;
}

.advantage-tag {
  display: inline-block;
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pls-blue-deep);
}

.advantage-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pls-navy);
  margin: 0 0 0.65rem;
}

.advantage-card p:last-child {
  margin: 0;
  color: var(--pls-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Features: mobile + platform */
.features {
  scroll-margin-top: 0;
}

.features--mobile {
  padding: 5.5rem 0 5.75rem;
  background:
    linear-gradient(180deg, var(--pls-mist) 0%, #fff 45%, var(--pls-mist) 100%);
}

.features--mobile .section-intro {
  margin-bottom: 2.5rem;
}

.mobile-shot {
  height: 100%;
  text-align: center;
  padding: 1.35rem 1rem 1.5rem;
  border-radius: var(--pls-radius);
  border: 1px solid rgba(11, 107, 199, 0.08);
  background: rgba(247, 251, 255, 0.65);
  transition:
    transform 0.35s var(--pls-ease),
    box-shadow 0.35s var(--pls-ease),
    border-color 0.3s ease,
    background 0.3s ease;
}

.mobile-shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 35, 66, 0.08);
  border-color: rgba(11, 107, 199, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.mobile-shot-frame {
  position: relative;
  margin: 0 auto 1.15rem;
  max-width: 15.5rem;
  filter: drop-shadow(0 14px 28px rgba(10, 35, 66, 0.12));
  transition: transform 0.4s var(--pls-ease), filter 0.4s var(--pls-ease);
}

.mobile-shot:hover .mobile-shot-frame {
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 36px rgba(10, 35, 66, 0.16));
}

.mobile-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-shot h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pls-navy);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.mobile-shot p {
  margin: 0 auto;
  max-width: 18rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--pls-muted);
}

@media (max-width: 991.98px) {
  .mobile-shot-frame {
    max-width: 13rem;
  }
}

@media (max-width: 575.98px) {
  .mobile-shot-frame {
    max-width: 10.75rem;
  }

  .mobile-shot h3 {
    font-size: 1.12rem;
  }

  .mobile-shot p {
    font-size: 0.85rem;
  }
}

.features--platform {
  padding: 5rem 0 5.25rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(60, 157, 240, 0.12), transparent 45%),
    linear-gradient(180deg, #fff 0%, var(--pls-mist) 100%);
}

/* Keep equal air above/below the laptop visual */
.features--platform .section-intro {
  margin-bottom: 2.5rem;
}

.platform-visual {
  margin: 0 auto 3.5rem;
  max-width: 64rem;
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  line-height: 0;
}

.platform-visual img {
  display: block;
  width: 100%;
  max-width: 58rem;
  height: auto;
  margin: 0 auto;
}

.platform-panel {
  height: 100%;
  padding: 1.65rem 1.4rem;
  border-radius: var(--pls-radius);
  background: #fff;
  border: 1px solid var(--pls-line);
  text-align: left;
  transition: transform 0.35s var(--pls-ease), box-shadow 0.35s var(--pls-ease), border-color 0.3s ease;
}

.platform-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--pls-shadow);
  border-color: rgba(31, 127, 212, 0.32);
}

.platform-panel img {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
}

.platform-panel h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--pls-navy);
  margin-bottom: 0.5rem;
}

.platform-panel p {
  margin: 0;
  color: var(--pls-muted);
  font-size: 0.96rem;
}

/* Reports band */
.reports {
  position: relative;
  padding: 5.25rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(60, 157, 240, 0.35), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(4, 90, 175, 0.55), transparent 40%),
    linear-gradient(145deg, #0a2342 0%, #0d3d78 48%, #0b6bc7 100%);
  overflow: hidden;
  scroll-margin-top: 0;
}

.reports::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 30%, rgba(255, 255, 255, 0.05) 30.2%, rgba(255, 255, 255, 0.05) 45%, transparent 45.2%);
  pointer-events: none;
}

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

.reports-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 30rem;
  margin-bottom: 1rem;
}

.reports-note {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- Reports gallery (illustrated cards) ---------- */
.reports.reports--gallery {
  padding: 5.25rem 0;
}

.reports--gallery .section-intro {
  margin-bottom: 2.5rem;
}

.reports-alt-lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}

.report-gallery-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1.25rem 1.05rem 1.4rem;
  border-radius: var(--pls-radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s var(--pls-ease),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.report-gallery-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(154, 212, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 40px rgba(4, 20, 44, 0.28);
}

.report-gallery-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10.5rem;
  margin: 0 0 1.05rem;
  padding: 0.85rem 0.5rem;
  border-radius: calc(var(--pls-radius) - 0.3rem);
  background:
    radial-gradient(ellipse at 50% 90%, rgba(60, 157, 240, 0.28), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.report-gallery-visual img {
  width: auto;
  height: 9.25rem;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(4, 20, 44, 0.32));
}

.report-gallery-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.report-gallery-card p {
  margin: 0 auto;
  max-width: 16rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}

.reports-gallery-note {
  margin: 2.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 575.98px) {
  .report-gallery-visual {
    min-height: 8rem;
  }

  .report-gallery-visual img {
    height: 7rem;
  }

  .report-gallery-card h3 {
    font-size: 1rem;
  }

  .report-gallery-card p {
    font-size: 0.84rem;
  }
}

/* Industry narrative */
.industry {
  padding: 5.25rem 0 4.75rem;
  background: var(--pls-white);
  scroll-margin-top: 0;
}

.industry-shell {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--pls-radius) + 0.25rem);
  background:
    radial-gradient(ellipse at 92% 8%, rgba(60, 157, 240, 0.12), transparent 46%),
    linear-gradient(160deg, #fbfafe 0%, #f2f8fd 58%, #fff 100%);
  border: 1px solid rgba(11, 107, 199, 0.1);
  box-shadow: 0 14px 40px rgba(10, 35, 66, 0.05);
  /* Match Features / Partnership: no extra browser hash inset on this target */
  scroll-margin-top: 0;
}

.industry-promise {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 500;
  font-style: italic;
  color: var(--pls-blue-deep);
  margin: 0.35rem 0 0;
  max-width: 18ch;
  line-height: 1.3;
}

.industry-copy p {
  color: var(--pls-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.industry-map {
  margin: 2rem auto 0;
  max-width: 60rem;
  text-align: center;
}

.industry-map img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  /* Reserve space so hash scroll doesn’t jump when the larger map decodes */
  aspect-ratio: 1158 / 671;
  object-fit: contain;
}

/* ---------- Full spectrum / Partnership ---------- */
.spectrum {
  position: relative;
  padding: 4.75rem 0 4.5rem;
  margin-top: 0;
  scroll-margin-top: 0;
  overflow: hidden;
  /* Cooler, deeper ice band — deliberate contrast after white industry band */
  background:
    radial-gradient(ellipse at 92% 12%, rgba(31, 127, 212, 0.16), transparent 52%),
    radial-gradient(ellipse at 6% 88%, rgba(10, 35, 66, 0.06), transparent 48%),
    linear-gradient(175deg, #e5f1fb 0%, #edf5fc 42%, #f7fbff 100%);
  border-top: 1px solid rgba(11, 107, 199, 0.08);
  border-bottom: 1px solid rgba(11, 107, 199, 0.08);
}

.spectrum-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.spectrum-lead {
  max-width: 34rem;
  margin-bottom: 1rem;
}

.spectrum-note {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  color: var(--pls-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.spectrum-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.spectrum-orb {
  position: relative;
  display: block;
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
  padding: 0;
  line-height: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.4s var(--pls-ease);
  overflow: visible;
}

.spectrum-orb:hover,
.spectrum-orb:focus-visible {
  transform: scale(1.03);
  outline: none;
}

.spectrum-orb:focus-visible {
  box-shadow: 0 0 0 0.3rem rgba(31, 127, 212, 0.28);
}

.spectrum-orb img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  filter: drop-shadow(0 14px 28px rgba(10, 35, 66, 0.12));
  animation: spectrumFloat 8s ease-in-out infinite;
}

.spectrum-orb-hint {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

.spectrum-orb:hover .spectrum-orb-hint,
.spectrum-orb:focus-visible .spectrum-orb-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

@keyframes spectrumFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Spectrum modal */
.spectrum-modal .modal-content {
  border: none;
  border-radius: calc(var(--pls-radius) + 0.15rem);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(10, 35, 66, 0.22);
}

.spectrum-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.6rem 1.15rem;
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  background:
    linear-gradient(135deg, rgba(11, 107, 199, 0.09), rgba(231, 243, 252, 0.65)),
    #fff;
}

.spectrum-modal__heading {
  min-width: 0;
}

.spectrum-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pls-blue-deep);
}

.spectrum-modal .modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 600;
  color: var(--pls-navy);
  line-height: 1.25;
}

.spectrum-modal .modal-body {
  padding: 1.25rem 1.6rem 0.35rem;
  color: var(--pls-ink);
}

.spectrum-modal__hero {
  margin: 0 0 1.35rem;
  border-radius: var(--pls-radius);
  overflow: hidden;
  border: 1px solid rgba(11, 107, 199, 0.12);
  background: var(--pls-mist);
  box-shadow: 0 10px 28px rgba(10, 35, 66, 0.08);
}

.spectrum-modal__hero img {
  display: block;
  width: 100%;
  height: auto;
}

.spectrum-modal__section {
  margin-bottom: 1.35rem;
}

.spectrum-modal__section--last {
  margin-bottom: 0.85rem;
}

.spectrum-modal__section h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--pls-navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.spectrum-modal__section p {
  margin-bottom: 0.75rem;
  color: var(--pls-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.spectrum-modal__section p:last-child {
  margin-bottom: 0;
}

.spectrum-modal__pull {
  font-family: var(--font-display);
  font-size: 1.12rem !important;
  font-weight: 500;
  font-style: italic;
  color: var(--pls-blue-deep) !important;
  line-height: 1.4 !important;
}

.spectrum-modal__section strong {
  color: var(--pls-navy);
  font-weight: 700;
}

.spectrum-modal .modal-footer {
  padding: 1rem 1.6rem 1.35rem;
  border-top: 1px solid rgba(10, 35, 66, 0.08);
  gap: 0.65rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.spectrum-modal .btn-close {
  margin-top: 0.15rem;
  opacity: 0.65;
}

.spectrum-modal .btn-close:hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .spectrum-orb img {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .hero-headline {
    max-width: none;
  }

  .features--mobile,
  .features--platform,
  .advantage,
  .spectrum {
    padding-top: 4.5rem;
  }

  .spectrum {
    padding-bottom: 4.5rem;
  }

  .industry {
    padding: 4.5rem 0 4rem;
  }

  .contact {
    padding: 4.5rem 0 5rem;
  }
}

/* ---------- Inner pages (about, careers, pros, cons) ---------- */
.nav-link-pls.is-active {
  color: var(--pls-blue-deep) !important;
  background: rgba(31, 127, 212, 0.1);
  font-weight: 600;
}

.page-hero {
  /* Fixed site-nav is out of flow — match Engage sticky clearance with nav offset + content pad */
  padding:
    calc(var(--pls-nav-offset) + clamp(1.75rem, 3.5vw, 2.5rem))
    0
    clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(900px 380px at 10% -20%, rgba(31, 127, 212, 0.14), transparent 55%),
    linear-gradient(180deg, #eef6fc, var(--pls-mist));
}

.page-hero--pros {
  background:
    radial-gradient(900px 380px at 10% -20%, rgba(26, 122, 76, 0.12), transparent 55%),
    linear-gradient(180deg, #eef6fc, var(--pls-mist));
}

.page-hero--cons {
  background:
    radial-gradient(900px 380px at 10% -20%, rgba(226, 106, 60, 0.12), transparent 55%),
    linear-gradient(180deg, #eef6fc, var(--pls-mist));
}

.page-hero--careers {
  background:
    radial-gradient(900px 380px at 12% -18%, rgba(11, 107, 199, 0.16), transparent 55%),
    linear-gradient(180deg, #e8f3fc, var(--pls-mist));
}

.page-body {
  background: #fff;
  border-top: 1px solid var(--pls-line);
}

.page-body .prose {
  max-width: 46rem;
  min-width: 0;
  overflow-x: clip;
}

@media (min-width: 992px) {
  .page-body .prose {
    padding-right: 1.5rem;
  }

  .page-body .deep-prose {
    padding-right: 1.75rem;
  }
}

.page-body .prose h2 {
  font-family: var(--font-display);
  color: var(--pls-navy);
  font-size: 1.55rem;
  margin-top: 2rem;
  letter-spacing: -0.02em;
}

.page-body .prose h3 {
  font-family: var(--font-display);
  color: var(--pls-navy);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  letter-spacing: -0.02em;
}

.page-body .prose p,
.page-body .prose li {
  color: var(--pls-muted);
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.page-body .prose a {
  word-break: break-word;
}

.page-body .row {
  --bs-gutter-x: 2.5rem;
}

.split-block {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: calc(var(--pls-radius) + 0.2rem);
  border: 1px solid var(--pls-line);
  background: linear-gradient(165deg, #fff 0%, var(--pls-mist) 100%);
}

.about-aside {
  min-height: 0;
}

/* Keep inset even: don’t let last child margins stack outside the block padding */
.about-aside > :last-child {
  margin-bottom: 0;
}

.about-aside .deep-aside-links li:last-child {
  margin-bottom: 0;
}

.about-aside-title {
  color: var(--pls-navy);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.about-aside-contact {
  margin: 1.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--pls-ink);
}

/* About: space under email when hours/location follow */
.about-aside-contact:not(:last-child) {
  margin-bottom: 0.85rem;
}

.about-aside-contact a {
  color: var(--pls-blue-deep);
  font-weight: 700;
  text-decoration: none;
}

.about-aside-contact a:hover {
  color: var(--pls-blue-ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Careers page contact band under white page-body */
.careers-contact {
  background: var(--pls-white);
  /* Less air than home (no full-bleed section above); keep form card near the prose */
  padding: 1.25rem 0 4rem;
  scroll-margin-top: var(--pls-nav-offset);
}

.page-body:has(+ .careers-contact) .container.py-5 {
  padding-bottom: 2rem !important;
}

@media (min-width: 992px) {
  .careers-contact {
    padding: 1.5rem 0 4.5rem;
  }
}

@media (min-width: 992px) {
  .about-aside {
    position: sticky;
    top: 5.75rem;
  }
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
  margin-bottom: 0;
}

.deep-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pls-blue-deep);
}

.deep-link:hover {
  color: var(--pls-blue-ink);
}

.deep-aside-title {
  color: var(--pls-navy);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.deep-aside {
  padding: 1.5rem 1.45rem;
  border-radius: var(--pls-radius);
  background: var(--pls-mist);
  border: 1px solid var(--pls-line);
}

@media (min-width: 992px) {
  .deep-aside {
    position: sticky;
    top: var(--pls-nav-offset);
    z-index: 5;
  }

  .privacy-toc.deep-aside {
    top: calc(var(--pls-nav-offset) + 10px);
  }
}

.deep-aside-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.deep-aside-links li {
  margin-bottom: 0.55rem;
}

.deep-aside-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--pls-navy);
}

.deep-aside-links a:hover {
  color: var(--pls-blue-deep);
}

.deep-prose > p {
  margin-bottom: 1rem;
}

.deep-prose > .deep-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--pls-navy);
  margin: 2.35rem 0 1rem;
}

.deep-prose > .deep-section-title:first-child {
  margin-top: 0;
}

.deep-prose > .deep-subsection-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pls-navy);
  margin: 1.75rem 0 0.85rem;
}

.deep-prose > .deep-accordion {
  margin: 1rem 0 1.75rem;
}

.deep-accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(31, 127, 212, 0.16);
  --bs-accordion-btn-color: var(--pls-navy);
  --bs-accordion-active-color: var(--pls-navy);
  --bs-accordion-btn-icon-width: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.deep-acc-item {
  border: 0 !important;
  border-radius: 1rem !important;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  margin: 0;
}

.page-body .prose h2.accordion-header,
.page-body .prose .accordion-header,
.deep-prose .accordion-header,
.deep-acc-item .accordion-header {
  margin: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  color: inherit !important;
}

.deep-acc-item .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
  gap: 0.75rem;
  padding: 0.85rem 1.05rem !important;
  margin: 0 !important;
  box-shadow: none !important;
  align-items: center;
  border-radius: 1rem !important;
  border: 1px solid var(--pls-line) !important;
  background: var(--pls-mist) !important;
  color: var(--pls-navy);
  min-height: 0;
}

.deep-acc-item .accordion-button:not(.collapsed) {
  color: var(--pls-navy);
  background: #fff !important;
  border-color: rgba(31, 127, 212, 0.28) !important;
  box-shadow: 0 14px 34px rgba(11, 107, 199, 0.1) !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.deep-acc-item .accordion-collapse {
  border: 1px solid rgba(31, 127, 212, 0.28);
  border-top: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: #fff;
}

.deep-acc-item .accordion-collapse:not(.show) {
  border: 0;
}

.deep-acc-item .accordion-button::after {
  margin: 0 0 0 auto !important;
  align-self: center;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

.deep-acc-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pls-blue-deep);
  background: #fff;
  border: 1px solid rgba(31, 127, 212, 0.2);
  flex-shrink: 0;
  margin: 0 !important;
  align-self: center;
}

.deep-acc-item .accordion-button:not(.collapsed) .deep-acc-index {
  background: var(--pls-blue-deep);
  border-color: var(--pls-blue-deep);
  color: #fff;
}

.deep-acc-title {
  flex: 1;
  text-align: left;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
  line-height: 1.35;
}

.deep-acc-body {
  --bs-accordion-body-padding-x: 1.15rem;
  --bs-accordion-body-padding-y: 1rem;
  padding: 1rem 1.15rem 1rem 3.7rem !important;
  color: var(--pls-muted);
}

.deep-acc-body > :first-child {
  margin-top: 0 !important;
}

.deep-acc-body > :last-child {
  margin-bottom: 0 !important;
}

.deep-acc-body p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.deep-acc-body p:last-child {
  margin-bottom: 0;
}

.deep-acc-body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
}

.deep-acc-body ul:last-child {
  margin-bottom: 0;
}

.deep-acc-body li {
  margin-bottom: 0.4rem;
  color: var(--pls-muted);
}

.deep-acc-body li:last-child {
  margin-bottom: 0;
}

.deep-acc-body a {
  word-break: break-word;
}

@media (max-width: 575.98px) {
  .deep-acc-body {
    padding: 1rem 1rem !important;
  }

  .deep-acc-item .accordion-button {
    font-size: 0.98rem;
    padding: 0.9rem 1rem !important;
  }
}

/* ---------- Privacy / legal ---------- */
.privacy-toc .lead-body {
  font-size: 0.95rem;
  margin-bottom: 1rem !important;
}

.privacy-toc-links {
  margin-top: 1rem;
}

.privacy-toc-links li {
  margin-bottom: 0.7rem;
}

.privacy-toc-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--pls-ink);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 0.65rem;
  display: block;
  line-height: 1.35;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.privacy-toc-links a:hover {
  color: var(--pls-blue-deep);
  border-left-color: var(--pls-blue);
}

.page-body .prose section {
  /* JS hash scroll subtracts nav height — avoid stacking with scroll-padding */
  scroll-margin-top: 0;
}

.page-body .prose-legal section {
  margin-bottom: 0.25rem;
}

.page-body .prose-legal h2 {
  margin-top: 2.25rem;
}

.page-body .prose-legal section:first-child > h2:first-child {
  margin-top: 0;
}

.page-body .prose-legal h3 {
  margin-top: 1.35rem;
}

.page-body .prose-legal p,
.page-body .prose-legal ul {
  margin-bottom: 1rem;
}

.page-body .prose-legal li {
  margin-bottom: 0.35rem;
}

.page-body .prose-legal p:last-child,
.page-body .prose-legal ul:last-child {
  margin-bottom: 0;
}

.page-body .prose-legal section + section > h2:first-child {
  margin-top: 2.25rem;
}

.page-body .prose-legal .privacy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.85rem;
  margin-bottom: 0;
  padding-top: 0;
}


/* Google reCAPTCHA v3 */
.recaptcha-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--pls-muted, #5c7188);
}

.recaptcha-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.grecaptcha-badge {
  z-index: 999 !important;
  /* Sit above Tawk / back-to-top without covering them */
  bottom: 6.75rem !important;
}

.contact .recaptcha-note {
  color: rgba(255, 255, 255, 0.58);
}

.contact .recaptcha-note a {
  color: rgba(255, 255, 255, 0.78);
}
