/* ===================================================================
   Prudentia Learning — Design System
   =================================================================== */

:root {
  /* Brand colors */
  --pl-navy:      #0A2342;  /* header, footer, dark sections */
  --pl-blue:      #2563FF;  /* primary buttons, links, icons */
  --pl-emerald:   #10B981;  /* ONLY outcome/proof — metrics, checks, success */

  /* Surfaces & text */
  --pl-canvas:    #F6F8FC;
  --pl-ink:       #13233D;
  --pl-muted:     #5A6B85;
  --pl-border:    #E3E9F2;
  --pl-white:     #FFFFFF;

  /* Typography */
  --pl-font-head: 'Montserrat', system-ui, sans-serif;
  --pl-font-body: 'Inter', system-ui, sans-serif;

  /* Shape & depth */
  --pl-radius-card: 16px;
  --pl-radius-pill: 999px;
  --pl-shadow-sm:  0 2px 8px rgba(10, 35, 66, 0.06);
  --pl-shadow-md:  0 8px 24px rgba(10, 35, 66, 0.08);
  --pl-shadow-lg:  0 20px 48px rgba(10, 35, 66, 0.12);
}

/* ===================================================================
   Base typography
   =================================================================== */

body {
  font-family: var(--pl-font-body);
  font-weight: 400;
  color: var(--pl-ink);
  background-color: var(--pl-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pl-font-head);
  font-weight: 700;
  color: var(--pl-ink);
  line-height: 1.2;
}

p {
  color: var(--pl-muted);
  line-height: 1.65;
}

a {
  color: var(--pl-blue);
  text-decoration: none;
}

a:hover {
  color: var(--pl-navy);
}

/* ===================================================================
   Buttons
   =================================================================== */

.pl-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pl-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pl-white);
  background-color: var(--pl-blue);
  border: none;
  border-radius: var(--pl-radius-pill);
  padding: 0.65rem 1.5rem;
  box-shadow: 0 6px 16px rgba(37, 99, 255, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pl-btn-primary:hover {
  color: var(--pl-white);
  background-color: #1a4ff0;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 255, 0.34);
}

.pl-btn-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pl-font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--pl-white);
  background-color: var(--pl-emerald);
  border: none;
  border-radius: var(--pl-radius-pill);
  padding: 0.8rem 1.75rem;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pl-btn-emerald:hover {
  color: var(--pl-white);
  background-color: #0ea472;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(16, 185, 129, 0.4);
}

.pl-btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pl-font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--pl-white);
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--pl-radius-pill);
  padding: 0.8rem 1.75rem;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.pl-btn-outline-light:hover {
  color: var(--pl-white);
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* ===================================================================
   Header — topbar
   =================================================================== */

.pl-topbar {
  background-color: var(--pl-navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  padding: 0.5rem 0;
}

.pl-topbar-tagline {
  color: rgba(255, 255, 255, 0.72);
}

.pl-topbar-contact {
  display: flex;
  gap: 1.75rem;
}

.pl-topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.pl-topbar-contact a:hover {
  color: var(--pl-white);
}

.pl-topbar-contact svg { color: var(--pl-blue); }

/* ===================================================================
   Header — sticky navbar
   =================================================================== */

/* Sticky header.
   The navbar itself cannot be the sticky element: its containing block is
   <header>, which ends at the navbar, so it unsticks almost immediately.
   Sticking <header> and pulling it up by the topbar height lets the topbar
   scroll away while the navbar pins to the top of the viewport.
   --pl-topbar-h and --pl-nav-h are measured at runtime in script.js;
   the fallbacks here keep it correct before JS runs and without JS. */
.pl-header {
  position: sticky;
  top: calc(-1 * var(--pl-topbar-h, 37px));
  /* Above Bootstrap's offcanvas backdrop (1040). The sticky header is a
     stacking context, so the mobile drawer inside it can never paint above
     the backdrop on its own — it would sit behind the dim layer. */
  z-index: 1046;
}

/* Topbar is hidden below xl — nothing to pull up */
@media (max-width: 1199.98px) {
  .pl-header { top: 0; }
}

.pl-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--pl-border);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.pl-navbar.pl-navbar--scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--pl-shadow-md);
  border-bottom-color: transparent;
}

/* Logo */
.pl-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.pl-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--pl-white);
  background: linear-gradient(135deg, var(--pl-blue) 0%, var(--pl-navy) 100%);
  border-radius: 11px;
  box-shadow: 0 4px 12px rgba(37, 99, 255, 0.3);
}

.pl-brand-word {
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--pl-navy);
  letter-spacing: -0.01em;
  line-height: 1;
}

.pl-brand-word strong {
  font-weight: 700;
  color: var(--pl-blue);
  margin-left: 0.3rem;
  letter-spacing: 0.04em;
  font-size: 0.9em;
}

/* Nav link spacing (desktop).
   The link row and the CTA were meeting with no breathing room at common
   laptop widths, so the last item read as part of the button. Sizes step
   down between 992px and 1400px instead of letting the row crowd. */
@media (min-width: 1200px) {
  /* True centring: mx-auto only centres the links in the space left over
     after the logo and CTA, which are different widths, so the row sat
     off-centre. Taking the list out of flow pins it to the page's middle. */
  .pl-navbar .container { position: relative; }

  .pl-navbar .pl-drawer .navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .pl-navbar .pl-drawer { justify-content: flex-end; }

  .pl-navbar .navbar-nav { gap: 0.3rem; }
  .pl-navbar .nav-link {
    font-size: 0.97rem;
    padding: 0.5rem 0.7rem;
    white-space: nowrap;   /* "Case Studies" was breaking onto two lines */
  }
  .pl-nav-cta { margin-left: 1.25rem; }
  .pl-brand img { width: 132px; height: auto; }
}

/* Centring makes the link row symmetric about the page middle, while the
   logo and CTA are not the same width — so the row must stay narrow enough
   to clear the wider side (the button) at this breakpoint. */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .pl-navbar .navbar-nav { gap: 0.1rem; }
  .pl-navbar .nav-link { font-size: 0.92rem; padding: 0.5rem 0.55rem; }
  .pl-nav-cta .btn { padding-left: 1.2rem; padding-right: 1.2rem; font-size: 0.9rem; }
}

@media (min-width: 1400px) {
  .pl-navbar .navbar-nav { gap: 0.55rem; }
  .pl-navbar .nav-link { font-size: 1.02rem; padding: 0.5rem 0.9rem; }
  .pl-nav-cta { margin-left: 2rem; }
  .pl-brand img { width: 150px; }
}

/* CTA — pinned right */
.pl-nav-cta { flex-shrink: 0; }

@media (max-width: 1199.98px) {
  .pl-nav-cta { margin-top: 0.75rem; }
}

/* Nav links */
.pl-navbar .nav-link {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--pl-ink);
  padding: 0.5rem 0.9rem;
  transition: color 0.15s ease;
}

.pl-navbar .nav-link:hover,
.pl-navbar .nav-link:focus {
  color: var(--pl-blue);
}

/* Active page — used by every subpage's nav and Solutions dropdown */
.pl-navbar .nav-link.active {
  color: var(--pl-blue);
  font-weight: 600;
}

.pl-dd-item.active {
  background-color: rgba(37, 99, 255, 0.06);
}

.pl-dd-item.active .pl-dd-title {
  color: var(--pl-blue);
}

/* ===================================================================
   Dropdowns
   =================================================================== */

.pl-dropdown-menu {
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  box-shadow: var(--pl-shadow-lg);
  padding: 0.5rem;
  margin-top: 0;
}

.pl-dropdown-wide { min-width: 340px; }

.pl-dd-item {
  display: block;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  white-space: normal;
}

.pl-dd-item:hover,
.pl-dd-item:focus {
  background-color: var(--pl-canvas);
}

.pl-dd-title {
  display: block;
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--pl-navy);
}

.pl-dd-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--pl-muted);
  line-height: 1.35;
  margin-top: 0.1rem;
}

.pl-dd-item:hover .pl-dd-title { color: var(--pl-blue); }

/* Open dropdowns on hover — desktop only */
@media (min-width: 992px) {
  /* transparent bridge so cursor gap between toggle and menu doesn't close it */
  .pl-dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.6rem;
    left: 0;
    width: 100%;
    height: 0.6rem;
  }

  .pl-dropdown:hover > .dropdown-menu,
  .pl-dropdown > .dropdown-menu.show {
    display: block;
    margin-top: 0.5rem;
  }

  /* neutralize Bootstrap click-toggle on desktop so hover state is the source of truth */
  .pl-dropdown > .dropdown-toggle {
    pointer-events: auto;
  }
}

/* ===================================================================
   Hero
   =================================================================== */

.pl-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--pl-navy);
  color: var(--pl-white);
  padding: 5.5rem 0 6rem;
}

/* faint grid pattern */
.pl-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 100%);
  pointer-events: none;
}

/* radial glows */
.pl-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}

.pl-hero-glow--blue {
  width: 520px; height: 520px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.55) 0%, transparent 70%);
}

.pl-hero-glow--emerald {
  width: 460px; height: 460px;
  bottom: -180px; right: -100px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
}

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

.pl-eyebrow {
  display: inline-block;
  font-family: var(--pl-font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8FB3FF;
  padding: 0.4rem 0.9rem;
  background: rgba(37, 99, 255, 0.12);
  border: 1px solid rgba(37, 99, 255, 0.3);
  border-radius: var(--pl-radius-pill);
  margin-bottom: 1.4rem;
}

.pl-hero-title {
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--pl-white);
  margin-bottom: 1.4rem;
}

.pl-underline-wrap {
  position: relative;
  white-space: nowrap;
  color: var(--pl-white);
}

.pl-underline {
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 0.34em;
  color: var(--pl-emerald);
  overflow: visible;
}

.pl-underline path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}

.pl-hero-sub {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin-bottom: 2rem;
}

.pl-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.pl-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Hero title: line-by-line reveal */
.pl-hero-title--lines .pl-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
}

.pl-hero-title--lines .pl-title-line-in {
  display: inline-block;
}

/* Typewriter */
.pl-type {
  display: inline;
  white-space: pre-wrap;
}

.pl-title-line-in.is-typing::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 0.06em;
  vertical-align: -0.12em;
  background: var(--pl-emerald);
  animation: pl-caret 0.8s steps(1) infinite;
}

@keyframes pl-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Keep the heading block from collapsing before text is typed */
.pl-hero-title--lines .pl-title-line {
  min-height: 1.15em;
}

@media (prefers-reduced-motion: reduce) {
  .pl-title-line-in.is-typing::after { animation: none; }
}

/* Full-width hero copy (no side visual) */
.pl-hero-copy--full .pl-hero-sub {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.pl-hero-copy--full .pl-hero-title {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pl-hero-copy--full .pl-hero-cta,
.pl-hero-copy--full .pl-hero-chips {
  justify-content: center;
}

.pl-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pl-radius-pill);
  padding: 0.45rem 0.95rem;
}

.pl-chip svg {
  width: 16px; height: 16px;
  color: var(--pl-emerald);
  flex-shrink: 0;
}

/* Hero visual */
.pl-hero-visual {
  position: relative;
  padding: 1.5rem;
}

.pl-hero-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 3.4;
}

.pl-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* graceful image fallback — navy gradient fills the box when photo missing */
img.pl-img-fallback {
  background: linear-gradient(135deg, #163a63 0%, #0A2342 60%, #071B36 100%);
  min-height: 100%;
}

.pl-hero-photo img.pl-img-fallback {
  background: linear-gradient(135deg, #163a63 0%, #0A2342 60%, #071B36 100%);
}

/* Floating stat cards */
.pl-float-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: var(--pl-white);
  border-radius: var(--pl-radius-card);
  box-shadow: var(--pl-shadow-lg);
  padding: 1rem 1.25rem;
  min-width: 160px;
}

.pl-float-card--tl { top: -0.5rem; left: -1rem; }
.pl-float-card--br { bottom: -0.5rem; right: -1rem; }

.pl-float-metric {
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--pl-emerald);
  line-height: 1;
}

.pl-float-label {
  font-size: 0.8rem;
  color: var(--pl-muted);
  line-height: 1.3;
}

@media (max-width: 575.98px) {
  .pl-float-card { min-width: 140px; padding: 0.8rem 1rem; }
  .pl-float-card--tl { left: -0.25rem; }
  .pl-float-card--br { right: -0.25rem; }
}

/* ===================================================================
   Client logos — marquee
   =================================================================== */

.pl-clients {
  position: relative;
  background: var(--pl-white);
  padding: 0;
}

.pl-clients-fluid { width: 100%; }

/* full-bleed band */
.pl-clients-panel {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(120deg, #EEF3FF 0%, #F3F7FF 100%);
  border-top: 1px solid var(--pl-border);
  border-bottom: 1px solid var(--pl-border);
  padding: 0.85rem 4vw;
}

.pl-clients-intro { flex-shrink: 0; max-width: 200px; }

.pl-clients-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pl-blue);
  margin-bottom: 0.4rem;
}

.pl-clients-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pl-emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pl-clients-ping 2s ease-out infinite;
}

@keyframes pl-clients-ping {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pl-clients-label {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--pl-navy);
  margin: 0;
  line-height: 1.35;
}

.pl-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pl-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: pl-marquee 30s linear infinite;
}

.pl-marquee:hover .pl-marquee-track {
  animation-play-state: paused;
}

@media (max-width: 767.98px) {
  .pl-clients-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
  }
  .pl-clients-intro { max-width: none; }
  .pl-marquee { width: 100%; }
}

/* wordmark */
.pl-client {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  color: #93A2BC;
  transition: color 0.25s ease;
}

.pl-client:hover { color: var(--pl-navy); }

@keyframes pl-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .pl-marquee-track { animation: none; }
  .pl-clients-dot { animation: none; }
}

/* ===================================================================
   Shared section header
   =================================================================== */

.pl-section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.pl-eyebrow--light {
  color: var(--pl-blue);
  background: rgba(37, 99, 255, 0.08);
  border-color: rgba(37, 99, 255, 0.2);
}

.pl-section-title {
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: var(--pl-ink);
  margin-bottom: 1rem;
}

.pl-section-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--pl-muted);
}

/* ===================================================================
   Talent Value Chain
   =================================================================== */

.pl-tvc {
  position: relative;
  overflow: hidden;
  background: var(--pl-canvas);
  padding: 5.5rem 0 6rem;
}

.pl-tvc > .container { position: relative; z-index: 1; }

/* animated background process lines */
.pl-tvc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  pointer-events: none;
}

.pl-tvc-bg-lines path {
  stroke-dasharray: 14 10;
  animation: pl-tvc-flow 3s linear infinite;
  animation-delay: calc(var(--pl-d) * -0.6s);
}

@keyframes pl-tvc-flow {
  to { stroke-dashoffset: -48; }
}

/* travelling data pulses along the lines */
.pl-tvc-bg-pulses circle {
  animation: pl-tvc-pulse 6s linear infinite;
  animation-delay: var(--pl-o);
}

@keyframes pl-tvc-pulse {
  0%   { transform: translateX(0);      opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(1200px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pl-tvc-bg-lines path,
  .pl-tvc-bg-pulses circle { animation: none; }
  .pl-tvc-bg-pulses { display: none; }
}

.pl-tvc-flow { position: relative; }

/* connecting gradient line — desktop only */
.pl-tvc-line {
  display: none;
  position: absolute;
  top: 38px;               /* aligns to node centre */
  left: 12.5%;
  width: 75%;
  height: 4px;
  overflow: visible;
}

.pl-tvc-line-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* horizontal flowing dashes over the connector */
.pl-tvc-line-flow {
  opacity: 0.55;
  stroke-dasharray: 12 16;
  animation: pl-tvc-line-flow 1.1s linear infinite;
}

@keyframes pl-tvc-line-flow {
  to { stroke-dashoffset: -28; }
}

/* travelling pulse running left to right */
.pl-tvc-line-pulse {
  fill: var(--pl-emerald);
  animation: pl-tvc-line-pulse 3.2s linear infinite;
}

@keyframes pl-tvc-line-pulse {
  0%   { transform: translateX(0);      opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { transform: translateX(1000px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pl-tvc-line-flow,
  .pl-tvc-line-pulse { animation: none; }
  .pl-tvc-line-pulse { display: none; }
}

@media (min-width: 992px) {
  .pl-tvc-line { display: block; }
}

.pl-tvc-steps { position: relative; z-index: 1; }

.pl-tvc-steps > [class*="col-"] { display: flex; }

.pl-tvc-step {
  position: relative;
  text-align: center;
  padding: 2.2rem 1.4rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  --pl-tvc-from: #2563FF;
  --pl-tvc-to:   #1a4ff0;
  --pl-tvc-glow: rgba(37, 99, 255, 0.35);
}

/* gradient top edge that reveals on hover/lit */
.pl-tvc-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--pl-tvc-from), var(--pl-tvc-to));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pl-tvc-step:hover,
.pl-tvc-step.is-lit {
  box-shadow: 0 22px 44px var(--pl-tvc-glow);
  border-color: transparent;
}

/* lift only on genuine hover, so the scroll-lit state never breaks the row */
.pl-tvc-step:hover { transform: translateY(-8px); }

.pl-tvc-step:hover::before,
.pl-tvc-step.is-lit::before { transform: scaleX(1); }

/* arrow connector between steps (desktop) */
.pl-tvc-steps > [class*="col-"]:not(:last-child) .pl-tvc-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.6rem;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 2px solid var(--pl-border);
  border-right: 2px solid var(--pl-border);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.35s ease;
}

@media (max-width: 991.98px) {
  .pl-tvc-steps > [class*="col-"] .pl-tvc-step::after { display: none; }
}

/* light the node on hover too */
.pl-tvc-step:hover .pl-tvc-node {
  color: var(--pl-white);
  background: linear-gradient(135deg, var(--pl-tvc-from) 0%, var(--pl-tvc-to) 100%);
  border-color: transparent;
  box-shadow: 0 14px 30px var(--pl-tvc-glow);
}

.pl-tvc-step--emerald {
  --pl-tvc-from: #10B981;
  --pl-tvc-to:   #0ea472;
  --pl-tvc-glow: rgba(16, 185, 129, 0.35);
}

/* per-stage node colours */
.pl-tvc-step--s1 {
  --pl-tvc-from: #2563FF;
  --pl-tvc-to:   #1d4fd8;
  --pl-tvc-glow: rgba(37, 99, 255, 0.35);
  --pl-tvc-stage-color: #2563FF;
}
.pl-tvc-step--s2 {
  --pl-tvc-from: #7C3AED;
  --pl-tvc-to:   #5B21B6;
  --pl-tvc-glow: rgba(124, 58, 237, 0.35);
  --pl-tvc-stage-color: #7C3AED;
}
.pl-tvc-step--s3 {
  --pl-tvc-from: #F59E0B;
  --pl-tvc-to:   #D97706;
  --pl-tvc-glow: rgba(245, 158, 11, 0.35);
  --pl-tvc-stage-color: #D97706;
}
.pl-tvc-step--s4 {
  --pl-tvc-from: #10B981;
  --pl-tvc-to:   #0ea472;
  --pl-tvc-glow: rgba(16, 185, 129, 0.35);
  --pl-tvc-stage-color: #10B981;
}

/* keep the stage / title / copy rows aligned across all four cards */
.pl-tvc-step .pl-tvc-desc { margin-bottom: 0; }
.pl-tvc-step .pl-tvc-title { min-height: 2.6rem; display: flex; align-items: center; }

/* icon node */
.pl-tvc-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 1.4rem;
  color: var(--pl-navy);
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: 20px;
  box-shadow: var(--pl-shadow-sm);
  transition: color 0.4s ease, background 0.4s ease,
              box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.pl-tvc-node svg { width: 34px; height: 34px; }

/* lit state */
.pl-tvc-step.is-lit .pl-tvc-node {
  color: var(--pl-white);
  background: linear-gradient(135deg, var(--pl-tvc-from) 0%, var(--pl-tvc-to) 100%);
  border-color: transparent;
  box-shadow: 0 14px 30px var(--pl-tvc-glow);
}

.pl-tvc-stage {
  display: block;
  font-family: var(--pl-font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pl-tvc-stage-color, var(--pl-blue));
  margin-bottom: 0.4rem;
}

.pl-tvc-title {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--pl-ink);
  margin-bottom: 0.6rem;
}

.pl-tvc-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pl-muted);
  max-width: 240px;
  margin: 0 auto;
}

