/* PDAP Portal — static template from NEW-PDAP-PORTAL (Figma) */

:root {
  --pdap-blue: #0041c0;
  --pdap-black: #000000;
  --pdap-white: #ffffff;
  --pdap-soft: #eff4ff;
  --pdap-muted: #fafafa;
  --pdap-line: #d0d0d0;
  --font: "Noto Sans", system-ui, sans-serif;
  /* Home masthead (.masthead__slide): image stage + lower band */
  --banner-stage-height: 512px;
  --banner-bottom-slot: 78px;
  /* Industries/Services mega menu panel — same total height as .masthead__slide */
  --mega-panel-height: calc(var(--banner-stage-height) + var(--banner-bottom-slot));
  /* Inner pages (.page-hero): a bit shorter than home */
  --page-hero-stage-height: 448px;
  --page-hero-bottom-slot: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.1;
  color: var(--pdap-black);
  background: var(--pdap-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

img.img-fallback {
  object-fit: cover;
  background: #0b1f4d;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--pdap-blue);
  color: var(--pdap-white);
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

.shell {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* Header / footer horizontal inset matches Figma px-[40px] */
.shell--inset-sm {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 900px) {
  :root {
    --banner-stage-height: 400px;
    --page-hero-stage-height: 336px;
    --page-hero-bottom-slot: 56px;
  }

  .shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .shell--inset-sm {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* —— Header —— */
.site-header {
  background: var(--pdap-white);
  position: relative;
  z-index: 20;
}

.site-header__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 30px;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo-pd img {
  display: block;
  width: 125px;
  height: 40px;
  object-fit: cover;
}

.site-header__tagline {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.logo-panasonic {
  position: relative;
  width: 170px;
  height: 60px;
  flex-shrink: 0;
}

.logo-panasonic__base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.logo-panasonic__mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.logo-panasonic--sm {
  width: 170px;
  height: 60px;
  margin-left: 8px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.site-nav a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Top-row mega chevrons (Industries / Services) — larger hit + open/close read */
.site-nav > a.has-chevron > .icon-chevron {
  width: 22px;
  height: 22px;
  max-width: none;
  margin-top: 2px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--pdap-black);
  font-size: 32px;
  line-height: 1;
  padding: 6px 10px;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--pdap-blue);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 18;
}

.menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* NAV-OPEN mega panels (Figma frame NAV-OPEN-V2 47:4170) */
.site-header.nav-open-industries .site-nav .nav-open-target {
  color: var(--pdap-blue);
  font-weight: 700;
  text-decoration: none;
}

.site-header.nav-open-industries .site-nav .nav-open-target .icon-chevron {
  transform: rotate(180deg);
}

.site-header.nav-open-services .site-nav .nav-open-target-services {
  color: var(--pdap-blue);
  font-weight: 700;
  text-decoration: none;
}

.site-header.nav-open-services .site-nav .nav-open-target-services .icon-chevron {
  transform: rotate(180deg);
}

.industry-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #f5f6f8;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 48px 36px;
  display: grid;
  z-index: 40;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  height: min(78vh, var(--mega-panel-height));
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.28s ease, transform 0.34s ease, visibility 0s linear 0.34s;
}

/* Two-column template must not depend on `.nav-open-*` or the first paint after open
   uses an implicit 1-column grid and the mega briefly stacks full-width. */
.industry-mega--industries,
.industry-mega--services {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  justify-content: stretch;
  gap: 40px;
  left: 50%;
  right: auto;
  width: min(1440px, calc(100% - 80px));
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-50%) translateY(-16px);
}

.site-header.nav-open-industries .industry-mega--industries,
.site-header.nav-open-services .industry-mega--services {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  margin: 0;
  transform: translateX(-50%) translateY(0);
  padding-top: 28px;
  padding-bottom: 44px;
  gap: 52px;
  /* Keep both columns full height in fixed panel; right side scrolls internally. */
  align-items: stretch;
  height: min(78vh, var(--mega-panel-height));
  overflow: hidden;
}

.industry-mega__col {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 0;
  overflow: hidden;
}

.industry-mega__col:not(.industry-mega__col--left) {
  grid-template-rows: auto minmax(0, 1fr);
  align-self: stretch;
}

.industry-mega__col--left {
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  background: #f1f3f7;
  border-right: 1px solid #dbe1ec;
  align-self: stretch;
  min-height: 100%;
}

.industry-mega__left-scroll {
  overflow: auto;
  padding: 10px 0;
}

.industry-mega__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  color: var(--pdap-black);
  line-height: 1.15;
  padding: 10px 14px;
}

.industry-mega__item .icon-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.industry-mega__item--active .icon-chevron {
  transform: rotate(180deg);
}

.industry-mega__item:hover,
.industry-mega__item:focus-visible {
  color: var(--pdap-blue);
}

.industry-mega__item--active {
  color: var(--pdap-blue);
  font-weight: 700;
  background: #e9eef8;
}

.industry-mega__rule {
  height: 1px;
  background: #d1d5db;
}

.industry-mega__active {
  display: grid;
  gap: 18px;
}

.industry-mega__active-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  color: var(--pdap-black);
}

.industry-mega__active-list {
  border-left: 0;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0;
  align-content: start;
  min-height: 0;
  overflow: auto;
  padding-right: 12px;
}

.industry-mega__heading {
  margin: 0;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--pdap-blue);
  padding-right: 12px;
}

.industry-mega__text-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  padding-right: 12px;
}

.industry-mega__text-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-mega__text-item {
  opacity: 1;
  transform: translateY(0);
  padding: 0 0 16px;
}

.industry-mega__active-list--animate .industry-mega__text-item {
  opacity: 0;
  transform: translateY(-8px);
  animation: mega-submenu-item-in 0.34s ease forwards;
  animation-delay: var(--submenu-delay, 0ms);
}

.industry-mega__text-item a {
  display: grid;
  gap: 4px;
  text-decoration: none;
  color: var(--pdap-black);
}

.industry-mega__text-group {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6b7280;
}

.industry-mega__text-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  color: #2f3a4a;
}

