/* Process Legal Support — site styles
   Shared dark navy + cyan system (aligned with housingcourt) */

:root {
  --pls-blue: #14a0d5;
  --pls-blue-bright: #3bb4e0;
  --pls-blue-deep: #0e8fc0;
  --pls-blue-ink: #0a6f96;
  --pls-navy: #0f172a;
  --pls-dark: #0a0f1c;
  --pls-ink: #0f172a;
  --pls-muted: #64748b;
  --pls-ice: #e7f8ff;
  --pls-mist: #fafaf8;
  --pls-white: #ffffff;
  --pls-coral: #fb1313;
  --pls-red: #d71920;
  --pls-line: rgba(15, 23, 42, 0.12);
  --pls-line-light: rgba(255, 255, 255, 0.12);
  --pls-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  --pls-radius: 1rem;
  --pls-ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Matches fixed .site-nav height (logo + vertical padding) */
  --pls-nav-offset: 5rem;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Poppins", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--pls-nav-offset);
}

/* Privacy / legal page: extra px so TOC jumps clear the fixed nav (match Engage) */
html:has(.page-hero) {
  scroll-padding-top: calc(var(--pls-nav-offset) + 10px);
}

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.45rem;
}

.btn-pls .bi,
.btn-pls-outline .bi,
.btn-pls-light .bi,
.btn-label .bi {
  font-size: 1.05em;
  line-height: 1;
  flex-shrink: 0;
}

.btn-pls {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--pls-blue);
  --bs-btn-border-color: var(--pls-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--pls-blue-deep);
  --bs-btn-hover-border-color: var(--pls-blue-deep);
  --bs-btn-focus-shadow-rgb: 20, 160, 213;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--pls-blue-ink);
  --bs-btn-active-border-color: var(--pls-blue-ink);
  font-weight: 600;
  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(15, 23, 42, 0.2);
  --bs-btn-hover-color: var(--pls-navy);
  --bs-btn-hover-bg: rgba(20, 160, 213, 0.08);
  --bs-btn-hover-border-color: var(--pls-blue);
  --bs-btn-focus-shadow-rgb: 20, 160, 213;
  --bs-btn-active-color: var(--pls-navy);
  --bs-btn-active-bg: rgba(20, 160, 213, 0.12);
  --bs-btn-active-border-color: var(--pls-blue);
  font-weight: 600;
  border-radius: 0.55rem;
  padding: 0.75rem 1.4rem;
}

.hero .btn-pls-outline {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.45);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(20, 160, 213, 0.15);
  --bs-btn-hover-border-color: var(--pls-blue);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(20, 160, 213, 0.22);
  --bs-btn-active-border-color: var(--pls-blue);
}

.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.75rem 0 0.55rem;
  transition: background 0.35s var(--pls-ease), box-shadow 0.35s var(--pls-ease);
  background: transparent;
}