.pl-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pl-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pl-blue);
  background-color: transparent;
  border: 1.5px solid var(--pl-blue);
  border-radius: var(--pl-radius-pill);
  padding: 0.65rem 1.5rem;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.pl-btn-outline:hover {
  color: var(--pl-white);
  background-color: var(--pl-blue);
  transform: translateY(-1px);
}

/* ===================================================================
   Solutions overview
   =================================================================== */

.pl-solutions {
  background: var(--pl-white);
  padding: 5.5rem 0 6rem;
}

.pl-solutions-head { margin-bottom: 3rem; }

.pl-sol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  padding: 2rem 1.75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/* gradient sweep bar on top edge */
.pl-sol-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pl-sol-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pl-shadow-lg);
  border-color: transparent;
}

.pl-sol-card:hover::before { transform: scaleX(1); }

.pl-sol-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.4rem;
  color: var(--pl-blue);
  background: rgba(37, 99, 255, 0.09);
  border-radius: 14px;
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.pl-sol-icon svg { width: 28px; height: 28px; }

.pl-sol-card:hover .pl-sol-icon {
  color: var(--pl-white);
  background: var(--pl-blue);
  transform: rotate(-6deg);
}

.pl-sol-title {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--pl-ink);
  margin-bottom: 0.6rem;
}

.pl-sol-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pl-muted);
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.pl-sol-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pl-blue);
}

.pl-arrow {
  display: inline-block;
  transition: transform 0.24s ease;
}

.pl-sol-card:hover .pl-arrow { transform: translateX(5px); }

/* ===================================================================
   Why Prudentia
   =================================================================== */

.pl-why {
  position: relative;
  overflow: hidden;
  background: var(--pl-navy);
  color: var(--pl-white);
  padding: 5.5rem 0 6rem;
}

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

.pl-section-title--light { color: var(--pl-white); }

/* glassy pillars */
.pl-pillar {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pl-radius-card);
  padding: 1.75rem 1.5rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.pl-pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-6px);
}

.pl-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  color: var(--pl-white);
  background: rgba(37, 99, 255, 0.22);
  border: 1px solid rgba(37, 99, 255, 0.35);
  border-radius: 13px;
}

.pl-pillar-icon svg { width: 26px; height: 26px; }

.pl-pillar-title {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pl-white);
  margin-bottom: 0.5rem;
}

.pl-pillar-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.pl-why-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 3.5rem 0;
  opacity: 1;
}

/* stat counters */
.pl-stat-num {
  display: block;
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--pl-white);
}

.pl-stat-suffix { color: var(--pl-emerald); }

.pl-stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

/* ===================================================================
   Case studies
   =================================================================== */

.pl-cases {
  background: var(--pl-canvas);
  padding: 5.5rem 0 6rem;
}

.pl-case-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pl-case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pl-shadow-lg);
}

.pl-case-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pl-case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pl-case-card:hover .pl-case-media img { transform: scale(1.07); }

.pl-case-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pl-navy);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: var(--pl-radius-pill);
  padding: 0.35rem 0.85rem;
  box-shadow: var(--pl-shadow-sm);
}

.pl-case-body {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem 1.75rem;
  flex-grow: 1;
}

.pl-case-metric {
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--pl-emerald);
}

.pl-case-metric-cap {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pl-muted);
  margin: 0.35rem 0 1rem;
}

.pl-case-title {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pl-ink);
  margin-bottom: 0.55rem;
}

.pl-case-summary {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--pl-muted);
  margin: 0;
}

/* ===================================================================
   Leadership team
   =================================================================== */

.pl-team {
  background: var(--pl-white);
  padding: 5.5rem 0 6rem;
}

.pl-team-card { text-align: center; }

.pl-team-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  margin-bottom: 1.1rem;
  box-shadow: var(--pl-shadow-sm);
}

.pl-team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pl-team-card:hover .pl-team-photo img { transform: scale(1.06); }

/* Initials fallback when a team member has no photo uploaded */
.pl-team-photo .ab-avatar {
  width: 100%;
  height: 100%;
  border-radius: 0;
  margin: 0;
  font-size: 2.2rem;
}

img.ab-avatar { object-fit: cover; }

.pl-team-name {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pl-ink);
  margin-bottom: 0.25rem;
}

.pl-team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pl-blue);
}

/* ===================================================================
   Insights & resources
   =================================================================== */

.pl-insights {
  background: var(--pl-canvas);
  padding: 5.5rem 0 6rem;
}

.pl-article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pl-article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pl-shadow-lg);
}

.pl-article-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.pl-article-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pl-article-card:hover .pl-article-media img { transform: scale(1.07); }

.pl-article-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  flex-grow: 1;
}

.pl-article-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--pl-emerald);
  margin-bottom: 0.7rem;
}

.pl-article-title {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pl-ink);
  margin-bottom: 0.55rem;
}

.pl-article-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--pl-muted);
  margin: 0;
}

/* ===================================================================
   Contact / Book a Demo
   =================================================================== */

.pl-contact {
  background: var(--pl-canvas);
  padding: 5rem 0 6rem;
}

.pl-contact-band {
  position: relative;
  overflow: hidden;
  background: var(--pl-navy);
  color: var(--pl-white);
  border-radius: 28px;
  padding: 3.5rem;
}

.pl-contact-inner { position: relative; z-index: 1; }

.pl-contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.pl-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.9rem;
}

.pl-contact-list svg {
  width: 20px; height: 20px;
  color: var(--pl-emerald);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* form card */
.pl-form-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-card);
  box-shadow: var(--pl-shadow-lg);
  padding: 2rem;
}

.pl-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pl-ink);
  margin-bottom: 0.4rem;
}

.pl-optional {
  font-weight: 400;
  color: var(--pl-muted);
}

.pl-input {
  border: 1px solid var(--pl-border);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  color: var(--pl-ink);
  background: var(--pl-canvas);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pl-input:focus {
  border-color: var(--pl-blue);
  background: var(--pl-white);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.15);
  outline: none;
}

.pl-form-note {
  font-size: 0.78rem;
  color: var(--pl-muted);
  text-align: center;
  margin: 1rem 0 0;
}

/* submit success state */
.pl-btn-primary.is-success {
  background-color: var(--pl-emerald);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.32);
  cursor: default;
}

@media (max-width: 575.98px) {
  .pl-contact-band { padding: 2rem 1.5rem; }
  .pl-form-card { padding: 1.5rem; }
}

/* ===================================================================
   Scroll reveal (fade-up)
   =================================================================== */

.pl-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.pl-reveal.is-shown {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .pl-reveal { opacity: 1 !important; transform: none !important; }
}

/* ===================================================================
   Footer
   =================================================================== */

.pl-footer {
  background-color: #071B36;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 4rem;
  font-size: 0.92rem;
}

.pl-footer-top { padding-bottom: 3rem; }

.pl-brand--footer .pl-brand-word { color: var(--pl-white); }
.pl-brand--footer { margin-bottom: 1.1rem; }

.pl-footer-blurb {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 1.3rem;
}

.pl-social {
  display: flex;
  gap: 0.7rem;
}

.pl-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.pl-social a:hover {
  color: var(--pl-white);
  background-color: var(--pl-blue);
  transform: translateY(-2px);
}

.pl-footer-head {
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pl-white);
  margin-bottom: 1.1rem;
}

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

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

.pl-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.pl-fc-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 0.15em;
  color: var(--pl-emerald);
}

.pl-footer-links a,
.pl-footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}

.pl-footer-links a:hover,
.pl-footer-contact a:hover { color: var(--pl-white); }

.pl-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.pl-footer-legal { display: flex; gap: 1.5rem; }

.pl-footer-legal a { color: rgba(255, 255, 255, 0.65); }
.pl-footer-legal a:hover { color: var(--pl-white); }


/* ============================================================
   CONTACT PAGE (contact.html) — prefix: ct-
   ============================================================ */

/* ---------- Breadcrumb pill ---------- */
.ct-breadcrumb { position: relative; z-index: 2; margin-bottom: 24px; }
.ct-breadcrumb ol {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 9px;
  list-style: none; margin: 0;
  padding: 8px 18px;
  font-size: .84rem; line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pl-radius-pill);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.ct-breadcrumb li { display: inline-flex; align-items: center; }
.ct-breadcrumb a {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none; font-weight: 500;
  transition: color .2s ease;
}
.ct-breadcrumb a:hover { color: var(--pl-white); }
.ct-breadcrumb a svg { width: 14px; height: 14px; }
.ct-breadcrumb-sep { color: rgba(255, 255, 255, 0.32); }
.ct-breadcrumb-sep svg { width: 13px; height: 13px; display: block; }
.ct-breadcrumb [aria-current="page"] { color: var(--pl-white); font-weight: 600; }
.ct-breadcrumb a:focus-visible {
  outline: 2px solid var(--pl-white); outline-offset: 3px; border-radius: 4px;
}

/* ---------- Dark hero ---------- */
.ct-hero {
  position: relative;
  overflow: hidden;
  background: var(--pl-navy);
  padding: 84px 0 96px;
}
.ct-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 80% at 40% 45%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 40% 45%, #000 35%, transparent 100%);
  pointer-events: none;
}
.ct-hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.ct-hero-glow--blue { width: 460px; height: 460px; background: rgba(37, 99, 255, .30); top: -160px; left: -120px; }
.ct-hero-glow--emerald { width: 400px; height: 400px; background: rgba(16, 185, 129, .18); bottom: -180px; right: -80px; }
.ct-hero .container { position: relative; z-index: 2; }

.ct-hero-inner { max-width: 620px; }
.ct-hero-title {
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.14;
  color: var(--pl-white);
  margin: 0 0 18px;
}
.ct-hero-accent { color: var(--pl-emerald); }
.ct-hero-sub {
  font-size: 1.02rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 30px; max-width: 560px;
}
.ct-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Quick contact panel ---------- */
.ct-quick {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pl-radius-card);
  padding: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.ct-quick-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px 16px;
}
.ct-quick-title {
  font-family: var(--pl-font-head); font-weight: 700;
  font-size: .95rem; color: var(--pl-white);
}
.ct-quick-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; color: rgba(255, 255, 255, 0.6);
}
.ct-quick-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pl-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .18);
}

.ct-quick-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 8px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.ct-quick-row:last-of-type { margin-bottom: 0; }
a.ct-quick-row:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(3px);
}
.ct-quick-row--static { cursor: default; }

.ct-quick-icon {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(37, 99, 255, .18); color: #7FA6FF;
}
.ct-quick-icon--emerald { background: rgba(16, 185, 129, .16); color: #5BE0B4; }
.ct-quick-icon svg { width: 20px; height: 20px; }

.ct-quick-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1 1 auto; }
.ct-quick-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.ct-quick-value {
  font-family: var(--pl-font-head); font-weight: 700; font-size: .98rem;
  color: var(--pl-white); line-height: 1.4; word-break: break-word;
}
.ct-quick-arrow { flex: 0 0 auto; width: 18px; height: 18px; color: rgba(255, 255, 255, 0.4); }

.ct-quick-foot {
  margin: 14px 6px 6px; font-size: .8rem;
  color: rgba(255, 255, 255, 0.55); text-align: center;
}
.ct-quick-foot strong { color: var(--pl-emerald); font-weight: 600; }

/* ---------- Form section ---------- */
.ct-form-section { padding: 80px 0; background: var(--pl-canvas); }
.ct-form-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--pl-shadow-md);
}
.ct-form-title {
  font-family: var(--pl-font-head); font-weight: 700;
  font-size: 1.5rem; color: var(--pl-ink); margin: 0 0 6px;
}
.ct-form-intro { color: var(--pl-muted); font-size: .95rem; margin: 0 0 26px; }
.ct-label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--pl-ink); margin-bottom: 7px;
}
.ct-req { color: var(--pl-blue); }
.ct-optional { font-weight: 400; color: var(--pl-muted); }
.ct-input {
  width: 100%;
  border: 1px solid var(--pl-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--pl-font-body); font-size: .95rem;
  color: var(--pl-ink); background: var(--pl-white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ct-input:focus {
  outline: none;
  border-color: var(--pl-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, .14);
}
.ct-input.is-invalid { border-color: #DC3545; }
.ct-error { display: none; font-size: .8rem; color: #DC3545; margin: 6px 0 0; }
.ct-error.is-shown { display: block; }
.ct-consent { display: flex; gap: 10px; align-items: flex-start; }
.ct-consent input { margin-top: 3px; width: 16px; height: 16px; flex: 0 0 auto; accent-color: var(--pl-blue); }
.ct-consent label { font-size: .875rem; color: var(--pl-muted); line-height: 1.5; }
.ct-form-note { font-size: .8rem; color: var(--pl-muted); margin: 16px 0 0; }

/* success state */
.ct-success { display: none; text-align: center; padding: 40px 20px; }
.ct-success.is-shown { display: block; }
.ct-success-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(16, 185, 129, .12); color: var(--pl-emerald); margin-bottom: 20px;
}
.ct-success-tick svg { width: 32px; height: 32px; }
.ct-success h3 { font-family: var(--pl-font-head); font-weight: 700; font-size: 1.5rem; color: var(--pl-ink); margin: 0 0 10px; }
.ct-success p { color: var(--pl-muted); margin: 0 auto; max-width: 420px; }

/* ---------- Side panel ---------- */
.ct-side {
  position: relative; overflow: hidden; height: 100%;
  background: var(--pl-navy);
  border-radius: 16px;
  padding: 36px;
  color: #fff;
}
.ct-side::before, .ct-side::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.ct-side::before { width: 260px; height: 260px; background: rgba(37, 99, 255, .38); top: -90px; right: -70px; }
.ct-side::after  { width: 220px; height: 220px; background: rgba(16, 185, 129, .26); bottom: -80px; left: -60px; }
.ct-side-inner { position: relative; z-index: 2; }
.ct-side-title { font-family: var(--pl-font-head); font-weight: 700; font-size: 1.35rem; color: #fff; margin: 12px 0 10px; }
.ct-side-lead { color: rgba(255,255,255,.74); font-size: .95rem; margin: 0 0 26px; }
.ct-side-head {
  font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin: 0 0 12px;
}
.ct-side-list { list-style: none; padding: 0; margin: 0 0 28px; }
.ct-side-list li {
  display: flex; gap: 11px; align-items: flex-start;
  color: rgba(255,255,255,.88); font-size: .93rem; line-height: 1.5; margin-bottom: 12px;
}
.ct-side-list svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; color: var(--pl-emerald); }
.ct-side-hours { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; margin-bottom: 26px; }
.ct-side-hours p { color: rgba(255,255,255,.88); font-size: .93rem; margin: 0 0 4px; }
.ct-side-hours span { color: rgba(255,255,255,.55); font-size: .85rem; }
.ct-side-social { display: flex; gap: 10px; }
.ct-side-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.09); color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.ct-side-social a:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

/* ---------- Map ---------- */
.ct-map-section { padding: 80px 0; background: var(--pl-white); }
.ct-map-frame {
  border: 1px solid var(--pl-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--pl-shadow-sm);
  line-height: 0;
}
.ct-map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Offices (dark navy) ---------- */
.ct-offices {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--pl-navy);
}
.ct-offices-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 100%);
  pointer-events: none;
}
.ct-offices .container { position: relative; z-index: 2; }

/* section head on dark */
.ct-offices .pl-section-title { color: var(--pl-white); }
.ct-offices .pl-section-lead { color: rgba(255, 255, 255, 0.68); }

.ct-office-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 24px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.ct-office-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}
.ct-office-city {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.15rem;
  color: var(--pl-white); margin: 0 0 4px;
}
.ct-office-badge {
  display: inline-block; font-size: .7rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: #5BE0B4;
  background: rgba(16, 185, 129, .16); border-radius: 999px;
  padding: 3px 10px; margin-bottom: 12px;
}
.ct-office-addr { color: rgba(255, 255, 255, 0.62); font-size: .92rem; line-height: 1.6; margin: 0 0 16px; }
.ct-office-meta { list-style: none; padding: 0; margin: 0 0 18px; }
.ct-office-meta li { font-size: .9rem; margin-bottom: 6px; }
.ct-office-meta a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.ct-office-meta a:hover { color: var(--pl-white); }
.ct-directions {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .9rem; font-weight: 600; color: #7FA6FF; text-decoration: none;
  transition: color .2s ease;
}
.ct-directions svg { width: 16px; height: 16px; }
.ct-directions:hover { color: var(--pl-white); text-decoration: underline; }
.ct-directions:focus-visible { outline: 2px solid var(--pl-white); outline-offset: 3px; border-radius: 4px; }

/* ---------- FAQ ---------- */
.ct-faq { padding: 80px 0; background: var(--pl-white); }
.ct-faq-wrap { max-width: 820px; margin: 0 auto; }
.ct-faq-item {
  border: 1px solid var(--pl-border);
  border-radius: 14px;
  background: var(--pl-white);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ct-faq-item.is-open { border-color: rgba(37, 99, 255, .3); box-shadow: var(--pl-shadow-sm); }
.ct-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: 0; text-align: left; cursor: pointer;
  padding: 22px 24px;
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1rem; color: var(--pl-ink);
}
.ct-faq-chevron {
  flex: 0 0 auto; width: 20px; height: 20px; color: var(--pl-blue);
  transition: transform .3s ease;
}
.ct-faq-q[aria-expanded="true"] .ct-faq-chevron { transform: rotate(180deg); }
.ct-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ct-faq-a p { padding: 0 24px 22px; margin: 0; color: var(--pl-muted); font-size: .95rem; line-height: 1.65; }

/* ---------- Bottom CTA strip ---------- */
.ct-cta-strip { background: var(--pl-navy); padding: 40px 0; }
.ct-cta-strip h2 {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.4rem;
  color: #fff; margin: 0;
}
.ct-cta-strip p { color: rgba(255,255,255,.68); font-size: .95rem; margin: 6px 0 0; }