.industry-mega__text-desc {
  font-size: 15px;
  line-height: 1.25;
  color: #374151;
}

.industry-mega__text-item a:hover .industry-mega__text-title,
.industry-mega__text-item a:focus-visible .industry-mega__text-title {
  color: var(--pdap-blue);
}

.industry-mega__footer {
  margin-top: auto;
  border-top: 1px solid #dbe1ec;
  background: var(--pdap-blue);
}

.industry-mega__explore-all {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 16px 14px;
}

.industry-mega__explore-all::after {
  content: "\2192";
  font-size: 22px;
  line-height: 1;
}

.industry-mega__explore-all:hover,
.industry-mega__explore-all:focus-visible {
  background: #0a4fd6;
}

.industry-mega__active-head .industry-mega__chev {
  transition: transform 0.2s ease;
}

.industry-mega__active--collapsed .industry-mega__active-head .industry-mega__chev {
  transform: rotate(-90deg);
}

.industry-mega__active--collapsed .industry-mega__active-list {
  display: none;
}

/* legacy generic active-list anchor styles removed in favor of text-column layout */

@keyframes mega-submenu-item-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-mega__active-head:hover,
.industry-mega__active-head:focus-visible {
  color: var(--pdap-blue);
}

.industry-mega__chev {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.site-nav .has-chevron .icon-chevron {
  transition: transform 0.2s ease;
}

@media (max-width: 1280px) {
  .industry-mega {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1024px) {
  .industry-mega--industries,
  .industry-mega--services {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Match previous specificity so open Services mega keeps tighter stack spacing on tablet. */
  .site-header.nav-open-industries .industry-mega--industries,
  .site-header.nav-open-services .industry-mega--services {
    gap: 20px;
  }

  .industry-mega__text-cols {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-mega__heading {
    font-size: 30px;
  }
}

@media (max-width: 780px) {
  .industry-mega {
    display: none;
  }

  .site-header.nav-open-industries .industry-mega--industries,
  .site-header.nav-open-services .industry-mega--services {
    display: none;
  }
}

.site-nav .nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  background: var(--pdap-white);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.site-nav .nav-dropdown__menu a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav .nav-dropdown__menu a:hover,
.site-nav .nav-dropdown__menu a:focus-visible {
  background: #f3f4f6;
  color: var(--pdap-blue);
}

.site-nav .nav-dropdown.open > .nav-dropdown__menu,
.site-nav .nav-dropdown:hover > .nav-dropdown__menu,
.site-nav .nav-dropdown:focus-within > .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .nav-dropdown.open > .has-chevron,
.site-nav .nav-dropdown:hover > .has-chevron,
.site-nav .nav-dropdown:focus-within > .has-chevron {
  color: var(--pdap-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-nav .nav-dropdown.open > .has-chevron .icon-chevron,
.site-nav .nav-dropdown:hover > .has-chevron .icon-chevron,
.site-nav .nav-dropdown:focus-within > .has-chevron .icon-chevron {
  transform: rotate(180deg);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-nav a.is-active:hover,
.site-nav a.is-active:focus-visible,
.site-nav a[aria-current="page"]:hover,
.site-nav a[aria-current="page"]:focus-visible {
  text-decoration: none;
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--pdap-blue);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a.is-active .icon-chevron,
.site-nav a[aria-current="page"] .icon-chevron {
  transform: rotate(180deg);
}

.icon-chevron {
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 24px 40px;
  }
}

@media (max-width: 700px) {
  .site-nav {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .site-header__top {
    align-items: center;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .site-header__brand {
    gap: 6px;
  }

  .logo-panasonic {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 25;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--pdap-white);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
  }

  .site-nav.is-active {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    min-height: 44px;
    padding: 14px 24px;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a.has-chevron .icon-chevron {
    transition: transform 0.2s ease;
  }

  .site-nav a.has-chevron.is-expanded .icon-chevron {
    transform: rotate(180deg);
  }

  .site-nav__submenu {
    display: none;
    border-bottom: 1px solid #e5e7eb;
    background: #f8faff;
  }

  .site-nav__submenu.is-active {
    display: block;
  }

  .site-nav__submenu a {
    min-height: 44px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px solid #e5e7eb;
    justify-content: space-between;
  }

  .site-nav__submenu a:last-child {
    border-bottom: 0;
  }

  .site-nav__submenu-group {
    border-bottom: 1px solid #e5e7eb;
  }

  .site-nav__submenu-group:last-child {
    border-bottom: 0;
  }

  .site-nav__submenu-toggle {
    width: 100%;
    min-height: 44px;
    padding: 14px 24px 14px 36px;
    border: 0;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    color: inherit;
    font: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
    text-align: left;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .site-nav__submenu-toggle .icon-chevron {
    transition: transform 0.2s ease;
  }

  .site-nav__submenu-toggle.is-expanded .icon-chevron {
    transform: rotate(180deg);
  }

  .site-nav__submenu-children {
    display: none;
  }

  .site-nav__submenu-children.is-active {
    display: block;
  }

  .site-nav__submenu-children a {
    padding: 14px 24px 14px 58px;
  }

  .site-nav__submenu-children .site-nav__submenu-children a {
    padding-left: 48px;
  }
}

/* —— Masthead carousel —— */
.masthead {
  padding-top: 0;
}

.masthead__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.masthead__track {
  display: flex;
  transition: transform 0.45s ease;
}

.masthead__slide {
  position: relative;
  flex: 0 0 100%;
  min-height: var(--mega-panel-height);
  overflow: hidden;
  background: var(--pdap-soft);
}

.masthead__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.masthead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Crop alignment per masthead art (1280×512 frames in Figma) */
.masthead__media--a img {
  object-position: 54% 48%;
  transform: scale(1.08);
  transform-origin: center center;
}

.masthead__media--b img {
  object-position: 50% 42%;
  transform: scale(1.06);
  transform-origin: center center;
}

.masthead__media--c img {
  object-position: 42% 50%;
  transform: scale(1.05);
  transform-origin: center center;
}

.masthead__copy {
  position: absolute;
  left: calc(608 / 1280 * 100%);
  top: 50%;
  transform: translateY(-50%);
  width: min(564px, calc(100% - 608 / 1280 * 100% - 16px));
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--pdap-black);
  z-index: 1;
}

@media (max-width: 900px) {
  .masthead__copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    padding: 48px 24px;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
  }

  .masthead__media--a img,
  .masthead__media--b img,
  .masthead__media--c img {
    transform: none;
    object-position: center center;
  }
}

.masthead__kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--pdap-black);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.masthead__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 60px);
  font-weight: 200;
  line-height: 1.1;
  color: var(--pdap-black);
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.4);
}

.masthead__cta {
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  align-self: flex-start;
  color: var(--pdap-black);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.masthead__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 32px;
}

.masthead__controls--compact {
  padding: 20px 0 0;
}

.masthead__arrow {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masthead__arrow:hover,
.masthead__arrow:focus-visible {
  opacity: 0.75;
}

.masthead__arrow--next img {
  transform: scaleY(-1) rotate(180deg);
}

.masthead__arrow--static {
  opacity: 0.9;
  pointer-events: none;
}

.masthead__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.masthead__dots button {
  width: 60px;
  height: 2px;
  padding: 0;
  border: none;
  background: var(--pdap-line);
  cursor: pointer;
}

.masthead__dots button.is-active {
  background: var(--pdap-blue);
}

.masthead__dots--wide span {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--pdap-line);
}

.masthead__dots--wide span.is-active {
  background: var(--pdap-blue);
}

.masthead__dots--wide button {
  width: 60px;
  height: 2px;
  padding: 0;
  border: none;
  background: var(--pdap-line);
  cursor: pointer;
}

.masthead__dots--wide button.is-active {
  background: var(--pdap-blue);
}

.services-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.services-carousel.masthead__controls--compact {
  padding: 20px 0 32px;
}

.services-carousel.is-hidden {
  display: none;
}

.services-carousel .masthead__arrow img {
  width: 20px;
  height: 20px;
}

.services-carousel .masthead__dots--wide {
  flex: 0 1 auto;
  justify-content: center;
  gap: 10px;
}

.services-carousel .masthead__dots--wide button {
  width: 60px;
  height: 2px;
  border-radius: 0;
  background: #d0d0d0;
}

.services-carousel .masthead__dots--wide button.is-active {
  background: var(--pdap-blue);
}

/* —— Sections —— */
.section {
  padding: 60px 0;
}

.section--muted {
  background: var(--pdap-muted);
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}

.section__title {
  margin: 0;
  font-size: 42px;
  font-weight: 200;
  line-height: 1.1;
  max-width: 900px;
}

.section--news .section__title {
  max-width: 889px;
}

.section__title--solo {
  margin-bottom: 40px;
}

.section__link {
  font-size: 16px;
  text-decoration: underline;
  white-space: nowrap;
}

.section__link:hover,
.section__link:focus-visible {
  color: var(--pdap-blue);
}

/* —— News —— */
.news-grid {
  display: flex;
  gap: 13px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.news-grid::-webkit-scrollbar {
  display: none;
}

.news-grid > .news-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
}

.news-carousel {
  position: relative;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.news-carousel > .news-grid {
  scroll-behavior: smooth;
}

.news-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #0041c0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  z-index: 2;
  opacity: 0.7;
}

.news-carousel__nav--prev {
  left: 18px;
}

.news-carousel__nav--next {
  right: 18px;
}

.news-carousel__nav:hover,
.news-carousel__nav:focus-visible {
  background: #eff4ff;
}

.news-carousel__nav[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.news-carousel__nav-icon {
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.news-carousel__nav-icon--prev {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.news-carousel__nav-icon--next {
  transform: rotate(45deg);
  margin-right: 4px;
}

.news-card {
  background: var(--pdap-soft);
  padding: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 140px;
  overflow: visible;
}

.news-card__thumb {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__thumb--pr {
  background: var(--pdap-blue);
}

.news-card__thumb--pr img {
  opacity: 0.35;
}

.news-card__pr {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 200;
  color: var(--pdap-white);
  pointer-events: none;
}

.news-card__body time {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.news-card__body h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.news-card__body a {
  color: var(--pdap-blue);
  text-decoration: none;
}

.news-card__body a:hover,
.news-card__body a:focus-visible {
  text-decoration: underline;
}

.news-card__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.news-card__link:hover .news-card__body h2,
.news-card__link:hover .news-card__body h3,
.news-card__link:focus-visible .news-card__body h2,
.news-card__link:focus-visible .news-card__body h3 {
  text-decoration: underline;
  color: var(--pdap-blue);
}

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

/* —— Key Happenings index / detail —— */
.kh-index__hero {
  padding-top: 48px;
  padding-bottom: 24px;
}

.kh-index__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 600;
}

.kh-index__intro {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.5;
}

.kh-index__toolbar {
  margin-bottom: 24px;
}

.kh-index__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.kh-index__search {
  flex: 1 1 220px;
  min-width: 180px;
  padding: 10px 12px;
  border: 1px solid #c9d0d8;
  border-radius: 4px;
  font: inherit;
}

.kh-index__sort {
  padding: 10px 12px;
  border: 1px solid #c9d0d8;
  border-radius: 4px;
  font: inherit;
  background: #fff;
}

.kh-index__submit {
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  background: var(--pdap-blue);
  color: var(--pdap-white);
  font: inherit;
  cursor: pointer;
}

.kh-index__submit:hover,
.kh-index__submit:focus-visible {
  filter: brightness(1.05);
}

.kh-index__reset {
  font-size: 14px;
  color: var(--pdap-blue);
  text-decoration: none;
}

.kh-index__reset:hover,
.kh-index__reset:focus-visible {
  text-decoration: underline;
}

.service-explorer__form,
.industry-explorer__form {
  margin-top: 1rem;
}

.service-explorer__list,
.industry-explorer__list {
  margin-top: 1rem;
}

.service-explorer__list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
}

.service-explorer__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.service-explorer__card:hover,
.service-explorer__card:focus-visible {
  border-color: #0f62fe;
  box-shadow: 0 0 0 1px #0f62fe;
}

.service-explorer__card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.service-explorer__card-desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #525252;
}

@media (min-width: 768px) {
  .service-explorer__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .service-explorer__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.industry-explorer__title {
  font-size: 32px;
  margin-top: 1.5rem;
}

.industry-explorer__list {
  display: grid;
  gap: 12px;
}

.industry-explorer__item {
  display: grid;
  gap: 4px;
}

.industry-explorer__meta {
  display: block;
  opacity: 0.8;
}

.service-explorer-screen {
  padding-top: 16px;
  padding-bottom: 48px;
}

.service-explorer-screen__head {
  margin-bottom: 24px;
}

.service-explorer-screen__layout {
  display: grid;
  gap: 24px;
}

.service-explorer-screen__sidebar {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 16px;
}

.service-explorer-screen__sidebar-title {
  margin: 0 0 12px;
  font-size: 18px;
}

.service-explorer-screen__sidebar-title-link {
  color: inherit;
  text-decoration: none;
}

.service-explorer-screen__sidebar-title-link:hover,
.service-explorer-screen__sidebar-title-link:focus-visible {
  text-decoration: underline;
}

.service-explorer-screen__nav {
  display: grid;
  gap: 8px;
}

.service-explorer-screen__nav-item {
  display: block;
  color: #161616;
  text-decoration: none;
  border-radius: 6px;
  padding: 8px 10px;
}

.service-explorer-screen__nav-item:hover,
.service-explorer-screen__nav-item:focus-visible {
  background: #f4f4f4;
}

.service-explorer-screen__nav-item.is-active {
  background: #e8f1ff;
  color: #0f62fe;
  font-weight: 600;
}

.service-explorer-screen__results-title {
  margin: 0;
  font-size: 32px;
}

.service-explorer-screen__results-meta {
  margin-top: 8px;
  margin-bottom: 0;
  color: #525252;
}

.service-explorer-screen__cards {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.service-explorer-screen__toolbar {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.service-explorer-screen__card {
  display: block;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}

.service-explorer-screen__card:hover,
.service-explorer-screen__card:focus-visible {
  border-color: #0f62fe;
  box-shadow: 0 0 0 1px #0f62fe;
}

.service-explorer-screen__card h3 {
  margin: 0;
  font-size: 18px;
}

.service-explorer-screen__card p {
  margin: 8px 0 0;
  color: #525252;
  font-size: 14px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .service-explorer-screen__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .service-explorer-screen__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .service-explorer-screen__layout {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    align-items: start;
  }

  .service-explorer-screen__sidebar {
    position: sticky;
    top: 96px;
  }
}

.kh-index__grid {
  display: grid;
  gap: 16px;
  padding-bottom: 48px;
}

@media (min-width: 720px) {
  .kh-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .kh-index__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

article.news-card.kh-index__card {
  height: 100%;
}

.kh-index__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kh-index__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  background: var(--pdap-soft);
  border-radius: 4px;
}

.kh-index__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-bottom: 64px;
}

.kh-index__page-link {
  color: var(--pdap-blue);
  text-decoration: none;
  font-weight: 600;
}

.kh-index__page-link:hover,
.kh-index__page-link:focus-visible {
  text-decoration: underline;
}

.kh-index__page-meta {
  font-size: 14px;
  color: #4a5560;
}

.kh-detail {
  padding-top: 40px;
  padding-bottom: 64px;
  max-width: 880px;
}

.kh-detail__breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
}

.kh-detail__breadcrumb a {
  color: var(--pdap-blue);
  text-decoration: none;
}

.kh-detail__breadcrumb a:hover,
.kh-detail__breadcrumb a:focus-visible {
  text-decoration: underline;
}

.kh-detail__sep {
  margin: 0 6px;
  color: #8892a0;
}

.kh-detail__current {
  color: #4a5560;
}

.kh-detail__meta {
  margin: 0 0 8px;
  font-size: 14px;
  color: #4a5560;
}

.kh-detail__badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--pdap-blue);
  color: var(--pdap-white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kh-detail__title {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
}

.kh-detail__figure {
  margin: 0 0 28px;
}

.kh-detail__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.kh-detail__intro {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.kh-detail__body {
  font-size: 16px;
  line-height: 1.65;
}

.kh-detail__body h2,
.kh-detail__body h3,
.kh-detail__body h4 {
  margin-top: 1.4em;
  margin-bottom: 0.5em;
}

.kh-detail__back {
  margin-top: 40px;
}

.kh-detail__back a {
  color: var(--pdap-blue);
  text-decoration: none;
  font-weight: 600;
}

.kh-detail__back a:hover,
.kh-detail__back a:focus-visible {
  text-decoration: underline;
}

/* —— Industry —— */
.industry-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-direction: row-reverse;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .industry-layout {
    flex-direction: column-reverse;
  }
}

.industry-detail {
  flex: 1 1 0;
  min-width: 0;
}

.industry-detail__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.industry-detail__name {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pdap-blue);
  white-space: nowrap;
}

.industry-detail__rule {
  flex: 1;
  height: 1px;
  background: var(--pdap-blue);
  min-width: 40px;
}

.industry-detail__list-wrap {
  display: flex;
  align-items: stretch;
  min-height: 340px;
}

.industry-detail__bar {
  display: none;
}

.industry-detail__list {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 10px;
}

.industry-detail__list li {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  opacity: 1;
  transform: translateY(0);
}

.industry-detail__list li::before {
  content: "\203A";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  font-size: 33px;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pdap-blue);
}

.industry-detail__list a {
  color: inherit;
  text-decoration: none;
}

.industry-detail__list a:hover,
.industry-detail__list a:focus-visible {
  text-decoration: underline;
}

/* Same entrance as top nav level-2 (Services mega `.industry-mega__active-list--animate`). */
.industry-detail__list--mega-animate li:not([hidden]) {
  opacity: 0;
  transform: translateY(-8px);
  animation: mega-submenu-item-in 0.34s ease forwards;
  animation-delay: var(--submenu-delay, 0ms);
}

.industry-grid-wrap {
  width: 600px;
  max-width: 100%;
  flex-shrink: 0;
}

.industry-grid__hint {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  max-width: 323px;
  margin-left: auto;
  margin-right: auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 150px);
  justify-content: start;
}

@media (max-width: 700px) {
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 3D flip: cell must not use flex centering — it breaks height:100% on the flip in browsers */
.industry-grid__cell {
  position: relative;
  height: 120px;
  border: 1px solid transparent;
  cursor: pointer;
  perspective: 480px;
  perspective-origin: 50% 50%;
}

.industry-grid__flip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 1.1s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.industry-grid__cell:hover .industry-grid__flip,
.industry-grid__cell:focus-visible .industry-grid__flip {
  transform: rotateY(180deg);
}

.industry-grid__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.industry-grid__face--front {
  transform: rotateY(0deg) translateZ(4px);
}

.industry-grid__face--back {
  transform: rotateY(180deg) translateZ(4px);
}

.industry-grid__face--front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.industry-grid__label {
  display: block;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: var(--pdap-blue);
  pointer-events: none;
}

/* Still show a clear flip; 0.01ms looked like “no animation” with reduced-motion on */
@media (prefers-reduced-motion: reduce) {
  .industry-grid__flip {
    transition-duration: 0.55s;
  }

  .industry-detail__list--mega-animate li:not([hidden]) {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.industry-grid__cell--active {
  background: var(--pdap-blue);
}

/* Active cell: all grid icons read as white on brand blue (default SVGs + stream/CMS uploads). */
.industry-grid__cell--active .industry-grid__face--front img.industry-grid__icon {
  filter: brightness(0) invert(1);
}

.industry-grid__cell--active .industry-grid__label {
  color: #fff;
}

/* —— Services —— */
.section--services {
  background: transparent;
}

.services-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.service-card {
  flex: 0 0 420px;
  width: 420px;
  background: var(--pdap-soft);
  scroll-snap-align: start;
}

.service-card__bg {
  position: relative;
  width: 420px;
  height: 315px;
  overflow: hidden;
  pointer-events: none;
}

/* Big-data artwork: same asset, different horizontal windows (Figma left: -3 / -420 / -853) */
.service-card__bg img {
  position: absolute;
  width: 1297px;
  height: 727px;
  max-width: none;
  top: -337px;
  left: 0;
  object-fit: cover;
  transform: scaleY(-1);
}

.service-card__bg--a img {
  left: -3px;
}

.service-card__bg--b img {
  left: -420px;
}

.service-card__bg--c img {
  left: -853px;
}

.services-row::-webkit-scrollbar {
  display: none;
}

.masthead__arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 1320px) {
  .services-row {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .services-row {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: visible;
  }

  .service-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
  }

  .service-card__bg {
    width: 100%;
  }
}

.service-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--pdap-soft);
}

.service-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pdap-black);
}

.service-card__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--pdap-black);
}