.site-nav.is-scrolled,
body:has(.page-hero) .site-nav {
  background: rgba(10, 15, 28, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

body:has(.page-hero) .site-nav.is-scrolled {
  background: rgba(10, 15, 28, 0.96);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff !important;
  text-decoration: none;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

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

.brand-logo-full {
  height: 60px;
  width: auto;
  max-width: 194px;
  display: block;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.brand-wordmark span {
  display: block;
}

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

.nav-link-pls {
  font-weight: 500;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 0.4rem 0.7rem !important;
}

.nav-link-pls:hover,
.nav-link-pls:focus {
  color: #fff !important;
}

.nav-phone {
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(20, 160, 213, 0.25);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: clip;
  padding: 9.75rem 0 5.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 88% 12%, rgba(20, 160, 213, 0.28), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 88%, rgba(215, 25, 32, 0.12), transparent 55%),
    linear-gradient(160deg, #0a0f1c 0%, #0f172a 48%, #00172d 100%);
}

.hero > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: 100%;
  gap: 0;
}

.hero-facet {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 48%, rgba(20, 160, 213, 0.07) 48.2%, rgba(20, 160, 213, 0.07) 62%, transparent 62.2%),
    linear-gradient(rgba(20, 160, 213, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 160, 213, 0.06) 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: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero-brand-mark {
  width: auto;
  height: 52px;
  max-width: 170px;
  border-radius: 0;
  flex-shrink: 0;
  box-shadow: none;
}

.hero-specialty {
  display: inline-block;
  margin: 0 0 1.05rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pls-blue);
  background: rgba(20, 160, 213, 0.12);
  border: 1px solid rgba(20, 160, 213, 0.3);
  border-radius: 999px;
  padding: 0.48rem 0.95rem 0.42rem;
  line-height: 1.2;
}

.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.15;
  color: #fff;
  margin: 0 0 1.1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

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

.hero-proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
}

.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: #fff;
}

.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 22px 36px rgba(10, 35, 66, 0.12));
  /* Soft edge dissolve into hero wash (heavier on the sides) */
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 12%,
      #000 78%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 10%,
      #000 88%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 12%,
      #000 78%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 10%,
      #000 88%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-visual-glow {
  position: absolute;
  width: 78%;
  height: 62%;
  left: 11%;
  top: 16%;
  background: radial-gradient(circle, rgba(20, 160, 213, 0.28), transparent 72%);
  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.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  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(20, 160, 213, 0.45);
  background: rgba(20, 160, 213, 0.12);
}

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

.hero-stat-strip span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  line-height: 1.2;
}

/* Desktop: larger art + align with left copy */
@media (min-width: 992px) {
  .hero-row {
    align-items: flex-start !important;
  }

  .hero-col-copy {
    padding-top: 1.35rem;
  }

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

  .hero-col-visual {
    align-items: flex-start;
    /* Tighten gutter around the illustration column */
    padding-left: 0.35rem;
    padding-right: 0;
  }

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

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

  .hero-stat-strip {
    margin-top: 0.5rem;
    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;
  }
}

@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;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  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,
    border-color 0.35s ease;
}

.trust-item--tint {
  background: rgba(255, 255, 255, 0.06);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  background: rgba(20, 160, 213, 0.12);
  border-color: rgba(20, 160, 213, 0.35);
}

.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-bright);
  background: rgba(20, 160, 213, 0.16);
  border-radius: 0.7rem;
}

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

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

/* ---------- Why / features ---------- */
.why {
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, transparent, #fff 18%, #fff 82%, var(--pls-mist));
}

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

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

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--pls-shadow);
}

.feature-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pls-navy);
  margin-bottom: 0.5rem;
}

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

/* ---------- 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, #0a0f1c 0%, #0f172a 48%, #00172d 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 .display-heading {
  margin-bottom: 0;
}

/* Match section-lead size/weight; lighten for dark blue ground */
.challenges .section-lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: none;
  margin-inline: 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;
}

/* ---------- 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-panel {
  height: 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;
}

.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;
}

.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 .col-lg-6 > p {
  color: var(--pls-muted);
  font-size: 1.02rem;
  margin-bottom: 0;
}

.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-ink);
  font-weight: 500;
}

.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-dark), #0f172a);
  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;
  background: #fff;
}

.coverage-panel {
  height: 100%;
  padding: 1.6rem 1.4rem;
  border-radius: var(--pls-radius);
  background: linear-gradient(165deg, #f4faff, var(--pls-ice));
  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, var(--pls-ice), #d7f0fa);
}

.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: 0 0 5rem;
  background: linear-gradient(180deg, #fff 0%, var(--pls-mist) 100%);
}

.contact-shell {
  border-radius: calc(var(--pls-radius) + 0.35rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 160, 213, 0.28), transparent 40%),
    linear-gradient(135deg, #0a0f1c 0%, #0f172a 50%, #00172d 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(20, 160, 213, 0.18);
  pointer-events: none;
}

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

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

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

/* Phone — display type, same as industry */
.contact-direct a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

/* Email — smaller body type under the phone (industry pattern) */
.contact-direct a.contact-email {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  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-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: 10.5rem;
  min-height: 2.85rem;
}

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

.contact-form .btn-pls-light .btn-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.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;
}