/* ---------- Reveal ---------- */
.ct-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.ct-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Focus ---------- */
.ct-hero a:focus-visible,
.ct-input:focus-visible,
.ct-faq-q:focus-visible,
.ct-directions:focus-visible,
.ct-side-social a:focus-visible {
  outline: 3px solid var(--pl-blue);
  outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ct-form-card, .ct-side { padding: 30px; }
  .ct-side { margin-top: 28px; }
}
@media (max-width: 768px) {
  .ct-form-section, .ct-map-section, .ct-offices, .ct-faq { padding: 56px 0; }
  .ct-form-card, .ct-side { padding: 24px; }
  .ct-map-frame iframe { height: 320px; }
  .ct-faq-q { padding: 18px 18px; font-size: .95rem; }
  .ct-faq-a p { padding: 0 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .ct-reveal { opacity: 1; transform: none; transition: none; }
  .ct-office-card, .ct-side-social a { transition: none; }
  .ct-office-card:hover { transform: none; }
  .ct-faq-a, .ct-faq-chevron { transition: none; }
}

@media (max-width: 1024px) {
  .ct-hero { padding: 64px 0 72px; }
  .ct-quick { margin-top: 32px; }
}
@media (max-width: 768px) {
  .ct-hero { padding: 48px 0 56px; }
  .ct-breadcrumb { margin-bottom: 18px; }
  .ct-breadcrumb ol { font-size: .78rem; gap: 6px; padding: 7px 14px; }
  .ct-hero-cta .btn { flex: 1 1 100%; }
  .ct-quick-head { padding: 12px 12px 14px; }
  .ct-quick-row { padding: 13px; gap: 12px; }
  .ct-quick-value { font-size: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  .ct-quick-row { transition: none; }
  a.ct-quick-row:hover { transform: none; }
}


/* ============================================================
   INSIGHTS PAGE (insights.html) — prefix: ins-
   ============================================================ */

/* ---------- Dark hero ---------- */
.ins-hero {
  position: relative;
  overflow: hidden;
  background: var(--pl-navy);
  padding: 72px 0 80px;
}
.ins-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 80% at 40% 45%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 40% 45%, #000 35%, transparent 100%);
  pointer-events: none;
}
.ins-hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.ins-hero-glow--blue { width: 460px; height: 460px; background: rgba(37, 99, 255, .30); top: -170px; left: -120px; }
.ins-hero-glow--emerald { width: 400px; height: 400px; background: rgba(16, 185, 129, .18); bottom: -190px; right: -90px; }
.ins-hero .container { position: relative; z-index: 2; }

.ins-hero-inner { max-width: 720px; }
.ins-hero-title {
  font-family: var(--pl-font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16;
  color: var(--pl-white);
  margin: 14px 0 16px;
}
.ins-hero-accent { color: var(--pl-emerald); }
.ins-hero-sub {
  font-size: 1.02rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px; max-width: 620px;
}

/* ---------- Search ---------- */
.ins-search {
  position: relative;
  display: flex; align-items: center;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pl-radius-pill);
  padding: 4px 6px 4px 18px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color .2s ease, background .2s ease;
}
.ins-search:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.11);
}
.ins-search-icon { width: 19px; height: 19px; flex: 0 0 auto; color: rgba(255, 255, 255, 0.55); }
.ins-search-input {
  flex: 1 1 auto; min-width: 0;
  background: none; border: 0; outline: none;
  padding: 13px 14px;
  font-family: var(--pl-font-body); font-size: .95rem;
  color: var(--pl-white);
}
.ins-search-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.ins-search-input::-webkit-search-cancel-button { display: none; }
.ins-search-clear {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-right: 4px;
  border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7);
  cursor: pointer; transition: background .2s ease, color .2s ease;
}
.ins-search-clear:hover { background: rgba(255, 255, 255, 0.18); color: var(--pl-white); }
.ins-search-clear svg { width: 15px; height: 15px; }

/* ---------- Filter bar ---------- */
.ins-filters {
  /* sits directly below the pinned navbar */
  position: sticky; top: var(--pl-nav-h, 62px); z-index: 1020;
  background: var(--pl-white);
  border-bottom: 1px solid var(--pl-border);
  padding: 16px 0;
}
.ins-filter-row {
  display: flex; gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.ins-filter-row::-webkit-scrollbar { display: none; }
.ins-pill {
  flex: 0 0 auto;
  font-family: var(--pl-font-body); font-weight: 600; font-size: .86rem;
  color: var(--pl-muted);
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-pill);
  padding: 9px 18px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.ins-pill:hover { color: var(--pl-blue); border-color: rgba(37, 99, 255, .4); }
.ins-pill.is-active {
  color: var(--pl-white);
  background: var(--pl-blue);
  border-color: var(--pl-blue);
  box-shadow: 0 6px 16px rgba(37, 99, 255, 0.26);
}

/* ---------- Category labels ---------- */
.ins-cat {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 4px 11px; margin-bottom: 12px;
}
.ins-cat--blue    { color: var(--pl-blue);    background: rgba(37, 99, 255, .10); }
.ins-cat--emerald { color: #0C8F65;           background: rgba(16, 185, 129, .12); }
.ins-cat--amber   { color: #B26B00;           background: rgba(245, 158, 11, .13); }
.ins-cat--violet  { color: #6D3BD1;           background: rgba(124, 58, 237, .12); }

/* ---------- Thumbnails (gradient placeholders) ---------- */
.ins-thumb {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ins-thumb--t1 { background: linear-gradient(135deg, #0A2342 0%, #2563FF 100%); }
.ins-thumb--t2 { background: linear-gradient(135deg, #0A2342 0%, #10B981 100%); }
.ins-thumb--t3 { background: linear-gradient(135deg, #1B3A6B 0%, #5B8DEF 100%); }
.ins-thumb-motif {
  width: 42%; max-width: 120px; height: auto;
  color: rgba(255, 255, 255, 0.4);
  transition: transform .35s ease, color .35s ease;
}

/* ---------- Featured ---------- */
.ins-featured-section { padding: 56px 0 0; background: var(--pl-canvas); }
.ins-featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  box-shadow: var(--pl-shadow-sm);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ins-featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--pl-shadow-lg);
  border-color: rgba(37, 99, 255, .28);
}
.ins-featured:hover .ins-thumb-motif { transform: scale(1.08); color: rgba(255, 255, 255, 0.55); }
.ins-featured-media { position: relative; aspect-ratio: auto; min-height: 320px; }
.ins-featured-tag {
  position: absolute; top: 18px; left: 18px;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pl-navy); background: var(--pl-white);
  border-radius: 999px; padding: 5px 13px;
  box-shadow: var(--pl-shadow-sm);
}
.ins-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.ins-featured-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.25;
  color: var(--pl-ink); margin: 0 0 14px;
}
.ins-featured-excerpt { color: var(--pl-muted); font-size: .98rem; line-height: 1.7; margin: 0 0 20px; }
.ins-featured .ins-meta { margin-bottom: 22px; }
.ins-meta-author { font-weight: 600; color: var(--pl-ink); }
.ins-readlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .95rem; color: var(--pl-blue);
}
.ins-readlink .pl-arrow { transition: transform .25s ease; }
.ins-featured:hover .ins-readlink .pl-arrow { transform: translateX(4px); }

/* ---------- Meta row ---------- */
.ins-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: .84rem; color: var(--pl-muted);
}
.ins-meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: currentColor; opacity: .5;
}

/* ---------- Article grid ---------- */
.ins-grid-section { padding: 40px 0 80px; background: var(--pl-canvas); }
.ins-card {
  display: flex; flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: 14px;
  box-shadow: var(--pl-shadow-sm);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ins-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pl-shadow-lg);
  border-color: rgba(37, 99, 255, .28);
}
.ins-card:hover .ins-thumb-motif { transform: scale(1.08); color: rgba(255, 255, 255, 0.55); }
.ins-card-body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 24px; }
.ins-card-title {
  font-family: var(--pl-font-head); font-weight: 700;
  font-size: 1.08rem; line-height: 1.4;
  color: var(--pl-ink); margin: 0 0 10px;
}
.ins-card:hover .ins-card-title { color: var(--pl-blue); }
.ins-card-excerpt {
  color: var(--pl-muted); font-size: .9rem; line-height: 1.65;
  margin: 0 0 18px; flex: 1 1 auto;
}
.ins-item[hidden] { display: none !important; }

/* ---------- Empty state ---------- */
.ins-empty { text-align: center; padding: 60px 20px; }
.ins-empty-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(37, 99, 255, .08); color: var(--pl-blue); margin-bottom: 18px;
}
.ins-empty-icon svg { width: 26px; height: 26px; }
.ins-empty p { color: var(--pl-muted); font-size: 1rem; margin: 0 0 20px; }

/* ---------- Load more ---------- */
.ins-more { text-align: center; margin-top: 44px; }

/* ---------- Newsletter band ---------- */
.ins-news { padding: 0 0 80px; background: var(--pl-canvas); }
.ins-news-band {
  position: relative; overflow: hidden;
  background: var(--pl-navy);
  border-radius: var(--pl-radius-card);
  padding: 52px 48px;
}
.ins-news-inner { position: relative; z-index: 2; }
.ins-news-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--pl-white); margin: 14px 0 12px;
}
.ins-news-sub { color: rgba(255, 255, 255, 0.7); font-size: .98rem; margin: 0; max-width: 460px; }

.ins-news-field {
  display: flex; gap: 10px; align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pl-radius-pill);
  padding: 5px 6px 5px 20px;
}
.ins-news-field:focus-within { border-color: rgba(255, 255, 255, 0.4); }
.ins-news-field.is-invalid { border-color: #FF7A7A; }
.ins-news-input {
  flex: 1 1 auto; min-width: 0;
  background: none; border: 0; outline: none;
  padding: 13px 0;
  font-family: var(--pl-font-body); font-size: .95rem; color: var(--pl-white);
}
.ins-news-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.ins-news-error { color: #FF9E9E; font-size: .84rem; margin: 10px 0 0; }
.ins-news-note { color: rgba(255, 255, 255, 0.45); font-size: .8rem; margin: 12px 0 0; }

.ins-news-success {
  display: flex; align-items: center; gap: 14px;
  background: rgba(16, 185, 129, .14);
  border: 1px solid rgba(16, 185, 129, .35);
  border-radius: 14px;
  padding: 20px 22px;
}
.ins-news-success svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--pl-emerald); }
.ins-news-success strong { display: block; color: var(--pl-white); font-family: var(--pl-font-head); font-size: 1.05rem; }
.ins-news-success span { color: rgba(255, 255, 255, 0.7); font-size: .9rem; }

/* ---------- Reveal ---------- */
.ins-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.ins-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Focus ---------- */
.ins-pill:focus-visible,
.ins-card:focus-visible,
.ins-featured:focus-visible,
.ins-search-clear:focus-visible,
.ins-news-input:focus-visible {
  outline: 3px solid var(--pl-blue);
  outline-offset: 3px;
  border-radius: 8px;
}
.ins-hero .ins-search-input:focus-visible,
.ins-news-input:focus-visible { outline-color: var(--pl-white); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ins-hero { padding: 56px 0 64px; }
  .ins-featured { grid-template-columns: 1fr; }
  .ins-featured-media { min-height: 260px; aspect-ratio: 16 / 9; }
  .ins-featured-body { padding: 32px; }
  .ins-news-band { padding: 44px 36px; }
}
@media (max-width: 768px) {
  .ins-hero { padding: 44px 0 52px; }
  .ins-filters { padding: 12px 0; }
  .ins-featured-section { padding: 40px 0 0; }
  .ins-grid-section { padding: 32px 0 56px; }
  .ins-news { padding: 0 0 56px; }
  .ins-featured-body { padding: 26px; }
  .ins-news-band { padding: 34px 24px; }
  .ins-news-field { flex-wrap: wrap; border-radius: 18px; padding: 14px; gap: 12px; }
  .ins-news-field .btn { width: 100%; }
  .ins-news-input { flex: 1 1 100%; padding: 4px 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .ins-reveal { opacity: 1; transform: none; transition: none; }
  .ins-card, .ins-featured, .ins-thumb-motif, .ins-pill, .ins-readlink .pl-arrow { transition: none; }
  .ins-card:hover, .ins-featured:hover { transform: none; }
  .ins-card:hover .ins-thumb-motif, .ins-featured:hover .ins-thumb-motif { transform: none; }
}


/* ============================================================
   ABOUT PAGE (about.html) — prefix: ab-
   ============================================================ */

/* ---------- Shared dark-section decor ---------- */
.ab-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 80% at 40% 45%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 40% 45%, #000 35%, transparent 100%);
  pointer-events: none;
}
.ab-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.ab-glow--blue { width: 460px; height: 460px; background: rgba(37, 99, 255, .30); top: -170px; left: -120px; }
.ab-glow--emerald { width: 400px; height: 400px; background: rgba(16, 185, 129, .18); bottom: -190px; right: -90px; }
.ab-accent { color: var(--pl-emerald); }

/* ---------- Hero ---------- */
.ab-hero {
  position: relative; overflow: hidden;
  background: var(--pl-navy);
  padding: 72px 0 88px;
}
.ab-hero .container { position: relative; z-index: 2; }
.ab-hero-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15;
  color: var(--pl-white); margin: 14px 0 16px;
}
.ab-hero-sub {
  font-size: 1.02rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.72); margin: 0 0 30px;
}
.ab-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero right panel */
.ab-hero-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pl-radius-card);
  padding: 32px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.ab-hero-quote { padding-bottom: 26px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.ab-quote-mark { width: 30px; height: 30px; color: rgba(37, 99, 255, .7); margin-bottom: 14px; }
.ab-hero-quote p {
  font-family: var(--pl-font-head); font-weight: 700;
  font-size: 1.3rem; line-height: 1.4;
  color: var(--pl-white); margin: 0 0 8px;
}
.ab-hero-quote span { font-size: .92rem; color: rgba(255, 255, 255, 0.6); }

.ab-chain { padding-top: 24px; }
.ab-chain-head {
  display: block; font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); margin-bottom: 14px;
}
.ab-chain-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ab-chain-step {
  font-size: .82rem; font-weight: 600; color: var(--pl-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pl-radius-pill);
  padding: 7px 14px;
}
.ab-chain-arrow { width: 15px; height: 15px; color: rgba(16, 185, 129, .8); flex: 0 0 auto; }

/* ---------- Our story ---------- */
.ab-story { padding: 80px 0; background: var(--pl-white); }
.ab-story-text { color: var(--pl-muted); font-size: .98rem; line-height: 1.75; margin: 0 0 18px; }

/* timeline */
.ab-timeline { list-style: none; margin: 0; padding: 0 0 0 6px; position: relative; }
.ab-timeline::before {
  content: ""; position: absolute;
  left: 6px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--pl-blue) 0%, var(--pl-emerald) 100%);
  opacity: .3;
}
.ab-tl-item { position: relative; padding: 0 0 30px 34px; }
.ab-tl-item:last-child { padding-bottom: 0; }
.ab-tl-item::before {
  content: ""; position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--pl-white);
  border: 3px solid var(--pl-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 255, .12);
  transition: border-color .4s ease, box-shadow .4s ease;
}
.ab-tl-item:last-child::before {
  border-color: var(--pl-emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .16);
}
.ab-tl-year {
  display: inline-block;
  font-family: var(--pl-font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .06em;
  color: var(--pl-blue); background: rgba(37, 99, 255, .09);
  border-radius: 999px; padding: 3px 11px; margin-bottom: 8px;
}
.ab-tl-item:last-child .ab-tl-year { color: #0C8F65; background: rgba(16, 185, 129, .12); }
.ab-tl-title {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--pl-ink); margin: 0 0 6px;
}
.ab-tl-body p { color: var(--pl-muted); font-size: .92rem; line-height: 1.65; margin: 0; }

/* ---------- Why Prudentia (dark) ---------- */
.ab-why { position: relative; overflow: hidden; background: var(--pl-navy); padding: 80px 0; }
.ab-why .container { position: relative; z-index: 2; }
.ab-section-lead { color: rgba(255, 255, 255, 0.68); max-width: 640px; margin: 0 auto; }

.ab-pillar {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 24px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.ab-pillar:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}
.ab-pillar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px;
  background: rgba(37, 99, 255, .18); color: #7FA6FF;
}
.ab-pillar-icon svg { width: 22px; height: 22px; }
.ab-pillar-title {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.08rem;
  color: var(--pl-white); margin: 0 0 10px;
}
.ab-pillar p { color: rgba(255, 255, 255, 0.65); font-size: .92rem; line-height: 1.65; margin: 0; }

/* stats band */
.ab-stats {
  margin-top: 56px; padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.ab-stat-num {
  display: block;
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--pl-emerald); line-height: 1;
}
.ab-stat-suffix { color: var(--pl-emerald); }
.ab-stat-label {
  display: block; margin-top: 10px;
  font-size: .88rem; color: rgba(255, 255, 255, 0.62);
}

/* ---------- Vision, Mission & Values ---------- */
.ab-vmv { padding: 80px 0; background: var(--pl-canvas); }
.ab-vm-card {
  height: 100%;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  padding: 34px;
  box-shadow: var(--pl-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ab-vm-card:hover { transform: translateY(-6px); box-shadow: var(--pl-shadow-lg); }
.ab-vm-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 20px;
  background: rgba(37, 99, 255, .09); color: var(--pl-blue);
}
.ab-vm-icon--emerald { background: rgba(16, 185, 129, .11); color: #0C8F65; }
.ab-vm-icon svg { width: 25px; height: 25px; }
.ab-vm-title {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.3rem;
  color: var(--pl-ink); margin: 0 0 12px;
}
.ab-vm-card p { color: var(--pl-muted); font-size: .98rem; line-height: 1.7; margin: 0; }

.ab-values-head {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.3rem;
  color: var(--pl-ink); margin: 56px 0 24px; text-align: center;
}
.ab-value {
  height: 100%;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: var(--pl-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ab-value:hover {
  transform: translateY(-6px);
  box-shadow: var(--pl-shadow-lg);
  border-color: rgba(37, 99, 255, .28);
}
.ab-value-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: 16px;
  background: rgba(16, 185, 129, .10); color: #0C8F65;
}
.ab-value-icon svg { width: 21px; height: 21px; }
.ab-value-title {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1rem;
  color: var(--pl-ink); margin: 0 0 8px;
}
.ab-value p { color: var(--pl-muted); font-size: .9rem; line-height: 1.6; margin: 0; }

/* ---------- Leadership ---------- */
.ab-team { padding: 80px 0; background: var(--pl-white); }
.ab-person {
  height: 100%; text-align: center;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: 14px;
  padding: 30px 22px;
  box-shadow: var(--pl-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ab-person:hover {
  transform: translateY(-6px);
  box-shadow: var(--pl-shadow-lg);
  border-color: rgba(37, 99, 255, .28);
}
.ab-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%; margin-bottom: 18px;
  font-family: var(--pl-font-head); font-weight: 800; font-size: 1.5rem;
  color: var(--pl-white); letter-spacing: .02em;
}
.ab-avatar--a { background: linear-gradient(135deg, #0A2342 0%, #2563FF 100%); }
.ab-avatar--b { background: linear-gradient(135deg, #0A2342 0%, #10B981 100%); }
.ab-avatar--c { background: linear-gradient(135deg, #1B3A6B 0%, #5B8DEF 100%); }
.ab-avatar--d { background: linear-gradient(135deg, #123A5E 0%, #12B5A0 100%); }
.ab-person-name {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--pl-ink); margin: 0 0 4px;
}
.ab-person-role {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--pl-blue); margin-bottom: 12px;
}
.ab-person-bio { color: var(--pl-muted); font-size: .88rem; line-height: 1.6; margin: 0 0 16px; }
.ab-person-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(37, 99, 255, .09); color: var(--pl-blue);
  transition: background .2s ease, color .2s ease;
}
.ab-person-link:hover { background: var(--pl-blue); color: var(--pl-white); }
.ab-person-link svg { width: 17px; height: 17px; }

/* ---------- Careers ---------- */
.ab-careers { padding: 80px 0; background: var(--pl-canvas); }
.ab-culture { margin-bottom: 20px; }
.ab-culture-card {
  height: 100%;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: var(--pl-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ab-culture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pl-shadow-lg);
  border-color: rgba(37, 99, 255, .28);
}
.ab-culture-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: 16px;
  background: rgba(37, 99, 255, .09); color: var(--pl-blue);
}
.ab-culture-icon svg { width: 21px; height: 21px; }
.ab-culture-title {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1rem;
  color: var(--pl-ink); margin: 0 0 8px;
}
.ab-culture-card p { color: var(--pl-muted); font-size: .9rem; line-height: 1.6; margin: 0; }

/* open roles */
.ab-roles {
  margin-top: 40px;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  padding: 34px;
  box-shadow: var(--pl-shadow-sm);
}
.ab-roles-head {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.2rem;
  color: var(--pl-ink); margin: 0 0 20px;
}
.ab-role {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--pl-border);
}
.ab-role:last-of-type { border-bottom: 1px solid var(--pl-border); }
.ab-role-title {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.02rem;
  color: var(--pl-ink); margin: 0 0 8px;
}
.ab-role-meta { display: flex; flex-wrap: wrap; gap: 18px; }
.ab-role-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--pl-muted);
}
.ab-role-meta svg { width: 15px; height: 15px; flex: 0 0 auto; }
.ab-role-apply { flex: 0 0 auto; padding: 0.55rem 1.5rem; font-size: .88rem; }
.ab-roles-foot { margin: 24px 0 0; font-size: .92rem; color: var(--pl-muted); }

/* ---------- Bottom CTA ---------- */
.ab-cta { padding: 0 0 80px; background: var(--pl-canvas); }
.ab-cta-band {
  position: relative; overflow: hidden;
  background: var(--pl-navy);
  border-radius: var(--pl-radius-card);
  padding: 48px;
}
.ab-cta-inner { position: relative; z-index: 2; }
.ab-cta-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--pl-white); margin: 0 0 10px;
}
.ab-cta-sub { color: rgba(255, 255, 255, 0.7); font-size: .98rem; margin: 0; max-width: 560px; }

/* ---------- Reveal ---------- */
.ab-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.ab-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Focus ---------- */
.ab-person-link:focus-visible,
.ab-role-apply:focus-visible,
.ab-roles-foot a:focus-visible {
  outline: 3px solid var(--pl-blue);
  outline-offset: 3px;
  border-radius: 6px;
}
.ab-hero a:focus-visible { outline: 3px solid var(--pl-white); outline-offset: 3px; border-radius: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ab-hero { padding: 56px 0 68px; }
  .ab-hero-panel { margin-top: 32px; padding: 26px; }
  .ab-story, .ab-why, .ab-vmv, .ab-team, .ab-careers { padding: 64px 0; }
  .ab-cta-band { padding: 38px; }
}
@media (max-width: 768px) {
  .ab-hero { padding: 44px 0 56px; }
  .ab-story, .ab-why, .ab-vmv, .ab-team, .ab-careers { padding: 52px 0; }
  .ab-cta { padding: 0 0 52px; }
  .ab-hero-cta .btn { flex: 1 1 100%; }
  .ab-roles { padding: 24px; }
  .ab-role { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ab-role-apply { width: 100%; }
  .ab-cta-band { padding: 30px 24px; }
  .ab-values-head { margin: 40px 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .ab-reveal { opacity: 1; transform: none; transition: none; }
  .ab-pillar, .ab-value, .ab-vm-card, .ab-person, .ab-culture-card, .ab-tl-item::before { transition: none; }
  .ab-pillar:hover, .ab-value:hover, .ab-vm-card:hover,
  .ab-person:hover, .ab-culture-card:hover { transform: none; }
}


/* ======================================================================
   index.html
   ====================================================================== */
.pl-sol-swiper { padding-bottom: 48px; }
.pl-sol-swiper .swiper-slide { height: auto; }
.pl-sol-swiper .swiper-slide .pl-sol-card { height: 100%; }
.pl-sol-pagination { bottom: 0; }


/* ======================================================================
   case-studies.html
   ====================================================================== */
/* ---------- Scroll reveal (same pattern as .ct-reveal) ---------- */
.cs-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.cs-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 1. HERO ---------- */
.cs-hero {
  position: relative;
  overflow: hidden;
  background: var(--pl-white);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--pl-border);
}
.cs-hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.cs-hero-glow--blue    { width: 520px; height: 520px; background: rgba(37, 99, 255, .16);  top: -220px; left: -140px; }
.cs-hero-glow--emerald { width: 440px; height: 440px; background: rgba(16, 185, 129, .14); bottom: -240px; right: -100px; }
.cs-hero .container { position: relative; z-index: 2; }

.cs-breadcrumb { margin-bottom: 20px; }
.cs-breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin: 0; padding: 0; font-size: .82rem;
}
.cs-breadcrumb li { display: inline-flex; align-items: center; }
.cs-breadcrumb a { color: var(--pl-muted); display: inline-flex; align-items: center; gap: 6px; }
.cs-breadcrumb a:hover { color: var(--pl-blue); }
.cs-breadcrumb a svg { width: 14px; height: 14px; }
.cs-breadcrumb-sep svg { width: 13px; height: 13px; display: block; color: var(--pl-border); }
.cs-breadcrumb [aria-current="page"] { color: var(--pl-ink); font-weight: 600; }

.cs-hero-inner { max-width: 760px; }
.cs-hero-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem); line-height: 1.12; margin: 0 0 16px;
}
.cs-hero-accent { color: var(--pl-emerald); }
.cs-hero-sub { font-size: 1.05rem; max-width: 640px; margin: 0; }

/* Impact stat strip */
.cs-stat-strip {
  margin-top: 44px; background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-md);
  padding: 26px 12px;
}
.cs-stat { text-align: center; padding: 8px 10px; }
.cs-stat-num {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--pl-emerald); line-height: 1;
}
.cs-stat-label {
  display: block; margin-top: 8px; font-size: .85rem; color: var(--pl-muted); font-weight: 500;
}