.service-card__cta {
  margin-top: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-card__cta:hover,
.service-card__cta:focus-visible {
  color: var(--pdap-blue);
}

/* —— Case study —— */
.case-study {
  display: flex;
  flex-wrap: wrap;
  background: var(--pdap-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 1280px;
  margin: 0 auto;
}

.case-study__media {
  flex: 1 1 320px;
  max-width: 640px;
  min-height: 280px;
  overflow: hidden;
}

.case-study__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.case-study__content {
  flex: 1 1 320px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.case-study__logo {
  width: min(180px, 100%);
  max-width: 180px;
  padding: 0;
  border: 1px solid var(--pdap-black);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pdap-white);
  box-sizing: border-box;
}

.case-study__logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.case-study__client {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.case-study__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pdap-blue);
  max-width: 369px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.75);
}

.case-study__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  max-width: 560px;
}

.case-study__cta {
  font-size: 16px;
  text-decoration: underline;
  align-self: flex-start;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--pdap-line);
  background: var(--pdap-white);
  padding: 30px 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__social {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.site-footer__social a {
  text-decoration: underline;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

/* Sub pages: shorter top band than home masthead (--page-hero-* on :root) */
.page-hero {
  position: relative;
  min-height: calc(var(--page-hero-stage-height) + var(--page-hero-bottom-slot));
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-height: var(--page-hero-stage-height);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding-left: 80px;
  padding-right: 80px;
  display: grid;
  place-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.page-hero__label {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  max-width: min(100%, 900px);
}

.page-hero__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 60px);
  font-weight: 200;
  line-height: 1.1;
  max-width: min(100%, 900px);
}

.page-hero__bottom-slot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  min-height: var(--page-hero-bottom-slot);
  pointer-events: none;
}