/* 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 2.5rem;
  background: var(--pls-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.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-logo-full {
  height: 56px;
  width: auto;
  max-width: 180px;
  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;
}

.footer-tagline {
  margin: 0;
  max-width: 28rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  margin-bottom: 0.65rem;
  justify-content: flex-end;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.94rem;
}

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

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  text-align: right;
}

.footer-phone {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.3;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-decoration: none;
}

.footer-copy a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Legal / privacy pages (Engage-style) ---------- */
.page-hero {
  padding: clamp(6.5rem, 10vw, 7.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(900px 380px at 10% -20%, rgba(20, 160, 213, 0.18), transparent 55%),
    linear-gradient(180deg, #0a0f1c, #0f172a);
  color: #fff;
}

.page-hero .display-heading {
  color: #fff;
}

.page-hero .lead-body {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

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

.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 {
  color: var(--pls-blue-deep);
  font-weight: 600;
  word-break: break-word;
}

.page-body .prose a:hover {
  color: var(--pls-blue-ink);
}

.page-body .prose a.btn {
  font-weight: 700;
  word-break: normal;
}

.page-body .prose a.btn-pls,
.page-body .prose a.btn-pls:hover,
.page-body .prose a.btn-pls:focus {
  color: #fff;
}

.page-body .prose a.btn-pls-outline,
.page-body .prose a.btn-pls-outline:hover,
.page-body .prose a.btn-pls-outline:focus {
  color: var(--pls-navy);
}

.page-body .prose strong {
  color: var(--pls-navy);
}

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

.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;
  }

  html:has(.page-hero) .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);
  text-decoration: none;
}

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

.privacy-toc .lead-body {
  font-size: 0.95rem;
  margin-top: 0.35rem;
  color: var(--pls-muted);
}

.privacy-toc-links {
  margin-top: 1.15rem;
  max-height: min(70vh, 32rem);
  overflow-y: auto;
  padding-right: 0.25rem;
}

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

.privacy-toc-links a {
  font-size: 0.95rem;
  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 {
  /* Offset comes only from html scroll-padding (fixed nav) — avoid double jump */
  scroll-margin-top: 0;
}

.page-body .prose h2,
.page-body .prose h3 {
  scroll-margin-top: 0;
}

.page-body .prose-legal section {
  margin: 0;
  padding: 0;
}

.page-body .prose-legal h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.page-body .prose-legal h3 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

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

.page-body .prose-legal li {
  margin: 0;
}

.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: 1.5rem;
}

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

/* Floating back-to-top (shown after hero) */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  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(10, 15, 28, 0.98);
    border-radius: 0.85rem;
    margin-top: 0.75rem;
    padding: 0.85rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    padding: 7.75rem 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);
  }

  .footer-nav,
  .footer-meta {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
  }
}

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

  .brand-logo-full {
    height: 50px;
    max-width: 162px;
  }

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

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

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

  .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: 1rem;
    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,
  .btn-spinner {
    animation: none !important;
    transition: none !important;
  }

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