/* ---------- 2. FILTER BAR ---------- */
.cs-filters { background: var(--pl-canvas); padding: 40px 0 8px; }
.cs-filter-group + .cs-filter-group { margin-top: 18px; }
.cs-filter-label {
  display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--pl-muted); margin-bottom: 10px;
}
.cs-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-pill {
  border: 1px solid var(--pl-border); background: var(--pl-white); color: var(--pl-ink);
  border-radius: var(--pl-radius-pill); padding: 8px 16px; font-size: .86rem; font-weight: 500;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.cs-pill:hover { border-color: var(--pl-blue); color: var(--pl-blue); transform: translateY(-1px); }
.cs-pill.is-active {
  background: var(--pl-blue); border-color: var(--pl-blue); color: var(--pl-white);
  box-shadow: var(--pl-shadow-sm);
}
.cs-result-count { margin-top: 18px; font-size: .85rem; color: var(--pl-muted); }
.cs-result-count strong { color: var(--pl-ink); }

/* ---------- 3. FEATURED ---------- */
.cs-featured-sec { background: var(--pl-canvas); padding: 32px 0 8px; }
.cs-featured {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); overflow: hidden; box-shadow: var(--pl-shadow-md);
}
.cs-featured-media {
  position: relative; min-height: 340px; height: 100%;
  background: linear-gradient(150deg, var(--pl-navy) 0%, #123258 55%, #0d4f7a 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cs-featured-motif { width: 78%; max-width: 340px; color: rgba(255,255,255,.28); }
.cs-featured-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.cs-featured-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24);
  color: #fff; font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--pl-radius-pill); backdrop-filter: blur(6px);
}
.cs-featured-body { padding: 40px 40px 40px 44px; }
.cs-featured-kicker {
  display: inline-block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--pl-blue); margin-bottom: 14px;
}
.cs-featured-metric {
  font-family: var(--pl-font-head); font-weight: 800; color: var(--pl-emerald);
  font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; display: block;
}
.cs-featured-metric-cap {
  display: block; margin-top: 8px; font-weight: 600; color: var(--pl-ink); font-size: 1rem;
}
.cs-featured-title { font-size: 1.5rem; margin: 20px 0 10px; }
.cs-featured-summary { margin: 0 0 22px; }
.cs-arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--pl-blue);
}
.cs-arrow-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.cs-arrow-link:hover svg { transform: translateX(4px); }

/* ---------- 4. GRID ---------- */
.cs-grid-sec { background: var(--pl-canvas); padding: 56px 0 72px; }
.cs-card-col.is-hidden { display: none; }
.cs-empty {
  display: none; text-align: center; padding: 60px 20px;
  background: var(--pl-white); border: 1px dashed var(--pl-border); border-radius: var(--pl-radius-card);
}
.cs-empty.is-shown { display: block; }
.cs-empty svg { width: 42px; height: 42px; color: var(--pl-border); margin-bottom: 14px; }
.cs-empty h3 { font-size: 1.1rem; margin: 0 0 6px; }
.cs-empty p { margin: 0 0 18px; font-size: .92rem; }

/* Dark-top case card (grid variant of the homepage .pl-case-card) */
.cs-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cs-card:hover {
  transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.3);
}
.cs-card-top {
  background: linear-gradient(155deg, var(--pl-navy) 0%, #10305a 100%);
  padding: 24px 24px 22px;
}
.cs-card-tag {
  display: inline-block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--pl-radius-pill);
  padding: 4px 10px; margin-bottom: 16px;
}
.cs-card-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 2.35rem; line-height: 1; color: var(--pl-emerald);
}
.cs-card-metric-cap {
  display: block; margin-top: 8px; font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.45;
}
.cs-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.cs-card-title { font-size: 1.05rem; line-height: 1.35; margin: 0 0 8px; }
.cs-card-summary { font-size: .9rem; margin: 0 0 18px; flex: 1; }

/* ---------- 5. RESULTS BAND ---------- */
.cs-results {
  position: relative; overflow: hidden;
  background: var(--pl-navy); padding: 68px 0;
}
.cs-results-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.cs-results-glow--blue    { width: 480px; height: 480px; background: rgba(37,99,255,.32);  top: -200px; left: -120px; }
.cs-results-glow--emerald { width: 420px; height: 420px; background: rgba(16,185,129,.20); bottom: -220px; right: -80px; }
.cs-results .container { position: relative; z-index: 2; }
.cs-results .pl-section-title, .cs-results h2 { color: var(--pl-white); }
.cs-results-sub { color: rgba(255,255,255,.7); max-width: 620px; margin: 10px auto 0; }
.cs-result-item { text-align: center; padding: 18px 10px; }
.cs-result-num {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem); color: var(--pl-emerald); line-height: 1;
}
.cs-result-label {
  display: block; margin-top: 10px; font-size: .84rem; color: rgba(255,255,255,.72); line-height: 1.45;
}

/* ---------- 6. TESTIMONIALS ---------- */
.cs-testimonials { background: var(--pl-white); padding: 72px 0; }
.cs-quote {
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 30px 28px;
  height: 100%; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cs-quote:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-md); }
.cs-quote-mark { width: 34px; height: 34px; color: rgba(37,99,255,.28); margin-bottom: 14px; }
.cs-quote-text { color: var(--pl-ink); font-size: .98rem; line-height: 1.65; margin: 0 0 22px; flex: 1; }
.cs-quote-foot { display: flex; align-items: center; gap: 12px; }
.cs-quote-avatar {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%;
  background: linear-gradient(140deg, var(--pl-blue), var(--pl-navy));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--pl-font-head); font-weight: 700; font-size: .9rem;
}
.cs-quote-name { display: block; font-weight: 600; font-size: .92rem; color: var(--pl-ink); }
.cs-quote-role { display: block; font-size: .82rem; color: var(--pl-muted); }

/* ---------- 8. BOTTOM CTA ---------- */
.cs-cta { background: var(--pl-navy); padding: 52px 0; }
.cs-cta h2 { color: var(--pl-white); font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0; }
.cs-cta p { color: rgba(255,255,255,.68); font-size: .95rem; margin: 8px 0 0; }
.cs-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Focus & responsive ---------- */
.cs-pill:focus-visible,
.cs-card:focus-visible,
.cs-arrow-link:focus-visible,
.cs-breadcrumb a:focus-visible {
  outline: 3px solid rgba(37, 99, 255, .45); outline-offset: 3px; border-radius: 8px;
}

@media (max-width: 991.98px) {
  .cs-hero { padding: 48px 0 44px; }
  .cs-featured-body { padding: 30px 26px 34px; }
  .cs-featured-media { min-height: 240px; }
  .cs-results, .cs-testimonials { padding: 56px 0; }
}
@media (max-width: 767.98px) {
  .cs-stat-strip { padding: 14px 6px; }
  .cs-grid-sec { padding: 40px 0 56px; }
  .cs-card-metric { font-size: 2rem; }
  .cs-cta { padding: 40px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cs-reveal { opacity: 1; transform: none; transition: none; }
  .cs-card, .cs-quote, .cs-pill, .cs-arrow-link svg { transition: none; }
  .cs-card:hover, .cs-quote:hover { transform: none; }
}


/* ======================================================================
   insight-detail.html
   ====================================================================== */
/* ---------- Reveal ---------- */
.ar-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.ar-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reading progress ---------- */
.ar-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  background: transparent; z-index: 1080; pointer-events: none;
}
.ar-progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  transform-origin: left center;
}

/* ---------- 1. HERO ---------- */
.ar-hero {
  position: relative; overflow: hidden;
  background: var(--pl-navy); padding: 56px 0 64px;
}
.ar-hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.ar-hero-glow--blue    { width: 460px; height: 460px; background: rgba(37, 99, 255, .30); top: -180px; left: -120px; }
.ar-hero-glow--emerald { width: 400px; height: 400px; background: rgba(16, 185, 129, .18); bottom: -200px; right: -90px; }
.ar-hero .container { position: relative; z-index: 2; }
.ar-hero-inner { max-width: 820px; }

.ar-hero-title {
  color: var(--pl-white); font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.18; margin: 18px 0 16px;
}
.ar-hero-deck {
  color: rgba(255,255,255,.74); font-size: 1.05rem; line-height: 1.7; margin: 0 0 26px; max-width: 700px;
}
.ar-hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  color: rgba(255,255,255,.62); font-size: .88rem;
}
.ar-hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.32); }
.ar-author-chip { display: flex; align-items: center; gap: 10px; }
.ar-avatar {
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%;
  background: linear-gradient(140deg, var(--pl-blue), var(--pl-emerald));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--pl-font-head); font-weight: 700; font-size: .85rem;
}
.ar-author-name { color: var(--pl-white); font-weight: 600; display: block; font-size: .92rem; }
.ar-author-role { display: block; font-size: .8rem; color: rgba(255,255,255,.55); }

/* ---------- 2. LEAD IMAGE ---------- */
.ar-lead-wrap { background: var(--pl-canvas); }
.ar-lead {
  margin-top: -44px; position: relative; z-index: 3;
  border-radius: var(--pl-radius-card); overflow: hidden;
  box-shadow: var(--pl-shadow-lg); min-height: 300px;
  background: linear-gradient(135deg, #0A2342 0%, #2563FF 100%);
  display: flex; align-items: center; justify-content: center;
}
.ar-lead img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ar-lead-motif { width: 34%; max-width: 220px; color: rgba(255,255,255,.42); }

/* ---------- 3. BODY ---------- */
.ar-body-sec { background: var(--pl-canvas); padding: 48px 0 72px; }

.ar-prose { max-width: 760px; }
.ar-prose > * + * { margin-top: 20px; }
.ar-prose p { font-size: 1.03rem; line-height: 1.78; color: #35455C; }
.ar-prose h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-top: 46px; margin-bottom: 4px;
  scroll-margin-top: 110px;
}
.ar-prose h3 { font-size: 1.12rem; margin-top: 32px; margin-bottom: 2px; scroll-margin-top: 110px; }
.ar-prose a { font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.ar-prose strong { color: var(--pl-ink); font-weight: 600; }
.ar-prose ul, .ar-prose ol { padding-left: 20px; color: #35455C; }
.ar-prose li { margin-bottom: 10px; line-height: 1.72; font-size: 1.01rem; }
.ar-prose li::marker { color: var(--pl-blue); font-weight: 600; }
.ar-prose hr { border: 0; border-top: 1px solid var(--pl-border); margin: 40px 0; }

/* Key takeaways box */
.ar-takeaways {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-left: 4px solid var(--pl-emerald);
  border-radius: var(--pl-radius-card); padding: 24px 26px;
  box-shadow: var(--pl-shadow-sm);
}
.ar-takeaways h2 {
  font-size: .78rem !important; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pl-muted); margin: 0 0 14px !important;
}
.ar-takeaways ul { list-style: none; padding: 0; margin: 0; }
.ar-takeaways li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .95rem; color: var(--pl-ink); margin-bottom: 12px;
}
.ar-takeaways li:last-child { margin-bottom: 0; }
.ar-takeaways svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--pl-emerald); margin-top: 3px; }

/* Pull quote */
.ar-pullquote {
  border-left: 4px solid var(--pl-blue); padding: 6px 0 6px 24px; margin: 38px 0;
}
.ar-pullquote p {
  font-family: var(--pl-font-head); font-weight: 700; font-size: 1.25rem !important;
  line-height: 1.5; color: var(--pl-ink) !important; margin: 0;
}
.ar-pullquote cite { display: block; margin-top: 12px; font-style: normal; font-size: .86rem; color: var(--pl-muted); }

/* Stat callout row */
.ar-statrow { display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0; }
.ar-statbox {
  flex: 1 1 180px; background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 20px 22px;
}
.ar-statbox-num {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 1.9rem; line-height: 1; color: var(--pl-emerald);
}
.ar-statbox-label { display: block; margin-top: 8px; font-size: .84rem; color: var(--pl-muted); line-height: 1.45; }

/* Inline figure */

/* ---------- SIDEBAR ---------- */
.ar-side { position: sticky; top: 100px; }
.ar-side-card {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 22px 22px; margin-bottom: 20px;
}
.ar-side-head {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--pl-muted); margin: 0 0 14px;
}
.ar-toc { list-style: none; padding: 0; margin: 0; }
.ar-toc li { margin-bottom: 4px; }
.ar-toc a {
  display: block; padding: 7px 12px; border-radius: 8px; font-size: .88rem;
  color: var(--pl-muted); border-left: 2px solid transparent; line-height: 1.45;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.ar-toc a:hover { color: var(--pl-blue); background: rgba(37,99,255,.05); }
.ar-toc a.is-current {
  color: var(--pl-blue); font-weight: 600;
  background: rgba(37,99,255,.07); border-left-color: var(--pl-blue);
}

.ar-share { display: flex; gap: 8px; flex-wrap: wrap; }
.ar-share button, .ar-share a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--pl-border); background: var(--pl-white); color: var(--pl-muted);
  cursor: pointer; transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.ar-share button:hover, .ar-share a:hover {
  color: var(--pl-blue); border-color: var(--pl-blue); transform: translateY(-2px);
}
.ar-share svg { width: 17px; height: 17px; }
.ar-copied { font-size: .8rem; color: var(--pl-emerald); margin: 10px 0 0; display: none; }
.ar-copied.is-shown { display: block; }