.breadcrumbs {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 80px;
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumbs a {
  text-decoration: underline;
}

.breadcrumbs .current {
  font-weight: 700;
}

.content-wrap {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 80px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 640px;
  gap: 40px;
  align-items: start;
}

.two-col--media-first {
  grid-template-columns: 640px 1fr;
}

.two-col--aside-end {
  grid-template-columns: 1fr 420px;
}

.h2-lite {
  font-size: 42px;
  font-weight: 200;
  margin: 0 0 24px;
  line-height: 1.1;
}

.h3-strong {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.1;
}

.h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
}

.bullets-lined .h4 {
  color: var(--pdap-blue);
}

.lead,
.body-copy {
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
}

.lead--strong {
  font-weight: 700;
}

.stack-20 > * + * {
  margin-top: 20px;
}

.stack-40 > * + * {
  margin-top: 40px;
}

.image-frame {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--tall {
  height: 560px;
}

.quote-block {
  border-left: 4px solid var(--pdap-blue);
  padding-left: 30px;
  font-style: italic;
}

.quote-block .h4 {
  font-weight: 200;
}

.quote-block > .lead {
  font-style: normal;
}

.blue-callout {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  background: var(--pdap-blue);
  color: #fff;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
}

.blue-callout > .h3-strong {
  margin: 0;
}

.muted {
  background: #fafafa;
}

.aside-panel {
  background: #fff;
  padding: 30px;
}

.soft {
  background: #eff4ff;
}

.bullets-lined {
  border-left: 1px solid var(--pdap-blue);
  padding-left: 20px;
}

.bullets-lined ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bullets-lined li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
}