/* 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,
.partner-interest .recaptcha-note {
  color: rgba(255, 255, 255, 0.58);
}

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

.partner-hero .partner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.partner-section {
  padding: 4.75rem 0;
  background: #fff;
}

.partner-section--mist {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(20, 160, 213, 0.08), transparent 60%),
    linear-gradient(180deg, #f7fafc 0%, #fff 100%);
}

.partner-copy {
  color: var(--pls-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 34rem;
}

.partner-feature {
  height: 100%;
  padding: 1.75rem 1.55rem;
  border-radius: var(--pls-radius);
  background: #fff;
  border: 1px solid var(--pls-line);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.partner-feature__icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgba(20, 160, 213, 0.12);
  color: var(--pls-blue-deep);
  font-size: 1.25rem;
}

.partner-feature h2 {
  font-family: var(--font-display);
  color: var(--pls-navy);
  margin-bottom: 0.65rem;
}

.partner-feature p {
  margin: 0;
  color: var(--pls-muted);
  line-height: 1.6;
}

.partner-step {
  position: relative;
  height: 100%;
  padding: 1.55rem 1.35rem;
  border-radius: var(--pls-radius);
  border: 1px solid var(--pls-line);
  background: linear-gradient(165deg, #fff, #f3faff);
  overflow: hidden;
  transition:
    transform 0.4s var(--pls-ease),
    border-color 0.35s ease,
    box-shadow 0.4s var(--pls-ease);
}

.partner-step::after {
  content: "";
  position: absolute;
  top: -3.5rem;
  right: -3.5rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: rgba(20, 160, 213, 0.1);
  pointer-events: none;
  transition: transform 0.45s var(--pls-ease), background 0.35s ease;
}

.partner-step:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 160, 213, 0.35);
  box-shadow: 0 18px 40px rgba(10, 35, 66, 0.1);
}

.partner-step:hover::after {
  transform: scale(1.25);
  background: rgba(20, 160, 213, 0.18);
}

.partner-step__num {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: rgba(20, 160, 213, 0.55);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.35s ease, transform 0.4s var(--pls-ease);
}

.partner-step:hover .partner-step__num {
  color: var(--pls-blue);
  transform: translateY(-2px);
}

.partner-step h3,
.partner-step p {
  position: relative;
  z-index: 1;
}

.partner-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pls-navy);
  margin-bottom: 0.55rem;
}

.partner-step p {
  margin: 0;
  color: var(--pls-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.partner-who {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.partner-who li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--pls-line);
  color: var(--pls-navy);
  font-weight: 500;
}

.partner-who i {
  color: var(--pls-blue);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.partner-perk {
  height: 100%;
  text-align: center;
  padding: 1.5rem 1.15rem;
  border-radius: var(--pls-radius);
  border: 1px solid var(--pls-line);
  background: #fff;
}

.partner-perk > i {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(20, 160, 213, 0.12);
  color: var(--pls-blue-deep);
  font-size: 1.2rem;
}

.partner-perk h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--pls-navy);
  margin-bottom: 0.45rem;
}

.partner-perk p {
  margin: 0;
  color: var(--pls-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.partner-guidelines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.partner-guidelines li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.35rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--pls-line);
  color: var(--pls-muted);
  line-height: 1.5;
}

.partner-guidelines li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pls-blue);
}

.partner-faq {
  max-width: 46rem;
  margin: 0 auto;
}

.partner-faq--side {
  max-width: none;
  margin: 0;
}

.partner-faq .accordion-item {
  border: 1px solid var(--pls-line);
  border-radius: 0.85rem !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
}

.partner-faq .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pls-navy);
  box-shadow: none;
  background: #fff;
}

.partner-faq .accordion-button:not(.collapsed) {
  color: var(--pls-navy);
  background: #f3faff;
  box-shadow: none;
}

.partner-faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.partner-faq .accordion-body {
  color: var(--pls-muted);
  line-height: 1.6;
}

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

.partner-interest__shell {
  border-radius: calc(var(--pls-radius) + 0.35rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 160, 213, 0.28), transparent 40%),
    linear-gradient(135deg, #0a0f1c 0%, #0f172a 50%, #00172d 100%);
  color: #fff;
  padding: clamp(2rem, 4vw, 3.25rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--pls-shadow);
}

.partner-interest__shell::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -100px;
  border-radius: 40% 60% 55% 45%;
  background: rgba(20, 160, 213, 0.18);
  pointer-events: none;
}

.partner-interest__shell > .row {
  position: relative;
  z-index: 1;
}

.partner-interest__shell .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.partner-interest__shell p {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.partner-interest__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);
}

.partner-form .btn-pls-light {
  min-width: 14rem;
}

@media (max-width: 767.98px) {
  .partner-section {
    padding: 3.75rem 0;
  }
}



/* Shared form-select (partner page) */
.contact-form .form-select {
  border-radius: 0.55rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--pls-ink);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  min-height: 2.85rem;
}

.contact-form .form-select:focus {
  border-color: rgba(20, 160, 213, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(20, 160, 213, 0.18);
}

.heading-accent {
  color: var(--pls-accent);
}