.ar-side-cta {
  background: linear-gradient(155deg, var(--pl-navy) 0%, #123258 100%);
  border-color: transparent; color: #fff;
}
.ar-side-cta .ar-side-head { color: rgba(255,255,255,.6); }
.ar-side-cta h3 { color: #fff; font-size: 1.05rem; margin: 0 0 8px; }
.ar-side-cta p { color: rgba(255,255,255,.7); font-size: .88rem; margin: 0 0 16px; }

/* Author bio */
.ar-authorbox {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 24px 26px; margin-top: 46px;
}
.ar-authorbox .ar-avatar { width: 56px; height: 56px; flex: 0 0 56px; font-size: 1.05rem; }
.ar-authorbox h3 { font-size: 1.02rem; margin: 0 0 2px; }
.ar-authorbox .ar-authorbox-role { font-size: .84rem; color: var(--pl-blue); font-weight: 600; display: block; margin-bottom: 8px; }
.ar-authorbox p { font-size: .9rem; margin: 0; }

/* Tags */
.ar-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.ar-tag {
  font-size: .8rem; color: var(--pl-muted); background: var(--pl-white);
  border: 1px solid var(--pl-border); border-radius: var(--pl-radius-pill); padding: 6px 14px;
}
.ar-tag:hover { color: var(--pl-blue); border-color: var(--pl-blue); }

/* ---------- RELATED ---------- */
.ar-related { background: var(--pl-white); padding: 68px 0; border-top: 1px solid var(--pl-border); }

/* ---------- Focus & responsive ---------- */
.ar-toc a:focus-visible,
.ar-share button:focus-visible,
.ar-share a:focus-visible,
.ar-tag:focus-visible {
  outline: 3px solid rgba(37, 99, 255, .45); outline-offset: 3px; border-radius: 8px;
}

@media (max-width: 991.98px) {
  .ar-hero { padding: 44px 0 56px; }
  .ar-side { position: static; margin-top: 44px; }
  .ar-lead { min-height: 220px; }
  .ar-related { padding: 52px 0; }
}
@media (max-width: 767.98px) {
  .ar-lead { margin-top: -28px; min-height: 180px; }
  .ar-body-sec { padding: 34px 0 56px; }
  .ar-authorbox { flex-direction: column; gap: 14px; }
  .ar-statrow { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .ar-reveal { opacity: 1; transform: none; transition: none; }
  .ar-share button, .ar-share a, .ar-toc a { transition: none; }
  .ar-share button:hover, .ar-share a:hover { transform: none; }
}


/* ======================================================================
   hrms.html
   ====================================================================== */
/* ---------- Scroll reveal ---------- */
.hr-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.hr-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 1. HERO ---------- */
.hr-hero {
  position: relative; overflow: hidden;
  background: var(--pl-white); padding: 56px 0 64px;
  border-bottom: 1px solid var(--pl-border);
}
.hr-hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hr-hero-glow--blue    { width: 540px; height: 540px; background: rgba(37, 99, 255, .16);  top: -240px; left: -160px; }
.hr-hero-glow--emerald { width: 460px; height: 460px; background: rgba(16, 185, 129, .14); bottom: -260px; right: -120px; }
.hr-hero .container { position: relative; z-index: 2; }

.hr-breadcrumb { margin-bottom: 22px; }
.hr-breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin: 0; padding: 0; font-size: .82rem;
}
.hr-breadcrumb li { display: inline-flex; align-items: center; }
.hr-breadcrumb a { color: var(--pl-muted); display: inline-flex; align-items: center; gap: 6px; }
.hr-breadcrumb a:hover { color: var(--pl-blue); }
.hr-breadcrumb a svg { width: 14px; height: 14px; }
.hr-breadcrumb-sep svg { width: 13px; height: 13px; display: block; color: var(--pl-border); }
.hr-breadcrumb [aria-current="page"] { color: var(--pl-ink); font-weight: 600; }

.hr-hero-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.05rem); line-height: 1.14; margin: 0 0 18px;
}
.hr-hero-accent { color: var(--pl-emerald); }
.hr-hero-sub { font-size: 1.05rem; margin: 0 0 28px; max-width: 560px; }
.hr-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual — layered dashboard mock */
.hr-visual { position: relative; padding: 10px 0 0 10px; }
.hr-vcard {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-lg);
  padding: 22px 24px;
}
.hr-vcard-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--pl-border);
}
.hr-vcard-title { font-family: var(--pl-font-head); font-weight: 700; font-size: .95rem; margin: 0; }
.hr-vcard-badge {
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #0C8F65; background: rgba(16,185,129,.12);
  padding: 4px 10px; border-radius: var(--pl-radius-pill);
}
.hr-vrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hr-vrow:last-child { margin-bottom: 0; }
.hr-vrow-label { font-size: .82rem; color: var(--pl-muted); flex: 0 0 116px; }
.hr-vbar { flex: 1; height: 8px; border-radius: var(--pl-radius-pill); background: var(--pl-border); overflow: hidden; }
.hr-vbar span {
  display: block; height: 100%; border-radius: var(--pl-radius-pill);
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  width: 0; transition: width 1.1s cubic-bezier(.22,.8,.3,1);
}
.hr-vrow-val { font-size: .82rem; font-weight: 600; color: var(--pl-ink); flex: 0 0 42px; text-align: right; }

.hr-vfloat {
  position: absolute; background: var(--pl-white);
  border: 1px solid var(--pl-border); border-radius: 14px;
  box-shadow: var(--pl-shadow-md); padding: 14px 18px;
}
.hr-vfloat--tl { top: -34px; left: -26px; }
.hr-vfloat--br { bottom: -46px; right: -22px; }
.hr-vfloat-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 1.4rem; color: var(--pl-emerald); line-height: 1;
}
.hr-vfloat-label { display: block; margin-top: 4px; font-size: .74rem; color: var(--pl-muted); }

/* ---------- 2. PROBLEM STRIP ---------- */
.hr-problems { background: var(--pl-canvas); padding: 52px 0; }
.hr-problem {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 20px 22px; height: 100%;
}
.hr-problem-icon {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239, 68, 68, .09); color: #D9453D;
}
.hr-problem-icon svg { width: 20px; height: 20px; }
.hr-problem p { margin: 0; font-size: .93rem; color: var(--pl-ink); line-height: 1.55; }

/* ---------- 3. CAPABILITIES ---------- */
.hr-caps { background: var(--pl-white); padding: 76px 0; }
.hr-cap {
  position: relative; overflow: hidden;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 28px 26px; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hr-cap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.hr-cap:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.28); }
.hr-cap:hover::before { transform: scaleX(1); }
.hr-cap-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 255, .09); color: var(--pl-blue);
  transition: background .25s ease, color .25s ease;
}
.hr-cap-icon svg { width: 26px; height: 26px; }
.hr-cap:hover .hr-cap-icon { background: var(--pl-blue); color: #fff; }
.hr-cap h3 { font-size: 1.05rem; margin: 0 0 8px; }
.hr-cap p { font-size: .91rem; margin: 0; line-height: 1.6; }

/* ---------- 3b. PRODUCT SCREENSHOT SHOWCASE (this page only) ---------- */
.hr-shots { background: var(--pl-white); border-top: 1px solid var(--pl-border); padding: 76px 0; }
.hr-shot {
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hr-shot:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); }
.hr-shot-media {
  background: linear-gradient(155deg, var(--pl-navy) 0%, #123258 100%);
  padding: 0 0 18px;
}
.hr-shot-chrome { display: flex; gap: 6px; padding: 12px 14px; }
.hr-shot-chrome span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22); }
.hr-shot-mock {
  background: var(--pl-white); border-radius: 10px;
  margin: 0 14px; padding: 14px 15px; min-height: 168px;
}
.hr-shot-mockhead {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.hr-shot-mocktitle { font-family: var(--pl-font-head); font-weight: 700; font-size: .78rem; color: var(--pl-ink); }
.hr-shot-pill {
  font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #0C8F65; background: rgba(16,185,129,.12); padding: 3px 8px; border-radius: var(--pl-radius-pill);
}
/* attendance grid */
.hr-shot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 12px; }
.hr-shot-grid span { height: 20px; border-radius: 5px; background: var(--pl-border); }
.hr-shot-grid .is-in    { background: rgba(16,185,129,.30); }
.hr-shot-grid .is-late  { background: rgba(245,158,11,.38); }
.hr-shot-grid .is-leave { background: rgba(37,99,255,.22); }
.hr-shot-legend { display: flex; flex-wrap: wrap; gap: 12px; font-size: .68rem; color: var(--pl-muted); }
.hr-shot-legend span { display: inline-flex; align-items: center; gap: 5px; }
.hr-shot-legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }
.hr-shot-legend i.is-in   { background: rgba(16,185,129,.55); }
.hr-shot-legend i.is-late { background: rgba(245,158,11,.65); }
.hr-shot-legend i.is-leave{ background: rgba(37,99,255,.45); }
/* payroll list */
.hr-shot-list { list-style: none; padding: 0; margin: 0; }
.hr-shot-list li {
  display: flex; justify-content: space-between; gap: 10px;
  font-size: .74rem; color: var(--pl-muted);
  padding: 7px 0; border-bottom: 1px solid var(--pl-border);
}
.hr-shot-list li:last-child { border-bottom: 0; }
.hr-shot-list li span:last-child { font-weight: 600; color: var(--pl-ink); }
.hr-shot-list .is-warn { color: #B26B00 !important; }
/* analytics bars */
.hr-shot-bars {
  display: flex; align-items: flex-end; gap: 7px;
  height: 84px; margin-bottom: 12px;
}
.hr-shot-bars span {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--pl-blue), rgba(16,185,129,.55));
}
.hr-shot-body { padding: 20px 22px 22px; }
.hr-shot-body h3 { font-size: 1rem; margin: 0 0 6px; }
.hr-shot-body p { font-size: .88rem; margin: 0; line-height: 1.55; }

/* ---------- 4. PROCESS (reuses .pl-tvc-* visuals) ---------- */
.hr-process { background: var(--pl-white); padding: 76px 0; }
/* GSAP draws this line on the homepage; here a class toggle + transition does it */
.hr-process .pl-tvc-line-path { transition: stroke-dashoffset 1.6s ease .2s; }
.hr-process .pl-tvc-line.is-drawn .pl-tvc-line-path { stroke-dashoffset: 0; }

/* ---------- 5. DEEP-DIVE TABS ---------- */
.hr-deep { background: var(--pl-canvas); padding: 76px 0; }
.hr-tablist {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px;
}
.hr-tab {
  border: 1px solid var(--pl-border); background: var(--pl-white); color: var(--pl-ink);
  border-radius: var(--pl-radius-pill); padding: 10px 20px; font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.hr-tab:hover { border-color: var(--pl-blue); color: var(--pl-blue); }
.hr-tab[aria-selected="true"] {
  background: var(--pl-blue); border-color: var(--pl-blue); color: var(--pl-white);
  box-shadow: var(--pl-shadow-sm);
}
.hr-panel {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-sm);
  padding: 36px 38px;
}
.hr-panel[hidden] { display: none; }
.hr-panel h3 { font-size: 1.25rem; margin: 0 0 12px; }
.hr-panel > p { font-size: .98rem; line-height: 1.7; margin: 0 0 22px; }
.hr-checks { list-style: none; padding: 0; margin: 0; }
.hr-checks li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .94rem; color: var(--pl-ink); margin-bottom: 13px; line-height: 1.55;
}
.hr-checks li:last-child { margin-bottom: 0; }
.hr-checks svg { width: 19px; height: 19px; flex: 0 0 19px; color: var(--pl-emerald); margin-top: 2px; }

/* ---------- 6. OUTCOMES BAND ---------- */
.hr-outcomes { position: relative; overflow: hidden; background: var(--pl-navy); padding: 68px 0; }
.hr-outcomes-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.hr-outcomes-glow--blue    { width: 480px; height: 480px; background: rgba(37,99,255,.32);  top: -200px; left: -120px; }
.hr-outcomes-glow--emerald { width: 420px; height: 420px; background: rgba(16,185,129,.20); bottom: -220px; right: -80px; }
.hr-outcomes .container { position: relative; z-index: 2; }
.hr-outcomes .pl-section-title { color: var(--pl-white); }
.hr-outcomes-sub { color: rgba(255,255,255,.7); max-width: 600px; margin: 10px auto 0; }
.hr-outcome { text-align: center; padding: 20px 10px; }
.hr-outcome-num {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--pl-emerald); line-height: 1;
}
.hr-outcome-label { display: block; margin-top: 10px; font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.45; }

/* ---------- 7. WHO IT'S FOR ---------- */
.hr-audience { background: var(--pl-white); padding: 76px 0; }
.hr-aud {
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 26px 24px; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hr-aud:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-md); }
.hr-aud-icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, .11); color: #0C8F65;
}
.hr-aud-icon svg { width: 23px; height: 23px; }
.hr-aud h3 { font-size: 1rem; margin: 0 0 7px; }
.hr-aud p { font-size: .88rem; margin: 0; line-height: 1.55; }

/* ---------- 8. RELATED CASE STUDY ---------- */
.hr-case-sec { background: var(--pl-canvas); padding: 72px 0; }
.hr-case {
  display: flex; flex-direction: column; height: 100%;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hr-case:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.3); }
.hr-case-top { background: linear-gradient(155deg, var(--pl-navy) 0%, #10305a 100%); padding: 26px 26px 24px; }
.hr-case-tag {
  display: inline-block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--pl-radius-pill);
  padding: 4px 10px; margin-bottom: 16px;
}
.hr-case-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 2.4rem; line-height: 1; color: var(--pl-emerald);
}
.hr-case-metric-cap { display: block; margin-top: 8px; font-size: .88rem; color: rgba(255,255,255,.78); }
.hr-case-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.hr-case-title { font-size: 1.08rem; margin: 0 0 8px; }
.hr-case-summary { font-size: .91rem; margin: 0 0 18px; flex: 1; }
.hr-arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--pl-blue); }
.hr-arrow-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.hr-arrow-link:hover svg, .hr-case:hover .hr-arrow-link svg { transform: translateX(4px); }

/* ---------- 9. FAQ ---------- */
.hr-faq { background: var(--pl-canvas); padding: 76px 0; }
.hr-faq-wrap { max-width: 820px; margin: 0 auto; }
.hr-faq-item {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); margin-bottom: 12px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.hr-faq-item.is-open { border-color: rgba(37, 99, 255, .3); box-shadow: var(--pl-shadow-sm); }
.hr-faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--pl-font-head); font-weight: 700;
  font-size: 1rem; color: var(--pl-ink); cursor: pointer;
}
.hr-faq-chevron { width: 20px; height: 20px; flex: 0 0 20px; color: var(--pl-blue); transition: transform .3s ease; }
.hr-faq-q[aria-expanded="true"] .hr-faq-chevron { transform: rotate(180deg); }
.hr-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.hr-faq-a p { padding: 0 24px 22px; margin: 0; color: var(--pl-muted); font-size: .95rem; line-height: 1.65; }

/* ---------- 10. BOTTOM CTA ---------- */
.hr-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--pl-navy) 0%, #123258 60%, #0d4266 100%);
  padding: 60px 0;
}
.hr-cta-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.hr-cta-glow--blue    { width: 420px; height: 420px; background: rgba(37,99,255,.30);  top: -180px; right: 10%; }
.hr-cta-glow--emerald { width: 380px; height: 380px; background: rgba(16,185,129,.20); bottom: -200px; left: 6%; }
.hr-cta .container { position: relative; z-index: 2; }
.hr-cta h2 { color: var(--pl-white); font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin: 0; }
.hr-cta p { color: rgba(255,255,255,.68); font-size: .95rem; margin: 10px 0 0; }
.hr-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Focus & responsive ---------- */
.hr-tab:focus-visible,
.hr-faq-q:focus-visible,
.hr-case:focus-visible,
.hr-arrow-link:focus-visible,
.hr-breadcrumb a:focus-visible {
  outline: 3px solid rgba(37, 99, 255, .45); outline-offset: 3px; border-radius: 8px;
}

@media (max-width: 1023.98px) {
  .hr-hero { padding: 44px 0 52px; }
  .hr-visual { margin-top: 44px; }
  .hr-caps, .hr-process, .hr-deep, .hr-audience, .hr-faq { padding: 56px 0; }
  .hr-panel { padding: 28px 26px; }
}
@media (max-width: 767.98px) {
  .hr-vfloat--tl { top: -26px; left: -4px; }
  .hr-vfloat--br { bottom: -30px; right: -2px; }
  .hr-vfloat { padding: 11px 14px; }
  .hr-problems { padding: 36px 0; }
  .hr-caps, .hr-process, .hr-deep, .hr-audience, .hr-faq, .hr-case-sec { padding: 44px 0; }
  .hr-cta { padding: 44px 0; }
  .hr-tablist { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hr-reveal { opacity: 1; transform: none; transition: none; }
  .hr-cap, .hr-aud, .hr-case, .hr-tab, .hr-vbar span,
  .hr-faq-a, .hr-faq-chevron, .hr-arrow-link svg { transition: none; }
  .hr-cap:hover, .hr-aud:hover, .hr-case:hover { transform: none; }
  .hr-process .pl-tvc-line-path { transition: none; stroke-dashoffset: 0; }
}


/* ======================================================================
   learning-development.html
   ====================================================================== */
/* ---------- Scroll reveal ---------- */
.ld-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.ld-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 1. HERO ---------- */
.ld-hero {
  position: relative; overflow: hidden;
  background: var(--pl-navy); padding: 56px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .82);
}
.ld-hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.ld-hero-glow--blue    { width: 540px; height: 540px; background: rgba(37, 99, 255, .16);  top: -240px; left: -160px; }
.ld-hero-glow--emerald { width: 460px; height: 460px; background: rgba(16, 185, 129, .14); bottom: -260px; right: -120px; }
.ld-hero .container { position: relative; z-index: 2; }

.ld-breadcrumb { margin-bottom: 22px; }
.ld-breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin: 0; padding: 0; font-size: .82rem;
}
.ld-breadcrumb li { display: inline-flex; align-items: center; }
.ld-breadcrumb a { color: rgba(255, 255, 255, .62); display: inline-flex; align-items: center; gap: 6px; }
.ld-breadcrumb a:hover { color: var(--pl-emerald); }
.ld-breadcrumb a svg { width: 14px; height: 14px; }
.ld-breadcrumb-sep svg { width: 13px; height: 13px; display: block; color: rgba(255, 255, 255, .30); }
.ld-breadcrumb [aria-current="page"] { color: var(--pl-white); font-weight: 600; }

.ld-hero-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.05rem); line-height: 1.14; margin: 0 0 18px;
  color: var(--pl-white);
}
.ld-hero-accent { color: var(--pl-emerald); }
.ld-hero-sub { font-size: 1.05rem; margin: 0 0 28px; max-width: 560px; color: rgba(255, 255, 255, .78); }
.ld-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual — layered dashboard mock */
.ld-visual { position: relative; padding: 10px 0 0 10px; }
.ld-vcard {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-lg);
  padding: 22px 24px;
}
.ld-vcard-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--pl-border);
}
.ld-vcard-title { font-family: var(--pl-font-head); font-weight: 700; font-size: .95rem; margin: 0; }
.ld-vcard-badge {
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #0C8F65; background: rgba(16,185,129,.12);
  padding: 4px 10px; border-radius: var(--pl-radius-pill);
}
.ld-vrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ld-vrow:last-child { margin-bottom: 0; }
.ld-vrow-label { font-size: .82rem; color: var(--pl-muted); flex: 0 0 116px; }
.ld-vbar { flex: 1; height: 8px; border-radius: var(--pl-radius-pill); background: var(--pl-border); overflow: hidden; }
.ld-vbar span {
  display: block; height: 100%; border-radius: var(--pl-radius-pill);
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  width: 0; transition: width 1.1s cubic-bezier(.22,.8,.3,1);
}
.ld-vrow-val { font-size: .82rem; font-weight: 600; color: var(--pl-ink); flex: 0 0 42px; text-align: right; }

.ld-vfloat {
  position: absolute; background: var(--pl-white);
  border: 1px solid var(--pl-border); border-radius: 14px;
  box-shadow: var(--pl-shadow-md); padding: 14px 18px;
}
.ld-vfloat--tl { top: -45px; left: -14px; }
.ld-vfloat--br { bottom: -56px; right: -10px; }
.ld-vfloat-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 1.4rem; color: var(--pl-emerald); line-height: 1;
}
.ld-vfloat-label { display: block; margin-top: 4px; font-size: .74rem; color: var(--pl-muted); }

/* ---------- 2. PROBLEM STRIP ---------- */
.ld-problems { background: var(--pl-canvas); padding: 52px 0; }
.ld-problem {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 20px 22px; height: 100%;
}
.ld-problem-icon {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239, 68, 68, .09); color: #D9453D;
}
.ld-problem-icon svg { width: 20px; height: 20px; }
.ld-problem p { margin: 0; font-size: .93rem; color: var(--pl-ink); line-height: 1.55; }

/* ---------- 3. CAPABILITIES ---------- */
.ld-caps { background: var(--pl-white); padding: 76px 0; }
.ld-cap {
  position: relative; overflow: hidden;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 28px 26px; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ld-cap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.ld-cap:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.28); }
.ld-cap:hover::before { transform: scaleX(1); }
.ld-cap-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 255, .09); color: var(--pl-blue);
  transition: background .25s ease, color .25s ease;
}
.ld-cap-icon svg { width: 26px; height: 26px; }
.ld-cap:hover .ld-cap-icon { background: var(--pl-blue); color: #fff; }
.ld-cap h3 { font-size: 1.05rem; margin: 0 0 8px; }
.ld-cap p { font-size: .91rem; margin: 0; line-height: 1.6; }

/* ---------- 4. PROCESS (reuses .pl-tvc-* visuals) ---------- */
.ld-process { background: var(--pl-white); padding: 76px 0; }
/* GSAP draws this line on the homepage; here a class toggle + transition does it */
.ld-process .pl-tvc-line-path { transition: stroke-dashoffset 1.6s ease .2s; }
.ld-process .pl-tvc-line.is-drawn .pl-tvc-line-path { stroke-dashoffset: 0; }

/* ---------- 5. DEEP-DIVE TABS ---------- */
.ld-deep { background: var(--pl-canvas); padding: 76px 0; }
.ld-tablist {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px;
}
.ld-tab {
  border: 1px solid var(--pl-border); background: var(--pl-white); color: var(--pl-ink);
  border-radius: var(--pl-radius-pill); padding: 10px 20px; font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ld-tab:hover { border-color: var(--pl-blue); color: var(--pl-blue); }
.ld-tab[aria-selected="true"] {
  background: var(--pl-blue); border-color: var(--pl-blue); color: var(--pl-white);
  box-shadow: var(--pl-shadow-sm);
}
.ld-panel {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-sm);
  padding: 36px 38px;
}
.ld-panel[hidden] { display: none; }
.ld-panel h3 { font-size: 1.25rem; margin: 0 0 12px; }
.ld-panel > p { font-size: .98rem; line-height: 1.7; margin: 0 0 22px; }
.ld-checks { list-style: none; padding: 0; margin: 0; }
.ld-checks li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .94rem; color: var(--pl-ink); margin-bottom: 13px; line-height: 1.55;
}
.ld-checks li:last-child { margin-bottom: 0; }
.ld-checks svg { width: 19px; height: 19px; flex: 0 0 19px; color: var(--pl-emerald); margin-top: 2px; }