.bullets-lined li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--pdap-blue);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-card {
  background: #fff;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: center;
}

.contact-card__photo {
  width: 160px;
  height: 160px;
  overflow: hidden;
}

.contact-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card > div:not(.contact-card__photo) .h2-lite {
  margin-bottom: 10px;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.service-links a {
  background: #eff4ff;
  padding: 30px;
  color: var(--pdap-blue);
  text-decoration: none;
  min-height: 108px;
  display: grid;
  align-content: center;
}

.case-company-tabs {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-height: 0;
  padding-bottom: 20px;
  box-sizing: border-box;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 0;
}

.case-company-tabs button {
  border: none;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  line-height: 1.1;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.case-company-tabs button.active {
  background: #fff;
  color: var(--pdap-blue);
  font-weight: 700;
}

.page-hero + .content-wrap {
  padding-top: 0;
}

@media (max-width: 900px) {
  .page-hero__content,
  .case-company-tabs {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.media-grid {
  display: grid;
  grid-template-columns: 600px 300px 1fr;
  gap: 10px;
  align-items: stretch;
}

.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-grid [data-lightbox-target],
[data-media-lightbox-root] [data-lightbox-target] {
  cursor: pointer;
}

.media-grid .main {
  height: 400px;
  position: relative;
}

.media-grid .side-portrait {
  height: 400px;
}

.media-grid .right {
  display: grid;
  grid-template-rows: 240px 150px;
  gap: 10px;
}

.media-grid .thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.media-grid .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 105px;
  height: 105px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox__dialog {
  position: relative;
  width: min(1120px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  background: #0d1f4f;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.media-lightbox__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  z-index: 2;
}

.media-lightbox__media {
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.media-lightbox__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.media-lightbox__video {
  position: relative;
}

.media-lightbox__video .media-lightbox__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 105px;
  height: 105px;
  object-fit: contain;
  pointer-events: none;
}

.media-lightbox__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0, 65, 192, 0.9);
}

.timeline {
  display: grid;
  gap: 0;
  padding: 8px 16px 16px;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: visible;
}

.timeline-row {
  display: grid;
  grid-template-columns: repeat(var(--timeline-columns, 5), minmax(170px, 1fr));
  gap: 20px;
  min-width: calc(var(--timeline-columns, 5) * 170px + (var(--timeline-columns, 5) - 1) * 20px);
}

.timeline-row--bottom {
  padding-left: 0;
}

.timeline-divider {
  position: relative;
  width: 100%;
  height: 22px;
  display: grid;
  align-items: center;
  margin: 0;
  padding: 0;
  min-width: calc(var(--timeline-columns, 5) * 170px + (var(--timeline-columns, 5) - 1) * 20px);
}

.timeline-divider__line {
  height: 3px;
  width: 100%;
  background: #0041c0;
}

.timeline-divider__markers {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.timeline-divider__marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 3px solid #0041c0;
  background: #fff;
  z-index: 2;
}

.timeline-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
}

.timeline-item > div {
  display: grid;
  row-gap: 8px;
  overflow: visible;
}

.timeline-item .year {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  align-self: start;
}

.timeline-item p {
  margin: 0;
  font-size: 16px;
}

.timeline-item__desc {
  position: relative;
  z-index: 1;
  width: calc((100% + 190px) * 0.7);
  max-width: 266px;
}

.timeline-spacer {
  width: 140px;
  min-height: 1px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.team-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.member .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member .name {
  margin: 20px 0 5px;
  font-size: 16px;
  font-weight: 700;
}

.member .role {
  margin: 0;
  font-size: 16px;
}

.section-gap {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 80px;
}

@media (max-width: 1100px) {
  .two-col,
  .blue-callout {
    grid-template-columns: 1fr;
  }

  .service-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }

  .timeline-spacer {
    display: none;
  }

  .timeline-row--bottom {
    padding-left: 0;
  }

  .timeline-divider {
    display: none;
  }
}

@media (max-width: 700px) {
  .content-wrap,
  .section-gap,
  .blue-callout,
  .breadcrumbs {
    padding: 30px 24px;
  }

  .service-links {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .team-grid--three,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

/* About Us V2 */
.about-v2__intro {
  text-align: center;
}

.about-v2__title {
  margin: 0 auto 20px;
  max-width: 700px;
  font-size: clamp(2.2rem, 5vw, 60px);
  font-weight: 200;
  line-height: 1.1;
}

.about-v2__lede {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.2;
}

.about-v2__hero {
  position: relative;
}

.about-v2__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 24%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.about-v2__hero > img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  display: block;
}

.about-v2__stats {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: 1;
  width: min(1080px, calc(100% - 80px));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  color: #fff;
  text-align: center;
}

.about-v2__stats article {
  border-left: 1px solid rgba(255, 255, 255, 0.75);
  padding-left: 0;
}

.about-v2__stats article:first-child {
  border-left: 0;
}

.about-v2__stats h3 {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.about-v2__stats p {
  margin: 0;
  font-size: 28px;
  font-weight: 200;
  line-height: 1.1;
}

.about-v2__milestones {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-v2__milestones > .h2-lite,
.about-v2__leaders > .h2-lite,
.about-v2__testimonials > .h2-lite {
  margin-bottom: 0;
}

.about-v2__milestones-grid {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 40px;
  align-items: start;
}

.about-v2__milestones-photo.image-frame {
  width: 640px;
  max-width: 100%;
}

.about-v2__timeline-list {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  /* No gap: row gaps break the vertical spine; space comes from .timeline-main padding instead. */
  gap: 0;
}

/* Rail is a direct child of the row so the spine runs the full height of (year + description). */
.about-v2__timeline-item {
  --timeline-dot-size: 9px;
  /* Vertical center of dot aligns with vertical center of first text line (16px × 1.1). */
  --timeline-align-shift: calc((16px * 1.1) / 2 - var(--timeline-dot-size) / 2);
  font-size: 16px;
  line-height: 1.1;
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.about-v2__timeline-item:not(:last-child) .about-v2__timeline-main {
  padding-bottom: 20px;
}

/* Pull each row up by the rail’s top padding so the spine still meets the dot below. */
.about-v2__timeline-item + .about-v2__timeline-item {
  margin-top: calc(-1 * var(--timeline-align-shift));
}

.about-v2__timeline-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--timeline-dot-size);
  flex: 0 0 var(--timeline-dot-size);
  padding-top: var(--timeline-align-shift);
  gap: 0;
  min-height: 0;
  align-self: stretch;
}

.about-v2__timeline-dot {
  display: block;
  flex: 0 0 auto;
  width: var(--timeline-dot-size);
  height: var(--timeline-dot-size);
  box-sizing: border-box;
  border: 1px solid var(--pdap-blue);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--pdap-muted) 55%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 1px 3px rgba(0, 65, 192, 0.28);
}

.about-v2__timeline-line {
  flex: 1 1 auto;
  width: 2px;
  min-height: 8px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1px;
  background: linear-gradient(
    to bottom,
    var(--pdap-blue) 0%,
    rgba(0, 65, 192, 0.88) 45%,
    rgba(0, 65, 192, 0.72) 100%
  );
  box-shadow: 0 0 1px rgba(0, 65, 192, 0.35);
}

.about-v2__timeline-item--last .about-v2__timeline-line {
  background: transparent;
  box-shadow: none;
}

.about-v2__timeline-main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.about-v2__timeline-year {
  margin: 0;
  width: 40px;
  flex-shrink: 0;
  padding-top: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  color: var(--pdap-blue);
}

.about-v2__timeline-desc {
  margin: 0;
  flex: 1;
  min-width: 0;
  padding-top: 0;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  color: var(--pdap-black);
}

.about-v2__video {
  position: relative;
}

.about-v2__video > img:first-child {
  width: 100%;
  max-width: 1280px;
  height: 720px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.about-v2__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 105px;
  height: 105px;
}

.about-v2__work .two-col {
  grid-template-columns: 600px 640px;
}

.about-v2__leaders {
  display: grid;
  gap: 60px;
}

.about-v2__leaders .team-grid--three {
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
  justify-items: center;
  gap: 0;
}

.about-v2__leaders .member {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.about-v2__leaders .member .photo {
  width: 280px;
  height: 280px;
  aspect-ratio: auto;
  border-radius: 50%;
}

.about-v2__leaders .member .name {
  margin: 0;
  line-height: 1.1;
  text-align: center;
}

.about-v2__leaders .member .role {
  line-height: 1.1;
  text-align: center;
}

.about-v2__testimonials {
  display: grid;
  gap: 40px;
}

.about-v2__testimonials .two-col {
  grid-template-columns: 640px 1fr;
  gap: 0;
}

.about-v2__testimonials .quote-block {
  position: relative;
  background: #fff;
  border-left: none;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  font-style: normal;
}

.about-v2__testimonials .quote-block::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 40px;
  bottom: 40px;
  width: 4px;
  background: var(--pdap-blue);
}

.about-v2__testimonials .quote-block .h4 {
  padding-left: 34px;
  margin: 0;
  font-size: 28px;
  font-weight: 200;
  line-height: 1.1;
}

.about-v2__testimonials .quote-block .quote-block__text {
  font-style: italic;
}

/* Wagtail RichText wraps copy in <p>; keep parity with static about-us.html */
.about-v2__testimonials .quote-block .quote-block__text.rich-text > p {
  margin: 0;
}

.about-v2__testimonials .quote-block .lead.rich-text > p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.about-v2__testimonials .quote-block .lead.rich-text > p + p {
  margin-top: 4px;
}

.about-v2__testimonials .quote-block > .lead {
  padding-left: 34px;
  margin: 0;
  line-height: 1.1;
}

@media (max-width: 1100px) {
  .about-v2__stats {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    row-gap: 20px;
  }

  .about-v2__milestones-grid {
    grid-template-columns: 1fr;
  }

  .about-v2__work .two-col,
  .about-v2__testimonials .two-col {
    grid-template-columns: 1fr;
  }
}

/* Resources — CMS-imported pricing tables (resource.html) */
.resource-page {
  padding-bottom: 64px;
}

.resource-cms {
  line-height: 1.45;
}

.resource-cms .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  max-width: 100%;
}

.resource-cms table[style*="height"] {
  height: auto !important;
}

.resource-cms h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.resource-cms .richtext:empty {
  display: none;
}

/* —— Service detail (02-SERVICES, Figma node 23:1705) —— */
.service-detail-page .site-nav a.service-detail-page__nav-services[aria-current="page"] {
  color: var(--pdap-black);
  font-weight: 700;
  text-decoration: none;
}

.service-detail-page .site-nav a.service-detail-page__nav-services[aria-current="page"]:hover,
.service-detail-page .site-nav a.service-detail-page__nav-services[aria-current="page"]:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-detail-page .site-nav a.service-detail-page__nav-services[aria-current="page"] .icon-chevron {
  transform: none;
}

.page-hero--detail {
  min-height: 360px;
}

.page-hero--detail::after {
  background: rgba(0, 0, 0, 0.5);
}

.page-hero--detail .page-hero__content {
  min-height: 360px;
  gap: 10px;
}

.page-hero__label--detail {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  max-width: 617px;
}

.page-hero__title--detail {
  font-size: 42px;
  font-weight: 200;
  line-height: 1.1;
  max-width: 617px;
}

.detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
  flex-wrap: wrap;
}

.detail-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.1;
}