/* ---------- 6. OUTCOMES BAND ---------- */
.ld-outcomes { position: relative; overflow: hidden; background: var(--pl-navy); padding: 68px 0; }
.ld-outcomes-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.ld-outcomes-glow--blue    { width: 480px; height: 480px; background: rgba(37,99,255,.32);  top: -200px; left: -120px; }
.ld-outcomes-glow--emerald { width: 420px; height: 420px; background: rgba(16,185,129,.20); bottom: -220px; right: -80px; }
.ld-outcomes .container { position: relative; z-index: 2; }
.ld-outcomes .pl-section-title { color: var(--pl-white); }
.ld-outcomes-sub { color: rgba(255,255,255,.7); max-width: 600px; margin: 10px auto 0; }
.ld-outcome { text-align: center; padding: 20px 10px; }
.ld-outcome-num {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--pl-emerald); line-height: 1;
}
.ld-outcome-label { display: block; margin-top: 10px; font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.45; }

/* ---------- 7. WHO IT'S FOR ---------- */
.ld-audience { background: var(--pl-white); padding: 76px 0; }
.ld-aud {
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 26px 24px; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ld-aud:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-md); }
.ld-aud-icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, .11); color: #0C8F65;
}
.ld-aud-icon svg { width: 23px; height: 23px; }
.ld-aud h3 { font-size: 1rem; margin: 0 0 7px; }
.ld-aud p { font-size: .88rem; margin: 0; line-height: 1.55; }

/* ---------- 8. RELATED CASE STUDY ---------- */
.ld-case-sec { background: var(--pl-canvas); padding: 72px 0; }
.ld-case {
  display: flex; flex-direction: column; height: 100%;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ld-case:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.3); }
.ld-case-top { background: linear-gradient(155deg, var(--pl-navy) 0%, #10305a 100%); padding: 26px 26px 24px; }
.ld-case-tag {
  display: inline-block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--pl-radius-pill);
  padding: 4px 10px; margin-bottom: 16px;
}
.ld-case-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 2.4rem; line-height: 1; color: var(--pl-emerald);
}
.ld-case-metric-cap { display: block; margin-top: 8px; font-size: .88rem; color: rgba(255,255,255,.78); }
.ld-case-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.ld-case-title { font-size: 1.08rem; margin: 0 0 8px; }
.ld-case-summary { font-size: .91rem; margin: 0 0 18px; flex: 1; }
.ld-arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--pl-blue); }
.ld-arrow-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.ld-arrow-link:hover svg, .ld-case:hover .ld-arrow-link svg { transform: translateX(4px); }

/* ---------- 9. FAQ ---------- */
.ld-faq { background: var(--pl-canvas); padding: 76px 0; }
.ld-faq-wrap { max-width: 820px; margin: 0 auto; }
.ld-faq-item {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); margin-bottom: 12px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ld-faq-item.is-open { border-color: rgba(37, 99, 255, .3); box-shadow: var(--pl-shadow-sm); }
.ld-faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--pl-font-head); font-weight: 700;
  font-size: 1rem; color: var(--pl-ink); cursor: pointer;
}
.ld-faq-chevron { width: 20px; height: 20px; flex: 0 0 20px; color: var(--pl-blue); transition: transform .3s ease; }
.ld-faq-q[aria-expanded="true"] .ld-faq-chevron { transform: rotate(180deg); }
.ld-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ld-faq-a p { padding: 0 24px 22px; margin: 0; color: var(--pl-muted); font-size: .95rem; line-height: 1.65; }

/* ---------- 10. BOTTOM CTA ---------- */
.ld-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--pl-navy) 0%, #123258 60%, #0d4266 100%);
  padding: 60px 0;
}
.ld-cta-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.ld-cta-glow--blue    { width: 420px; height: 420px; background: rgba(37,99,255,.30);  top: -180px; right: 10%; }
.ld-cta-glow--emerald { width: 380px; height: 380px; background: rgba(16,185,129,.20); bottom: -200px; left: 6%; }
.ld-cta .container { position: relative; z-index: 2; }
.ld-cta h2 { color: var(--pl-white); font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin: 0; }
.ld-cta p { color: rgba(255,255,255,.68); font-size: .95rem; margin: 10px 0 0; }
.ld-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Focus & responsive ---------- */
.ld-tab:focus-visible,
.ld-faq-q:focus-visible,
.ld-case:focus-visible,
.ld-arrow-link:focus-visible,
.ld-breadcrumb a:focus-visible {
  outline: 3px solid rgba(37, 99, 255, .45); outline-offset: 3px; border-radius: 8px;
}

@media (max-width: 1023.98px) {
  .ld-hero { padding: 44px 0 52px; }
  .ld-visual { margin-top: 44px; }
  .ld-caps, .ld-process, .ld-deep, .ld-audience, .ld-faq { padding: 56px 0; }
  .ld-panel { padding: 28px 26px; }
}
@media (max-width: 767.98px) {
  .ld-vfloat--tl { top: -8px; left: -6px; }
  .ld-vfloat--br { bottom: -18px; right: -4px; }
  .ld-vfloat { padding: 11px 14px; }
  .ld-problems { padding: 36px 0; }
  .ld-caps, .ld-process, .ld-deep, .ld-audience, .ld-faq, .ld-case-sec { padding: 44px 0; }
  .ld-cta { padding: 44px 0; }
  .ld-tablist { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .ld-reveal { opacity: 1; transform: none; transition: none; }
  .ld-cap, .ld-aud, .ld-case, .ld-tab, .ld-vbar span,
  .ld-faq-a, .ld-faq-chevron, .ld-arrow-link svg { transition: none; }
  .ld-cap:hover, .ld-aud:hover, .ld-case:hover { transform: none; }
  .ld-process .pl-tvc-line-path { transition: none; stroke-dashoffset: 0; }
}


/* ======================================================================
   performance-management.html
   ====================================================================== */
/* ---------- Scroll reveal ---------- */
.pm-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.pm-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 1. HERO ---------- */
.pm-hero {
  position: relative; overflow: hidden;
  background: var(--pl-white); padding: 56px 0 64px;
  border-bottom: 1px solid var(--pl-border);
}
.pm-hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.pm-hero-glow--blue    { width: 540px; height: 540px; background: rgba(37, 99, 255, .16);  top: -240px; left: -160px; }
.pm-hero-glow--emerald { width: 460px; height: 460px; background: rgba(16, 185, 129, .14); bottom: -260px; right: -120px; }
.pm-hero .container { position: relative; z-index: 2; }

.pm-breadcrumb { margin-bottom: 22px; }
.pm-breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin: 0; padding: 0; font-size: .82rem;
}
.pm-breadcrumb li { display: inline-flex; align-items: center; }
.pm-breadcrumb a { color: var(--pl-muted); display: inline-flex; align-items: center; gap: 6px; }
.pm-breadcrumb a:hover { color: var(--pl-blue); }
.pm-breadcrumb a svg { width: 14px; height: 14px; }
.pm-breadcrumb-sep svg { width: 13px; height: 13px; display: block; color: var(--pl-border); }
.pm-breadcrumb [aria-current="page"] { color: var(--pl-ink); font-weight: 600; }

.pm-hero-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.05rem); line-height: 1.14; margin: 0 0 18px;
}
.pm-hero-accent { color: var(--pl-emerald); }
.pm-hero-sub { font-size: 1.05rem; margin: 0 0 28px; max-width: 560px; }
.pm-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual — layered dashboard mock */
.pm-visual { position: relative; padding: 10px 0 0 10px; }
.pm-vcard {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-lg);
  padding: 22px 24px;
}
.pm-vcard-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--pl-border);
}
.pm-vcard-title { font-family: var(--pl-font-head); font-weight: 700; font-size: .95rem; margin: 0; }
.pm-vcard-badge {
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #0C8F65; background: rgba(16,185,129,.12);
  padding: 4px 10px; border-radius: var(--pl-radius-pill);
}
.pm-vrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pm-vrow:last-child { margin-bottom: 0; }
.pm-vrow-label { font-size: .82rem; color: var(--pl-muted); flex: 0 0 116px; }
.pm-vbar { flex: 1; height: 8px; border-radius: var(--pl-radius-pill); background: var(--pl-border); overflow: hidden; }
.pm-vbar span {
  display: block; height: 100%; border-radius: var(--pl-radius-pill);
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  width: 0; transition: width 1.1s cubic-bezier(.22,.8,.3,1);
}
.pm-vrow-val { font-size: .82rem; font-weight: 600; color: var(--pl-ink); flex: 0 0 42px; text-align: right; }

.pm-vfloat {
  position: absolute; background: var(--pl-white);
  border: 1px solid var(--pl-border); border-radius: 14px;
  box-shadow: var(--pl-shadow-md); padding: 14px 18px;
}
.pm-vfloat--tl { top: -10px; left: -14px; }
.pm-vfloat--br { bottom: -26px; right: -10px; }
.pm-vfloat-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 1.4rem; color: var(--pl-emerald); line-height: 1;
}
.pm-vfloat-label { display: block; margin-top: 4px; font-size: .74rem; color: var(--pl-muted); }

/* ---------- 2. PROBLEM STRIP ---------- */
.pm-problems { background: var(--pl-canvas); padding: 52px 0; }
.pm-problem {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 20px 22px; height: 100%;
}
.pm-problem-icon {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239, 68, 68, .09); color: #D9453D;
}
.pm-problem-icon svg { width: 20px; height: 20px; }
.pm-problem p { margin: 0; font-size: .93rem; color: var(--pl-ink); line-height: 1.55; }

/* ---------- 3. CAPABILITIES ---------- */
.pm-caps { background: var(--pl-white); padding: 76px 0; }
.pm-cap {
  position: relative; overflow: hidden;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 28px 26px; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pm-cap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.pm-cap:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.28); }
.pm-cap:hover::before { transform: scaleX(1); }
.pm-cap-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 255, .09); color: var(--pl-blue);
  transition: background .25s ease, color .25s ease;
}
.pm-cap-icon svg { width: 26px; height: 26px; }
.pm-cap:hover .pm-cap-icon { background: var(--pl-blue); color: #fff; }
.pm-cap h3 { font-size: 1.05rem; margin: 0 0 8px; }
.pm-cap p { font-size: .91rem; margin: 0; line-height: 1.6; }

/* ---------- 4. PROCESS (reuses .pl-tvc-* visuals) ---------- */
.pm-process { background: var(--pl-white); padding: 76px 0; }
/* GSAP draws this line on the homepage; here a class toggle + transition does it */
.pm-process .pl-tvc-line-path { transition: stroke-dashoffset 1.6s ease .2s; }
.pm-process .pl-tvc-line.is-drawn .pl-tvc-line-path { stroke-dashoffset: 0; }

/* ---------- 5. DEEP-DIVE TABS ---------- */
.pm-deep { background: var(--pl-canvas); padding: 76px 0; }
.pm-tablist {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px;
}
.pm-tab {
  border: 1px solid var(--pl-border); background: var(--pl-white); color: var(--pl-ink);
  border-radius: var(--pl-radius-pill); padding: 10px 20px; font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pm-tab:hover { border-color: var(--pl-blue); color: var(--pl-blue); }
.pm-tab[aria-selected="true"] {
  background: var(--pl-blue); border-color: var(--pl-blue); color: var(--pl-white);
  box-shadow: var(--pl-shadow-sm);
}
.pm-panel {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-sm);
  padding: 36px 38px;
}
.pm-panel[hidden] { display: none; }
.pm-panel h3 { font-size: 1.25rem; margin: 0 0 12px; }
.pm-panel > p { font-size: .98rem; line-height: 1.7; margin: 0 0 22px; }
.pm-checks { list-style: none; padding: 0; margin: 0; }
.pm-checks li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .94rem; color: var(--pl-ink); margin-bottom: 13px; line-height: 1.55;
}
.pm-checks li:last-child { margin-bottom: 0; }
.pm-checks svg { width: 19px; height: 19px; flex: 0 0 19px; color: var(--pl-emerald); margin-top: 2px; }

/* ---------- 6. OUTCOMES BAND ---------- */
.pm-outcomes { position: relative; overflow: hidden; background: var(--pl-navy); padding: 68px 0; }
.pm-outcomes-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.pm-outcomes-glow--blue    { width: 480px; height: 480px; background: rgba(37,99,255,.32);  top: -200px; left: -120px; }
.pm-outcomes-glow--emerald { width: 420px; height: 420px; background: rgba(16,185,129,.20); bottom: -220px; right: -80px; }
.pm-outcomes .container { position: relative; z-index: 2; }
.pm-outcomes .pl-section-title { color: var(--pl-white); }
.pm-outcomes-sub { color: rgba(255,255,255,.7); max-width: 600px; margin: 10px auto 0; }
.pm-outcome { text-align: center; padding: 20px 10px; }
.pm-outcome-num {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--pl-emerald); line-height: 1;
}
.pm-outcome-label { display: block; margin-top: 10px; font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.45; }

/* ---------- 7. WHO IT'S FOR ---------- */
.pm-audience { background: var(--pl-white); padding: 76px 0; }
.pm-aud {
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 26px 24px; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pm-aud:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-md); }
.pm-aud-icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, .11); color: #0C8F65;
}
.pm-aud-icon svg { width: 23px; height: 23px; }
.pm-aud h3 { font-size: 1rem; margin: 0 0 7px; }
.pm-aud p { font-size: .88rem; margin: 0; line-height: 1.55; }

/* ---------- 8. RELATED CASE STUDY ---------- */
.pm-case-sec { background: var(--pl-canvas); padding: 72px 0; }
.pm-case {
  display: flex; flex-direction: column; height: 100%;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pm-case:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.3); }
.pm-case-top { background: linear-gradient(155deg, var(--pl-navy) 0%, #10305a 100%); padding: 26px 26px 24px; }
.pm-case-tag {
  display: inline-block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--pl-radius-pill);
  padding: 4px 10px; margin-bottom: 16px;
}
.pm-case-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 2.4rem; line-height: 1; color: var(--pl-emerald);
}
.pm-case-metric-cap { display: block; margin-top: 8px; font-size: .88rem; color: rgba(255,255,255,.78); }
.pm-case-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.pm-case-title { font-size: 1.08rem; margin: 0 0 8px; }
.pm-case-summary { font-size: .91rem; margin: 0 0 18px; flex: 1; }
.pm-arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--pl-blue); }
.pm-arrow-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.pm-arrow-link:hover svg, .pm-case:hover .pm-arrow-link svg { transform: translateX(4px); }

/* ---------- 9. FAQ ---------- */
.pm-faq { background: var(--pl-canvas); padding: 76px 0; }
.pm-faq-wrap { max-width: 820px; margin: 0 auto; }
.pm-faq-item {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); margin-bottom: 12px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.pm-faq-item.is-open { border-color: rgba(37, 99, 255, .3); box-shadow: var(--pl-shadow-sm); }
.pm-faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--pl-font-head); font-weight: 700;
  font-size: 1rem; color: var(--pl-ink); cursor: pointer;
}
.pm-faq-chevron { width: 20px; height: 20px; flex: 0 0 20px; color: var(--pl-blue); transition: transform .3s ease; }
.pm-faq-q[aria-expanded="true"] .pm-faq-chevron { transform: rotate(180deg); }
.pm-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.pm-faq-a p { padding: 0 24px 22px; margin: 0; color: var(--pl-muted); font-size: .95rem; line-height: 1.65; }

/* ---------- 10. BOTTOM CTA ---------- */
.pm-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--pl-navy) 0%, #123258 60%, #0d4266 100%);
  padding: 60px 0;
}
.pm-cta-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.pm-cta-glow--blue    { width: 420px; height: 420px; background: rgba(37,99,255,.30);  top: -180px; right: 10%; }
.pm-cta-glow--emerald { width: 380px; height: 380px; background: rgba(16,185,129,.20); bottom: -200px; left: 6%; }
.pm-cta .container { position: relative; z-index: 2; }
.pm-cta h2 { color: var(--pl-white); font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin: 0; }
.pm-cta p { color: rgba(255,255,255,.68); font-size: .95rem; margin: 10px 0 0; }
.pm-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Focus & responsive ---------- */
.pm-tab:focus-visible,
.pm-faq-q:focus-visible,
.pm-case:focus-visible,
.pm-arrow-link:focus-visible,
.pm-breadcrumb a:focus-visible {
  outline: 3px solid rgba(37, 99, 255, .45); outline-offset: 3px; border-radius: 8px;
}

@media (max-width: 1023.98px) {
  .pm-hero { padding: 44px 0 52px; }
  .pm-visual { margin-top: 44px; }
  .pm-caps, .pm-process, .pm-deep, .pm-audience, .pm-faq { padding: 56px 0; }
  .pm-panel { padding: 28px 26px; }
}
@media (max-width: 767.98px) {
  .pm-vfloat--tl { top: -8px; left: -6px; }
  .pm-vfloat--br { bottom: -18px; right: -4px; }
  .pm-vfloat { padding: 11px 14px; }
  .pm-problems { padding: 36px 0; }
  .pm-caps, .pm-process, .pm-deep, .pm-audience, .pm-faq, .pm-case-sec { padding: 44px 0; }
  .pm-cta { padding: 44px 0; }
  .pm-tablist { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .pm-reveal { opacity: 1; transform: none; transition: none; }
  .pm-cap, .pm-aud, .pm-case, .pm-tab, .pm-vbar span,
  .pm-faq-a, .pm-faq-chevron, .pm-arrow-link svg { transition: none; }
  .pm-cap:hover, .pm-aud:hover, .pm-case:hover { transform: none; }
  .pm-process .pl-tvc-line-path { transition: none; stroke-dashoffset: 0; }
}


/* ======================================================================
   talent-supply-chain.html
   ====================================================================== */
/* ---------- Scroll reveal ---------- */
.tsc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.tsc-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 1. HERO ---------- */
.tsc-hero {
  position: relative; overflow: hidden;
  background: var(--pl-white); padding: 56px 0 64px;
  border-bottom: 1px solid var(--pl-border);
}
.tsc-hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.tsc-hero-glow--blue    { width: 540px; height: 540px; background: rgba(37, 99, 255, .16);  top: -240px; left: -160px; }
.tsc-hero-glow--emerald { width: 460px; height: 460px; background: rgba(16, 185, 129, .14); bottom: -260px; right: -120px; }
.tsc-hero .container { position: relative; z-index: 2; }

.tsc-breadcrumb { margin-bottom: 22px; }
.tsc-breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin: 0; padding: 0; font-size: .82rem;
}
.tsc-breadcrumb li { display: inline-flex; align-items: center; }
.tsc-breadcrumb a { color: var(--pl-muted); display: inline-flex; align-items: center; gap: 6px; }
.tsc-breadcrumb a:hover { color: var(--pl-blue); }
.tsc-breadcrumb a svg { width: 14px; height: 14px; }
.tsc-breadcrumb-sep svg { width: 13px; height: 13px; display: block; color: var(--pl-border); }
.tsc-breadcrumb [aria-current="page"] { color: var(--pl-ink); font-weight: 600; }