.detail-breadcrumbs a {
  color: inherit;
  text-decoration: underline;
}

.detail-breadcrumbs__current {
  font-weight: 700;
}

.detail-breadcrumbs__sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-breadcrumbs__sep img {
  display: block;
  transform: rotate(180deg) scaleY(-1);
}

.detail-toolbar__aside {
  flex-shrink: 0;
}

.explore-services-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 240px;
  max-width: 320px;
  padding: 15px 20px;
  border: 0;
  background: var(--pdap-soft);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pdap-black);
  cursor: pointer;
  text-align: left;
}

.explore-services-btn__chev {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.explore-services-dropdown {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.explore-services-dropdown.is-open .explore-services-btn__chev {
  transform: rotate(180deg);
}

.explore-services-panel {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  z-index: 50;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  max-height: min(320px, 50vh);
  overflow-y: auto;
  background: var(--pdap-white);
  border: 1px solid var(--pdap-line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.explore-services-panel[hidden] {
  display: none !important;
}

.explore-services-option {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--pdap-black);
  text-decoration: none;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

a.explore-services-option:hover,
a.explore-services-option:focus-visible {
  background: var(--pdap-soft);
  outline: none;
}

.explore-services-option--current {
  font-weight: 700;
  color: var(--pdap-blue);
  cursor: default;
}

/* Service detail: media strip + video pop (align with template_files/detail.html) */
.service-media-showcase {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-image-strip {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.service-image-strip__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 0;
  background: var(--pdap-soft);
}

.service-image-strip__track {
  display: flex;
  flex-wrap: nowrap;
  width: auto;
  min-width: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
}

.service-image-strip__slide {
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pdap-soft);
}

.service-image-strip__slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(520px, 70vh);
  object-fit: contain;
  object-position: center;
}

.service-image-strip__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.service-image-strip__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--pdap-white);
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.service-image-strip__arrow:hover,
.service-image-strip__arrow:focus-visible {
  background: var(--pdap-soft);
  outline: none;
}

/* Icon asset is a left chevron; flip only the img (not the button) so it isn’t double-transformed. */
.service-image-strip__arrow--next img {
  transform: scaleX(-1);
}

.service-image-strip__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-image-strip__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--pdap-mid, #c4c4c4);
  cursor: pointer;
}

.service-image-strip__dots button.is-active {
  background: var(--pdap-blue);
}

.service-video-pop {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.service-video-pop__label {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pdap-blue);
}

.service-video-pop__frame {
  position: relative;
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  background: var(--pdap-black);
}

.service-video-pop__poster {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-detail-section {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 60px 80px;
  width: 100%;
}

.service-detail-section--intro {
  padding-top: 20px;
  padding-bottom: 60px;
}

.service-detail-h2 {
  margin: 0 0 40px;
  font-size: 42px;
  font-weight: 200;
  line-height: 1.1;
  color: var(--pdap-black);
}

.service-detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 640px);
  gap: 40px;
  align-items: start;
}

.service-detail-section--intro .service-detail-two-col {
  grid-template-columns: minmax(0, 560px) minmax(0, 700px);
}

.service-detail-two-col--copy-only {
  grid-template-columns: minmax(0, 1fr);
}

.service-detail-body {
  font-size: 16px;
  line-height: 1.1;
}

.service-detail-body p {
  margin: 0 0 1.1em;
}

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

.service-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.who-for {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.who-for__rule {
  width: 1px;
  flex-shrink: 0;
  background: var(--pdap-blue);
}

.who-for__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 267px;
}

.who-for__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pdap-blue);
}

.who-for__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.who-for__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.who-for__tick {
  width: 20px;
  height: 1px;
  flex-shrink: 0;
  background: var(--pdap-blue);
}

.who-for__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.service-detail-media {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: var(--pdap-soft, #e8e8e8);
}

.service-detail-media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}

.service-detail-section--intro .service-detail-media img {
  max-height: 620px;
}

.service-detail-infographic {
  width: 100%;
  background: var(--pdap-muted);
  padding: 60px 80px;
  box-sizing: border-box;
}

.service-detail-infographic__inner {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-infographic__inner img {
  display: block;
  width: 100%;
  height: auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 40px;
}

.problem-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.problem-card__icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.problem-card__icon img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.problem-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.problem-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pdap-blue);
}