.tsc-hero-title {
  font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.05rem); line-height: 1.14; margin: 0 0 18px;
}
.tsc-hero-accent { color: var(--pl-emerald); }
.tsc-hero-sub { font-size: 1.05rem; margin: 0 0 28px; max-width: 560px; }
.tsc-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual — layered dashboard mock */
.tsc-visual { position: relative; padding: 10px 0 0 10px; }
.tsc-vcard {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-lg);
  padding: 22px 24px;
}
.tsc-vcard-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--pl-border);
}
.tsc-vcard-title { font-family: var(--pl-font-head); font-weight: 700; font-size: .95rem; margin: 0; }
.tsc-vcard-badge {
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #0C8F65; background: rgba(16,185,129,.12);
  padding: 4px 10px; border-radius: var(--pl-radius-pill);
}
.tsc-vrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tsc-vrow:last-child { margin-bottom: 0; }
.tsc-vrow-label { font-size: .82rem; color: var(--pl-muted); flex: 0 0 116px; }
.tsc-vbar { flex: 1; height: 8px; border-radius: var(--pl-radius-pill); background: var(--pl-border); overflow: hidden; }
.tsc-vbar span {
  display: block; height: 100%; border-radius: var(--pl-radius-pill);
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  width: 0; transition: width 1.1s cubic-bezier(.22,.8,.3,1);
}
.tsc-vrow-val { font-size: .82rem; font-weight: 600; color: var(--pl-ink); flex: 0 0 42px; text-align: right; }

.tsc-vfloat {
  position: absolute; background: var(--pl-white);
  border: 1px solid var(--pl-border); border-radius: 14px;
  box-shadow: var(--pl-shadow-md); padding: 14px 18px;
}
.tsc-vfloat--tl { top: -38px; left: -14px; }
.tsc-vfloat--br { bottom: -54px; right: -10px; }
.tsc-vfloat-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 1.4rem; color: var(--pl-emerald); line-height: 1;
}
.tsc-vfloat-label { display: block; margin-top: 4px; font-size: .74rem; color: var(--pl-muted); }

/* ---------- 2. PROBLEM STRIP ---------- */
.tsc-problems { background: var(--pl-canvas); padding: 52px 0; }
.tsc-problem {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 20px 22px; height: 100%;
}
.tsc-problem-icon {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239, 68, 68, .09); color: #D9453D;
}
.tsc-problem-icon svg { width: 20px; height: 20px; }
.tsc-problem p { margin: 0; font-size: .93rem; color: var(--pl-ink); line-height: 1.55; }

/* ---------- 3. CAPABILITIES ---------- */
.tsc-caps { background: var(--pl-white); padding: 76px 0; }
.tsc-cap {
  position: relative; overflow: hidden;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 28px 26px; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tsc-cap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.tsc-cap:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.28); }
.tsc-cap:hover::before { transform: scaleX(1); }
.tsc-cap-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 255, .09); color: var(--pl-blue);
  transition: background .25s ease, color .25s ease;
}
.tsc-cap-icon svg { width: 26px; height: 26px; }
.tsc-cap:hover .tsc-cap-icon { background: var(--pl-blue); color: #fff; }
.tsc-cap h3 { font-size: 1.05rem; margin: 0 0 8px; }
.tsc-cap p { font-size: .91rem; margin: 0; line-height: 1.6; }

/* ---------- 4. PROCESS (reuses .pl-tvc-* visuals) ---------- */
.tsc-process { background: var(--pl-white); padding: 76px 0; }
/* GSAP draws this line on the homepage; here a class toggle + transition does it */
.tsc-process .pl-tvc-line-path { transition: stroke-dashoffset 1.6s ease .2s; }
.tsc-process .pl-tvc-line.is-drawn .pl-tvc-line-path { stroke-dashoffset: 0; }

/* ---------- 5. DEEP-DIVE TABS ---------- */
.tsc-deep { background: var(--pl-canvas); padding: 76px 0; }
.tsc-tablist {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px;
}
.tsc-tab {
  border: 1px solid var(--pl-border); background: var(--pl-white); color: var(--pl-ink);
  border-radius: var(--pl-radius-pill); padding: 10px 20px; font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tsc-tab:hover { border-color: var(--pl-blue); color: var(--pl-blue); }
.tsc-tab[aria-selected="true"] {
  background: var(--pl-blue); border-color: var(--pl-blue); color: var(--pl-white);
  box-shadow: var(--pl-shadow-sm);
}
.tsc-panel {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); box-shadow: var(--pl-shadow-sm);
  padding: 36px 38px;
}
.tsc-panel[hidden] { display: none; }
.tsc-panel h3 { font-size: 1.25rem; margin: 0 0 12px; }
.tsc-panel > p { font-size: .98rem; line-height: 1.7; margin: 0 0 22px; }
.tsc-checks { list-style: none; padding: 0; margin: 0; }
.tsc-checks li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .94rem; color: var(--pl-ink); margin-bottom: 13px; line-height: 1.55;
}
.tsc-checks li:last-child { margin-bottom: 0; }
.tsc-checks svg { width: 19px; height: 19px; flex: 0 0 19px; color: var(--pl-emerald); margin-top: 2px; }

/* ---------- 6. OUTCOMES BAND ---------- */
.tsc-outcomes { position: relative; overflow: hidden; background: var(--pl-navy); padding: 68px 0; }
.tsc-outcomes-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.tsc-outcomes-glow--blue    { width: 480px; height: 480px; background: rgba(37,99,255,.32);  top: -200px; left: -120px; }
.tsc-outcomes-glow--emerald { width: 420px; height: 420px; background: rgba(16,185,129,.20); bottom: -220px; right: -80px; }
.tsc-outcomes .container { position: relative; z-index: 2; }
.tsc-outcomes .pl-section-title { color: var(--pl-white); }
.tsc-outcomes-sub { color: rgba(255,255,255,.7); max-width: 600px; margin: 10px auto 0; }
.tsc-outcome { text-align: center; padding: 20px 10px; }
.tsc-outcome-num {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--pl-emerald); line-height: 1;
}
.tsc-outcome-label { display: block; margin-top: 10px; font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.45; }

/* ---------- 7. WHO IT'S FOR ---------- */
.tsc-audience { background: var(--pl-white); padding: 76px 0; }
.tsc-aud {
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 26px 24px; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tsc-aud:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-md); }
.tsc-aud-icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, .11); color: #0C8F65;
}
.tsc-aud-icon svg { width: 23px; height: 23px; }
.tsc-aud h3 { font-size: 1rem; margin: 0 0 7px; }
.tsc-aud p { font-size: .88rem; margin: 0; line-height: 1.55; }

/* ---------- 8. RELATED CASE STUDY ---------- */
.tsc-case-sec { background: var(--pl-canvas); padding: 72px 0; }
.tsc-case {
  display: flex; flex-direction: column; height: 100%;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tsc-case:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.3); }
.tsc-case-top { background: linear-gradient(155deg, var(--pl-navy) 0%, #10305a 100%); padding: 26px 26px 24px; }
.tsc-case-tag {
  display: inline-block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--pl-radius-pill);
  padding: 4px 10px; margin-bottom: 16px;
}
.tsc-case-metric {
  display: block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: 2.4rem; line-height: 1; color: var(--pl-emerald);
}
.tsc-case-metric-cap { display: block; margin-top: 8px; font-size: .88rem; color: rgba(255,255,255,.78); }
.tsc-case-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.tsc-case-title { font-size: 1.08rem; margin: 0 0 8px; }
.tsc-case-summary { font-size: .91rem; margin: 0 0 18px; flex: 1; }
.tsc-arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--pl-blue); }
.tsc-arrow-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.tsc-arrow-link:hover svg, .tsc-case:hover .tsc-arrow-link svg { transform: translateX(4px); }

/* ---------- 9. FAQ ---------- */
.tsc-faq { background: var(--pl-canvas); padding: 76px 0; }
.tsc-faq-wrap { max-width: 820px; margin: 0 auto; }
.tsc-faq-item {
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); margin-bottom: 12px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.tsc-faq-item.is-open { border-color: rgba(37, 99, 255, .3); box-shadow: var(--pl-shadow-sm); }
.tsc-faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--pl-font-head); font-weight: 700;
  font-size: 1rem; color: var(--pl-ink); cursor: pointer;
}
.tsc-faq-chevron { width: 20px; height: 20px; flex: 0 0 20px; color: var(--pl-blue); transition: transform .3s ease; }
.tsc-faq-q[aria-expanded="true"] .tsc-faq-chevron { transform: rotate(180deg); }
.tsc-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.tsc-faq-a p { padding: 0 24px 22px; margin: 0; color: var(--pl-muted); font-size: .95rem; line-height: 1.65; }

/* ---------- 10. BOTTOM CTA ---------- */
.tsc-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--pl-navy) 0%, #123258 60%, #0d4266 100%);
  padding: 60px 0;
}
.tsc-cta-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.tsc-cta-glow--blue    { width: 420px; height: 420px; background: rgba(37,99,255,.30);  top: -180px; right: 10%; }
.tsc-cta-glow--emerald { width: 380px; height: 380px; background: rgba(16,185,129,.20); bottom: -200px; left: 6%; }
.tsc-cta .container { position: relative; z-index: 2; }
.tsc-cta h2 { color: var(--pl-white); font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin: 0; }
.tsc-cta p { color: rgba(255,255,255,.68); font-size: .95rem; margin: 10px 0 0; }
.tsc-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Focus & responsive ---------- */
.tsc-tab:focus-visible,
.tsc-faq-q:focus-visible,
.tsc-case:focus-visible,
.tsc-arrow-link:focus-visible,
.tsc-breadcrumb a:focus-visible {
  outline: 3px solid rgba(37, 99, 255, .45); outline-offset: 3px; border-radius: 8px;
}

@media (max-width: 1023.98px) {
  .tsc-hero { padding: 44px 0 52px; }
  .tsc-visual { margin-top: 44px; }
  .tsc-caps, .tsc-process, .tsc-deep, .tsc-audience, .tsc-faq { padding: 56px 0; }
  .tsc-panel { padding: 28px 26px; }
}
@media (max-width: 767.98px) {
  .tsc-vfloat--tl { top: -8px; left: -6px; }
  .tsc-vfloat--br { bottom: -18px; right: -4px; }
  .tsc-vfloat { padding: 11px 14px; }
  .tsc-problems { padding: 36px 0; }
  .tsc-caps, .tsc-process, .tsc-deep, .tsc-audience, .tsc-faq, .tsc-case-sec { padding: 44px 0; }
  .tsc-cta { padding: 44px 0; }
  .tsc-tablist { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .tsc-reveal { opacity: 1; transform: none; transition: none; }
  .tsc-cap, .tsc-aud, .tsc-case, .tsc-tab, .tsc-vbar span,
  .tsc-faq-a, .tsc-faq-chevron, .tsc-arrow-link svg { transition: none; }
  .tsc-cap:hover, .tsc-aud:hover, .tsc-case:hover { transform: none; }
  .tsc-process .pl-tvc-line-path { transition: none; stroke-dashoffset: 0; }
}

/* ==========================================================
   HRMS — MANAGE / ENGAGE / RETAIN + KEY FEATURES
   ========================================================== */
.hr-features { background: var(--pl-white); border-top: 1px solid var(--pl-border); padding: 76px 0; }
.hr-features-head { margin-top: 56px; }
.hr-pillar {
  position: relative; height: 100%;
  background: var(--pl-white); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hr-pillar:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.28); }
.hr-pillar-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,255,.12), rgba(16,185,129,.14));
  color: var(--pl-blue);
}
.hr-pillar-icon svg { width: 26px; height: 26px; }
.hr-pillar h3 { font-size: 1.05rem; margin: 0 0 8px; letter-spacing: .04em; text-transform: uppercase; }
.hr-pillar p { font-size: .91rem; margin: 0; line-height: 1.6; }

.hr-feat {
  position: relative; height: 100%;
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 24px 22px 24px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hr-feat::before {
  content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--pl-blue), var(--pl-emerald));
  opacity: 0; transition: opacity .25s ease;
}
.hr-feat:hover { transform: translateY(-4px); box-shadow: var(--pl-shadow-md); border-color: rgba(37,99,255,.24); }
.hr-feat:hover::before { opacity: 1; }
.hr-feat h3 { font-size: .99rem; margin: 0 0 7px; }
.hr-feat p { font-size: .88rem; margin: 0; line-height: 1.6; }

/* ==========================================================
   HRMS — THE PRUDENTIA ADVANTAGE
   ========================================================== */
.hr-adv { background: var(--pl-white); border-top: 1px solid var(--pl-border); padding: 76px 0; }
.hr-adv-list { display: flex; flex-direction: column; gap: 14px; }
.hr-adv-row {
  display: flex; align-items: flex-start; gap: 22px;
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 22px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hr-adv-row:hover { transform: translateX(4px); box-shadow: var(--pl-shadow-md); border-color: rgba(16,185,129,.3); }
.hr-adv-tag {
  flex: 0 0 168px; display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px; border-radius: var(--pl-radius-pill);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(16, 185, 129, .11); color: #0C8F65;
  border: 1px solid rgba(16, 185, 129, .22);
}
.hr-adv-body h3 { font-size: 1.02rem; margin: 0 0 6px; }
.hr-adv-body p { font-size: .9rem; margin: 0; line-height: 1.6; }
.hr-adv-about {
  margin-top: 34px; padding: 26px 28px;
  border-radius: var(--pl-radius-card);
  background: linear-gradient(135deg, rgba(37,99,255,.06), rgba(16,185,129,.08));
  border: 1px solid var(--pl-border);
}
.hr-adv-about p { margin: 0; font-size: .95rem; line-height: 1.7; color: var(--pl-ink); }

@media (max-width: 575.98px) {
  .hr-adv-row { flex-direction: column; gap: 14px; }
  .hr-adv-tag { flex: 0 0 auto; align-self: flex-start; }
}

/* ==========================================================
   STICKY SECTION JUMP BAR (solution detail pages)
   ========================================================== */
.pl-subnav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--pl-navbar-h, 68px);
  z-index: 1020;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--pl-border);
  box-shadow: 0 6px 18px rgba(11, 31, 59, .06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.pl-subnav.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.pl-subnav > .container {
  max-width: 1560px;
  width: 100%;
  padding-left: 28px;
  padding-right: 28px;
}

.pl-subnav-scroll {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
  scroll-behavior: smooth;
}
.pl-subnav-scroll::-webkit-scrollbar { display: none; }

.pl-subnav-link {
  flex: 0 0 auto;
  padding: 8px 15px;
  border-radius: var(--pl-radius-pill);
  border: 1px solid transparent;
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--pl-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pl-subnav-link:hover { color: var(--pl-blue); background: rgba(37, 99, 255, .07); }
.pl-subnav-link.is-active {
  color: var(--pl-blue);
  background: rgba(37, 99, 255, .1);
  border-color: rgba(37, 99, 255, .26);
  font-weight: 600;
}
.pl-subnav-link--cta {
  color: #0C8F65;
  background: rgba(16, 185, 129, .11);
  border-color: rgba(16, 185, 129, .22);
  font-weight: 600;
}
.pl-subnav-link--cta:hover { color: #fff; background: var(--pl-emerald); border-color: var(--pl-emerald); }
.pl-subnav-link--cta.is-active { color: #fff; background: var(--pl-emerald); border-color: var(--pl-emerald); }

/* Anchored sections must clear both bars */
[id="problem"], [id="capabilities"], [id="modules"], [id="key-features"],
[id="inside-platform"], [id="deep-dive"], [id="how-it-works"], [id="advantage"],
[id="outcomes"], [id="case-studies"], [id="who-its-for"], [id="faq"], [id="connect"] {
  scroll-margin-top: calc(var(--pl-navbar-h, 68px) + 62px);
}

@media (max-width: 1399.98px) {
  .pl-subnav-scroll { justify-content: flex-start; }
  .pl-subnav-link { font-size: .8rem; padding: 8px 13px; }
}

@media (max-width: 767.98px) {
  .pl-subnav > .container { padding-left: 16px; padding-right: 16px; }
  .pl-subnav-scroll { padding: 8px 0; gap: 6px; }
  .pl-subnav-link { font-size: .79rem; padding: 7px 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .pl-subnav { transition: none; }
  .pl-subnav-scroll { scroll-behavior: auto; }
}

/* ==========================================================
   SOLUTIONS LISTING PAGE
   ========================================================== */
.sol-hero {
  position: relative; overflow: hidden;
  background: var(--pl-navy); color: rgba(255, 255, 255, .82);
  padding: 54px 0 66px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}
.sol-hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.sol-hero-glow--blue { width: 460px; height: 460px; top: -180px; right: -110px; background: rgba(37, 99, 255, .34); }
.sol-hero-glow--emerald { width: 380px; height: 380px; bottom: -190px; left: -120px; background: rgba(16, 185, 129, .24); }

.sol-crumb { position: relative; z-index: 1; display: flex; gap: 9px; font-size: .82rem; margin-bottom: 26px; color: rgba(255,255,255,.55); }
.sol-crumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.sol-crumb a:hover { color: #fff; }

.sol-hero-copy { position: relative; z-index: 1; max-width: 780px; }
.sol-hero-title {
  font-family: var(--pl-font-head); font-weight: 800; color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.14; margin: 0 0 16px;
}
.sol-hero-sub { font-size: 1.04rem; line-height: 1.72; color: rgba(255,255,255,.74); margin: 0 0 30px; }

.sol-hero-stats { display: flex; flex-wrap: wrap; gap: 34px; }
.sol-hero-stat { display: flex; flex-direction: column; gap: 3px; }
.sol-hero-num { font-family: var(--pl-font-head); font-weight: 800; font-size: 1.6rem; color: var(--pl-emerald); line-height: 1; }
.sol-hero-lab { font-size: .84rem; color: rgba(255,255,255,.66); }

/* ---------- Cards ---------- */
.sol-list { background: var(--pl-white); padding: 76px 0; }
.sol-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.sol-reveal.is-visible { opacity: 1; transform: none; }

.sol-card {
  position: relative; overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  background: var(--pl-canvas); border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card); padding: 30px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sol-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-emerald));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.sol-card:hover { transform: translateY(-5px); box-shadow: var(--pl-shadow-lg); border-color: rgba(37,99,255,.26); }
.sol-card:hover::before { transform: scaleX(1); }

.sol-card-top { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.sol-card-icon {
  width: 50px; height: 50px; border-radius: 14px; flex: 0 0 50px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 255, .1); color: var(--pl-blue);
}
.sol-card-icon--emerald { background: rgba(16, 185, 129, .12); color: #0C8F65; }
.sol-card-icon svg { width: 25px; height: 25px; }
.sol-card-tag {
  font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--pl-radius-pill);
  background: rgba(37, 99, 255, .09); color: var(--pl-blue);
}
.sol-card-tag--emerald { background: rgba(16, 185, 129, .11); color: #0C8F65; }

.sol-card-title { font-size: 1.28rem; margin: 0 0 10px; }
.sol-card-desc { font-size: .94rem; line-height: 1.68; margin: 0 0 20px; }

.sol-card-points { list-style: none; padding: 0; margin: 0 0 22px; }
.sol-card-points li {
  position: relative; padding-left: 22px; margin-bottom: 9px;
  font-size: .89rem; line-height: 1.55; color: var(--pl-ink);
}
.sol-card-points li::before {
  content: ""; position: absolute; left: 2px; top: .5em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--pl-emerald);
}

.sol-card-metrics { display: flex; flex-wrap: wrap; gap: 10px; margin: auto 0 20px; }
.sol-card-metrics span {
  font-size: .82rem; color: var(--pl-muted);
  padding: 7px 13px; border-radius: var(--pl-radius-pill);
  background: var(--pl-white); border: 1px solid var(--pl-border);
}
.sol-card-metrics strong { color: var(--pl-ink); font-weight: 700; }

.sol-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--pl-blue); text-decoration: none;
}
.sol-card-link svg { width: 18px; height: 18px; transition: transform .25s ease; }
.sol-card:hover .sol-card-link svg { transform: translateX(4px); }

/* ---------- Comparison table ---------- */
.sol-compare { background: var(--pl-canvas); padding: 76px 0; }
.sol-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pl-border); border-radius: var(--pl-radius-card);
  background: var(--pl-white);
}
.sol-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.sol-table thead th {
  text-align: left; font-family: var(--pl-font-head); font-size: .82rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--pl-muted);
  padding: 16px 20px; border-bottom: 1px solid var(--pl-border);
  background: var(--pl-canvas);
}
.sol-table tbody th, .sol-table tbody td {
  padding: 18px 20px; font-size: .9rem; line-height: 1.55;
  border-bottom: 1px solid var(--pl-border); vertical-align: top; text-align: left;
}
.sol-table tbody tr:last-child th, .sol-table tbody tr:last-child td { border-bottom: 0; }
.sol-table tbody tr:hover { background: rgba(37, 99, 255, .03); }
.sol-table tbody th { font-weight: 700; white-space: nowrap; }
.sol-table tbody th a { color: var(--pl-blue); text-decoration: none; }
.sol-table tbody th a:hover { text-decoration: underline; }
.sol-table tbody td { color: var(--pl-muted); }

/* ---------- How they connect ---------- */
.sol-chain {
  position: relative; overflow: hidden;
  background: var(--pl-navy); padding: 70px 0; color: rgba(255,255,255,.78);
}
.sol-chain-glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.sol-chain-glow--blue { width: 400px; height: 400px; top: -160px; left: -100px; background: rgba(37, 99, 255, .3); }
.sol-chain-glow--emerald { width: 340px; height: 340px; bottom: -160px; right: -90px; background: rgba(16, 185, 129, .22); }
.sol-chain .pl-section-title { color: #fff; }
.sol-chain-sub { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.7; }

.sol-chain-steps {
  position: relative; z-index: 1; margin-top: 42px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.sol-chain-step {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--pl-radius-card); padding: 24px 22px;
}
.sol-chain-num {
  display: inline-block; font-family: var(--pl-font-head); font-weight: 800;
  font-size: .9rem; color: var(--pl-emerald); margin-bottom: 12px;
}
.sol-chain-step h3 { font-size: 1rem; color: #fff; margin: 0 0 7px; }
.sol-chain-step p { font-size: .87rem; line-height: 1.6; color: rgba(255,255,255,.68); margin: 0; }

/* ---------- Bottom CTA ---------- */
.sol-cta { background: var(--pl-white); padding: 76px 0; }
.sol-cta-inner {
  text-align: center; max-width: 760px; margin: 0 auto;
  padding: 46px 40px; border-radius: var(--pl-radius-card);
  background: linear-gradient(140deg, var(--pl-navy) 0%, #123258 60%, #0d4266 100%);
  color: rgba(255,255,255,.78);
}
.sol-cta-title { font-size: clamp(1.5rem, 2.6vw, 2rem); color: #fff; margin: 0 0 12px; }
.sol-cta-sub { font-size: .98rem; line-height: 1.7; margin: 0 0 26px; color: rgba(255,255,255,.72); }
.sol-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (max-width: 991.98px) {
  .sol-chain-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .sol-hero { padding: 40px 0 50px; }
  .sol-hero-stats { gap: 22px; }
  .sol-list, .sol-compare, .sol-cta { padding: 52px 0; }
  .sol-chain { padding: 52px 0; }
  .sol-chain-steps { grid-template-columns: 1fr; }
  .sol-cta-inner { padding: 34px 24px; }
}

/* "View All Solutions" row in the Solutions dropdown */
.pl-dd-item--all { border-top: 1px solid var(--pl-border); margin-top: 6px; padding-top: 12px; }
.pl-dd-item--all .pl-dd-title { color: var(--pl-blue); }

/* ==========================================================
   CMS — server-rendered form states
   ========================================================== */
.pl-field-error {
  display: block; margin-top: 5px;
  font-size: .8rem; color: #DC2626;
}
.pl-form-error {
  padding: 11px 14px; margin-bottom: 16px;
  border-radius: 10px; font-size: .88rem;
  background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B;
}
.pl-form-success {
  text-align: center; padding: 34px 24px;
}
.pl-form-success svg { width: 54px; height: 54px; color: var(--pl-emerald); margin-bottom: 14px; }
.pl-form-success h3 { font-size: 1.15rem; margin: 0 0 8px; }
.pl-form-success p { font-size: .92rem; color: var(--pl-muted); margin: 0; }

.ct-success.is-visible { display: block; }

/* Insights pagination + empty state */
.ins-pager { display: flex; gap: 8px; justify-content: center; margin-top: 42px; }
.ins-pager-link {
  min-width: 40px; text-align: center;
  padding: 9px 14px; border-radius: var(--pl-radius-pill);
  border: 1px solid var(--pl-border); background: var(--pl-white);
  color: var(--pl-ink); font-size: .9rem; font-weight: 500; text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.ins-pager-link:hover { border-color: var(--pl-blue); color: var(--pl-blue); }
.ins-pager-link.is-current { background: var(--pl-blue); border-color: var(--pl-blue); color: #fff; font-weight: 600; }

.ins-empty { text-align: center; padding: 70px 20px; }
.ins-empty h2 { font-size: 1.4rem; margin: 0 0 10px; }
.ins-empty p { color: var(--pl-muted); margin: 0 0 22px; }

/* Category pills are links now, not buttons */
a.ins-pill { text-decoration: none; display: inline-block; }

/* ===================================================================
   GALLERY PAGE (gallery.php)
   =================================================================== */

/* ---------- Hero ---------- */
.gl-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0A2342 0%, #0E2E56 55%, #123A6B 100%);
  padding: 7.5rem 0 4.5rem;
}

.gl-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 40%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 40%, transparent 78%);
}

.gl-hero-glow {
  position: absolute;
  top: -180px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.38) 0%, transparent 68%);
  filter: blur(20px);
}

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

.gl-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gl-hero-title {
  color: var(--pl-white);
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  margin: 0.6rem 0 1rem;
}

.gl-accent {
  background: linear-gradient(100deg, #5B8DEF 0%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gl-hero-sub {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* Breadcrumb sits on the hero's centre line, not adrift at the left edge */
.gl-hero .ct-breadcrumb {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

/* ---------- Section ---------- */
.gl-section { padding: 3.5rem 0 5.5rem; }

/* ---------- Filter pills ---------- */
.gl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.2rem;
}

.gl-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.15rem;
  border-radius: var(--pl-radius-pill);
  border: 1px solid var(--pl-border);
  background: var(--pl-white);
  color: var(--pl-ink);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.22s ease;
}

.gl-pill:hover {
  border-color: var(--pl-blue);
  color: var(--pl-blue);
  transform: translateY(-1px);
  box-shadow: var(--pl-shadow-sm);
}

.gl-pill.is-active {
  background: var(--pl-navy);
  border-color: var(--pl-navy);
  color: var(--pl-white);
}

.gl-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--pl-radius-pill);
  background: rgba(10, 35, 66, 0.07);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pl-muted);
}

.gl-pill.is-active .gl-pill-count {
  background: rgba(255, 255, 255, 0.18);
  color: var(--pl-white);
}

/* ---------- Grid ---------- */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 215px;
  grid-auto-flow: dense;
  gap: 18px;
}

/* Scroll reveal — tiles rise in as the grid enters the viewport.
   The hidden state is scoped to .gl-reveal-ready, which the script adds only
   once it is actually able to reveal them again. Without that guard, a stale,
   missing or blocked script.js leaves every photo at opacity 0 — an invisible
   gallery with no error to explain it. */
.gl-item {
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease;
}

.gl-grid.gl-reveal-ready .gl-item {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
}

.gl-grid.gl-reveal-ready .gl-item.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gl-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  background: #E8EDF5;
  cursor: zoom-in;
  box-shadow: var(--pl-shadow-sm);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
}

/* Every 6th tile takes a 2x2 block, so the grid reads as a mosaic
   rather than a plain row of equal squares. */
.gl-grid .gl-item:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; }

.gl-item:hover,
.gl-item:focus-visible {
  transform: translateY(-4px) scale(1);
  box-shadow: var(--pl-shadow-lg);
  outline: none;
}

.gl-item:focus-visible { box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.45), var(--pl-shadow-lg); }

.gl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gl-item:hover .gl-img { transform: scale(1.06); }

.gl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  text-align: left;
  background: linear-gradient(to top, rgba(10, 35, 66, 0.88) 0%, rgba(10, 35, 66, 0.15) 52%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gl-item:hover .gl-overlay,
.gl-item:focus-visible .gl-overlay { opacity: 1; }

.gl-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pl-navy);
  transform: translateY(-6px);
  transition: transform 0.3s ease;
}

.gl-item:hover .gl-zoom { transform: translateY(0); }
.gl-zoom svg { width: 18px; height: 18px; }

.gl-item-meta { display: block; }

.gl-item-title {
  display: block;
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--pl-white);
  line-height: 1.3;
}

.gl-item-cat {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7FE7C4;
}

/* ---------- Empty state ---------- */
.gl-empty {
  text-align: center;
  max-width: 460px;
  margin: 2rem auto;
  padding: 3rem 2rem;
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  box-shadow: var(--pl-shadow-sm);
}

.gl-empty svg { width: 52px; height: 52px; color: #B6C2D6; margin-bottom: 1rem; }
.gl-empty h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.gl-empty p { margin-bottom: 1.4rem; }

/* ---------- Lightbox ---------- */
.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  opacity: 0;
  transition: opacity 0.26s ease;
}

.gl-lightbox.is-open { opacity: 1; }

.gl-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 40, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.gl-lb-figure {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(1080px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.96);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.gl-lightbox.is-open .gl-lb-figure { transform: scale(1); }

.gl-lb-stage {
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  line-height: 0;
}

.gl-lb-img {
  display: block;
  max-width: min(1080px, 92vw);
  max-height: 74vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gl-lb-cap {
  margin-top: 1rem;
  text-align: center;
  max-width: 620px;
}

.gl-lb-cat {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7FE7C4;
  margin-bottom: 4px;
}

.gl-lb-cat:empty { display: none; }

.gl-lb-title {
  display: block;
  font-family: var(--pl-font-head);
  font-size: 1.12rem;
  color: var(--pl-white);
}

.gl-lb-title:empty { display: none; }

.gl-lb-text {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.gl-lb-text:empty { display: none; }

.gl-lb-count {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.gl-lb-btn {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pl-white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.gl-lb-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.06);
}

.gl-lb-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.6);
}

.gl-lb-btn svg { width: 21px; height: 21px; }

.gl-lb-close { top: 1.4rem; right: 1.4rem; }
.gl-lb-prev  { left: 1.6rem;  top: 50%; transform: translateY(-50%); }
.gl-lb-next  { right: 1.6rem; top: 50%; transform: translateY(-50%); }

.gl-lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.gl-lb-next:hover { transform: translateY(-50%) scale(1.06); }

body.gl-lb-open { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .gl-hero { padding: 6.5rem 0 3.5rem; }
  .gl-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); grid-auto-rows: 185px; }
}

@media (max-width: 767.98px) {
  .gl-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 12px; }
  .gl-grid .gl-item:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; }
  .gl-overlay { opacity: 1; background: linear-gradient(to top, rgba(10, 35, 66, 0.85) 0%, transparent 62%); }
  .gl-zoom { display: none; }
  .gl-item-title { font-size: 0.85rem; }

  .gl-lightbox { padding: 1rem; }
  .gl-lb-img { max-height: 62vh; }
  .gl-lb-close { top: 0.75rem; right: 0.75rem; }
  .gl-lb-prev { left: 0.5rem; }
  .gl-lb-next { right: 0.5rem; }
  .gl-lb-btn { width: 40px; height: 40px; }
}

@media (max-width: 479.98px) {
  .gl-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gl-grid .gl-item:nth-child(6n + 1) { grid-column: span 1; grid-row: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  .gl-item, .gl-img, .gl-lb-figure, .gl-lightbox { transition: none; }
  .gl-grid.gl-reveal-ready .gl-item { opacity: 1; transform: none; }
  .gl-item:hover { transform: none; }
  .gl-item:hover .gl-img { transform: none; }
}

/* ===================================================================
   MOBILE NAV — right-side drawer (offcanvas below lg)
   =================================================================== */

/* ---------- Hamburger button ---------- */
.pl-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--pl-border);
  border-radius: 13px;
  background: var(--pl-white);
  color: var(--pl-navy);
  box-shadow: var(--pl-shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pl-burger:hover { border-color: var(--pl-blue); box-shadow: var(--pl-shadow-md); }
.pl-burger:active { transform: scale(0.95); }
.pl-burger:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.35); }

.pl-burger-box {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.pl-burger-line {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s ease, opacity 0.2s ease;
}

.pl-burger-line:nth-child(1) { top: 0;    width: 100%; }
.pl-burger-line:nth-child(2) { top: 6px;  width: 70%;  }
.pl-burger-line:nth-child(3) { top: 12px; width: 100%; }

.pl-burger:hover .pl-burger-line:nth-child(2) { width: 100%; }

/* Open state — the button stays behind the drawer, so just fade the middle bar */
.pl-burger[aria-expanded="true"] .pl-burger-line:nth-child(2) { opacity: 0; }

@media (max-width: 1199.98px) {
  .pl-burger { display: inline-flex; }
}

/* ---------- Drawer shell ---------- */
@media (max-width: 1199.98px) {

  /* The panel positions itself rather than inheriting Bootstrap's
     .offcanvas-lg geometry — those rules load from a CDN and, if they are
     late, cached oddly or absent, the drawer collapses to content width at
     the left edge. Bootstrap JS still drives .show/.hiding and the backdrop. */
  .pl-drawer.offcanvas-xl {
    --bs-offcanvas-width: min(360px, 86vw);

    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
    z-index: 1045;

    width: min(360px, 86vw) !important;
    max-width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;

    display: flex;
    flex-direction: column;

    background: var(--pl-white);
    border-left: 1px solid var(--pl-border);
    box-shadow: -24px 0 60px rgba(10, 35, 66, 0.22);

    visibility: hidden;
    transform: translateX(100%) !important;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s;
  }

  .pl-drawer.offcanvas-xl.show,
  .pl-drawer.offcanvas-xl.showing { visibility: visible; }

  /* A parked panel sitting a full width past the right edge counts towards
     the document's scroll width, which gave every page a horizontal
     scrollbar on phones. Taking it out of rendering while fully closed
     removes that; Bootstrap keeps .showing/.hiding on during the slide, so
     the animation still plays in both directions. */
  .pl-drawer.offcanvas-xl:not(.show):not(.showing):not(.hiding) {
    display: none !important;
  }

  /* Slide in. Stated explicitly rather than relying on Bootstrap's
     .offcanvas-lg.show:not(.hiding), which the panel's own
     .offcanvas-end transform can shadow depending on load order. */
  .pl-drawer.offcanvas-xl.show,
  .pl-drawer.offcanvas-xl.showing { transform: translateX(0) !important; }

  .pl-drawer.offcanvas-xl.hiding { transform: translateX(100%) !important; }

  /* Bootstrap's own backdrop gets the brand tint */
  .offcanvas-backdrop.show { background-color: rgba(10, 35, 66, 0.55); opacity: 1; }

  .pl-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.35rem;
    border-bottom: 1px solid var(--pl-border);
    background: linear-gradient(135deg, #0A2342 0%, #14356B 100%);
  }

  .pl-drawer-title {
    font-family: var(--pl-font-head);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .pl-drawer-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pl-white);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .pl-drawer-close:hover { background: rgba(255, 255, 255, 0.22); transform: rotate(90deg); }
  .pl-drawer-close svg { width: 18px; height: 18px; }

  .pl-drawer-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0.5rem 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ---------- Links ---------- */
  .pl-drawer .navbar-nav {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0.85rem;
    gap: 2px;
  }

  .pl-drawer .nav-item { width: 100%; }

  .pl-drawer .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pl-ink);
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  .pl-drawer .nav-link:hover {
    background: #F1F5FC;
    color: var(--pl-blue);
    padding-left: 1.2rem;
  }

  .pl-drawer .nav-link.active {
    background: linear-gradient(100deg, rgba(37, 99, 255, 0.1) 0%, rgba(37, 99, 255, 0.02) 100%);
    color: var(--pl-blue);
    box-shadow: inset 3px 0 0 var(--pl-blue);
  }

  /* Chevron on the dropdown parents */
  .pl-drawer .dropdown-toggle::after {
    margin: 0;
    border: 0;
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 0.26s ease;
  }

  .pl-drawer .nav-item.show .dropdown-toggle::after { transform: rotate(180deg); }

  /* Submenus expand inline instead of floating */
  .pl-drawer .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    margin: 2px 0 6px;
    padding: 6px;
    border: 0;
    border-radius: 12px;
    background: #F6F8FC;
    box-shadow: none;
  }

  .pl-drawer .pl-dd-item {
    padding: 0.6rem 0.75rem;
    border-radius: 9px;
    white-space: normal;
  }

  .pl-drawer .pl-dd-title {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--pl-ink);
  }

  .pl-drawer .pl-dd-desc {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--pl-muted);
  }

  .pl-drawer .pl-dd-item:hover { background: var(--pl-white); }
  .pl-drawer .pl-dd-item:hover .pl-dd-title { color: var(--pl-blue); }

  /* ---------- CTA ---------- */
  .pl-drawer .pl-nav-cta {
    padding: 0.5rem 1.35rem 0;
    margin-top: 0.35rem;
  }

  .pl-drawer .pl-nav-cta .btn { width: 100%; }

  /* ---------- Footer ---------- */
  .pl-drawer-foot {
    margin-top: auto;
    padding: 1.25rem 1.35rem 1.5rem;
    border-top: 1px solid var(--pl-border);
  }

  .pl-drawer-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pl-muted);
  }

  .pl-drawer-contact:hover { color: var(--pl-blue); }
  .pl-drawer-contact svg { width: 17px; height: 17px; color: var(--pl-blue); flex-shrink: 0; }

  .pl-drawer-social {
    display: flex;
    gap: 10px;
    margin-top: 0.9rem;
  }

  .pl-drawer-social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--pl-border);
    color: var(--pl-navy);
    transition: all 0.2s ease;
  }

  .pl-drawer-social a:hover {
    background: var(--pl-navy);
    border-color: var(--pl-navy);
    color: var(--pl-white);
    transform: translateY(-2px);
  }

  .pl-drawer-social svg { width: 17px; height: 17px; }

  /* Staggered entry for the links once the drawer is open */
  .pl-drawer.showing .nav-item,
  .pl-drawer.show .nav-item,
  .pl-drawer.show .pl-nav-cta,
  .pl-drawer.show .pl-drawer-foot {
    animation: plDrawerIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .pl-drawer.show .nav-item:nth-child(1) { animation-delay: 0.06s; }
  .pl-drawer.show .nav-item:nth-child(2) { animation-delay: 0.10s; }
  .pl-drawer.show .nav-item:nth-child(3) { animation-delay: 0.14s; }
  .pl-drawer.show .nav-item:nth-child(4) { animation-delay: 0.18s; }
  .pl-drawer.show .nav-item:nth-child(5) { animation-delay: 0.22s; }
  .pl-drawer.show .nav-item:nth-child(6) { animation-delay: 0.26s; }
  .pl-drawer.show .nav-item:nth-child(7) { animation-delay: 0.30s; }
  .pl-drawer.show .pl-nav-cta            { animation-delay: 0.34s; }
  .pl-drawer.show .pl-drawer-foot        { animation-delay: 0.38s; }

  @keyframes plDrawerIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

/* Desktop: the offcanvas markup must behave like a plain flex row */
@media (min-width: 1200px) {
  .pl-drawer-head,
  .pl-drawer-foot { display: none !important; }

  .pl-drawer .offcanvas-body,
  .pl-drawer-body {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding: 0;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl-drawer.showing .nav-item,
  .pl-drawer.show .nav-item,
  .pl-drawer.show .pl-nav-cta,
  .pl-drawer.show .pl-drawer-foot { animation: none; }
  .pl-burger-line { transition: none; }
}