.problem-card__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
}

.implementation-banner {
  background: var(--pdap-blue);
  color: var(--pdap-white);
  line-height: 1.1;
}

.implementation-banner__inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  width: 100%;
  padding: 60px 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.implementation-banner__title {
  margin: 0;
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
  font-size: 36px;
  font-weight: 700;
  text-align: left;
}

.implementation-banner__body {
  margin: 0;
  flex: 1 1 280px;
  min-width: 0;
  font-size: 20px;
  font-weight: 400;
}

.related-services__heading {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.related-services__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
  align-items: stretch;
}

.related-services__card {
  box-sizing: border-box;
  min-height: 132px;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  padding: 24px;
  background: var(--pdap-soft);
  color: var(--pdap-blue);
  font-size: 20px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.related-services__card:hover,
.related-services__card:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .related-services__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .related-services__row {
    grid-template-columns: 1fr;
  }
}

.get-in-touch {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 60px 80px;
  width: 100%;
  background: var(--pdap-muted);
}

.get-in-touch .service-detail-h2 {
  margin-bottom: 40px;
}

.get-in-touch__intro {
  margin: 0 0 40px;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.1;
}

.get-in-touch__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-card {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1 1 400px;
  min-width: min(100%, 320px);
  max-width: 640px;
  padding: 0;
  background: var(--pdap-white);
  box-sizing: border-box;
}

.contact-card__photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  overflow: hidden;
  background: var(--pdap-white);
}

.contact-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
  flex: 1;
}

.contact-card__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card__name {
  margin: 0;
  font-size: 42px;
  font-weight: 200;
  line-height: 1.1;
}

.contact-card__role {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.contact-card__email {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--pdap-blue);
  text-decoration: none;
  word-break: break-word;
}

.contact-card__email:hover,
.contact-card__email:focus-visible {
  text-decoration: underline;
}

.contact-card__link {
  font-size: 16px;
  line-height: 1;
  text-decoration: underline;
  color: inherit;
}

.contact-card__link:hover,
.contact-card__link:focus-visible {
  color: var(--pdap-blue);
}

@media (max-width: 1100px) {
  .service-detail-two-col {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    max-width: 640px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-detail-section,
  .service-detail-infographic,
  .implementation-banner__inner,
  .get-in-touch {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero--detail .page-hero__content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .detail-toolbar.shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .implementation-banner__title {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .detail-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .explore-services-btn {
    max-width: none;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

