:root {
  --back-blue: #123F8C;
  --back-blue-dark: #0b2f6a;
  --back-orange: #FF7F61;
  --back-cream: #FCFBF8;
  --back-text: #24324a;
  --font-family-base: "Inter", "Segoe UI", Arial, sans-serif;
  --type-h1-size: clamp(2.3rem, 4.2vw, 3.5rem);
  --type-h1-weight: 800;
  --type-h1-line: 1.03;
  --type-h2-size: clamp(1.75rem, 3vw, 2.55rem);
  --type-h2-weight: 800;
  --type-h2-line: 1.12;
  --type-h3-size: 1.12rem;
  --type-h3-weight: 700;
  --type-h3-line: 1.28;
  --type-h4-size: 1.02rem;
  --type-h4-weight: 700;
  --type-h4-line: 1.3;
  --type-eyebrow-size: 0.8rem;
  --type-eyebrow-weight: 700;
  --type-eyebrow-line: 1.3;
  --type-eyebrow-tracking: 0.12em;
  --type-body-lg-size: 1.03rem;
  --type-body-lg-weight: 500;
  --type-body-lg-line: 1.74;
  --type-body-size: 0.95rem;
  --type-body-weight: 500;
  --type-body-line: 1.62;
  --type-body-sm-size: 0.82rem;
  --type-body-sm-weight: 500;
  --type-body-sm-line: 1.45;
  --type-nav-size: 0.95rem;
  --type-nav-weight: 600;
  --type-nav-line: 1.2;
  --type-btn-size: 0.95rem;
  --type-btn-weight: 700;
  --type-btn-line: 1.25;
  --type-link-size: 0.95rem;
  --type-link-weight: 600;
  --type-link-line: 1.45;
  --type-footer-title-size: 0.92rem;
  --type-footer-title-weight: 700;
  --type-footer-title-line: 1.35;
  --type-footer-title-tracking: 0.04em;
  --type-footer-link-size: 0.93rem;
  --type-footer-link-weight: 500;
  --type-footer-link-line: 1.55;
  --radius-card: 18px;
  --radius-card-lg: 20px;
  --shadow-card-soft: 0 16px 30px rgba(14, 40, 92, 0.08);
  --shadow-card-hover: 0 24px 42px rgba(14, 40, 92, 0.14);
  --shadow-card-inset: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

body {
  font-family: var(--font-family-base);
  color: var(--back-text);
  background: #ffffff;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: var(--type-body-weight);
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(33, 53, 95, 0.55);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
}

.section-subtitle {
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
}

.body-text {
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line);
}

.body-small {
  font-size: var(--type-body-sm-size);
  font-weight: var(--type-body-sm-weight);
  line-height: var(--type-body-sm-line);
}

.card-title {
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-line);
}

.card-text {
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line);
}

.nav-link-custom {
  font-size: var(--type-nav-size);
  font-weight: var(--type-nav-weight);
  line-height: var(--type-nav-line);
}

.footer-title {
  font-size: var(--type-footer-title-size);
  font-weight: var(--type-footer-title-weight);
  line-height: var(--type-footer-title-line);
  letter-spacing: var(--type-footer-title-tracking);
  text-transform: uppercase;
}

.footer-link {
  font-size: var(--type-footer-link-size);
  font-weight: var(--type-footer-link-weight);
  line-height: var(--type-footer-link-line);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

.hero {
  background: var(--back-cream);
  position: relative;
  overflow: visible;
  z-index: 2;
}

.navbar-brand {
  font-size: 1.35rem;
  letter-spacing: 0.2px;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-back {
  color: var(--back-blue);
}

.brand-in {
  color: var(--back-orange);
}

.nav-link {
  color: var(--back-text);
  font-weight: var(--type-nav-weight);
  font-size: var(--type-nav-size);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  line-height: var(--type-nav-line);
  opacity: 0.92;
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.navbar .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: #FF7F61;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar .nav-link:hover {
  color: var(--back-blue);
  opacity: 1;
}

.navbar,
.navbar-transparent,
.navbar-home,
.navbar-scrolled {
  background: #FCFBF8;
  background-color: #FCFBF8 !important;
  backdrop-filter: none !important;
  border-bottom: none;
}

.navbar .mega-dropdown {
  position: static;
}

.navbar .container {
  position: relative;
}

.navbar-nav .nav-item {
  display: inline-flex;
  align-items: center;
}

.navbar .nav-link.active {
  color: #FF7F61 !important;
  font-weight: 600;
  opacity: 1;
}

.navbar .nav-link.active::before {
  transform: scaleX(1);
  opacity: 1;
}

.navbar .nav-link.active:hover {
  color: #FF7F61 !important;
  opacity: 1;
}

.navbar .nav-link.is-open {
  color: #FF7F61 !important;
  opacity: 1;
}

.navbar .nav-link.is-open::before {
  transform: scaleX(0);
  opacity: 0;
}

.mega-dropdown .dropdown-toggle::after {
  margin-left: 0;
}

.mega-menu {
  border-radius: 22px;
  border: 1px solid rgba(18, 63, 140, 0.08);
  box-shadow: 0 28px 60px rgba(12, 38, 84, 0.16);
  width: min(1180px, 92vw);
  padding: 0;
  overflow: hidden;
  position: absolute;
  top: calc(100% + 2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  left: 50%;
  right: auto;
  margin-top: 0;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;
}

.mega-dropdown.show .mega-menu,
.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-dropdown.is-mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-dropdown.is-mega-open > .dropdown-toggle {
  color: #FF7F61;
}

.mega-dropdown.is-mega-open > .dropdown-toggle::after {
  transform: rotate(180deg);
  color: #FF7F61;
}

.dropdown-toggle::after {
  transition: transform 0.2s ease, color 0.2s ease;
}

.navbar .nav-link:hover.dropdown-toggle::after {
  color: var(--back-blue);
}

.mega-dropdown > .dropdown-toggle {
  position: relative;
}

/* Keep nav underline pseudo-element separate from mega-menu hover bridge. */
.mega-dropdown > .dropdown-toggle::before {
  content: none !important;
}

.mega-content {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr 0.85fr;
  gap: 1.6rem;
  padding: 2rem 2.1rem;
  background: #ffffff;
}

.mega-col {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding-right: 24px;
}

.mega-col:last-child {
  padding-right: 0;
}

.mega-col + .mega-col {
  border-left: 1px solid rgba(13, 39, 80, 0.06);
  padding-left: 24px;
}

.mega-intro {
  max-width: 260px;
}

.mega-intro p {
  font-size: 0.95rem;
  color: rgba(36, 50, 74, 0.7);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.mega-kicker {
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-tracking);
  line-height: var(--type-eyebrow-line);
  text-transform: uppercase;
  color: rgba(18, 63, 140, 0.6);
  margin-bottom: 0.6rem;
}

.mega-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--back-blue);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-cta:hover {
  color: var(--back-blue);
  transform: translateX(2px);
}

.mega-cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.mega-cta:hover .mega-cta-arrow {
  transform: translateX(3px);
}

.mega-subtitle {
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-line);
  color: var(--back-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.mega-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.mega-link {
  color: var(--back-text);
  font-weight: var(--type-link-weight);
  font-size: var(--type-link-size);
  line-height: var(--type-link-line);
  text-decoration: none;
  padding: 0.25rem 0;
  margin-bottom: 10px;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-link:hover {
  color: var(--back-blue);
  transform: translateX(2px);
}

.mega-menu li {
  margin-bottom: 10px;
}

.mega-menu a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-menu a:hover {
  color: var(--back-blue);
  transform: translateX(2px);
}

.mega-card,
.featured-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(18, 63, 140, 0.1);
  box-shadow: 0 20px 40px rgba(13, 39, 80, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-card:hover,
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(13, 39, 80, 0.13);
}

.mega-card-badge,
.featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 127, 97, 0.18);
  color: #FF7F61;
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.mega-card h4 {
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-line);
  color: var(--back-blue);
  margin-bottom: 0.5rem;
}

.mega-card p {
  color: rgba(36, 50, 74, 0.7);
  line-height: var(--type-body-line);
  font-size: var(--type-body-size);
  margin-bottom: 0.9rem;
}

.mega-card-link {
  color: var(--back-blue);
  font-weight: 700;
  text-decoration: none;
}

.mega-card-link:hover {
  color: var(--back-blue);
}

.mega-card-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.mega-card-link:hover .mega-card-arrow {
  transform: translateX(4px);
}

@media (min-width: 992px) {
  .mega-menu {
    display: block !important;
  }

  .mega-dropdown .dropdown-menu {
    margin-top: 0;
  }

  .mega-dropdown:hover .dropdown-menu {
    display: block;
  }

  .mega-dropdown:hover > .dropdown-toggle {
    color: #FF7F61;
  }
}

@media (max-width: 991.98px) {
  .mega-menu {
    min-width: auto;
    width: 100%;
    position: static;
    top: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    left: auto;
    right: auto;
  }

  .mega-content {
    grid-template-columns: 1fr;
    padding: 1rem 0;
    gap: 1.5rem;
  }

  .mega-col,
  .mega-col + .mega-col {
    border-left: none;
    padding-left: 0;
    padding-right: 0;
  }

  .mega-card {
    padding: 1.1rem 1.2rem 1.2rem;
  }
}

.hero-main {
  background: #FCFBF8;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.hero-main .hero-image {
  margin-bottom: -2.5rem;
  position: relative;
  z-index: 10;
}

.impact-section {
  background: #124398;
  color: #fff;
  padding: 6rem 0 4.5rem;
  position: relative;
  z-index: 0;
}

.impact-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.impact-section .section-title,
.impact-section h2 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.15;
}

.impact-section h2 {
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  color: var(--back-orange);
  margin-bottom: 1.5rem;
}

.impact-copy {
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
  font-weight: var(--type-body-lg-weight);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2.8rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  align-items: end;
}

.impact-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.impact-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  border: 2px solid #FE7E61;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.impact-outline-btn span {
  font-size: 1.1rem;
  line-height: 1;
}

.impact-outline-btn:hover,
.impact-outline-btn:focus {
  background: #FE7E61;
  color: #123F8C;
}

.impact-icon-circle {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-left: 0.05rem;
  background: rgba(254, 126, 97, 0.18);
  color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.impact-outline-btn:hover .impact-icon-circle,
.impact-outline-btn:focus .impact-icon-circle {
  background: rgba(255, 255, 255, 0.2);
  color: #123F8C;
  transform: translateX(2px);
}

.pillars-section {
  background: var(--back-cream);
  padding: 4.5rem 0 5rem;
}

.pillars-heading {
  margin: 0;
  display: inline-grid;
  grid-template-columns: auto max-content;
  column-gap: 1.25rem;
  row-gap: 0.2rem;
  align-items: end;
  color: var(--back-blue);
}

.pillars-big {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.5px;
}

.pillars-line-1 {
  grid-column: 1 / -1;
  grid-row: 1;
}

.pillars-line-2 {
  grid-column: 1;
  grid-row: 2;
}

.pillars-small {
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
}

.pillars-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.pillars-title {
  position: relative;
  z-index: 2;
}

.pillars-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  clip-path: none;
  box-shadow: 0 24px 48px rgba(12, 38, 84, 0.16);
  aspect-ratio: 1 / 1;
  height: auto;
  margin-left: clamp(-28%, -16vw, -12%);
  margin-top: clamp(40px, 4vw, 100px);
  margin-bottom: clamp(-110px, -8vw, -36px);
  z-index: 0;
  transform: rotate(45deg) translateY(var(--parallax-y, 0px));
  transition: transform 0.1s linear;
}

.pillars-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(-45deg) scale(1.38);
}

.pillars-diamond {
  width: min(320px, 80vw);
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(12, 38, 84, 0.2);
  background: #eef2fb;
}

.pillars-diamond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-45deg) scale(1.2);
}

.pillars-content {
  display: grid;
  gap: 1.55rem;
}

.pillar-row {
  display: grid;
  grid-template-columns: minmax(56px, 68px) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  min-height: 270px;
  padding: 2rem 2rem 1.9rem 1.8rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 252, 255, 0.88) 100%);
  border-radius: 30px;
  box-shadow: 0 20px 34px rgba(18, 63, 140, 0.09);
  border: 1px solid rgba(18, 63, 140, 0.11);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pillar-row::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(120deg, rgba(18, 63, 140, 0) 0%, rgba(18, 63, 140, 0.04) 100%);
  pointer-events: none;
}

.pillar-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 46px rgba(18, 63, 140, 0.15);
  border-color: rgba(18, 63, 140, 0.23);
}

.pillar-row:nth-child(2) {
  border-color: rgba(18, 63, 140, 0.13);
  background: linear-gradient(145deg, rgba(248, 252, 255, 0.94) 0%, rgba(240, 248, 255, 0.9) 100%);
}

.pillar-row:nth-child(3) {
  background: linear-gradient(145deg, rgba(255, 252, 249, 0.94) 0%, rgba(249, 251, 255, 0.9) 100%);
}

.pillar-index {
  width: fit-content;
  min-width: 2.4rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(18, 63, 140, 0.78);
  line-height: 1.15;
  letter-spacing: 0.06em;
  background: rgba(18, 63, 140, 0.08);
  border: 1px solid rgba(18, 63, 140, 0.12);
  align-self: start;
  margin-top: 0.18rem;
}

.pillar-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: none;
  width: 100%;
  min-width: 0;
  padding-right: 9.35rem;
  position: relative;
  z-index: 1;
}

.pillar-copy h3 {
  font-size: clamp(1.2rem, 1.45vw, 1.34rem);
  font-weight: 700;
  line-height: 1.31;
  color: var(--back-blue);
  margin-bottom: 0.72rem;
  max-width: 28ch;
  text-wrap: balance;
}

.pillar-copy p {
  margin-bottom: 1rem;
  color: rgba(36, 50, 74, 0.8);
  line-height: 1.58;
  font-size: clamp(0.92rem, 1.02vw, 0.98rem);
  max-width: 44ch;
}

.pillar-link {
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.35;
  color: var(--back-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin-top: auto;
  transition: color 0.2s ease, transform 0.2s ease;
}

.pillar-link:hover,
.pillar-link:focus {
  color: #FE7E61;
  transform: translateX(3px);
}

.pillar-tag {
  width: 132px;
  height: 132px;
  position: absolute;
  top: 24px;
  right: 22px;
  display: grid;
  place-items: center;
  z-index: 2;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pillar-tag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 8px rgba(18, 63, 140, 0.11));
  transition: transform 0.25s ease, filter 0.25s ease;
  opacity: 1;
}

.pillar-row:hover .pillar-tag img {
  transform: scale(1.035);
  filter: drop-shadow(0 6px 10px rgba(18, 63, 140, 0.14));
}

.pillar-row:nth-child(2) .pillar-tag {
  top: 28px;
}

.pillar-row:nth-child(3) .pillar-tag {
  top: 22px;
}

@media (max-width: 991.98px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillars-image {
    margin-left: 0;
    margin-top: 1.5rem;
    max-width: 85%;
    aspect-ratio: 1 / 1;
    transform: rotate(45deg);
  }

  .pillar-row {
    grid-template-columns: minmax(72px, 104px) minmax(0, 1fr);
    min-height: 236px;
    padding: 1.6rem 1.45rem 1.4rem;
  }

  .pillar-tag {
    width: 114px;
    height: 114px;
    top: 20px;
    right: 16px;
  }

  .pillar-copy {
    max-width: 100%;
    padding-right: 8rem;
  }

  .pillar-copy h3 {
    font-size: clamp(1.1rem, 2vw, 1.18rem);
    max-width: 30ch;
  }

  .pillar-copy p {
    max-width: 48ch;
  }
}

.services-section {
  background: #124398;
  color: #fff;
  padding: 5rem 0 5.5rem;
}

.logos-section {
  background: #ffffff;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.logos-title {
  text-align: center;
  color: rgba(18, 63, 140, 0.7);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.logos-marquee {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  animation: logosScroll 55s linear infinite;
}

.logos-track img {
  height: 42px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(1);
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.logos-track img:hover {
  transform: translateY(-2px);
  opacity: 1;
  filter: grayscale(0);
}

@keyframes logosScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 767.98px) {
  .logos-track img {
    height: 32px;
  }
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.services-header h2 {
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  color: #FF7F61;
  margin-bottom: 0.75rem;
}

.services-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
  font-weight: var(--type-body-lg-weight);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.service-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.8rem 1.7rem 2rem;
  box-shadow: 0 18px 34px rgba(8, 28, 70, 0.25);
  min-height: 260px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px rgba(8, 28, 70, 0.32);
  border-color: rgba(254, 126, 97, 0.35);
}

/* Staggered layout like the reference */
.service-card-offset {
  transform: translateY(-40px);
}

.service-card h3 {
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
  margin: 0.2rem 0 0.45rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: var(--type-body-weight);
  margin-bottom: 1.1rem;
}

.service-card a {
  color: #fff;
  font-weight: var(--type-link-weight);
  font-size: var(--type-link-size);
  line-height: var(--type-link-line);
  text-decoration: none;
}

.service-card a:hover {
  color: #FE7E61;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(254, 126, 97, 0.16);
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #FE7E61;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

  .service-card-offset {
    transform: none;
  }
}

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

.pattern-section {
  background: #f6f7fb;
  padding: 6.5rem 0;
}

.pattern-content {
  max-width: 660px;
  display: flex;
  flex-direction: column;
}

.pattern-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  line-height: var(--type-eyebrow-line);
  letter-spacing: var(--type-eyebrow-tracking);
  text-transform: uppercase;
  color: rgba(18, 63, 140, 0.6);
  margin-bottom: 0.75rem;
}

.pattern-content h2 {
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  color: var(--back-blue);
  line-height: var(--type-h2-line);
  margin-bottom: 0.6rem;
}

.pattern-intro {
  color: rgba(36, 50, 74, 0.78);
  line-height: var(--type-body-lg-line);
  font-size: var(--type-body-lg-size);
  font-weight: var(--type-body-lg-weight);
  margin-bottom: 1.2rem;
  max-width: 560px;
}

.pattern-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.6rem 1.9rem;
  box-shadow: 0 22px 40px rgba(12, 38, 84, 0.1);
  border: 1px solid rgba(18, 63, 140, 0.08);
}

.pattern-card h3 {
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
  color: var(--back-blue);
  margin-bottom: 0.75rem;
}

.pattern-card p {
  margin-bottom: 0.85rem;
  color: rgba(36, 50, 74, 0.82);
  line-height: var(--type-body-line);
  font-size: var(--type-body-size);
}

.pattern-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.05rem;
  color: rgba(36, 50, 74, 0.8);
}

.pattern-card ul li {
  position: relative;
  padding-left: 2.1rem;
  line-height: 1.65;
}

.pattern-card ul li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: #FE7E61;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(254, 126, 97, 0.3);
}

.pattern-card li + li {
  margin-top: 0.5rem;
}

.pattern-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.pattern-media-col {
  display: flex;
  align-items: flex-start;
}

.pattern-video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 560px;
  max-height: 720px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(12, 38, 84, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pattern-video:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 36px 70px rgba(12, 38, 84, 0.22);
}

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

.pattern-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.pattern-video-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 15, 28, 0.32);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  backdrop-filter: blur(6px);
}

@media (max-width: 991.98px) {
  .pattern-section {
    padding: 5rem 0;
  }

  .pattern-row {
    align-items: flex-start;
  }

  .pattern-content {
    max-width: 100%;
  }

  .pattern-video {
    border-radius: 26px;
    min-height: 460px;
    max-height: 620px;
  }
}

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

  .pattern-card {
    padding: 1.55rem 1.5rem;
  }

  .pattern-video {
    height: 360px;
    min-height: 320px;
    max-height: 420px;
    border-radius: 22px;
  }

  .pattern-video-caption {
    left: 1rem;
    bottom: 1rem;
  }
}

.site-footer {
  background: #FCFBF8;
  color: var(--back-blue);
  padding: 5.5rem 0 4.5rem;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
}

.footer::after {
  display: none;
}

.footer .footer-top {
  margin-bottom: 50px;
}

.footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.7;
}

.footer a {
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.footer a:hover {
  transform: translateX(4px);
  opacity: 0.8;
}

.footer .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer .contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,138,107,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer hr {
  opacity: 0.1;
  margin: 40px 0;
}

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

.footer .footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.footer .social-link {
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer .social-link svg {
  width: 16px;
  height: 16px;
  fill: #163c8f;
}

.footer .social-link:hover {
  background: #ff8a6b;
  transform: translateY(-2px);
}

.footer .social-link:hover svg {
  fill: #ffffff;
}

.footer .footer-shape {
  position: absolute;
  right: 60px;
  bottom: 80px;
  width: 90px;
  height: 90px;
  transform: rotate(45deg);
  border-radius: 16px;
  background: rgba(0,0,0,0.03);
  pointer-events: none;
  z-index: 0;
}

.footer .container,
.footer .footer-top,
.footer .footer-bottom {
  position: relative;
  z-index: 2;
}

.footer .footer-logo {
  height: 30px;
  width: auto;
  display: block;
}

.footer .footer-right {
  text-align: right;
}

.footer .footer-right div {
  line-height: 1.6;
}

.footer .footer-shape {
  display: none;
}

@media (max-width: 991.98px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer .footer-left {
    flex-direction: column;
    gap: 16px;
  }

  .footer .footer-right {
    text-align: center !important;
  }

  .footer .footer-shape {
    right: 30px;
    bottom: 24px;
    width: 72px;
    height: 72px;
  }

}

@media (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer .footer-left {
    justify-content: center;
  }

  .footer .footer-right {
    text-align: center !important;
  }
}

.cta-section {
  background: linear-gradient(
    135deg,
    #1e4fa3 0%,
    #1a4591 50%,
    #173c8f 100%
  );
  color: #fff;
  padding: 110px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.cta-bg-logo {
  position: absolute;
  right: -6%;
  bottom: -10%;
  width: min(70vw, 760px);
  height: min(70vw, 760px);
  background-color: #0f3a87;
  -webkit-mask-image: url("img/Back-in-K-logo.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("img/Back-in-K-logo.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 0;
}

.cta-bg-logo::after {
  content: "";
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 65%);
  opacity: 0.8;
  z-index: -1;
}

.cta-box {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-section .cta-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}


.cta-section h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
  word-break: normal;
}

.cta-section p {
  max-width: 540px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.cta-section .btn-primary,
.cta-section .impact-outline-btn {
  background: #FE7E61;
  border-color: #FE7E61;
  color: #ffffff;
  position: relative;
  padding: 14px 28px;
  font-size: var(--type-btn-size);
  font-weight: 600;
  line-height: var(--type-btn-line);
  border-radius: 999px;
  box-shadow:
    0 10px 20px rgba(0,0,0,0.12),
    0 6px 14px rgba(255,138,107,0.22);
  transition: all .25s ease;
  margin-top: 4px;
  transform: translateY(0);
}

.cta-section .btn-primary::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(255,138,107,0.12);
  filter: blur(14px);
  opacity: 0.6;
  z-index: -1;
}

.cta-section .btn-primary::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 80%;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255,138,107,0.35);
  filter: blur(10px);
  z-index: -1;
}

.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus,
.cta-section .impact-outline-btn:hover,
.cta-section .impact-outline-btn:focus {
  background: #ff8f75;
  border-color: #ff8f75;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 40px rgba(255,138,107,0.38),
    0 8px 18px rgba(0,0,0,0.12);
}

.cta-section .btn-primary:hover .impact-icon-circle {
  transform: translateX(4px);
}

.cta-section .impact-icon-circle {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .cta-section h2 {
    max-width: 100%;
  }

  .cta-section p {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .cta-section::before {
    opacity: 0.5;
    width: 360px;
    height: 360px;
  }

  .cta-bg-logo {
    right: -20%;
    bottom: -22%;
    width: 78vw;
    height: 78vw;
  }

  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-box h2 {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
}

.footer-col h4 {
  font-weight: var(--type-footer-title-weight);
  font-size: var(--type-footer-title-size);
  line-height: var(--type-footer-title-line);
  letter-spacing: var(--type-footer-title-tracking);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.footer-col a {
  color: var(--back-blue);
  text-decoration: none;
  font-weight: var(--type-footer-link-weight);
  font-size: var(--type-footer-link-size);
  line-height: var(--type-footer-link-line);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-col a:hover {
  color: #FF7F61;
  opacity: 0.9;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.95rem;
  align-items: center;
}

.footer-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 127, 97, 0.14);
  display: grid;
  place-items: center;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #FF7F61;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-divider {
  margin: 3.2rem 0 2.6rem;
  height: 1px;
  background: rgba(18, 63, 140, 0.1);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.footer-brand img {
  height: 46px;
  width: auto;
}

.footer-socials {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(18, 63, 140, 0.08);
  color: var(--back-blue);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 127, 97, 0.16);
  color: #FF7F61;
  box-shadow: 0 10px 18px rgba(18, 63, 140, 0.12);
}

.footer-meta {
  text-align: right;
  color: rgba(18, 63, 140, 0.65);
  font-weight: var(--type-footer-link-weight);
  font-size: var(--type-footer-link-size);
  line-height: var(--type-footer-link-line);
}

.footer-meta p {
  margin: 0.2rem 0;
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer .footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.7;
}

.footer .footer-col a,
.footer .footer-contact a {
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.footer .footer-col a:hover,
.footer .footer-contact a:hover {
  transform: translateX(4px);
  opacity: 0.8;
}

.footer .footer-divider {
  opacity: 0.1;
  margin: 40px 0;
  border: 0;
  height: 1px;
  background: rgba(18, 63, 140, 0.1);
}

@media (max-width: 767.98px) {
  .pillar-row {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 1.28rem 1.18rem 1.16rem;
  }

  .pillar-tag {
    justify-self: auto;
    width: 92px;
    height: 92px;
    right: 14px;
    top: 14px;
  }

  .pillar-copy {
    padding-right: 6.05rem;
    max-width: 100%;
  }

  .pillars-content {
    gap: 1rem;
  }

  .pillar-copy h3 {
    font-size: clamp(1.03rem, 4.25vw, 1.1rem);
    line-height: 1.34;
    max-width: 29ch;
  }

  .pillar-copy p {
    font-size: 0.92rem;
    max-width: 40ch;
  }
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.stat-blue .stat-value {
  color: rgba(255, 255, 255, 0.45);
}

.stat-teal .stat-value {
  color: #7fd7d0;
}

.stat-orange .stat-value {
  color: var(--back-orange);
}

.hero-kicker {
  color: rgba(33, 53, 95, 0.45);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
  display: inline-block;
}

.hero-title {
  color: var(--back-blue);
  font-weight: var(--type-h1-weight);
  font-size: var(--type-h1-size);
  line-height: var(--type-h1-line);
  margin-bottom: 1.08rem;
  max-width: 16ch;
  text-wrap: balance;
}

.hero-title-highlight {
  display: inline;
  padding: 1px 6px;
  border-radius: 6px;
  margin-left: 0;
  margin-right: 0;
  background: rgba(255, 140, 100, 0.16);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-highlight {
  display: inline;
  padding: 1px 6px;
  border-radius: 6px;
  margin-left: 0;
  margin-right: 0;
  background: rgba(255, 140, 100, 0.16);
}

.hero-copy {
  max-width: 30rem;
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
  font-weight: var(--type-body-lg-weight);
  margin-bottom: 1.56rem;
}

.btn-cta {
  background: #FE7E61;
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  font-weight: var(--type-btn-weight);
  font-size: var(--type-btn-size);
  line-height: var(--type-btn-line);
  box-shadow: 0 16px 30px rgba(254, 126, 97, 0.28);
}

.btn-cta:hover,
.btn-cta:focus {
  background: #0F3578;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-ghost {
  border: 1px solid rgba(18, 63, 140, 0.35);
  color: var(--back-blue);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-weight: var(--type-btn-weight);
  font-size: var(--type-btn-size);
  line-height: var(--type-btn-line);
  background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: rgba(255, 127, 97, 0.65);
  color: var(--back-orange);
  background: rgba(255, 127, 97, 0.08);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-icon .icon-circle {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  padding-left: 0.05rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-cta .icon-circle {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-cta:hover .icon-circle,
.btn-cta:focus .icon-circle {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.28);
}

.btn-ghost .icon-circle {
  background: rgba(18, 63, 140, 0.08);
  color: var(--back-blue);
}

.btn-ghost:hover .icon-circle,
.btn-ghost:focus .icon-circle {
  transform: translateX(2px);
  background: rgba(255, 127, 97, 0.18);
  color: var(--back-orange);
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  font-size: var(--type-btn-size);
  font-weight: var(--type-btn-weight);
  line-height: var(--type-btn-line);
}

.nav-cta .icon-circle {
  width: 1.8rem;
  height: 1.8rem;
}

.hero-image {
  width: min(480px, 82vw);
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(12, 38, 84, 0.18);
  background: #e7ecf6;
  animation: heroFloat 6s ease-in-out infinite;
  margin-top: 2.75rem;
  margin-left: 0.4rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: rotate(-45deg) scale(1.42) translateX(-2%);
}

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

.hero .hero-stat-card {
  position: absolute;
  right: -6px;
  bottom: 6px;
  z-index: 5;
  width: 220px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(22, 60, 143, 0.08);
  box-shadow:
    0 24px 60px rgba(20, 44, 95, 0.18),
    0 8px 20px rgba(20, 44, 95, 0.10);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hero .hero-stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hero .hero-stat-diamond {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-radius: 2px;
  background: rgba(255,138,107,0.9);
}

.hero .hero-stat-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(22, 60, 143, 0.6);
}

.hero .hero-stat-value {
  display: block;
  margin-bottom: 8px;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #163c8f;
}

.hero .hero-stat-value span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff8a6b;
  margin-left: 4px;
  opacity: 0.7;
}

.hero .hero-stat-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(23, 39, 76, 0.76);
}

.hero .hero-stat-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 70px rgba(20, 44, 95, 0.22),
    0 10px 26px rgba(20, 44, 95, 0.12);
}

.hero .hero-image,
.hero .hero-media-wrap img {
  position: relative;
  z-index: 1;
}

.hero .hero-media-wrap::before,
.hero .hero-media-wrap::after {
  z-index: 1;
}

@keyframes heroFloat {
  0% { transform: rotate(45deg) translateY(6px); }
  50% { transform: rotate(45deg) translateY(-8px); }
  100% { transform: rotate(45deg) translateY(6px); }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #FCFBF8;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 40px rgba(15, 42, 88, 0.08);
    margin-top: 1rem;
  }

  .hero-main {
    padding-top: 1.5rem;
  }

  .hero-image {
    margin-top: 1rem;
    width: min(420px, 88vw);
  }

  .hero .hero-stat-card {
    width: 180px;
    padding: 14px 14px 12px;
    right: 10px;
    bottom: -6px;
    border-radius: 18px;
  }

  .hero .hero-stat-value {
    font-size: 1.55rem;
  }

  .hero .hero-stat-value span {
    font-size: 0.9rem;
  }

  .hero .hero-stat-note {
    font-size: 0.8rem;
    line-height: 1.35;
  }
}

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

  .impact-copy {
    font-size: 1rem;
  }
}

/* Contact Page */
.contact-page {
  background: #FCFBF8;
}

.contact-page .contact-hero-wrap {
  background: linear-gradient(180deg, #f3eee4 0%, #f7f6f2 100%);
  position: relative;
  overflow: hidden;
}

.contact-page .contact-hero-wrap::after {
  display: none;
}

.contact-page .contact-hero {
  padding: 88px 0 36px;
  position: relative;
  background: #FCFBF8;
}

.contact-page .contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-page .contact-hero::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(132, 159, 211, 0.12);
  transform: rotate(45deg);
  right: 120px;
  top: 80px;
  border-radius: 24px;
  pointer-events: none;
}

.contact-page .contact-kicker {
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(33, 53, 95, 0.45);
  opacity: 1;
  margin-bottom: 12px;
}

.contact-page .contact-title {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #163c8f;
  max-width: 10ch;
  margin: 0 0 18px;
}

.contact-page .contact-hero-side {
  padding-top: 18px;
  max-width: 420px;
}

.contact-page .contact-hero-side p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(23, 39, 76, 0.8);
  margin: 0 0 10px;
}

.contact-page .contact-hero-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(23, 39, 76, 0.78);
  max-width: 48ch;
}

.contact-page .contact-benefits {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.contact-page .contact-benefits li {
  position: relative;
  padding-left: 18px;
  color: #163c8f;
  font-weight: 500;
  line-height: 1.55;
}

.contact-page .contact-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff8a6b;
  transform: translateY(-50%);
}

.contact-page .contact-main-section {
  padding: 0 0 2.7rem;
}

.contact-page .contact-main-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.contact-page .contact-photo-card {
  position: relative;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(22, 60, 143, 0.06);
  box-shadow: 0 14px 38px rgba(19, 42, 92, 0.06);
  padding: 18px;
  overflow: visible;
}

.contact-page .contact-photo-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  transform: rotate(45deg);
  border-radius: 20px;
  background: rgba(236, 109, 84, 0.10);
  left: -40px;
  bottom: -40px;
  z-index: 0;
}

.contact-page .contact-photo-card > * {
  position: relative;
  z-index: 2;
}

.contact-page .contact-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #dee6f4;
  aspect-ratio: 4 / 5;
}

.contact-page .contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-page .contact-photo-caption {
  margin: 14px 0 0;
  color: rgba(36, 50, 74, 0.8);
  line-height: 1.58;
  font-size: 0.93rem;
  display: grid;
  gap: 0.16rem;
}

.contact-page .contact-photo-caption-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(18, 63, 140, 0.58);
}

.contact-page .contact-photo-caption-text {
  font-weight: 500;
}

.contact-page .contact-mini-quote {
  border-left: 3px solid #ff8a6b;
  padding-left: 14px;
  margin-top: 12px;
  font-style: italic;
  opacity: 0.85;
  color: rgba(18, 63, 140, 0.82);
  line-height: 1.58;
  font-size: 14px;
}

.contact-page .quote-box {
  opacity: 0.85;
  font-size: 14px;
}

.contact-page .contact-form-card {
  position: relative;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(22, 60, 143, 0.06);
  box-shadow: 0 20px 50px rgba(20, 44, 95, 0.08);
  padding: 30px 30px 24px;
  overflow: hidden;
}

.contact-page .contact-form-card::before {
  display: none !important;
  content: none !important;
}

.contact-page .contact-form-card::after,
.contact-page .contact-form-shape {
  display: none !important;
  content: none !important;
}

.contact-page .contact-form-card > * {
  position: relative;
  z-index: 2;
}

.contact-page .contact-form-card h2 {
  margin: 0;
  color: #123f8c;
  font-size: 26px;
  line-height: 1.2;
}

.contact-page .contact-form-intro {
  margin: 8px 0 16px;
  color: rgba(36, 50, 74, 0.72);
  line-height: 1.65;
  font-size: 0.96rem;
}

.contact-page .contact-form {
  display: grid;
  gap: 12px;
}

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

.contact-page .field-group {
  display: grid;
  gap: 0.42rem;
}

.contact-page .field-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #163c8f;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(22, 60, 143, 0.12);
  background: #ffffff;
  color: #163c8f;
  font-size: 0.97rem;
  box-shadow: none;
  padding: 0.72rem 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-page .contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #123f8c 50%), linear-gradient(135deg, #123f8c 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: rgba(36, 50, 74, 0.45);
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 138, 107, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 138, 107, 0.12);
}

.contact-page .field-hint {
  margin: 0.02rem 0 0;
  font-size: 0.83rem;
  color: rgba(36, 50, 74, 0.52);
  line-height: 1.45;
}

.contact-page .field-error {
  min-height: 1rem;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.42;
  color: #bc3046;
  font-weight: 600;
}

.contact-page .contact-form input.is-invalid,
.contact-page .contact-form select.is-invalid,
.contact-page .contact-form textarea.is-invalid {
  border-color: rgba(188, 48, 70, 0.55);
  box-shadow: 0 0 0 3px rgba(188, 48, 70, 0.12);
}

.contact-page .form-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  margin-top: 6px;
}

.contact-page .captcha-box {
  border-radius: 14px;
  background: #f8f9fc;
  border: 1px solid rgba(22, 60, 143, 0.07);
  padding: 14px 16px;
}

.contact-page .captcha-label {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22, 60, 143, 0.62);
}

.contact-page .captcha-row {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
}

.contact-page .captcha-question {
  font-size: 1rem;
  font-weight: 700;
  color: #123f8c;
  white-space: nowrap;
}

.contact-page .submit-cta-wrap {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 0.58rem;
}

.contact-page .contact-submit-btn {
  min-height: 52px;
  padding: 0.84rem 1.62rem;
  border: 0;
  box-shadow: 0 16px 30px rgba(254, 126, 97, 0.28);
}

.contact-page .contact-form-card .btn-primary,
.contact-page .contact-form-card .contact-submit-btn {
  box-shadow: 0 12px 28px rgba(255, 120, 80, 0.3);
  transition: all 0.25s ease;
}

.contact-page .contact-form-card .btn-primary:hover,
.contact-page .contact-form-card .contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 120, 80, 0.38);
}

.contact-page .submit-reassurance {
  margin: 0;
  color: rgba(36, 50, 74, 0.62);
  font-size: 0.84rem;
  line-height: 1.48;
  max-width: 32ch;
}

.contact-page .trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.85;
  font-weight: 500;
  color: rgba(22, 60, 143, 0.72);
}

.contact-page .form-control,
.contact-page .form-select,
.contact-page .contact-form input,
.contact-page .contact-form select {
  min-height: 52px;
}

.contact-page .form-control::placeholder,
.contact-page .form-select::placeholder,
.contact-page .contact-form input::placeholder,
.contact-page .contact-form select::placeholder,
.contact-page textarea::placeholder {
  opacity: 0.5;
}

.contact-page .trust-row span::before {
  content: "â€¢";
  color: #ff8a6b;
  margin-right: 8px;
}

.contact-page .trust-row span:first-child::before {
  content: "";
  margin-right: 0;
}

.contact-page .contact-info-cards {
  margin-top: 40px;
  padding: 0 0 clamp(4.8rem, 9vw, 6.9rem);
}

.contact-page .contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.contact-page .contact-info-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(22, 60, 143, 0.06);
  box-shadow: 0 10px 24px rgba(20, 44, 95, 0.05);
  padding: 22px 22px 20px;
  height: 100%;
  transition: all 0.25s ease;
}

.contact-page .contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(20, 44, 95, 0.08);
}

.contact-page .contact-info-card::before {
  display: none !important;
  content: none !important;
}

.contact-page .contact-info-card::after,
.contact-page .contact-info-card .card-shape,
.contact-page .contact-info-card .diamond-shape {
  display: none !important;
  content: none !important;
}

.contact-page .contact-info-card > * {
  position: relative;
  z-index: 2;
}

.contact-page .contact-main-section,
.contact-page .contact-info-cards,
.contact-page .contact-main-section .container,
.contact-page .contact-info-cards .container {
  overflow: visible;
}

.contact-page .shape-diamond {
  transform: rotate(45deg);
  border-radius: 20px;
}

.contact-page section {
  margin-bottom: 60px;
}

.contact-page section:last-of-type {
  margin-bottom: 0;
}

.contact-page .contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(22, 60, 143, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-page .contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: #123f8c;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .contact-info-card h3 {
  margin: 0 0 0.4rem;
  color: #123f8c;
}

.contact-page .contact-info-card p {
  margin: 0 0 0.18rem;
  color: rgba(36, 50, 74, 0.74);
  line-height: 1.62;
  font-size: 0.95rem;
}

.contact-page .contact-info-card a,
.contact-page .contact-info-card span {
  display: inline-block;
  margin-top: 0.42rem;
  color: #123f8c;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.contact-page .contact-info-card a:hover {
  color: #ff7f61;
}

@media (max-width: 1199.98px) {
  .contact-page .form-bottom-row {
    grid-template-columns: 1fr;
  }

  .contact-page .submit-cta-wrap {
    justify-items: stretch;
  }

  .contact-page .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .contact-page .contact-hero-grid,
  .contact-page .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-page .contact-hero h1 {
    max-width: 100%;
  }

  .contact-page .form-bottom-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767.98px) {
  .contact-page .contact-hero {
    padding: 68px 0 26px;
  }

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

  .contact-page .contact-form-card,
  .contact-page .contact-photo-card {
    border-radius: 22px;
    padding: 22px;
  }

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

  .contact-page .trust-row {
    justify-content: flex-start;
    gap: 10px 16px;
  }
}

/* About Page */
.about-page {
  background: #f7f4ec;
  --about-radius-lg: 22px;
  --about-radius-xl: 28px;
  --about-border-soft: rgba(18, 63, 140, 0.11);
  --about-shadow-soft: 0 14px 28px rgba(14, 40, 92, 0.08);
  --about-shadow-hover: 0 22px 40px rgba(14, 40, 92, 0.13);
}

.about-hero-wrap {
  background: #fcfbf8;
  position: relative;
  overflow: hidden;
}

.about-hero {
  padding: 96px 0;
  position: relative;
  overflow: visible;
  z-index: 3;
}

.about-hero-row {
  --bs-gutter-x: clamp(2.8rem, 4.6vw, 3.5rem);
}

.about-hero-content {
  max-width: 760px;
  min-width: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: aboutHeroContentIn 0.62s ease-out 0.12s forwards;
}

.about-hero .about-eyebrow {
  margin: 0 0 12px;
  display: inline-block;
}

.about-hero-quote {
  margin: 0 0 22px;
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.55;
  font-style: italic;
  color: rgba(33, 53, 95, 0.6);
  border-left: 1px solid rgba(22, 60, 143, 0.14);
  padding-left: 12px;
}

.about-title {
  margin: 0;
  color: #123f8c;
  max-width: 700px;
  text-wrap: pretty;
}

.about-intro {
  margin: 24px 0 0;
  max-width: 620px;
  color: rgba(33, 53, 95, 0.85);
  line-height: 1.6;
  font-size: clamp(1.04rem, 1.12vw, 1.1rem);
  font-weight: 400;
}

.about-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: aboutHeroContentIn 0.56s ease-out 0.24s forwards;
}

.about-hero-btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.99rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 120, 80, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 120, 80, 0.35);
}

.about-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(18, 63, 140, 0.72);
  font-weight: 400;
  opacity: 0.8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.22s ease, color 0.22s ease;
}

.about-hero-secondary-arrow {
  transition: transform 0.22s ease;
}

.about-hero-secondary:hover {
  color: rgba(18, 63, 140, 0.95);
  opacity: 1;
  border-color: rgba(18, 63, 140, 0.24);
}

.about-hero-secondary:hover .about-hero-secondary-arrow {
  transform: translateX(4px);
}

.about-hero-trust {
  margin: 13px 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(22, 60, 143, 0.62);
  opacity: 0;
  animation: aboutHeroContentIn 0.56s ease-out 0.3s forwards;
}

.about-hero-media-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  margin-right: 0;
  padding-left: 0;
  padding-right: 12px;
  transform: translateX(0);
  opacity: 0;
  animation: aboutHeroMediaInEditorial 0.72s ease-out 0.1s forwards;
}

.hero-diamond-wrap::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: 40px;
  top: 60px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(230, 224, 215, 0.6) 0%, rgba(230, 224, 215, 0) 70%);
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.about-hero-media-diamond {
  display: none;
}

.about-hero-link {
  margin-top: 1.35rem;
  display: inline-flex;
  color: #123f8c;
  font-weight: var(--type-link-weight);
  font-size: var(--type-link-size);
  line-height: var(--type-link-line);
  text-decoration: none;
  opacity: 0;
  animation: aboutHeroContentIn 0.52s ease-out 0.3s forwards;
}

.about-hero-link:hover {
  color: #ff7f61;
}

.about-hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  width: min(460px, 100%);
  max-width: min(460px, 100%);
  min-width: 0;
  aspect-ratio: 1 / 1;
  height: auto;
  margin-inline: 0;
  box-shadow: 0 30px 70px rgba(13, 39, 80, 0.16), 0 10px 24px rgba(13, 39, 80, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  z-index: 2;
  right: 0;
  top: -16px;
  transform: rotate(45deg);
}

.hero-diamond::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-diamond {
    animation: floatDiamond 7s ease-in-out infinite;
  }

  .hero-diamond:hover {
    box-shadow: 0 30px 70px rgba(13, 39, 80, 0.18), 0 10px 24px rgba(13, 39, 80, 0.1);
  }

  .hero-diamond:hover img {
    transform: rotate(-45deg) scale(1.1);
  }
}

.about-hero-media img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transform: rotate(-45deg) scale(1.08);
  transform-origin: center;
  animation: aboutHeroImageZoomDiamond 1.1s ease-out 0.14s forwards;
  transition: transform 0.38s ease;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(210deg, rgba(7, 16, 32, 0.16) 0%, rgba(18, 63, 140, 0.05) 60%, rgba(18, 63, 140, 0) 100%);
}

@keyframes floatDiamond {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-5px); }
}

@keyframes aboutHeroMediaWrapIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aboutHeroMediaInEditorial {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aboutHeroContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutHeroMediaIn {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aboutHeroImageZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes aboutHeroMediaInDiamond {
  from {
    opacity: 0;
    transform: rotate(45deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: rotate(45deg) scale(1.04);
  }
}

@keyframes aboutHeroImageZoomDiamond {
  from {
    transform: rotate(-45deg) scale(1.52);
  }
  to {
    transform: rotate(-45deg) scale(1.46);
  }
}

@keyframes aboutHeroDiamondFloat {
  0% { transform: rotate(45deg) translateY(2px); }
  50% { transform: rotate(45deg) translateY(-4px); }
  100% { transform: rotate(45deg) translateY(2px); }
}

.about-section-head {
  max-width: 760px;
}

.about-section-head h2 {
  margin: 0;
  color: #123f8c;
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
  text-wrap: balance;
}

.about-section-head-centered {
  margin: 0 auto;
  text-align: center;
}

.about-vision-section,
.about-lens-section,
.about-values-section,
.about-team-section,
.about-trust-section {
  padding: clamp(4rem, 7.4vw, 6rem) 0;
}

.about-vision-section {
  background: #f7f4ec;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.about-vision-layout > *,
.about-lens-layout > *,
.about-lens-principles > *,
.about-method-layout > *,
.about-method-flow > *,
.about-values-grid > *,
.about-team-grid > *,
.about-trust-logos > * {
  min-width: 0;
}

.about-vision-layout {
  --bs-gutter-y: 2rem;
}

.about-vision-intro {
  position: sticky;
  top: 120px;
  max-width: 320px;
}

.about-vision-intro h2 {
  margin: 0;
  color: #123f8c;
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
}

.about-vision-intro p {
  margin: 0.95rem 0 0;
  color: rgba(23, 39, 76, 0.72);
  line-height: 1.65;
  font-size: 0.97rem;
}

.about-vision-intro-accent {
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(13, 39, 80, 0.1);
  color: rgba(13, 39, 80, 0.62);
  font-size: 0.86rem;
  line-height: 1.55;
}

.about-vision-items {
  position: relative;
  padding-left: 24px;
  padding-top: 0.35rem;
}

.about-vision-items::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(13, 39, 80, 0) 0%,
    rgba(13, 39, 80, 0.06) 14%,
    rgba(13, 39, 80, 0.06) 86%,
    rgba(13, 39, 80, 0) 100%
  );
}

.about-vision-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  column-gap: 18px;
  margin-bottom: 48px;
  transition: transform 0.24s ease;
}

.about-vision-item:last-child {
  margin-bottom: 0;
}

.about-vision-item-featured .about-vision-item-copy h3 {
  font-size: 1.42rem;
  line-height: 1.18;
}

.about-vision-item-featured .about-vision-item-copy p {
  color: rgba(36, 50, 74, 0.8);
}

.about-vision-item-featured {
  margin-bottom: 56px;
}

.about-vision-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13, 39, 80, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: background 0.24s ease, transform 0.24s ease;
}

.about-vision-item-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: rgba(15, 53, 120, 0.94);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-vision-item-copy h3 {
  margin: 0;
  max-width: 520px;
  color: #123f8c;
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.22;
  transition: color 0.24s ease;
}

.about-vision-item-copy p {
  margin: 10px 0 0;
  max-width: 560px;
  color: rgba(36, 50, 74, 0.74);
  line-height: 1.65;
  font-size: 0.97rem;
}

.about-vision-item:hover {
  transform: translateX(4px);
}

.about-vision-item:hover .about-vision-item-copy h3 {
  color: #0f3578;
}

.about-vision-item:hover .about-vision-item-icon {
  background: rgba(13, 39, 80, 0.11);
  transform: scale(1.02);
}

.about-lens-section {
  background: #fffdf8;
  padding: 90px 0;
}

.about-lens-shell {
  position: relative;
}

.about-lens-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(18, 63, 140, 0.03) 0%, rgba(18, 63, 140, 0) 52%);
  pointer-events: none;
}

.about-lens-layout {
  position: relative;
  z-index: 1;
  --bs-gutter-x: 48px;
  --bs-gutter-y: 1.4rem;
  align-items: stretch;
}

.about-lens-layout::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: calc(42% - 8px);
  width: 36px;
  background: radial-gradient(circle, rgba(18, 63, 140, 0.08) 0%, rgba(18, 63, 140, 0) 72%);
  filter: blur(8px);
  pointer-events: none;
}

.about-lens-vision-card {
  position: relative;
  border-radius: 28px 24px 30px 22px;
  padding: 34px 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(135deg, #2f5aa6 0%, #2a4f92 100%);
  background-blend-mode: soft-light;
  border: 1px solid rgba(18, 63, 140, 0.48);
  box-shadow: 0 20px 50px rgba(13, 39, 80, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #ffffff;
  overflow: hidden;
}

.about-lens-vision-card::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 74%;
  right: -18%;
  top: -20%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.about-lens-vision-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(9, 33, 77, 0) 0%, rgba(9, 33, 77, 0.28) 100%);
  pointer-events: none;
}

.about-lens-vision-card .about-section-eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.about-lens-vision-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.64rem, 2.4vw, 2.06rem);
  font-weight: 800;
  line-height: 1.14;
  max-width: 15ch;
}

.about-lens-vision-card > p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--type-body-lg-size);
  line-height: 1.6;
  max-width: 44ch;
}

.about-lens-vision-quote {
  margin-top: 18px;
  padding-top: 1.02rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  max-width: 34ch;
  position: relative;
}

.about-lens-vision-quote::before {
  content: "";
  position: absolute;
  left: -0.1rem;
  top: 0.92rem;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.about-lens-accent-card {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.about-lens-accent-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff7f61;
}

.about-lens-principles-wrap {
  margin-left: -24px;
  padding: 14px 0 12px 40px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.about-lens-principles-wrap h3 {
  margin: 0 0 4px;
  color: #123f8c;
  font-size: clamp(1.28rem, 1.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
}

.about-lens-principles-intro {
  margin: 0 0 28px;
  color: rgba(36, 50, 74, 0.74);
  font-size: var(--type-body-size);
  line-height: 1.66;
  max-width: 40ch;
}

.about-lens-principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(13, 39, 80, 0.06);
  padding-top: 16px;
}

.about-lens-principle {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 40px;
  padding: 0;
  border: 0;
  transition: transform 0.22s ease;
}

.about-lens-principle:hover {
  transform: translateX(4px);
}

.about-lens-marker {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: #ff7a5c;
  display: inline-flex;
  margin-top: 8px;
  flex: 0 0 auto;
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-lens-principle-content h4 {
  margin: 0;
  color: #123f8c;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.34;
  margin-bottom: 4px;
  transition: color 0.22s ease;
}

.about-lens-principle-content p {
  margin: 0;
  color: rgba(33, 53, 95, 0.78);
  font-size: var(--type-body-size);
  line-height: 1.65;
  max-width: 520px;
}

.about-lens-principle:first-child .about-lens-principle-content h4 {
  font-size: 1.1rem;
}

.about-method-section {
  background: linear-gradient(135deg, #123f8c 0%, #174ca4 100%);
  color: #fff;
  padding: clamp(4.5rem, 8vw, 6.3rem) 0;
}

.about-method-layout {
  display: block;
}

.about-method-head {
  display: block;
  margin-bottom: clamp(3.5rem, 4.8vw, 4rem);
}

.about-section-eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.about-method-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
  max-width: 22ch;
}

.about-method-link {
  margin-top: 16px;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 14px 26px;
  font-size: var(--type-btn-size);
  font-weight: var(--type-btn-weight);
  line-height: var(--type-btn-line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.about-method-link .icon-circle {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.about-method-link:hover,
.about-method-link:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 26px rgba(8, 24, 58, 0.22);
  transform: translateY(-2px);
}

.about-method-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  position: relative;
}

.about-method-flow::before {
  content: "";
  position: absolute;
  top: 22px;
  transform: translateY(-50%);
  left: 22px;
  right: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 0;
}

.about-method-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  position: relative;
  overflow: visible;
  z-index: 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.about-method-step:nth-child(1) {
  z-index: 2;
}

.about-method-step:nth-child(2) {
  z-index: 3;
}

.about-method-step:nth-child(3) {
  z-index: 4;
}

.about-method-step:nth-child(4) {
  z-index: 5;
}

.about-method-section.is-visible .about-method-step {
  opacity: 1;
  transform: translateY(0);
}

.about-method-section.is-visible .about-method-step:nth-child(1) { transition-delay: 0.08s; }
.about-method-section.is-visible .about-method-step:nth-child(2) { transition-delay: 0.16s; }
.about-method-section.is-visible .about-method-step:nth-child(3) { transition-delay: 0.24s; }
.about-method-section.is-visible .about-method-step:nth-child(4) { transition-delay: 0.32s; }

.about-method-step:hover {
  transform: translateY(-3px);
}

.about-method-step-no {
  position: relative;
  z-index: 2;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: background 0.24s ease;
}

.about-method-step:hover .about-method-step-no {
  background: rgba(255, 255, 255, 0.25);
}

.about-method-step:first-child .about-method-step-no::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  z-index: -1;
}

.about-method-step-content h3 {
  margin: 14px 0 6px;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  font-weight: 600;
  line-height: 1.32;
  max-width: 240px;
}

.about-method-step-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: clamp(0.89rem, 1.08vw, 0.97rem);
  max-width: 200px;
}

.about-values-section {
  background: #f7f4ec;
}

.about-values-grid {
  margin-top: 1.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-value-card {
  background: #fffdf9;
  border: 1px solid var(--about-border-soft);
  border-radius: 18px;
  padding: 1rem 1.15rem 0.95rem;
  min-height: 150px;
  box-shadow: var(--about-shadow-soft);
  display: grid;
  align-content: start;
  position: relative;
}

.about-value-card:nth-child(2) {
  background: linear-gradient(140deg, #123f8c 0%, #1a52b0 100%);
  border-color: rgba(18, 63, 140, 0.52);
}

.about-value-card:nth-child(2) h3,
.about-value-card:nth-child(2) p {
  color: #ffffff;
}

.about-value-card::before {
  content: "";
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: #ff7f61;
  margin-bottom: 0.55rem;
  display: block;
}

.about-value-card:nth-child(2)::before {
  background: rgba(255, 255, 255, 0.9);
}

.about-value-card h3 {
  margin: 0;
  color: #123f8c;
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
}

.about-value-card p {
  margin: 0.42rem 0 0;
  color: rgba(36, 50, 74, 0.75);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.about-team-section {
  background: #fffdf8;
  padding-top: clamp(4.6rem, 8vw, 6.4rem);
  padding-bottom: clamp(4.8rem, 8.2vw, 6.6rem);
}

.about-team-intro {
  margin: 0.95rem auto 0;
  max-width: 620px;
  color: rgba(36, 50, 74, 0.72);
  line-height: var(--type-body-lg-line);
  font-size: var(--type-body-lg-size);
  font-weight: var(--type-body-lg-weight);
}

.about-team-grid {
  --team-grid-gap: 1.25rem;
  margin-top: 2.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.about-team-row {
  display: grid;
  gap: var(--team-grid-gap);
  align-items: stretch;
}

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

.about-team-row-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: calc(((100% - (2 * var(--team-grid-gap))) / 3 * 2) + var(--team-grid-gap));
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.about-team-card {
  --team-accent: rgba(18, 63, 140, 0.12);
  --team-accent-soft: rgba(18, 63, 140, 0.07);
  background: #ffffff;
  border: 1px solid rgba(13, 39, 80, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 39, 80, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.about-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 39, 80, 0) 60%, rgba(13, 39, 80, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.about-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 39, 80, 0.08);
  box-shadow: 0 22px 42px rgba(13, 39, 80, 0.1);
}

.about-team-card:hover::before {
  opacity: 1;
}

.about-team-card-tone-1 { --team-accent: rgba(255, 127, 97, 0.2); --team-accent-soft: rgba(255, 127, 97, 0.08); }
.about-team-card-tone-2 { --team-accent: rgba(18, 63, 140, 0.18); --team-accent-soft: rgba(18, 63, 140, 0.08); }
.about-team-card-tone-3 { --team-accent: rgba(67, 145, 129, 0.18); --team-accent-soft: rgba(67, 145, 129, 0.08); }
.about-team-card-tone-4 { --team-accent: rgba(108, 120, 173, 0.2); --team-accent-soft: rgba(108, 120, 173, 0.08); }
.about-team-card-tone-5 { --team-accent: rgba(221, 143, 106, 0.2); --team-accent-soft: rgba(221, 143, 106, 0.08); }

.about-team-card::after {
  content: none;
}

.about-team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dce5f3;
  position: relative;
  z-index: 2;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.38s ease;
  object-position: center 18%;
}

.about-team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 48, 0) 36%, rgba(10, 24, 48, 0.1) 72%, rgba(255, 255, 255, 0.5) 100%);
  opacity: 0.95;
  pointer-events: none;
  transition: opacity 0.34s ease;
}

.about-team-card:hover .about-team-photo img {
  transform: scale(1.03);
}

.about-team-card:hover .about-team-photo::after {
  opacity: 0.86;
}

.about-team-meta {
  padding: 1.24rem 1.15rem 1.28rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.about-team-name {
  margin: 0;
  color: #123f8c;
  font-size: clamp(1.14rem, 1.24vw, 1.34rem);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: 0;
}

.about-team-role {
  margin: 0.12rem 0 0;
  color: rgba(18, 63, 140, 0.56);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: var(--type-eyebrow-line);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.about-team-badges {
  margin: 0.7rem 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(13, 39, 80, 0.06);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.42rem;
  align-content: flex-start;
}

.about-team-badges li {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(13, 39, 80, 0.08);
  background: rgba(13, 39, 80, 0.05);
  color: rgba(33, 53, 95, 0.75);
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 500;
}

.about-team-badges li:nth-child(n + 4) {
  display: none;
}

.about-trust-section,
.section-trust {
  background: #f7f4ec;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 40px;
}

.about-trust-subtitle {
  margin: 0.78rem auto 0;
  max-width: 58ch;
  color: rgba(33, 53, 95, 0.7);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-trust-logos,
.trust-wrapper,
.logo-row {
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 64px;
  padding: 40px 32px;
  border-radius: 20px;
  background: rgba(13, 39, 80, 0.03);
}

.about-trust-logo,
.logo-item {
  width: 160px;
  height: 70px;
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease;
}

.about-trust-logo::before {
  content: none;
}

.about-trust-logo:hover,
.logo-item:hover {
  transform: translateY(-2px);
}

.about-trust-logo img,
.logo-item img {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(80%);
  opacity: 0.75;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.about-trust-logo:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

.about-trust-note,
.trust-note {
  margin: 24px auto 0;
  max-width: 62ch;
  text-align: center;
  color: rgba(33, 53, 95, 0.6);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2f5aa6 0%, #234b8c 100%);
  margin-top: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 10%;
  top: 30%;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.08;
}

.about-cta-section:hover::before {
  transform: rotate(45deg) scale(1.05);
  opacity: 0.12;
}

.about-cta-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.04) 100%);
  z-index: 0;
  pointer-events: none;
}

.about-cta-box {
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 0;
  text-align: center;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.about-cta-box h2,
.about-cta-box .cta-title {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-box .about-cta-line-2 {
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
}

.about-cta-box p {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 620px;
  line-height: 1.6;
  font-size: 1.02rem;
  font-weight: 400;
}

.about-cta-box .btn-cta {
  background: linear-gradient(135deg, #ff967e 0%, #fe7e61 52%, #f36c53 100%);
  border: 0;
  margin-top: 28px;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.about-cta-box .btn-cta:hover,
.about-cta-box .btn-cta:focus {
  background: linear-gradient(135deg, #ffa089 0%, #ff8b72 55%, #fb775d 100%);
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  filter: saturate(1.03);
}

.about-hero-link:focus-visible,
.about-method-link:focus-visible,
.about-cta-box .btn-cta:focus-visible {
  outline: 2px solid rgba(255, 127, 97, 0.75);
  outline-offset: 2px;
}

.about-cta-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-cta-box h2,
.about-cta-box p,
.about-cta-box .btn-cta,
.about-cta-note {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.about-cta-section.is-visible .about-cta-box h2,
.about-cta-section.is-visible .about-cta-box p,
.about-cta-section.is-visible .about-cta-box .btn-cta,
.about-cta-section.is-visible .about-cta-note {
  opacity: 1;
  transform: translateY(0);
}

.about-cta-section.is-visible .about-cta-box .btn-cta {
  transition-delay: 0.08s;
}

@media (max-width: 1199.98px) {
  .about-hero-layout,
  .about-lens-layout {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 72px 0;
  }

  .about-title {
    max-width: 22ch;
  }

  .about-hero-quote {
    max-width: 500px;
    font-size: 0.94rem;
  }

  .about-hero-media {
    width: min(410px, 100%);
    max-width: min(410px, 100%);
    right: 0;
    top: 0;
    transform: rotate(45deg);
  }

  .about-hero-media-wrap {
    margin-right: 0;
    padding-left: 0;
    padding-right: 10px;
  }

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

  .about-team-grid {
    --team-grid-gap: 1.05rem;
    gap: 1.12rem;
  }

  .about-team-row-top,
  .about-team-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .about-lens-layout {
    --bs-gutter-x: 36px;
    --bs-gutter-y: 1rem;
  }

  .about-lens-vision-card,
  .about-lens-principles-wrap {
    max-width: 840px;
  }

  .about-lens-principles-wrap {
    margin-left: -16px;
    padding-left: 24px;
  }
}

@media (max-width: 991.98px) {
  .about-vision-layout {
    grid-template-columns: 1fr;
  }

  .about-method-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 2.3rem;
  }

  .about-method-title h2 {
    max-width: 24ch;
  }

  .about-method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 36px;
    padding: 0;
  }

  .about-method-step {
    min-height: 0;
    padding: 0;
  }

  .about-method-step:nth-child(1),
  .about-method-step:nth-child(2),
  .about-method-step:nth-child(3),
  .about-method-step:nth-child(4) {
    z-index: 1;
  }

  .about-team-grid {
    --team-grid-gap: 1rem;
    gap: 1rem;
  }

  .about-trust-logos {
    gap: 18px 24px;
    padding: 28px;
  }

  .about-trust-section,
  .section-trust {
    padding-top: 64px;
    padding-bottom: 64px;
    margin-top: 28px;
  }

  .about-trust-logos,
  .trust-wrapper,
  .logo-row {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .about-trust-logo {
    width: calc(50% - 12px);
    max-width: 240px;
    flex: 0 0 calc(50% - 12px);
  }

  .about-vision-section {
    padding: 72px 0;
  }

  .about-vision-intro {
    position: static;
    max-width: 100%;
  }

  .about-vision-items {
    margin-top: 0.6rem;
  }

  .about-vision-item {
    margin-bottom: 42px;
  }

  .about-vision-item-featured {
    margin-bottom: 48px;
  }

  .about-hero {
    padding: 72px 0;
  }

  .about-hero-content {
    max-width: 700px;
  }

  .about-hero-media-wrap {
    justify-content: center;
    transform: translateX(0);
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero-media {
    width: min(360px, 100%);
    max-width: min(360px, 100%);
    right: 0;
    top: 0;
    transform: rotate(45deg);
    animation: none;
  }

  .hero-diamond-wrap::after {
    width: 220px;
    height: 220px;
    right: 8px;
    top: 34px;
    filter: blur(10px);
  }

  .about-lens-layout {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 1rem;
  }

  .about-lens-layout::after {
    content: none;
  }

  .about-lens-principles-wrap {
    margin-left: 0;
    padding: 8px 0 0;
  }

  .about-lens-principles-intro {
    max-width: 46ch;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    overflow: hidden;
  }

  .about-method-flow {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 0 0 24px;
  }

  .about-method-flow::before {
    top: 0;
    bottom: 0;
    left: 22px;
    right: auto;
    width: 1px;
    height: auto;
    transform: none;
  }

  .about-method-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    gap: 0;
    min-height: auto;
    padding: 0;
    margin-left: 0;
  }

  .about-method-step-content h3 {
    margin: 2px 0 8px;
    font-size: 1.02rem;
    max-width: 100%;
  }

  .about-method-step-content p {
    font-size: 0.94rem;
    max-width: 100%;
  }

  .about-hero {
    padding: 48px 0 56px;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero-quote {
    margin-bottom: 12px;
    font-size: 0.88rem;
    max-width: 100%;
    padding-left: 10px;
  }

  .about-title {
    max-width: 20ch;
  }

  .about-intro {
    max-width: 100%;
    font-size: 1rem;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .about-hero-media-wrap {
    margin-top: 10px;
    justify-content: center;
    margin-right: 0;
  }

  .about-hero-media-wrap::before {
    content: none;
  }

  .hero-diamond-wrap::after {
    width: 170px;
    height: 170px;
    right: auto;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
    filter: blur(9px);
  }

  .about-hero-media-diamond {
    display: none;
  }

  .about-hero-media {
    width: min(280px, 78vw);
    max-width: min(280px, 78vw);
    border-radius: 22px;
    right: 0;
    top: 0;
    aspect-ratio: 1 / 1;
    transform: rotate(45deg);
    animation: none;
    box-shadow: 0 18px 40px rgba(13, 39, 80, 0.12), 0 6px 14px rgba(13, 39, 80, 0.06);
  }

  .about-hero-media img {
    width: 140%;
    height: 140%;
    transform: rotate(-45deg) scale(1.08);
    animation: aboutHeroImageZoomDiamond 1.1s ease-out 0.14s forwards;
  }

  .about-vision-items {
    border-left: 0;
    padding-left: 0;
    margin-top: 0.2rem;
  }

  .about-vision-items::before {
    content: none;
  }

  .about-vision-item {
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-bottom: 32px;
  }

  .about-vision-item-icon {
    width: 48px;
    height: 48px;
  }

  .about-lens-section {
    padding-top: 3.4rem;
    padding-bottom: 3.6rem;
  }

  .about-vision-section {
    padding: 64px 0;
  }

  .about-lens-vision-card,
  .about-lens-principles-wrap {
    border-radius: 18px;
    padding: 1.1rem 1rem;
  }

  .about-lens-principles-wrap {
    margin-left: 0;
    padding: 0.4rem 0 0;
  }

  .about-lens-vision-card h2 {
    max-width: 100%;
  }

  .about-lens-principles {
    margin-top: 0.9rem;
  }

  .about-lens-principle {
    gap: 12px;
    padding: 0.86rem 0.06rem 0.86rem 0;
    margin-bottom: 32px;
  }

  .about-lens-principle-content h4 {
    font-size: 0.97rem;
  }

  .about-values-grid,
  .about-team-row-top,
  .about-team-row-bottom {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    min-height: auto;
  }

  .about-team-photo {
    aspect-ratio: 4 / 5;
  }

  .about-team-meta {
    padding: 1rem 0.96rem 1.08rem;
  }

  .about-team-badges {
    margin-top: 0.62rem;
    gap: 0.42rem;
  }

  .about-trust-logos {
    padding: 20px 14px;
    gap: 16px;
  }

  .about-trust-section,
  .section-trust {
    padding-top: 52px;
    padding-bottom: 52px;
    margin-top: 20px;
  }

  .about-trust-logos,
  .trust-wrapper,
  .logo-row {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .about-trust-logo {
    width: 100%;
    max-width: 240px;
    flex: 0 0 100%;
  }

  .about-cta-section {
    margin-top: 0.8rem;
  }
}

/* Partnerplan Page */
.partnerplan-page {
  background: #f7f4ec;
}

.partner-hero-wrap {
  background: linear-gradient(180deg, #f1eadb 0%, #f7f3ea 72%, #f7f4ec 100%);
}

.partner-hero {
  padding: clamp(3rem, 6vw, 5.2rem) 0 clamp(3.4rem, 6.5vw, 5.6rem);
  position: relative;
  overflow: hidden;
}

.partner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(18, 63, 140, 0.09) 0%, rgba(18, 63, 140, 0) 42%),
    radial-gradient(circle at 88% 86%, rgba(255, 127, 97, 0.12) 0%, rgba(255, 127, 97, 0) 46%);
  pointer-events: none;
}

.partner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(1.8rem, 4.2vw, 4rem);
  align-items: center;
}

.partner-eyebrow {
  margin: 0 0 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: partnerHeroIn 0.55s ease-out 0.05s forwards;
}

.partner-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 140, 0.14);
  background: rgba(18, 63, 140, 0.045);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(18, 63, 140, 0.78);
}

.partner-hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: var(--type-h1-weight);
  line-height: 1.08;
  color: #123f8c;
  max-width: 14ch;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(12px);
  animation: partnerHeroIn 0.62s ease-out 0.16s forwards;
}

.partner-hero-intro {
  margin: 1.28rem 0 0;
  font-size: clamp(1.02rem, 1.05vw, 1.16rem);
  line-height: 1.8;
  font-weight: var(--type-body-lg-weight);
  color: rgba(36, 50, 74, 0.78);
  max-width: 52ch;
  opacity: 0;
  transform: translateY(12px);
  animation: partnerHeroIn 0.62s ease-out 0.24s forwards;
}

.partner-trust-bullets {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
  max-width: 54ch;
  opacity: 0;
  transform: translateY(12px);
  animation: partnerHeroIn 0.62s ease-out 0.32s forwards;
}

.partner-trust-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.64rem;
  color: rgba(18, 63, 140, 0.9);
  font-size: 0.98rem;
  line-height: 1.58;
  font-weight: 500;
}

.partner-trust-bullets li::before {
  content: "âœ“";
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 127, 97, 0.14);
  color: #ff7f61;
  box-shadow: 0 0 0 1px rgba(255, 127, 97, 0.24) inset;
  display: inline-grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.partner-hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem 1.35rem;
  opacity: 0;
  transform: translateY(12px);
  animation: partnerHeroIn 0.62s ease-out 0.4s forwards;
}

.partner-cta-primary {
  padding: 0.86rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(254, 126, 97, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.09) inset;
}

.partner-cta-primary:hover,
.partner-cta-primary:focus {
  box-shadow: 0 20px 34px rgba(254, 126, 97, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.partner-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--type-link-size);
  font-weight: var(--type-link-weight);
  line-height: var(--type-link-line);
  color: #123f8c;
  text-decoration: none;
  opacity: 0.9;
}

.partner-link-secondary:hover {
  color: #ff7f61;
  opacity: 1;
}

.partner-hero-media-wrap {
  position: relative;
  min-width: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: partnerHeroIn 0.68s ease-out 0.2s forwards;
}

.partner-hero-media-glow {
  position: absolute;
  width: 82%;
  height: 86%;
  right: -7%;
  top: -7%;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(255, 127, 97, 0.22) 0%, rgba(255, 127, 97, 0) 72%);
  pointer-events: none;
}

.partner-hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 140, 0.14);
  box-shadow: 0 30px 56px rgba(14, 40, 92, 0.16);
  min-height: clamp(340px, 40vw, 500px);
  aspect-ratio: 11 / 10;
  background: #e8eef7;
}

.partner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.045);
  transition: transform 0.7s ease;
}

.partner-hero-media:hover img {
  transform: scale(1.075);
}

.partner-floating-card {
  position: absolute;
  right: 0.95rem;
  bottom: 0.95rem;
  margin: 0;
  width: min(255px, calc(100% - 1.9rem));
  background: rgba(252, 251, 248, 0.94);
  border: 1px solid rgba(18, 63, 140, 0.17);
  border-radius: 12px;
  padding: 0.7rem 0.78rem;
  box-shadow: 0 12px 22px rgba(10, 28, 66, 0.14);
  backdrop-filter: blur(6px);
}

.partner-floating-kicker {
  margin: 0 0 0.24rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: var(--type-eyebrow-line);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 63, 140, 0.76);
}

.partner-floating-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ff7f61;
  box-shadow: 0 0 0 3px rgba(255, 127, 97, 0.18);
}

.partner-floating-card p {
  margin: 0;
  color: rgba(36, 50, 74, 0.8);
  font-size: var(--type-body-sm-size);
  line-height: 1.5;
}

@keyframes partnerHeroIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-contrast-section,
.partner-what-section,
.partner-offers-section,
.partner-expect-section,
.partner-process-section {
  padding: clamp(4rem, 7vw, 5.8rem) 0;
}

.partner-section-head h2 {
  margin: 0;
  color: #123f8c;
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
}

.partner-section-head-centered {
  margin: 0 auto;
  text-align: center;
  max-width: 74ch;
}

.partner-section-head-centered p {
  margin: 0.9rem 0 0;
  color: rgba(36, 50, 74, 0.74);
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
}

.partner-contrast-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.partner-contrast-card {
  border-radius: var(--radius-card-lg);
  padding: 1.5rem 1.35rem 1.38rem;
  box-shadow: var(--shadow-card-soft);
}

.partner-contrast-card h3 {
  margin: 0;
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
}

.partner-contrast-card ul {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.partner-contrast-card li {
  display: flex;
  gap: 0.52rem;
  align-items: flex-start;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.partner-contrast-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.5rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.partner-contrast-card-light {
  background: #fffdf9;
  border: 1px solid rgba(18, 63, 140, 0.13);
}

.partner-contrast-card-light h3 {
  color: #123f8c;
}

.partner-contrast-card-light li {
  color: rgba(36, 50, 74, 0.78);
}

.partner-contrast-card-light li::before {
  background: rgba(18, 63, 140, 0.38);
}

.partner-contrast-card-strong {
  background: linear-gradient(140deg, #123f8c 0%, #1a52b0 100%);
  border: 1px solid rgba(18, 63, 140, 0.48);
}

.partner-contrast-card-strong h3,
.partner-contrast-card-strong li {
  color: #ffffff;
}

.partner-contrast-card-strong li::before {
  background: rgba(255, 255, 255, 0.86);
}

.partner-what-section {
  background: #fffdf8;
}

.partner-what-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.partner-what-copy h2 {
  margin: 0;
  color: #123f8c;
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  font-weight: var(--type-h2-weight);
  max-width: 24ch;
}

.partner-what-copy p {
  margin: 1rem 0 0;
  color: rgba(36, 50, 74, 0.78);
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
  max-width: 58ch;
}

.partner-simple-bullets {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.64rem;
}

.partner-simple-bullets li {
  display: flex;
  gap: 0.56rem;
  color: rgba(18, 63, 140, 0.9);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.partner-simple-bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 140, 0.28);
  background: radial-gradient(circle at 50% 50%, rgba(255, 127, 97, 0.38) 0%, rgba(255, 127, 97, 0.18) 38%, rgba(255, 127, 97, 0) 64%);
  flex: 0 0 auto;
}

.partner-what-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 140, 0.12);
  box-shadow: var(--shadow-card-soft);
  min-height: clamp(280px, 34vw, 420px);
}

.partner-what-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-offers-section {
  background: #f7f4ec;
}

.partner-offer {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.15rem;
  padding: 1.12rem;
  border-radius: 22px;
  border: 1px solid rgba(18, 63, 140, 0.14);
  background: linear-gradient(160deg, #fffefa 0%, #f8fbff 100%);
  box-shadow: 0 18px 34px rgba(14, 40, 92, 0.09);
}

.partner-offer-content {
  padding: 0.3rem 0.32rem 0.3rem 0.24rem;
}

.partner-offer-pretitle {
  margin: 0;
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  line-height: var(--type-eyebrow-line);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 63, 140, 0.62);
}

.partner-offer-title-row {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  align-items: center;
}

.partner-offer-title-row h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.2;
  color: #123f8c;
  font-weight: 800;
}

.partner-offer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8f75 0%, #fe7e61 100%);
}

.partner-offer-content > p {
  margin: 0.72rem 0 0;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: rgba(36, 50, 74, 0.76);
}

.partner-offer-content ul {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.partner-offer-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.54rem;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: rgba(18, 63, 140, 0.88);
}

.partner-offer-content li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--back-orange);
  box-shadow: 0 0 0 3px rgba(255, 127, 97, 0.12);
  flex: 0 0 auto;
}

.partner-offer-media {
  border-radius: 16px;
  overflow: hidden;
  min-height: clamp(220px, 28vw, 320px);
}

.partner-offer-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.partner-expect-section {
  background: #fffdf8;
}

.partner-expect-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.partner-expect-item {
  padding: 1.05rem 1rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(18, 63, 140, 0.12);
  background: #fffdf9;
  box-shadow: 0 12px 24px rgba(14, 40, 92, 0.06);
  display: grid;
  gap: 0.62rem;
  align-content: start;
}

.partner-expect-icon {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 140, 0.14);
  background: rgba(18, 63, 140, 0.04);
  display: inline-grid;
  place-items: center;
}

.partner-expect-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: #123f8c;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-expect-item h3 {
  margin: 0;
  color: #123f8c;
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-line);
}

.partner-process-section {
  background: #f7f4ec;
}

.partner-accordion {
  margin-top: 1.5rem;
}

.partner-accordion .accordion-item {
  border: 1px solid rgba(18, 63, 140, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: #fffdf9;
  box-shadow: 0 10px 22px rgba(14, 40, 92, 0.05);
}

.partner-accordion .accordion-item + .accordion-item {
  margin-top: 0.75rem;
}

.partner-accordion .accordion-button {
  background: #fffdf9;
  color: #123f8c;
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-line);
  padding: 1rem 1.1rem;
  gap: 0.55rem;
}

.partner-accordion .accordion-button:not(.collapsed) {
  background: rgba(18, 63, 140, 0.05);
  color: #123f8c;
  box-shadow: none;
}

.partner-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(18, 63, 140, 0.12);
}

.partner-step-no {
  color: rgba(255, 127, 97, 0.96);
  font-weight: 800;
}

.partner-accordion .accordion-body {
  padding: 0.2rem 1.1rem 1rem;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: rgba(36, 50, 74, 0.8);
}

.partner-final-cta {
  background: linear-gradient(135deg, #123f8c 0%, #1a52b0 100%);
  position: relative;
  overflow: hidden;
}

.partner-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 46%);
  pointer-events: none;
}

.partner-final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: clamp(3.3rem, 6.8vw, 5rem) 0;
}

.partner-final-cta-inner h2 {
  margin: 0;
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
}

.partner-final-cta-inner > p {
  margin: 0.95rem auto 1.5rem;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
}

.partner-final-note {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--type-body-sm-size);
  line-height: var(--type-body-sm-line);
}

@media (max-width: 1199.98px) {
  .partner-hero-grid,
  .partner-what-grid,
  .partner-offer {
    grid-template-columns: 1fr;
  }

  .partner-hero-media,
  .partner-what-media {
    min-height: clamp(280px, 48vw, 400px);
  }

  .partner-hero-media-wrap {
    max-width: 720px;
  }

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

@media (max-width: 991.98px) {
  .partner-contrast-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .partner-hero {
    padding-top: 1.45rem;
    padding-bottom: 2.9rem;
  }

  .partner-hero-title {
    max-width: 15ch;
    line-height: 1.1;
  }

  .partner-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .partner-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .partner-link-secondary {
    width: 100%;
    justify-content: center;
  }

  .partner-trust-bullets {
    gap: 0.58rem;
  }

  .partner-trust-bullets li {
    font-size: 0.94rem;
  }

  .partner-hero-media {
    border-radius: 20px;
    min-height: clamp(240px, 70vw, 320px);
  }

  .partner-floating-card {
    width: min(236px, calc(100% - 1.5rem));
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .partner-expect-grid {
    grid-template-columns: 1fr;
  }

  .partner-offer {
    padding: 0.92rem;
    border-radius: var(--radius-card);
  }
}

.services-training-section {
  position: relative;
  background: linear-gradient(135deg, #1d49a5 0%, #1f4fb4 100%);
  padding: 88px 0 96px;
  overflow: hidden;
}

.services-training-section .services-training-shell {
  position: relative;
  z-index: 2;
}

.services-training-section .services-training-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 46px;
  position: relative;
  z-index: 2;
}

.services-training-section .services-training-intro::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.15);
  transform: translateX(-50%);
  pointer-events: none;
}

.services-training-section .services-heading-group {
  max-width: 420px;
}

.services-training-section .section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.78);
}

.services-training-section h2 {
  margin: 0 0 14px;
  max-width: none;
  font-size: clamp(2rem, 2.4vw, 2.85rem);
  line-height: 0.98;
  color: #ffffff;
}

.services-training-section .services-heading-sub {
  margin: 0;
  max-width: 24ch;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.services-training-section .services-training-intro-right {
  padding-left: 28px;
}

.services-training-section .services-training-intro-right p {
  margin: 0 0 18px;
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.88);
}

.services-training-section .services-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  padding-bottom: 4px;
  transition: border-color .25s ease, opacity .25s ease;
}

.services-training-section .services-inline-link:hover {
  opacity: 1;
  border-color: rgba(255,255,255,0.65);
}

.services-training-section .services-training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.services-training-section .services-panel {
  position: relative;
  border-radius: 30px;
  padding: 32px 30px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
  min-height: 100%;
}

.services-training-section .services-panel-primary {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}

.services-training-section .services-panel-secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.services-training-section .services-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.services-training-section .services-panel-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.78);
}

.services-training-section .services-panel-diamond {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-radius: 3px;
  background: rgba(255,255,255,0.72);
}

.services-training-section .services-list {
  display: flex;
  flex-direction: column;
}

.services-training-section .services-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(255,255,255,0.10);
  transition: padding-left .25s ease, border-color .25s ease, transform .25s ease;
}

.services-training-section .services-list-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.services-training-section .services-list-item:hover {
  padding-left: 10px;
  border-color: rgba(255,255,255,0.20);
}

.services-training-section .services-list-copy h3 {
  margin: 0 0 7px;
  font-size: 1.1rem;
  line-height: 1.22;
  color: #ffffff;
}

.services-training-section .services-list-copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.82);
}

.services-training-section .services-list-arrow {
  font-size: 1rem;
  line-height: 1;
  color: rgba(255,255,255,0.72);
  transition: transform .25s ease, color .25s ease;
  margin-top: 2px;
}

.services-training-section .services-list-item:hover .services-list-arrow {
  transform: translateX(4px);
  color: #ffffff;
}

.services-training-section .services-training-footer {
  text-align: center;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.services-training-section .services-training-footer p {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.70);
}

.services-training-section .services-training-bg-diamond {
  position: absolute;
  transform: rotate(45deg);
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
}

.cta-section .cta-shape {
  position: absolute;
  width: 260px;
  height: 260px;
  transform: rotate(45deg);
  border-radius: 30px;
  background: rgba(255,255,255,0.03);
  filter: blur(2px);
  pointer-events: none;
  z-index: 1;
}

.cta-section .cta-shape-1 {
  top: -60px;
  right: 80px;
  opacity: 0.5;
}

.cta-section .cta-shape-2 {
  bottom: -80px;
  left: 120px;
  width: 180px;
  height: 180px;
  opacity: 0.3;
}

.services-training-section .services-training-bg-diamond-one {
  top: 76px;
  right: 4%;
  width: 170px;
  height: 170px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.services-training-section .services-training-bg-diamond-two {
  left: -26px;
  bottom: 18px;
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.services-training-section .services-training-bg-diamond-three {
  left: 18%;
  top: 58%;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 991.98px) {
  .services-training-section {
    padding: 76px 0 82px;
  }

  .services-training-section .services-training-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .services-training-section .services-training-intro::after {
    display: none;
  }

  .services-training-section .services-training-intro-right {
    padding-left: 0;
    border-left: 0;
  }

  .services-training-section h2 {
    max-width: 11ch;
    margin-bottom: 10px;
  }

  .services-training-section .services-heading-group {
    max-width: 100%;
  }

  .services-training-section .services-heading-sub {
    max-width: 18ch;
    font-size: 1rem;
    line-height: 1.24;
  }

  .services-training-section .services-training-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-training-section .services-panel {
    padding: 24px 22px 14px;
    border-radius: 22px;
  }

  .services-training-section .services-training-bg-diamond-one {
    width: 92px;
    height: 92px;
    top: auto;
    bottom: 20px;
    right: 14px;
  }

  .services-training-section .services-training-bg-diamond-two {
    width: 56px;
    height: 56px;
    left: 10px;
    top: 18px;
    bottom: auto;
  }

  .services-training-section .services-training-bg-diamond-three {
    display: none;
  }
}

.reintegration-focus-section {
  position: relative;
  padding: 96px 0;
  background: #f6f7fb;
}

.reintegration-focus-section .reintegration-focus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.reintegration-focus-section .section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: rgba(22, 60, 143, 0.72);
}

.reintegration-focus-section h2 {
  margin: 0 0 20px;
  max-width: 100%;
  font-size: clamp(2.2rem, 2.8vw, 3.2rem);
  line-height: 1.05;
  color: #163c8f;
}

.reintegration-focus-section .reintegration-focus-intro {
  margin: 0 0 32px;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(23, 39, 76, 0.84);
}

.reintegration-focus-section .reintegration-info-card {
  position: relative;
  overflow: visible;
  margin-top: 12px;
  max-width: 520px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(22, 60, 143, 0.07);
  box-shadow: 0 12px 34px rgba(21, 43, 92, 0.05);
  padding: 24px 24px 22px;
}

.reintegration-focus-section .reintegration-info-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(133, 196, 188, 0.18);
  transform: rotate(45deg);
  bottom: 10px;
  left: 180px;
  border-radius: 12px;
  filter: none;
  opacity: 0.9;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  z-index: 0;
  pointer-events: none;
}

.reintegration-focus-section .reintegration-info-card > * {
  position: relative;
  z-index: 2;
}

.reintegration-focus-section .reintegration-info-card .btn {
  position: relative;
  z-index: 3;
}

.reintegration-focus-section .reintegration-info-card h3,
.reintegration-focus-section .reintegration-info-card p,
.reintegration-focus-section .reintegration-info-card li {
  position: relative;
  z-index: 2;
}

.reintegration-focus-section .reintegration-info-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.2;
  color: #163c8f;
}

.reintegration-focus-section .reintegration-info-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.reintegration-focus-section .reintegration-info-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(23, 39, 76, 0.84);
}

.reintegration-focus-section .reintegration-info-card .btn {
  margin-top: 10px;
}

.reintegration-focus-section .reintegration-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8a6b;
  transform: translateY(-50%);
}

.reintegration-focus-section .reintegration-video-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.reintegration-focus-section .motion-visual-card {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  border-radius: 30px;
  overflow: hidden;
  min-height: 100%;
  background: #dcdfe6;
  box-shadow: 0 18px 48px rgba(19, 42, 92, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.reintegration-focus-section .motion-visual-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(20, 44, 95, 0.10);
}

.reintegration-focus-section .motion-visual-media {
  position: relative;
  aspect-ratio: 4 / 4.5;
}

.reintegration-focus-section .motion-visual-media img,
.reintegration-focus-section .motion-visual-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reintegration-focus-section .motion-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 42, 94, 0.22) 0%,
    rgba(18, 42, 94, 0.04) 48%,
    rgba(18, 42, 94, 0.06) 100%
  );
  pointer-events: none;
}

.reintegration-focus-section .motion-visual-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  z-index: 2;
}

.reintegration-focus-section .motion-visual-caption p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}

.reintegration-focus-section .reintegration-soft-accent {
  display: none;
}

.reintegration-focus-section .reintegration-focus-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reintegration-focus-section .reintegration-bg-diamond {
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 140px;
  height: 140px;
  transform: rotate(45deg);
  border-radius: 28px;
  background: rgba(22, 60, 143, 0.04);
  pointer-events: none;
  z-index: 0;
}

.reintegration-focus-section .container,
.reintegration-focus-section .reintegration-focus-layout,
.reintegration-focus-section .reintegration-focus-content,
.reintegration-focus-section .reintegration-video-wrap {
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .reintegration-focus-section {
    padding: 76px 0;
  }

.reintegration-focus-section .reintegration-focus-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reintegration-focus-section h2 {
    max-width: 10ch;
  }

  .reintegration-focus-section .reintegration-info-card {
    max-width: 100%;
  }

  .reintegration-focus-section .motion-visual-media {
    aspect-ratio: 16 / 11;
  }

  .reintegration-focus-section .motion-visual-caption p {
    max-width: 100%;
    font-size: 0.84rem;
  }

  .reintegration-focus-section .reintegration-soft-accent {
    display: none;
  }

  .reintegration-focus-section .reintegration-bg-diamond {
    display: none;
  }
}

@media (max-width: 768px) {
  .reintegration-focus-section h2 br {
    display: none;
  }
}
/* === TYPOGRAPHY SCALE SYSTEM (GLOBAL) === */
:root {
  --text-display: clamp(3rem, 5vw, 5rem);
  --text-h1: clamp(2.35rem, 4vw, 4.1rem);
  --text-h2: clamp(2rem, 3vw, 3rem);
  --text-h3: clamp(1.45rem, 2vw, 1.9rem);
  --text-h4: 1.125rem;
  --text-subtitle: 1.125rem;
  --text-body: 1rem;
  --text-small: 0.92rem;
  --text-label: 0.78rem;

  --lh-display: 0.95;
  --lh-h1: 1.02;
  --lh-h2: 1.08;
  --lh-h3: 1.2;
  --lh-h4: 1.3;
  --lh-subtitle: 1.55;
  --lh-body: 1.7;
  --lh-small: 1.55;

  --weight-display: 700;
  --weight-heading: 700;
  --weight-subtitle: 400;
  --weight-body: 400;
  --weight-label: 700;

  /* Backward-compatible mappings */
  --type-h1-size: var(--text-h1);
  --type-h1-weight: var(--weight-heading);
  --type-h1-line: var(--lh-h1);
  --type-h2-size: var(--text-h2);
  --type-h2-weight: var(--weight-heading);
  --type-h2-line: var(--lh-h2);
  --type-h3-size: var(--text-h3);
  --type-h3-weight: var(--weight-heading);
  --type-h3-line: var(--lh-h3);
  --type-h4-size: var(--text-h4);
  --type-h4-weight: 600;
  --type-h4-line: var(--lh-h4);
  --type-eyebrow-size: var(--text-label);
  --type-eyebrow-weight: var(--weight-label);
  --type-eyebrow-line: 1.2;
  --type-body-lg-size: var(--text-subtitle);
  --type-body-lg-weight: var(--weight-subtitle);
  --type-body-lg-line: var(--lh-subtitle);
  --type-body-size: var(--text-body);
  --type-body-weight: var(--weight-body);
  --type-body-line: var(--lh-body);
  --type-body-sm-size: var(--text-small);
  --type-body-sm-weight: var(--weight-body);
  --type-body-sm-line: var(--lh-small);
  --type-footer-link-size: var(--text-body);
  --type-footer-link-weight: var(--weight-body);
  --type-footer-link-line: var(--lh-body);
}

body {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: var(--weight-body);
}

.text-display,
.hero-title {
  font-size: var(--text-display);
  line-height: var(--lh-display);
  font-weight: var(--weight-display);
  letter-spacing: -0.02em;
}

.text-h1,
.section-title-xl {
  font-size: var(--text-h1);
  line-height: var(--lh-h1);
  font-weight: var(--weight-heading);
  letter-spacing: -0.02em;
}

.text-h2,
.section-title,
.impact-section h2,
.services-training-section h2,
.reintegration-focus-section h2,
.cta-section h2 {
  font-size: var(--text-h2);
  line-height: var(--lh-h2);
  font-weight: var(--weight-heading);
  letter-spacing: -0.02em;
}

.text-h3,
.card-title,
.services-training-section .services-list-copy h3 {
  font-size: var(--text-h3);
  line-height: var(--lh-h3);
  font-weight: var(--weight-heading);
  letter-spacing: -0.01em;
}

.text-h4,
.footer-title,
.list-title,
.reintegration-focus-section .reintegration-info-card h3,
.footer .footer-col h4,
.footer h4 {
  font-size: var(--text-h4);
  line-height: var(--lh-h4);
  font-weight: 600;
}

.text-subtitle,
.section-subtitle,
.hero-copy,
.services-training-section .services-heading-sub,
.services-training-section .services-training-intro-right p,
.reintegration-focus-section .reintegration-focus-intro,
.cta-section p {
  font-size: var(--text-subtitle);
  line-height: var(--lh-subtitle);
  font-weight: var(--weight-subtitle);
}

.text-body,
.body-copy,
.footer .footer-col a,
.footer .footer-contact a,
.services-training-section .services-list-copy p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: var(--weight-body);
}

.text-small,
.small-copy,
.footer .footer-right div,
.impact-copy,
.reintegration-focus-section .reintegration-info-card li,
.services-training-section .services-training-footer p {
  font-size: var(--text-small);
  line-height: var(--lh-small);
  font-weight: var(--weight-body);
}

.text-label,
.services-training-section .services-panel-label {
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(33, 53, 95, 0.45);
  opacity: 1;
  margin-bottom: 12px;
}

.section-eyebrow--accent {
  color: rgba(127, 147, 193, 0.75);
}

.section-eyebrow.about-section-eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.text-on-dark {
  color: rgba(255, 255, 255, 0.92);
}

.text-on-dark-muted,
.impact-copy,
.services-training-section .services-heading-sub,
.services-training-section .services-training-intro-right p,
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading-stack > .section-kicker {
  margin-bottom: 12px;
}

.section-heading-stack > .section-title,
.section-heading-stack > .section-title-xl,
.section-heading-stack > .hero-title {
  margin-bottom: 16px;
}

.section-heading-stack > .section-subtitle {
  margin-bottom: 0;
}

/* Legacy section headings aligned to new rhythm */
.hero-title,
.impact-section h2,
.services-training-section h2,
.reintegration-focus-section h2,
.cta-section h2 {
  margin-bottom: 16px;
}

.hero-copy,
.impact-copy,
.reintegration-focus-section .reintegration-focus-intro,
.cta-section p {
  margin-bottom: 24px;
}

@media (max-width: 991.98px) {
  :root {
    --text-display: 2.5rem;
    --text-h1: 2.1rem;
    --text-h2: 1.8rem;
    --text-h3: 1.3rem;
    --text-subtitle: 1.02rem;
    --text-body: 0.98rem;
    --text-small: 0.88rem;
    --text-label: 0.74rem;
  }
}

/* === TYPOGRAPHY SCALE REFINEMENT === */
:root {
  /* Hero blijft sterk */
  --text-display: clamp(2.8rem, 4.5vw, 4.5rem);
  /* Secties compacter */
  --text-h1: clamp(2.1rem, 3vw, 3rem);
  --text-h2: clamp(1.8rem, 2.5vw, 2.4rem);
  /* Cards compacter */
  --text-h3: 1.25rem;
  /* Subtitles en body rustiger */
  --text-subtitle: 1.05rem;
  --text-body: 0.95rem;
}

.section-title-xl {
  font-size: var(--text-h1);
}

.section-title {
  font-size: var(--text-h2);
}

.cta-section .section-title {
  font-size: var(--text-h2);
  max-width: 600px;
  margin: 0 auto;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: var(--text-subtitle);
  opacity: 0.75;
}

.text-on-dark-muted {
  opacity: 0.7;
}

.section-title,
.section-title-xl {
  max-width: 600px;
}

.hero-title {
  line-height: 1.05;
}

/* === VERTICAL SPACING SYSTEM (HOME / ABOUT / CONTACT) === */
:root {
  --section-space-hero: 96px;
  --section-space-standard: 88px;
  --section-space-compact: 64px;
  --section-space-cta: 110px;
}

.section-hero {
  padding-top: var(--section-space-hero);
  padding-bottom: var(--section-space-hero);
}

.section-standard {
  padding-top: var(--section-space-standard);
  padding-bottom: var(--section-space-standard);
}

.section-compact {
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
}

.section-cta {
  padding-top: var(--section-space-cta);
  padding-bottom: var(--section-space-cta);
}

/* Homepage rhythm */
.hero-main {
  padding-top: var(--section-space-hero);
  padding-bottom: var(--section-space-hero);
}

.impact-section,
.pillars-section,
.services-training-section,
.reintegration-focus-section {
  padding-top: var(--section-space-standard);
  padding-bottom: var(--section-space-standard);
}

.logos-section {
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
}

.cta-section {
  padding-top: var(--section-space-cta);
  padding-bottom: var(--section-space-cta);
}

/* About rhythm */
.about-hero {
  padding-top: var(--section-space-hero);
  padding-bottom: var(--section-space-hero);
}

.about-vision-section,
.about-lens-section,
.about-method-section,
.about-team-section {
  padding-top: var(--section-space-standard);
  padding-bottom: var(--section-space-standard);
}

.about-trust-section,
.section-trust {
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
  margin-top: 0;
}

.about-cta-section {
  padding-top: var(--section-space-cta);
  padding-bottom: var(--section-space-cta);
  margin-top: 0;
}

/* Contact rhythm */
.contact-page .contact-hero {
  padding-top: var(--section-space-hero);
  padding-bottom: var(--section-space-hero);
}

.contact-page .contact-main-section {
  padding-top: var(--section-space-standard);
  padding-bottom: var(--section-space-standard);
}

.contact-page .contact-cards-section,
.contact-page .contact-info-cards {
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
  margin-top: 0;
}

/* Remove ad-hoc section margins on contact page */
.contact-page section {
  margin-bottom: 0;
}

/* Internal section rhythm normalization */
.section-eyebrow,
.section-kicker {
  margin-bottom: 10px;
}

.section-title,
.section-title-xl,
.hero-title,
.about-section-head h2,
.contact-page .contact-title {
  margin-bottom: 16px;
}

.section-subtitle,
.hero-copy,
.about-intro,
.contact-page .contact-hero-intro {
  margin-bottom: 28px;
}

.about-section-head {
  margin-bottom: 40px;
}

.contact-page .contact-main-grid {
  margin-top: 40px;
}

/* Tablet */
@media (max-width: 991.98px) {
  :root {
    --section-space-hero: 72px;
    --section-space-standard: 72px;
    --section-space-compact: 56px;
    --section-space-cta: 72px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  :root {
    --section-space-hero: 56px;
    --section-space-standard: 56px;
    --section-space-compact: 44px;
    --section-space-cta: 56px;
  }
}

/* Contact page now follows the shared section spacing system */
.page-contact .site-footer,
.page-contact footer {
  margin-top: 0;
}

/* Over-ons CTA keeps a slightly more generous finale rhythm */
.about-page .about-cta-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

@media (max-width: 991.98px) {
  .about-page .about-cta-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}

@media (max-width: 767.98px) {
  .about-page .about-cta-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .about-cta-box .cta-title {
    max-width: 90%;
  }
}
/* Partnerplan Product Page */
.partnerplan-page {
  background: #fcfbf8;
}

.partnerplan-page .partner-product-header,
.partnerplan-page .partner-product-main {
  background: #fcfbf8;
}

.partnerplan-page .partner-product-hero,
.partnerplan-page .partner-product-pain,
.partnerplan-page .partner-product-solution,
.partnerplan-page .partner-product-trajecten,
.partnerplan-page .partner-product-results,
.partnerplan-page .partner-product-process,
.partnerplan-page .partner-product-trust,
.partnerplan-page .partner-product-final-cta {
  padding: 88px 0;
}

.partnerplan-page .partner-product-hero {
  padding-top: 72px;
}

.partnerplan-page .partner-product-hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 54px;
  align-items: center;
}

.partnerplan-page .partner-product-eyebrow {
  margin-bottom: 14px;
}

.partnerplan-page .partner-product-hero-title {
  margin: 0 0 20px;
  max-width: 14ch;
  color: #163c8f;
}

.partnerplan-page .partner-product-hero-intro {
  margin: 0 0 18px;
  max-width: 52ch;
  font-size: 1.06rem;
  line-height: 1.68;
  color: rgba(23, 39, 76, 0.84);
}

.partnerplan-page .partner-product-hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 9px;
}

.partnerplan-page .partner-product-hero-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(23, 39, 76, 0.9);
  line-height: 1.55;
}

.partnerplan-page .partner-product-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8a6b;
  transform: translateY(-50%);
}

.partnerplan-page .partner-product-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.partnerplan-page .partner-product-hero-actions .btn {
  box-shadow: 0 14px 32px rgba(20, 44, 95, 0.16);
}

.partnerplan-page .partner-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(22, 60, 143, 0.84);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.partnerplan-page .partner-product-link:hover {
  color: #163c8f;
  transform: translateX(2px);
}

.partnerplan-page .partner-product-hero-visual {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.partnerplan-page .partner-product-hero-media {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(22, 60, 143, 0.08);
  box-shadow: 0 26px 64px rgba(20, 44, 95, 0.16);
}

.partnerplan-page .partner-product-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  display: block;
}

.partnerplan-page .partner-product-stat-card {
  position: absolute;
  right: 16px;
  bottom: -20px;
  width: min(270px, 84%);
  border-radius: 18px;
  border: 1px solid rgba(22, 60, 143, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(20, 44, 95, 0.14);
  backdrop-filter: blur(8px);
  padding: 16px 16px 14px;
}

.partnerplan-page .partner-product-stat-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(22, 60, 143, 0.64);
}

.partnerplan-page .partner-product-stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #163c8f;
}

.partnerplan-page .partner-product-stat-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(23, 39, 76, 0.78);
}

.partnerplan-page .partner-product-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.partnerplan-page .partner-product-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.95rem, 2.8vw, 3rem);
  line-height: 1.08;
  color: #163c8f;
}

.partnerplan-page .partner-product-section-head p {
  margin: 0;
  max-width: 62ch;
  color: rgba(23, 39, 76, 0.8);
  line-height: 1.65;
}

.partnerplan-page .partner-product-section-head-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.partnerplan-page .partner-product-section-head-centered p {
  margin-left: auto;
  margin-right: auto;
}

.partnerplan-page .partner-product-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 44px;
}

.partnerplan-page .partner-product-pain-card {
  border-radius: 24px;
  padding: 28px 26px 24px;
  border: 1px solid rgba(22, 60, 143, 0.08);
  background: #ffffff;
}

.partnerplan-page .partner-product-pain-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #163c8f;
}

.partnerplan-page .partner-product-pain-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.partnerplan-page .partner-product-pain-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(23, 39, 76, 0.84);
  line-height: 1.55;
}

.partnerplan-page .partner-product-pain-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.partnerplan-page .partner-product-pain-card.is-negative li::before {
  background: rgba(22, 60, 143, 0.35);
}

.partnerplan-page .partner-product-pain-card.is-negative {
  background: rgba(13, 39, 80, 0.025);
  border: 1px solid rgba(13, 39, 80, 0.05);
  color: rgba(33, 53, 95, 0.6);
}

.partnerplan-page .partner-product-pain-card.is-negative h3 {
  color: rgba(22, 60, 143, 0.82);
}

.partnerplan-page .partner-product-pain-card.is-negative li {
  color: rgba(33, 53, 95, 0.65);
}

.partnerplan-page .partner-product-pain-card.is-positive {
  position: relative;
  background: linear-gradient(135deg, #2f5aa6 0%, #234b8c 100%);
  box-shadow: 0 20px 50px rgba(13, 39, 80, 0.2);
}

.partnerplan-page .partner-product-pain-card.right-card {
  margin-left: -28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.partnerplan-page .partner-product-pain-card.right-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(13, 39, 80, 0.22);
}

.partnerplan-page .recommended-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.partnerplan-page .recommended-pill::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #FF7A5C;
  vertical-align: middle;
}

.partnerplan-page .partner-product-pain-card.is-positive h3::before {
  content: none;
}

.partnerplan-page .partner-product-pain-card.is-positive h3 {
  max-width: 22ch;
}

.partnerplan-page .partner-product-pain-card.is-positive h3,
.partnerplan-page .partner-product-pain-card.is-positive li {
  color: rgba(255, 255, 255, 0.94);
}

.partnerplan-page .partner-product-pain-card.is-positive li::before {
  width: 6px;
  height: 6px;
  background: #FF7A5C;
}

.partnerplan-page .partner-product-pain-card.is-positive ul li {
  margin-bottom: 14px;
}

.partnerplan-page .partner-product-pain-card.is-positive ul li:last-child {
  margin-bottom: 0;
}

.partnerplan-page .partner-product-solution-inner {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(13, 39, 80, 0.04);
  background: linear-gradient(
    to right,
    rgba(13, 39, 80, 0.02),
    rgba(13, 39, 80, 0.04)
  );
  padding: 36px 40px;
  overflow: hidden;
  transition: transform 0.24s ease;
}

.partnerplan-page .partner-product-solution {
  padding: 80px 0;
}

.partnerplan-page .solution-block::after {
  content: none;
  position: absolute;
  width: 200px;
  height: 200px;
  right: 8%;
  top: 30%;
  transform: rotate(45deg);
  background: rgba(13, 39, 80, 0.05);
  border-radius: 20px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.partnerplan-page .solution-title {
  margin: 0 0 12px;
  max-width: 640px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: #163c8f;
}

.partnerplan-page .solution-text {
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
  color: rgba(33, 53, 95, 0.8);
}

.partnerplan-page .solution-side {
  position: relative;
  min-height: 100%;
  z-index: 1;
}

.partnerplan-page .solution-side-card {
  position: absolute;
  right: 12%;
  top: 48%;
  --card-lift: -50%;
  transform: translateY(var(--card-lift));
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(13, 39, 80, 0.14);
  max-width: 280px;
  z-index: 1;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.partnerplan-page .solution-side-card small {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(33, 53, 95, 0.6);
}

.partnerplan-page .solution-side-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 600;
  color: #163c8f;
}

.partnerplan-page .solution-side-card:hover {
  --card-lift: calc(-50% - 4px);
}

.partnerplan-page .solution-cta {
  margin-top: 26px;
}

.partnerplan-page .solution-cta .btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.partnerplan-page .solution-cta .btn:hover,
.partnerplan-page .solution-cta .btn:focus {
  transform: translateY(-2px);
}

.partnerplan-page .solution-block:hover {
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .partnerplan-page .solution-side {
    display: none;
  }

  .partnerplan-page .solution-block::after {
    opacity: 0.03;
  }
}

.partnerplan-page .partner-product-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.partnerplan-page .partner-product-pricing-card {
  border-radius: 26px;
  border: 1px solid rgba(22, 60, 143, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(20, 44, 95, 0.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.partnerplan-page .plan-card:hover {
  transform: translateY(-6px);
}

.partnerplan-page .partner-product-pricing-card.default-card {
  background: rgba(13, 39, 80, 0.03);
  border: 1px solid rgba(13, 39, 80, 0.05);
  opacity: 0.92;
}

.partnerplan-page .partner-product-pricing-card.featured-card {
  transform: scale(1.06);
  background: #ffffff;
  border: 1px solid rgba(255, 122, 92, 0.3);
  box-shadow:
    0 30px 70px rgba(13, 39, 80, 0.15),
    0 0 0 1px rgba(255, 122, 92, 0.2);
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.partnerplan-page .partner-product-pricing-card.featured-card::before {
  display: none;
}

.partnerplan-page .partner-product-pricing-card .featured-badge {
  align-self: flex-start;
  margin-bottom: 10px;
  background: #FF7A5C;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 8px;
}

.partnerplan-page .partner-product-pricing-card.featured-card h3 {
  font-size: 1.15rem;
}

.partnerplan-page .partner-product-plan-name {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(22, 60, 143, 0.65);
  font-weight: 700;
}

.partnerplan-page .partner-product-pricing-card h3 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.3;
  color: #163c8f;
}

.partnerplan-page .partner-product-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}

.partnerplan-page .partner-product-pricing-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(23, 39, 76, 0.84);
  line-height: 1.52;
}

.partnerplan-page .partner-product-pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff8a6b;
  transform: translateY(-50%);
}

.partnerplan-page .partner-product-plan-result {
  margin: auto 0 16px;
  font-weight: 600;
  color: #163c8f;
}

.partnerplan-page .plan-result {
  font-weight: 600;
  margin-top: 16px;
}

.partnerplan-page .partner-product-pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.partnerplan-page .partner-product-pricing-card.featured-card .btn {
  box-shadow: 0 16px 40px rgba(255, 122, 92, 0.35);
}

.partnerplan-page .partner-product-pricing-card.default-card .btn {
  opacity: 0.9;
}

.partnerplan-page .partner-product-pricing-card.featured-card:hover {
  transform: scale(1.06) translateY(-4px);
}

.partnerplan-page .partner-product-results-shell {
  background: rgba(13, 39, 80, 0.02);
  border-radius: 20px;
  padding: 48px;
}

.partnerplan-page .partner-product-results .partner-product-section-head h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partnerplan-page .partner-product-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 42px;
}

.partnerplan-page .partner-product-result-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 0;
}

.partnerplan-page .result-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 39, 80, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partnerplan-page .result-icon svg {
  width: 20px;
  height: 20px;
  stroke: #163c8f;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partnerplan-page .result-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #163c8f;
}

.partnerplan-page .partner-product-result-item p {
  margin: 0;
  color: rgba(23, 39, 76, 0.8);
  line-height: 1.58;
}

.partnerplan-page .partner-product-process {
  background: #f7f8fc;
}

.partnerplan-page .partner-product-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partnerplan-page .partner-product-step {
  border-radius: 20px;
  border: 1px solid rgba(22, 60, 143, 0.08);
  background: #ffffff;
  padding: 22px 20px;
}

.partnerplan-page .partner-product-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 138, 107, 0.16);
  color: #163c8f;
  font-weight: 700;
  margin-bottom: 12px;
}

.partnerplan-page .partner-product-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #163c8f;
}

.partnerplan-page .partner-product-step p {
  margin: 0;
  color: rgba(23, 39, 76, 0.78);
  line-height: 1.58;
}

.partnerplan-page .partner-product-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.partnerplan-page .partner-product-trust {
  padding: 80px 0;
}

.partnerplan-page .partner-product-trust-values {
  border-left: 1px solid rgba(13, 39, 80, 0.08);
  padding-left: 24px;
}

.partnerplan-page .value-item {
  position: relative;
  margin-bottom: 32px;
  max-width: 480px;
}

.partnerplan-page .value-item:last-child {
  margin-bottom: 0;
}

.partnerplan-page .value-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF7A5C;
}

.partnerplan-page .value-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #163c8f;
}

.partnerplan-page .value-item p {
  margin: 0;
  color: rgba(23, 39, 76, 0.8);
  line-height: 1.6;
}

.partnerplan-page .testimonial {
  position: relative;
  margin: 0;
  align-self: start;
  border-radius: 20px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(13, 39, 80, 0.08);
}

.partnerplan-page .testimonial::after {
  content: none;
  position: absolute;
  width: 120px;
  height: 120px;
  right: -20px;
  bottom: -20px;
  transform: rotate(45deg);
  border-radius: 16px;
  background: rgba(13, 39, 80, 0.03);
  z-index: 0;
}

.partnerplan-page .testimonial > * {
  position: relative;
  z-index: 1;
}

.partnerplan-page .partner-product-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(23, 39, 76, 0.84);
}

.partnerplan-page .partner-product-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(23, 39, 76, 0.62);
}

.partnerplan-page .partner-product-final-cta.about-cta-section {
  margin-top: 0;
}

.partnerplan-page .partner-product-final-inner.about-cta-box {
  max-width: 760px;
  margin: 0 auto;
}

.partnerplan-page .partner-product-final-inner .cta-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 1199.98px) {
  .partnerplan-page .partner-product-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partnerplan-page .partner-product-pricing-card.is-featured {
    grid-column: span 2;
  }

  .partnerplan-page .partner-product-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .partnerplan-page .partner-product-hero,
  .partnerplan-page .partner-product-pain,
  .partnerplan-page .partner-product-solution,
  .partnerplan-page .partner-product-trajecten,
  .partnerplan-page .partner-product-results,
  .partnerplan-page .partner-product-process,
  .partnerplan-page .partner-product-trust,
  .partnerplan-page .partner-product-final-cta {
    padding: 72px 0;
  }

  .partnerplan-page .partner-product-hero-grid,
  .partnerplan-page .partner-product-pain-grid,
  .partnerplan-page .partner-product-solution-inner,
  .partnerplan-page .partner-product-trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partnerplan-page .partner-product-hero-title {
    max-width: 12ch;
  }

  .partnerplan-page .partner-product-hero-visual {
    margin: 0;
  }

  .partnerplan-page .partner-product-stat-card {
    right: 12px;
    bottom: 12px;
  }

  .partnerplan-page .partner-product-pricing-grid,
  .partnerplan-page .partner-product-results-grid,
  .partnerplan-page .partner-product-steps {
    grid-template-columns: 1fr;
  }

  .partnerplan-page .partner-product-pricing-card.featured-card {
    order: 1;
    transform: none;
  }

  .partnerplan-page .partner-product-pricing-card:nth-child(2) {
    order: 2;
  }

  .partnerplan-page .partner-product-pricing-card:nth-child(3) {
    order: 3;
  }
}

@media (max-width: 767.98px) {
  .partnerplan-page .partner-product-hero,
  .partnerplan-page .partner-product-pain,
  .partnerplan-page .partner-product-solution,
  .partnerplan-page .partner-product-trajecten,
  .partnerplan-page .partner-product-results,
  .partnerplan-page .partner-product-process,
  .partnerplan-page .partner-product-trust,
  .partnerplan-page .partner-product-final-cta {
    padding: 56px 0;
  }

  .partnerplan-page .partner-product-hero-title {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .partnerplan-page .partner-product-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .partnerplan-page .partner-product-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .partnerplan-page .partner-product-link {
    width: 100%;
    justify-content: center;
  }

  .partnerplan-page .partner-product-solution-inner {
    padding: 24px 20px;
  }
}
/* Partnerplan Hero Refinement */
.partnerplan-page .partner-product-hero {
  padding-top: 88px;
  padding-bottom: 88px;
}

.partnerplan-page .partner-product-hero-row {
  --bs-gutter-x: 2.2rem;
}

.partnerplan-page .partner-product-hero-copy {
  max-width: 620px;
}

.partnerplan-page .partner-product-eyebrow {
  margin-bottom: 12px;
}

.partnerplan-page .partner-product-hero-title {
  max-width: 620px;
  margin-bottom: 20px;
}

.partnerplan-page .partner-product-hero-intro {
  max-width: 560px;
  line-height: 1.66;
  margin-bottom: 22px;
}

.partnerplan-page .partner-product-hero-points {
  gap: 12px;
  margin-bottom: 34px;
}

.partnerplan-page .partner-product-hero-points li {
  padding-left: 22px;
}

.partnerplan-page .partner-product-hero-points li::before {
  width: 7px;
  height: 7px;
}

.partnerplan-page .partner-product-hero-actions {
  gap: 24px;
}

.partnerplan-page .partner-product-hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 560px;
  padding-right: 16px;
}

.partnerplan-page .hero-partnerplan-visual::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 40px;
  top: 42px;
  background: radial-gradient(circle, rgba(236, 229, 221, 0.7) 0%, rgba(236, 229, 221, 0) 70%);
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.partnerplan-page .partner-product-hero-diamond {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  transform: rotate(45deg);
  box-shadow: 0 24px 60px rgba(13, 39, 80, 0.14);
  animation: partnerProductDiamondFloat 8s ease-in-out infinite;
}

.partnerplan-page .partner-product-hero-diamond img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  transform: rotate(-45deg) scale(1.08);
  transform-origin: center;
  margin-left: -20%;
  margin-top: -20%;
  transition: transform 0.35s ease;
}

.partnerplan-page .partner-product-hero-diamond:hover img {
  transform: rotate(-45deg) scale(1.11);
}

.partnerplan-page .partner-product-stat-card {
  z-index: 2;
  max-width: 300px;
  right: -10px;
  bottom: 16px;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(13, 39, 80, 0.12);
}

.partnerplan-page .partner-product-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
}

.partnerplan-page .partner-product-stat-card strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.partnerplan-page .partner-product-stat-card p {
  font-size: 0.88rem;
}

.partnerplan-page .partner-product-hero-copy,
.partnerplan-page .partner-product-hero-visual {
  opacity: 0;
}

.partnerplan-page .partner-product-hero.is-visible .partner-product-hero-copy {
  animation: partnerProductFadeUp 0.62s ease-out 0.08s forwards;
}

.partnerplan-page .partner-product-hero.is-visible .partner-product-hero-visual {
  animation: partnerProductFadeIn 0.72s ease-out 0.18s forwards;
}

@keyframes partnerProductFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes partnerProductFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes partnerProductDiamondFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-5px);
  }
}

@media (max-width: 991.98px) {
  .partnerplan-page .partner-product-hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .partnerplan-page .partner-product-hero-row {
    --bs-gutter-x: 1.5rem;
    row-gap: 30px;
  }

  .partnerplan-page .partner-product-hero-title {
    max-width: 15ch;
  }

  .partnerplan-page .partner-product-hero-visual {
    justify-content: center;
    min-height: 460px;
    padding-right: 0;
  }

  .partnerplan-page .hero-partnerplan-visual::after {
    right: 50%;
    transform: translateX(50%);
    top: 28px;
  }

  .partnerplan-page .partner-product-hero-diamond {
    width: min(390px, 100%);
    animation: none;
  }

  .partnerplan-page .partner-product-stat-card {
    right: 10px;
    bottom: 10px;
    max-width: 280px;
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .partnerplan-page .partner-product-hero {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .partnerplan-page .partner-product-hero-title {
    max-width: 100%;
  }

  .partnerplan-page .partner-product-hero-actions {
    gap: 14px;
  }

  .partnerplan-page .partner-product-hero-visual {
    min-height: auto;
    display: block;
    text-align: center;
  }

  .partnerplan-page .partner-product-hero-diamond {
    width: min(320px, 88vw);
    margin: 0 auto;
  }

  .partnerplan-page .partner-product-stat-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px auto 0;
    max-width: 320px;
    text-align: left;
  }
}

/* Unified Hero Title Standard */
.hero-title {
  font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* Partnerplan Hero Balance Fix */
.partnerplan-page .partner-product-hero-copy {
  max-width: 720px;
}

.partnerplan-page .partner-product-hero .hero-title,
.partnerplan-page .partner-product-hero-title {
  max-width: 720px;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.partnerplan-page .partner-product-hero-visual,
.partnerplan-page .partnerplan-hero-visual {
  transform: translateY(-30px);
}

.partnerplan-page .partner-product-stat-card,
.partnerplan-page .partnerplan-hero-card {
  bottom: 24px;
  right: -8px;
}

@media (max-width: 991.98px) {
  .partnerplan-page .partner-product-hero .hero-title,
  .partnerplan-page .partner-product-hero-title {
    max-width: 18ch;
    font-size: clamp(2.3rem, 5.6vw, 3.6rem);
    line-height: 1.05;
  }

  .partnerplan-page .partner-product-hero-visual,
  .partnerplan-page .partnerplan-hero-visual {
    transform: translateY(-14px);
  }

  .partnerplan-page .partner-product-stat-card,
  .partnerplan-page .partnerplan-hero-card {
    bottom: 20px;
    right: 4px;
  }

  .partnerplan-page .partner-product-pain-card.right-card {
    order: 1;
    margin-left: 0;
  }

  .partnerplan-page .partner-product-pain-card.left-card {
    order: 2;
  }
}

@media (max-width: 767.98px) {
  .partnerplan-page .partner-product-hero .hero-title,
  .partnerplan-page .partner-product-hero-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 9vw, 2.85rem);
    line-height: 1.06;
  }

  .partnerplan-page .partner-product-hero-visual,
  .partnerplan-page .partnerplan-hero-visual {
    transform: none;
  }

  .partnerplan-page .partner-product-stat-card,
  .partnerplan-page .partnerplan-hero-card {
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 991.98px) {
  .partnerplan-page .partner-product-results-shell {
    padding: 34px 24px;
  }
}

@media (max-width: 767.98px) {
  .partnerplan-page .partner-product-results-shell {
    padding: 28px 20px;
  }

  .partnerplan-page .partner-product-results-grid {
    gap: 30px;
  }

  .partnerplan-page .partner-product-result-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Partnerplan Process Flow Redesign */
.partnerplan-page .partner-product-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.partnerplan-page .partner-product-steps .process-line {
  position: absolute;
  top: 20px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(13, 39, 80, 0.1);
  z-index: 0;
}

.partnerplan-page .partner-product-step {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
  border: 0;
  background: transparent;
  padding: 0;
  transition: transform 0.24s ease;
}

.partnerplan-page .partner-product-step:hover {
  transform: translateY(-4px);
}

.partnerplan-page .partner-product-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13, 39, 80, 0.06);
  color: #163c8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 12px;
}

.partnerplan-page .partner-product-step.is-start .step-number,
.partnerplan-page .partner-product-step.is-end .step-number {
  background: rgba(255, 122, 92, 0.2);
}

.partnerplan-page .partner-product-step h3 {
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #163c8f;
}

.partnerplan-page .partner-product-step.is-end h3 {
  color: #123b87;
}

.partnerplan-page .partner-product-step p {
  margin: 0;
  color: rgba(33, 53, 95, 0.75);
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .partnerplan-page .partner-product-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
  }

  .partnerplan-page .partner-product-steps .process-line {
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .partnerplan-page .partner-product-step {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    text-align: left;
  }

  .partnerplan-page .partner-product-step .step-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .partnerplan-page .partner-product-step h3,
  .partnerplan-page .partner-product-step p {
    grid-column: 2;
  }

  .partnerplan-page .partner-product-step h3 {
    margin-top: 2px;
  }
}

/* Final global spacing audit (Home / About / Partnerplan) */
.home-page,
.about-page,
.partnerplan-page {
  --section-space-hero: 96px;
  --section-space-standard: 88px;
  --section-space-compact: 64px;
  --section-space-cta: 110px;
}

/* Contact keeps a dedicated, tighter rhythm */
.contact-page {
  --section-space-hero: 80px;
  --section-space-standard: 72px;
  --section-space-compact: 64px;
  --section-space-cta: 72px;
}

.home-page .section-hero,
.about-page .section-hero,
.partnerplan-page .section-hero,
.contact-page .section-hero {
  padding-top: var(--section-space-hero) !important;
  padding-bottom: var(--section-space-hero) !important;
}

.home-page .section-standard,
.about-page .section-standard,
.partnerplan-page .section-standard,
.contact-page .section-standard {
  padding-top: var(--section-space-standard) !important;
  padding-bottom: var(--section-space-standard) !important;
}

.home-page .section-compact,
.about-page .section-compact,
.partnerplan-page .section-compact,
.contact-page .section-compact {
  padding-top: var(--section-space-compact) !important;
  padding-bottom: var(--section-space-compact) !important;
}

.home-page .section-cta,
.about-page .section-cta,
.partnerplan-page .section-cta,
.contact-page .section-cta {
  padding-top: var(--section-space-cta) !important;
  padding-bottom: var(--section-space-cta) !important;
}

.home-page .section-eyebrow,
.about-page .section-eyebrow,
.partnerplan-page .section-eyebrow,
.contact-page .section-eyebrow {
  margin-bottom: 10px;
}

.home-page .section-title,
.about-page .section-title,
.partnerplan-page .section-title,
.contact-page .section-title {
  margin-bottom: 16px;
}

.home-page .section-subtitle,
.about-page .section-subtitle,
.about-page .section-subtext,
.home-page .section-subtext,
.partnerplan-page .section-subtext,
.contact-page .section-subtitle,
.contact-page .section-subtext {
  margin-bottom: 32px;
}

/* Internal edge-case rhythm alignment */
.home-page .hero-copy {
  margin-bottom: 28px;
}

.about-page .about-section-head {
  margin-bottom: 40px;
}

.about-page .about-section-head > h2 {
  margin-bottom: 16px;
}

.partnerplan-page .partner-product-section-head {
  margin-bottom: 40px;
}

.partnerplan-page .partner-product-section-head > h2 {
  margin-bottom: 16px;
}

.partnerplan-page .partner-product-section-head .section-subtext {
  margin: 0 0 32px;
}

.partnerplan-page .partner-product-pain-grid {
  margin-top: 40px;
}

.partnerplan-page .partner-product-pricing-grid {
  margin-top: 0;
}

/* Partnerplan tightening: Why -> Solution -> Plans */
.partnerplan-page .partner-product-pain.section-standard {
  padding-bottom: 56px !important;
}

.partnerplan-page .partner-product-solution.section-standard {
  padding-top: 56px !important;
  padding-bottom: 64px !important;
}

.partnerplan-page .partner-product-trajecten.section-standard {
  padding-top: 64px !important;
}

.partnerplan-page .partner-product-trajecten .partner-product-section-head h2 {
  margin-top: 0;
}

/* Contact conversion flow tightening */
.contact-page .contact-hero.section-hero {
  padding-top: 80px !important;
  padding-bottom: 48px !important;
}

.contact-page .contact-form-section.section-standard,
.contact-page .contact-main-section.section-standard {
  padding-top: 32px !important;
  margin-top: -20px;
}

.contact-page .contact-main-grid {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .home-page,
  .about-page,
  .partnerplan-page {
    --section-space-hero: 72px;
    --section-space-standard: 72px;
    --section-space-compact: 56px;
    --section-space-cta: 72px;
  }

  .contact-page {
    --section-space-hero: 72px;
    --section-space-standard: 64px;
    --section-space-compact: 56px;
    --section-space-cta: 72px;
  }

  .contact-page .contact-form-section.section-standard,
  .contact-page .contact-main-section.section-standard {
    margin-top: -10px;
  }

  .partnerplan-page .partner-product-pain.section-standard {
    padding-bottom: 48px !important;
  }

  .partnerplan-page .partner-product-solution.section-standard {
    padding-top: 48px !important;
    padding-bottom: 56px !important;
  }

  .partnerplan-page .partner-product-trajecten.section-standard {
    padding-top: 56px !important;
  }
}

@media (max-width: 767.98px) {
  .home-page,
  .about-page,
  .partnerplan-page {
    --section-space-hero: 56px;
    --section-space-standard: 56px;
    --section-space-compact: 44px;
    --section-space-cta: 56px;
  }

  .contact-page {
    --section-space-hero: 56px;
    --section-space-standard: 56px;
    --section-space-compact: 44px;
    --section-space-cta: 56px;
  }

  .contact-page .contact-hero.section-hero {
    padding-bottom: 40px !important;
  }

  .contact-page .contact-form-section.section-standard,
  .contact-page .contact-main-section.section-standard {
    margin-top: 0;
  }

  .partnerplan-page .partner-product-pain.section-standard {
    padding-bottom: 40px !important;
  }

  .partnerplan-page .partner-product-solution.section-standard {
    padding-top: 40px !important;
    padding-bottom: 44px !important;
  }

  .partnerplan-page .partner-product-trajecten.section-standard {
    padding-top: 44px !important;
  }
}

/* Partnerplan final spacing polish */
.partnerplan-page .partner-product-hero.section-hero {
  padding-bottom: 72px !important;
}

.partnerplan-page .partner-product-pain .partner-product-section-head {
  margin-bottom: 24px;
}

.partnerplan-page .partner-product-pain .partner-product-section-head .section-subtext {
  margin-bottom: 0;
}

.partnerplan-page .partner-product-pain-grid {
  margin-top: 24px;
}

.partnerplan-page .partner-product-solution-inner.solution-block {
  padding: 40px 44px;
}

.partnerplan-page .solution-title {
  margin-bottom: 18px;
}

.partnerplan-page .solution-text {
  margin-bottom: 24px;
}

.partnerplan-page .partner-product-trajecten .section-eyebrow {
  margin-bottom: 8px;
}

.partnerplan-page .partner-product-trajecten .partner-product-section-head > h2 {
  margin-bottom: 12px;
}

.partnerplan-page .partner-product-trajecten .partner-product-section-head .section-subtext {
  margin-bottom: 28px;
}

.partnerplan-page .partner-product-trajecten .partner-product-pricing-grid {
  margin-top: 0;
}

.partnerplan-page .partner-product-results .partner-product-section-head > h2 {
  margin-bottom: 12px;
}

.partnerplan-page .partner-product-results .partner-product-section-head .section-subtext,
.partnerplan-page .partner-product-results .partner-product-section-head .section-intro {
  margin-bottom: 24px;
}

.partnerplan-page .partner-product-process.section-compact {
  padding-bottom: 56px !important;
}

.partnerplan-page .partner-product-trust.section-standard {
  padding-top: 72px !important;
}

.partnerplan-page .partner-product-final-inner.about-cta-box {
  margin-top: 0;
}

.partnerplan-page footer,
.partnerplan-page .site-footer {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .partnerplan-page .partner-product-hero.section-hero {
    padding-bottom: 64px !important;
  }

  .partnerplan-page .partner-product-solution-inner.solution-block {
    padding: 36px 32px;
  }

  .partnerplan-page .partner-product-pain-grid {
    margin-top: 20px;
  }

  .partnerplan-page .partner-product-process.section-compact {
    padding-bottom: 48px !important;
  }

  .partnerplan-page .partner-product-trust.section-standard {
    padding-top: 64px !important;
  }
}

@media (max-width: 767.98px) {
  .partnerplan-page .partner-product-hero.section-hero {
    padding-bottom: 56px !important;
  }

  .partnerplan-page .partner-product-solution-inner.solution-block {
    padding: 28px 22px;
  }

  .partnerplan-page .partner-product-pain-grid {
    margin-top: 16px;
  }

  .partnerplan-page .partner-product-process.section-compact {
    padding-bottom: 44px !important;
  }

  .partnerplan-page .partner-product-trust.section-standard {
    padding-top: 56px !important;
  }
}

/* Diensten overview page */
.services-overview-page {
  --section-space-hero: 96px;
  --section-space-standard: 88px;
  --section-space-compact: 64px;
  --section-space-cta: 110px;
  background: #FCFBF8;
}

.services-overview-page .section-hero {
  padding-top: var(--section-space-hero) !important;
  padding-bottom: var(--section-space-hero) !important;
}

.services-overview-page .section-standard {
  padding-top: var(--section-space-standard) !important;
  padding-bottom: var(--section-space-standard) !important;
}

.services-overview-page .section-compact {
  padding-top: var(--section-space-compact) !important;
  padding-bottom: var(--section-space-compact) !important;
}

.services-overview-page .section-cta {
  padding-top: var(--section-space-cta) !important;
  padding-bottom: var(--section-space-cta) !important;
}

.services-overview-page .section-eyebrow {
  margin-bottom: 8px;
}

.services-overview-page .section-title {
  margin-bottom: 12px;
}

.services-overview-page .section-subtext {
  margin-bottom: 28px;
}

.services-overview-header,
.services-overview-page main {
  background: #FCFBF8;
}

.services-overview-hero {
  position: relative;
  overflow: hidden;
}

.services-overview-page .services-overview-hero.section-hero {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

.services-overview-hero-copy {
  max-width: 42rem;
}

.services-overview-hero-copy .hero-title {
  max-width: 680px;
  color: #163c8f;
  margin-bottom: 16px;
}

.services-overview-hero-copy .section-subtitle {
  margin: 0 0 30px;
  max-width: 560px;
  color: rgba(23, 39, 76, 0.82);
  font-weight: 500;
  line-height: 1.68;
}

.services-overview-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.services-overview-hero-actions .btn {
  min-height: 52px;
}

.services-overview-hero-media-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding-right: 0;
}

.services-overview-hero-media-wrap::after {
  content: none;
  position: absolute;
  width: 270px;
  height: 270px;
  right: 30px;
  top: 54px;
  background: radial-gradient(circle, rgba(236, 229, 221, 0.76) 0%, rgba(236, 229, 221, 0) 70%);
  filter: blur(12px);
  z-index: 0;
}

.services-overview-hero-diamond {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: transparent;
  transform: rotate(45deg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 44px rgba(13, 39, 80, 0.13), 0 8px 18px rgba(13, 39, 80, 0.08);
}

.services-overview-hero-diamond img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  max-width: none;
  object-fit: cover;
  object-position: 58% 48%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}


.services-overview-positioning {
  border-top: 1px solid rgba(22, 60, 143, 0.06);
}

.services-overview-page .services-overview-positioning.section-intro,
.services-overview-page .services-overview-positioning.positioning-section {
  padding-top: 72px !important;
  padding-bottom: 48px !important;
}

.services-overview-page .positioning-section {
  position: relative;
}

.services-overview-page .positioning-section::after {
  content: "";
  display: block;
  width: min(1320px, calc(100% - 48px));
  height: 1px;
  margin: 48px auto 0;
  background: rgba(13, 39, 80, 0.06);
}

.services-overview-positioning .section-title {
  max-width: 14ch;
}

.services-overview-positioning .section-subtitle {
  margin: 0;
  max-width: 60ch;
  color: rgba(23, 39, 76, 0.82);
  font-weight: 500;
}

.services-overview-page .positioning-section .section-eyebrow {
  margin-bottom: 10px;
  color: #7F93C1;
  letter-spacing: 0.14em;
}

.services-overview-page .positioning-title {
  max-width: 520px;
  line-height: 1.08;
  font-size: clamp(1.75rem, 2.55vw, 2.2rem);
}

.services-overview-page .positioning-text {
  max-width: 620px;
  line-height: 1.55;
  color: rgba(33, 53, 95, 0.78);
}

.services-overview-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.services-overview-head .section-title {
  max-width: 18ch;
}

.services-overview-head .section-subtext {
  margin: 0;
  max-width: 62ch;
  color: rgba(23, 39, 76, 0.8);
  line-height: 1.66;
}

.services-overview-page .section-services .section-header {
  margin-bottom: 32px;
  margin-top: 0;
}

.services-overview-page .section-services.section-standard {
  padding-top: 48px !important;
}

.services-overview-page .service-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 18px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(13, 39, 80, 0.08);
}

.services-overview-page .services-overview-list {
  position: relative;
}

.services-overview-page .services-overview-list::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: 8%;
  top: 20%;
  transform: rotate(45deg);
  border-radius: 18px;
  background: rgba(13, 39, 80, 0.03);
  pointer-events: none;
  z-index: 0;
}

.services-overview-page .services-overview-list .container-xl {
  position: relative;
  z-index: 1;
}

.services-overview-page .service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-overview-page .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 39, 80, 0.12);
}

.services-overview-page .service-row:last-child {
  margin-bottom: 0;
}

.services-overview-page .service-row-copy {
  max-width: 48ch;
}

.services-overview-page .service-row-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22, 60, 143, 0.58);
}

.services-overview-page .service-row h3 {
  margin: 0 0 10px;
  color: #163c8f;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.services-overview-page .service-row h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 122, 92, 0.6);
  margin-top: 10px;
}

.services-overview-page .service-row p {
  margin: 0 0 16px;
  color: rgba(23, 39, 76, 0.8);
  line-height: 1.66;
}

.services-overview-page .service-row .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #163c8f;
  transition: color 0.2s ease, transform 0.2s ease;
}

.services-overview-page .service-row .service-link:hover {
  color: #FF7A5C;
  transform: translateX(2px);
}

.services-overview-page .service-row-media {
  position: relative;
}

.services-overview-page .service-row-media .service-image {
  width: 100%;
  height: 100%;
  min-height: 250px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(13, 39, 80, 0.14);
}

.services-overview-page .service-row.is-reverse .service-row-copy {
  order: 2;
}

.services-overview-page .service-row.is-reverse .service-row-media {
  order: 1;
}

.services-overview-page .section-training .section-header {
  margin-bottom: 28px;
}

.services-training-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.services-overview-page .training-card {
  overflow: hidden;
  border-radius: 18px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(13, 39, 80, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-overview-page .training-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 39, 80, 0.12);
}

.services-overview-page .training-card-media {
  margin-bottom: 0;
}

.services-overview-page .training-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.services-overview-page .training-card-body {
  padding: 24px 24px 22px;
}

.services-overview-page .training-card-eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22, 60, 143, 0.56);
}

.services-overview-page .training-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #163c8f;
  line-height: 1.2;
}

.services-overview-page .training-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  border-radius: 2px;
  background: rgba(255, 122, 92, 0.55);
}

.services-overview-page .training-card p {
  margin: 0 0 14px;
  color: rgba(23, 39, 76, 0.8);
  line-height: 1.62;
}

.services-overview-page .training-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #163c8f;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.services-overview-page .training-link:hover {
  color: #FF7A5C;
  transform: translateX(2px);
}

.services-overview-page .section-training.section-compact {
  padding-top: 72px !important;
  padding-bottom: 88px !important;
}

.services-overview-page .section-why.section-compact {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.services-overview-page .why-section-inner {
  background: rgba(13, 39, 80, 0.02);
  border-radius: 24px;
  padding: 32px 36px;
}

.services-overview-page .section-why .section-header {
  margin-bottom: 24px;
}

.services-overview-page .section-why .section-title {
  margin-bottom: 16px;
}

.services-overview-page .section-why .section-subtext {
  margin: 0;
  max-width: 64ch;
  color: rgba(23, 39, 76, 0.78);
  line-height: 1.62;
}

.services-overview-page .why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 30px;
}

.services-overview-page .why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.services-overview-page .why-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 122, 92, 0.14);
  border: 1px solid rgba(255, 122, 92, 0.3);
  position: relative;
  flex: 0 0 22px;
  margin-top: 2px;
}

.services-overview-page .why-item-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #FF7A5C;
}

.services-overview-page .why-item-copy h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #163c8f;
  line-height: 1.28;
}

.services-overview-page .why-item-copy p {
  margin: 0;
  color: rgba(23, 39, 76, 0.78);
  line-height: 1.62;
}

.services-overview-head-centered {
  text-align: center;
  margin-inline: auto;
}

.services-overview-head-centered .section-title {
  margin-inline: auto;
}

@media (max-width: 1199.98px) {
  .services-overview-hero-media-wrap {
    max-width: 400px;
  }

  .service-row {
    gap: 34px;
  }
}

@media (max-width: 991.98px) {
  .services-overview-page {
    --section-space-hero: 72px;
    --section-space-standard: 72px;
    --section-space-compact: 56px;
    --section-space-cta: 72px;
  }

  .services-overview-page .services-overview-positioning.section-intro,
  .services-overview-page .services-overview-positioning.positioning-section {
    padding-top: 64px !important;
    padding-bottom: 40px !important;
  }

  .services-overview-page .positioning-section::after {
    margin-top: 36px;
  }

  .services-overview-page .section-services.section-standard {
    padding-top: 40px !important;
  }

  .services-overview-hero-copy .hero-title,
  .services-overview-positioning .section-title,
  .services-overview-head .section-title {
    max-width: 100%;
  }

  .services-overview-page .services-overview-hero.section-hero {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  .services-overview-hero-media-wrap {
    margin: 10px auto 0;
    padding-right: 0;
  }

  .services-overview-hero-diamond {
    width: min(340px, 84vw);
  }

  .services-overview-page .service-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .services-overview-page .services-overview-list::after {
    right: -20px;
    top: 28%;
  }

  .services-overview-page .service-row.is-reverse .service-row-copy,
  .services-overview-page .service-row.is-reverse .service-row-media {
    order: initial;
  }

  .services-training-cards,
  .services-overview-page .why-grid {
    grid-template-columns: 1fr;
  }

  .services-overview-page .section-training.section-compact,
  .services-overview-page .section-why.section-compact {
    padding-top: 64px !important;
    padding-bottom: 72px !important;
  }

  .services-overview-page .why-section-inner {
    padding: 30px 24px;
  }
}

@media (max-width: 767.98px) {
  .services-overview-page {
    --section-space-hero: 56px;
    --section-space-standard: 56px;
    --section-space-compact: 44px;
    --section-space-cta: 56px;
  }

  .services-overview-page .services-overview-positioning.section-intro,
  .services-overview-page .services-overview-positioning.positioning-section {
    padding-top: 48px !important;
    padding-bottom: 36px !important;
  }

  .services-overview-page .positioning-section::after {
    margin-top: 28px;
    width: min(1320px, calc(100% - 28px));
  }

  .services-overview-page .section-services.section-standard {
    padding-top: 36px !important;
  }

  .services-overview-page .services-overview-hero.section-hero {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .services-overview-hero-copy .section-subtitle {
    margin-bottom: 24px;
  }

  .services-overview-hero-actions {
    gap: 12px;
  }

  .services-overview-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-overview-hero-diamond {
    width: min(280px, 86vw);
    border-radius: 22px;
  }

  .services-overview-head {
    margin-bottom: 30px;
  }

  .services-overview-page .section-training.section-compact,
  .services-overview-page .section-why.section-compact {
    padding-top: 52px !important;
    padding-bottom: 56px !important;
  }

  .services-overview-page .service-row {
    margin-bottom: 22px;
    border-radius: 22px;
  }

  .services-overview-page .service-row-media .service-image {
    border-radius: 16px;
  }

  .services-overview-page .services-overview-list::after {
    content: none;
  }

  .services-overview-page .training-card-body {
    padding: 20px 18px 18px;
  }

  .services-overview-page .why-section-inner {
    padding: 22px 18px;
    border-radius: 18px;
  }
}

/* Opleidingen page */
.opleidingen-page {
  --section-space-hero: 96px;
  --section-space-standard: 88px;
  --section-space-compact: 64px;
  --section-space-cta: 110px;
  background: #FCFBF8;
}

.opleidingen-page .section-hero {
  padding-top: var(--section-space-hero) !important;
  padding-bottom: var(--section-space-hero) !important;
}

.opleidingen-page .section-standard {
  padding-top: var(--section-space-standard) !important;
  padding-bottom: var(--section-space-standard) !important;
}

.opleidingen-page .section-compact {
  padding-top: var(--section-space-compact) !important;
  padding-bottom: var(--section-space-compact) !important;
}

.opleidingen-page .section-cta {
  padding-top: var(--section-space-cta) !important;
  padding-bottom: var(--section-space-cta) !important;
}

.opleidingen-page .section-eyebrow {
  margin-bottom: 10px;
}

.opleidingen-page .section-title {
  margin-bottom: 16px;
}

.opleidingen-page .section-subtext {
  margin-bottom: 28px;
}

.opleidingen-page .opleiding-hero.section-hero {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

.opleidingen-header,
.opleidingen-page main {
  background: #FCFBF8;
}

.opleiding-hero-copy {
  max-width: 43rem;
}

.opleiding-hero-copy .hero-title {
  max-width: 14ch;
  color: #163c8f;
}

.opleiding-hero-copy .section-subtitle {
  margin: 0 0 30px;
  max-width: 56ch;
  color: rgba(23, 39, 76, 0.82);
  line-height: 1.68;
  font-weight: 500;
}

.opleiding-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.opleiding-hero-media-wrap {
  position: relative;
  max-width: 470px;
  margin: 0 auto;
}

.opleiding-hero-visual {
  position: relative;
  min-height: 420px;
  transform: translateX(-20px);
}

.opleiding-hero-visual::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: 20px;
  top: -20px;
  border-radius: 24px;
  transform: rotate(45deg);
  background: rgba(13, 39, 80, 0.02);
  z-index: 0;
  opacity: 0.015;
}

.hero-diamond-large,
.hero-diamond-small {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transform: rotate(45deg);
}

.hero-diamond-large {
  position: relative;
  z-index: 1;
  width: 300px;
  margin-left: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 22px 48px rgba(13, 39, 80, 0.14);
}

.hero-diamond-small {
  width: 240px;
  position: absolute;
  left: 40px;
  bottom: 60px;
  z-index: 2;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 28px 70px rgba(13, 39, 80, 0.22);
  transform: translate(-10%, -10%) rotate(45deg);
}

.hero-diamond-large img,
.hero-diamond-small img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
}

.hero-diamond-large img {
  object-position: 52% 48%;
}

.hero-diamond-small img {
  object-position: 56% 42%;
  filter: none;
}

.opleiding-section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.opleiding-section-head .section-title {
  max-width: 18ch;
}

.opleiding-section-head .section-subtext {
  margin: 0;
  max-width: 62ch;
  color: rgba(23, 39, 76, 0.8);
}

.opleiding-group {
  margin-bottom: 52px;
}

.opleiding-group:last-child {
  margin-bottom: 0;
}

.opleidingen-page .section-training-grid.section-standard {
  padding-bottom: 72px !important;
}

.opleidingen-page .cta-section.section-cta {
  margin-top: 0;
  padding-top: 88px !important;
}

.opleiding-group-head {
  margin-bottom: 22px;
}

.opleiding-group-head h3 {
  margin: 0 0 8px;
  color: #163c8f;
  font-size: clamp(1.35rem, 1.95vw, 1.7rem);
}

.opleiding-group-head p {
  margin: 0;
  max-width: 62ch;
  color: rgba(23, 39, 76, 0.76);
  line-height: 1.62;
}

.opleiding-card-grid,
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  grid-auto-rows: 1fr;
}

.opleiding-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(13, 39, 80, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.training-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.opleiding-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 39, 80, 0.12);
}

.training-image-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.opleiding-card img,
.training-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opleiding-card-body {
  padding: 20px 20px 18px;
}

.opleiding-card-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22, 60, 143, 0.58);
}

.opleiding-card-body h4 {
  margin: 0 0 10px;
  color: #163c8f;
  font-size: 1.12rem;
  line-height: 1.3;
}

.opleiding-card-body p {
  margin: 0 0 12px;
  color: rgba(23, 39, 76, 0.78);
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.opleiding-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #163c8f;
  transition: color 0.2s ease, transform 0.2s ease;
}

.opleiding-card-body a:hover {
  color: #FF7A5C;
  transform: translateX(2px);
}

.section-alt {
  background: rgba(13, 39, 80, 0.02);
}

.opleiding-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.opleiding-flow-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 23px;
  height: 1px;
  background: rgba(13, 39, 80, 0.1);
}

.opleiding-flow-step {
  position: relative;
  padding-top: 44px;
}

.opleiding-flow-step span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(13, 39, 80, 0.12);
  color: #163c8f;
  font-weight: 700;
  z-index: 1;
}

.opleiding-flow-step h3 {
  margin: 0 0 8px;
  color: #163c8f;
  font-size: 1.02rem;
}

.opleiding-flow-step p {
  margin: 0;
  color: rgba(23, 39, 76, 0.78);
  line-height: 1.58;
}

.opleiding-benefits-inner {
  background: rgba(13, 39, 80, 0.02);
  border-radius: 24px;
  padding: 34px 36px;
}

.opleiding-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.opleiding-benefits-grid article {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px 16px 14px;
  border: 1px solid rgba(22, 60, 143, 0.06);
}

.opleiding-benefits-grid h3 {
  margin: 0 0 8px;
  color: #163c8f;
  font-size: 1.03rem;
  font-weight: 600;
}

.opleiding-benefits-grid p {
  margin: 0;
  color: rgba(23, 39, 76, 0.78);
  line-height: 1.58;
}

@media (max-width: 1199.98px) {
  .opleiding-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opleiding-flow-line {
    display: none;
  }

}

@media (max-width: 991.98px) {
  .opleidingen-page {
    --section-space-hero: 72px;
    --section-space-standard: 72px;
    --section-space-compact: 56px;
    --section-space-cta: 72px;
  }

  .opleiding-hero-copy .hero-title,
  .opleiding-section-head .section-title {
    max-width: 100%;
  }

  .opleidingen-page .opleiding-hero.section-hero {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  .opleiding-hero-media-wrap {
    margin-top: 10px;
  }

  .opleiding-hero-visual {
    min-height: 360px;
    transform: translateX(-10px);
  }

  .hero-diamond-large {
    width: 280px;
  }

  .hero-diamond-small {
    width: 188px;
    left: 24px;
    bottom: 42px;
  }

  .opleidingen-page .section-training-grid.section-standard {
    padding-bottom: 64px !important;
  }

  .opleidingen-page .cta-section.section-cta {
    padding-top: 72px !important;
  }

}

@media (max-width: 767.98px) {
  .opleidingen-page {
    --section-space-hero: 56px;
    --section-space-standard: 56px;
    --section-space-compact: 44px;
    --section-space-cta: 56px;
  }

  .opleiding-hero-actions {
    gap: 12px;
  }

  .opleiding-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .opleidingen-page .opleiding-hero.section-hero {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .opleiding-hero-media-wrap {
    max-width: 340px;
  }

  .opleiding-hero-visual {
    min-height: 300px;
    transform: none;
  }

  .hero-diamond-large {
    width: 220px;
  }

  .hero-diamond-small {
    width: 150px;
    left: 16px;
    bottom: 28px;
  }

  .opleidingen-page .section-training-grid.section-standard {
    padding-bottom: 52px !important;
  }

  .opleidingen-page .cta-section.section-cta {
    padding-top: 56px !important;
  }

  .opleiding-card-grid,
  .opleiding-benefits-grid {
    grid-template-columns: 1fr;
  }

  .opleiding-flow {
    grid-template-columns: 1fr;
  }

  .opleiding-group {
    margin-bottom: 38px;
  }

  .opleiding-benefits-inner {
    padding: 24px 18px;
    border-radius: 18px;
  }
}

/* Opleiding detail template */
.opleiding-detail-page {
  --section-space-hero: 96px;
  --section-space-standard: 88px;
  --section-space-compact: 64px;
  --section-space-cta: 110px;
  background: #FCFBF8;
}

.opleiding-detail-page .section-hero {
  padding-top: var(--section-space-hero) !important;
  padding-bottom: var(--section-space-hero) !important;
}

.opleiding-detail-page .section-standard {
  padding-top: var(--section-space-standard) !important;
  padding-bottom: var(--section-space-standard) !important;
}

.opleiding-detail-page .section-compact {
  padding-top: var(--section-space-compact) !important;
  padding-bottom: var(--section-space-compact) !important;
}

.opleiding-detail-page .section-cta {
  padding-top: var(--section-space-cta) !important;
  padding-bottom: var(--section-space-cta) !important;
}

.opleiding-detail-header,
.opleiding-detail-page main {
  background: #FCFBF8;
}

.opleiding-detail-page .section-eyebrow {
  margin-bottom: 10px;
}

.opleiding-detail-page .section-title {
  margin-bottom: 14px;
}

.opleiding-detail-page .section-subtext {
  margin-bottom: 26px;
}

.opleiding-detail-page .training-hero {
  background: #FCFBF8;
  padding-top: 96px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.opleiding-detail-page .training-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 420px;
  height: 420px;
  border-radius: 32px;
  transform: rotate(45deg);
  background: rgba(241, 121, 84, 0.04);
  pointer-events: none;
}

.opleiding-detail-page .training-hero .hero-grid {
  position: relative;
  z-index: 1;
}

.opleiding-detail-page .training-hero .hero-content-col {
  max-width: 560px;
}

.opleiding-detail-page .training-hero .hero-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(127, 147, 193, 0.75);
  font-weight: 600;
}

.opleiding-detail-page .training-hero .hero-title {
  font-size: clamp(2.65rem, 4.3vw, 4.4rem);
  font-weight: 700;
  color: #1E3A8A;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.opleiding-detail-page .training-hero .hero-text {
  font-size: 1.08rem;
  color: rgba(37, 52, 92, 0.78);
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.opleiding-detail-page .training-hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.opleiding-detail-page .training-hero .btn-primary,
.opleiding-detail-page .training-hero .btn-outline {
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.opleiding-detail-page .training-hero .btn-primary {
  background: #ff7a5c;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 122, 92, 0.28);
}

.opleiding-detail-page .training-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 122, 92, 0.34);
}

.opleiding-detail-page .training-hero .btn-outline {
  background: rgba(255, 255, 255, 0.72);
  color: #1E3A8A;
  border-color: rgba(30, 58, 138, 0.18);
}

.opleiding-detail-page .training-hero .btn-outline:hover {
  color: #163c8f;
  border-color: rgba(30, 58, 138, 0.28);
  background: rgba(30, 58, 138, 0.05);
}

.opleiding-detail-page .training-hero .hero-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.opleiding-detail-page .training-hero .hero-meta-list span {
  font-size: 0.86rem;
  color: rgba(33, 53, 95, 0.72);
  display: inline-flex;
  align-items: center;
}

.opleiding-detail-page .training-hero .hero-meta-list span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  margin-right: 8px;
  background: rgba(255, 122, 92, 0.72);
}

.opleiding-detail-page .training-detail-card {
  background: #FAFAF8;
  padding: 30px 30px 26px;
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(13, 39, 80, 0.06);
  border: 1px solid rgba(22, 60, 143, 0.11);
}

.opleiding-detail-page .training-detail-card__head {
  margin-bottom: 8px;
}

.opleiding-detail-page .training-detail-card__head h3 {
  margin: 0 0 4px;
  color: #163c8f;
  font-weight: 650;
  font-size: 1.14rem;
}

.opleiding-detail-page .training-detail-card__head p {
  margin: 0;
  color: rgba(46, 64, 108, 0.64);
  font-size: 0.9rem;
}

.opleiding-detail-page .training-detail-list {
  margin-top: 8px;
}

.opleiding-detail-page .training-detail-list .detail-item {
  display: grid;
  grid-template-columns: 110px 28px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.opleiding-detail-page .training-detail-list .detail-item.is-first {
  border-top: 0;
}

.opleiding-detail-page .training-detail-list .detail-label {
  font-weight: 550;
  color: rgba(42, 53, 78, 0.86);
  font-size: 0.95rem;
}

.opleiding-detail-page .training-detail-list .detail-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(30, 58, 138, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(22, 60, 143, 0.8);
  font-size: 0.86rem;
}

.opleiding-detail-page .training-detail-list .detail-value {
  color: rgba(28, 60, 126, 0.86);
  line-height: 1.55;
  text-align: left;
  font-size: 0.96rem;
}

.opleiding-detail-page .training-detail-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.opleiding-detail-page .training-detail-benefits span {
  font-size: 0.82rem;
  color: rgba(40, 56, 95, 0.76);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 58, 138, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
}

.opleiding-detail-page .training-detail-card .btn-detail-card {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff7a5c;
  color: #ffffff;
  border-radius: 14px;
  padding: 11px 20px;
  font-weight: 600;
  border: 1px solid rgba(255, 122, 92, 0.72);
  box-shadow: 0 8px 18px rgba(255, 122, 92, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.opleiding-detail-page .training-detail-card .btn-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 122, 92, 0.28);
}

.opleiding-detail-page .training-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.opleiding-detail-page .training-section-head .section-title {
  max-width: 18ch;
  margin-bottom: 0;
}

.opleiding-detail-page .training-value .section-title {
  max-width: 16ch;
  margin-bottom: 0;
}

.opleiding-detail-page .training-value .section-subtitle {
  margin: 0;
  max-width: 56ch;
  line-height: 1.66;
  color: rgba(33, 53, 95, 0.78);
}

.opleiding-detail-page .learn-grid,
.opleiding-detail-page .impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.opleiding-detail-page .learn-grid article,
.opleiding-detail-page .impact-grid article {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(22, 60, 143, 0.12);
  color: rgba(23, 39, 76, 0.86);
  line-height: 1.58;
}

.opleiding-detail-page .learn-grid article:first-child,
.opleiding-detail-page .learn-grid article:nth-child(2),
.opleiding-detail-page .impact-grid article:first-child,
.opleiding-detail-page .impact-grid article:nth-child(2) {
  border-top: 0;
}

.opleiding-detail-page .learn-grid article p,
.opleiding-detail-page .impact-grid article p {
  margin: 0;
}

.opleiding-detail-page .training-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.opleiding-detail-page .training-list li {
  position: relative;
  padding-left: 17px;
  color: rgba(23, 39, 76, 0.82);
  line-height: 1.55;
}

.opleiding-detail-page .training-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF7A5C;
  transform: translateY(-50%);
}

.opleiding-detail-page .training-practical {
  border-radius: 18px;
  background: rgba(13, 39, 80, 0.03);
  border: 1px solid rgba(22, 60, 143, 0.09);
  padding: 20px;
}

.opleiding-detail-page .training-practical h3 {
  margin: 0 0 12px;
  font-size: 1.04rem;
  color: #163c8f;
}

.opleiding-detail-page .training-steps {
  background: rgba(13, 39, 80, 0.02);
}

.opleiding-detail-page .steps-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.opleiding-detail-page .steps-flow-line {
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(13, 39, 80, 0.14);
}

.opleiding-detail-page .steps-flow .step {
  position: relative;
  padding-top: 38px;
}

.opleiding-detail-page .steps-flow .step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 39, 80, 0.15);
  color: #163c8f;
  font-weight: 700;
  z-index: 1;
}

.opleiding-detail-page .steps-flow h3 {
  margin: 0;
  color: #163c8f;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 18ch;
}

.opleiding-detail-page .cta-sub {
  margin: 0 0 10px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

.opleiding-detail-page .container.narrow {
  max-width: 760px;
}

.opleiding-detail-page .training-intro,
.opleiding-detail-page .training-content,
.opleiding-detail-page .training-process {
  padding: 80px 0;
}

.opleiding-detail-page .training-intro {
  padding-top: 72px;
}

.opleiding-detail-page .training-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 40px);
  line-height: 1.1;
  color: #163c8f;
  max-width: 700px;
}

.opleiding-detail-page .training-intro .lead {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(33, 53, 95, 0.78);
  max-width: 620px;
}

.opleiding-detail-page .training-content h3,
.opleiding-detail-page .training-process h3 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.2;
  color: #163c8f;
}

.opleiding-detail-page .training-content h3 + .content-list,
.opleiding-detail-page .training-process h3 + .process-steps {
  margin-top: 0;
}

.opleiding-detail-page .training-content h3:not(:first-child) {
  margin-top: 70px;
}

.opleiding-detail-page .content-list {
  padding-left: 20px;
  margin: 0 0 30px;
}

.opleiding-detail-page .content-list li {
  margin-bottom: 12px;
  color: #475569;
  line-height: 1.62;
}

.opleiding-detail-page .training-visual .training-image {
  width: 100%;
  border-radius: 20px;
  margin: 40px 0;
  display: block;
}

.opleiding-detail-page .content-list li:last-child {
  margin-bottom: 0;
}

.opleiding-detail-page .training-inline-box {
  background: #FAFAF8;
  border: 1px solid #EAEAEA;
  padding: 24px;
  border-radius: 16px;
  margin: 40px 0;
}

.opleiding-detail-page .training-inline-box h4 {
  margin: 0 0 14px;
  font-size: 1.08rem;
  color: #163c8f;
}

.opleiding-detail-page .training-inline-box .content-list {
  margin-bottom: 0;
}

.opleiding-detail-page .training-highlight .highlight-box {
  background: #F8F8F6;
  padding: 32px;
  border-radius: 20px;
  margin: 60px 0;
  border: 1px solid rgba(22, 60, 143, 0.08);
}

.opleiding-detail-page .training-highlight .highlight-box h3 {
  margin: 0 0 12px;
}

.opleiding-detail-page .training-highlight .highlight-box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
}

.opleiding-detail-page .training-process {
  padding-top: 56px;
}

.opleiding-detail-page .process-steps {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: process;
}

.opleiding-detail-page .process-steps li {
  margin-bottom: 12px;
  color: #475569;
  line-height: 1.62;
  padding-left: 34px;
  position: relative;
}

.opleiding-detail-page .process-steps li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(22, 60, 143, 0.08);
  color: #163c8f;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.opleiding-detail-page .process-steps li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .opleiding-detail-page .container.narrow {
    max-width: 820px;
  }
}

@media (max-width: 991.98px) {
  .opleiding-detail-page {
    --section-space-hero: 72px;
    --section-space-standard: 72px;
    --section-space-compact: 56px;
    --section-space-cta: 72px;
  }

  .opleiding-detail-page .training-hero .hero-title {
    max-width: 100%;
  }

  .opleiding-detail-page .training-hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .opleiding-detail-page .training-hero::before {
    right: 5%;
    top: 22%;
    width: 320px;
    height: 320px;
  }

  .opleiding-detail-page .training-detail-card {
    margin-top: 30px;
  }

  .opleiding-detail-page .training-detail-list .detail-item {
    grid-template-columns: 90px 24px 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .opleiding-detail-page .training-content h3:not(:first-child) {
    margin-top: 56px;
  }
}

@media (max-width: 767.98px) {
  .opleiding-detail-page {
    --section-space-hero: 56px;
    --section-space-standard: 56px;
    --section-space-compact: 44px;
    --section-space-cta: 56px;
  }

  .opleiding-detail-page .training-hero .hero-title {
    font-size: 36px;
  }

  .opleiding-detail-page .training-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .opleiding-detail-page .training-hero::before {
    width: 230px;
    height: 230px;
    right: -42px;
    top: auto;
    bottom: 64px;
  }

  .opleiding-detail-page .training-detail-card {
    padding: 24px 20px 20px;
    border-radius: 22px;
  }

  .opleiding-detail-page .training-detail-list .detail-item {
    grid-template-columns: 28px 1fr;
    grid-template-areas:
      "label label"
      "icon value";
    gap: 8px 10px;
    padding: 16px 0;
  }

  .opleiding-detail-page .training-detail-list .detail-label {
    grid-area: label;
  }

  .opleiding-detail-page .training-detail-list .detail-icon {
    grid-area: icon;
    margin-top: 2px;
  }

  .opleiding-detail-page .training-detail-list .detail-value {
    grid-area: value;
  }

  .opleiding-detail-page .training-detail-benefits {
    gap: 8px;
  }

  .opleiding-detail-page .training-hero .hero-actions {
    gap: 10px;
  }

  .opleiding-detail-page .training-content h3:not(:first-child) {
    margin-top: 44px;
  }

  .opleiding-detail-page .training-content h3,
  .opleiding-detail-page .training-process h3 {
    font-size: 1.4rem;
  }

  .opleiding-detail-page .training-inline-box {
    padding: 20px 18px;
    margin: 30px 0;
    border-radius: 14px;
  }

  .opleiding-detail-page .training-highlight .highlight-box {
    padding: 24px 20px;
    margin: 40px 0;
    border-radius: 16px;
  }
}

@media (max-width: 575.98px) {
  .opleiding-detail-page .training-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Opleidingsdetail: enriched content flow under hero */
.opleiding-detail-page .training-intro-section {
  padding-top: 64px;
}

.opleiding-detail-page .training-learn-section { padding-top: 0; }
.opleiding-detail-page .training-visual-section {
  padding-top: 64px;
  padding-bottom: 72px;
}
.opleiding-detail-page .training-audience-section { padding-top: 48px; }
.opleiding-detail-page .training-impact-section {
  padding-top: 80px;
  padding-bottom: 56px;
}
.opleiding-detail-page .training-highlight-section {
  padding-top: 64px;
  padding-bottom: 48px;
}
.opleiding-detail-page .training-process-section {
  padding-top: 56px;
  padding-bottom: 80px;
}

.opleiding-detail-page .cta-section.section-cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.opleiding-detail-page .site-footer,
.opleiding-detail-page footer {
  margin-top: 0;
}

.opleiding-detail-page section {
  scroll-margin-top: 120px;
}

.opleiding-detail-page .section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9AA9C5;
}

.opleiding-detail-page .training-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.opleiding-detail-page .training-intro-grid {
  margin-bottom: 72px;
}

.opleiding-detail-page .training-intro-title h2 {
  margin: 0;
  max-width: 480px;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #163c8f;
}

.opleiding-detail-page .training-intro-copy {
  max-width: 600px;
}

.opleiding-detail-page .training-intro-copy p {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.75;
  margin: 0 0 28px;
  color: #4F607C;
}

.opleiding-detail-page .training-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
  margin-top: 18px;
}

.opleiding-detail-page .training-intro-points span {
  position: relative;
  padding-left: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #5F6F89;
}

.opleiding-detail-page .training-intro-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F58B73;
}

.opleiding-detail-page .training-content-intro h3,
.opleiding-detail-page .training-audience-copy h3,
.opleiding-detail-page .training-impact-section h3,
.opleiding-detail-page .training-highlight-box h3,
.opleiding-detail-page .training-process-section h3 {
  margin: 0 0 18px;
  color: #163c8f;
  font-size: 1.72rem;
  line-height: 1.2;
}

.opleiding-detail-page .training-content-intro h3 {
  font-size: 2.4rem;
  line-height: 1.08;
  margin-bottom: 16px;
}

.opleiding-detail-page .training-content-intro p {
  margin: 0;
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5B6B85;
}

.opleiding-detail-page .training-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.opleiding-detail-page .training-learn-section .training-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.opleiding-detail-page .training-content-list ul,
.opleiding-detail-page .training-audience-copy ul,
.opleiding-detail-page .training-practical-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.opleiding-detail-page .training-content-list li,
.opleiding-detail-page .training-audience-copy li,
.opleiding-detail-page .training-practical-box li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 22px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #4F5F7A;
}

.opleiding-detail-page .training-content-list li {
  font-size: 1.12rem;
  line-height: 1.55;
  margin-bottom: 22px;
  color: #4F607C;
}

.opleiding-detail-page .training-audience-copy li {
  margin-bottom: 18px;
}

.opleiding-detail-page .training-content-list li::before,
.opleiding-detail-page .training-audience-copy li::before,
.opleiding-detail-page .training-practical-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #F58B73;
  transform: translateY(-50%);
}

.opleiding-detail-page .training-visual-figure {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
}

.opleiding-detail-page .training-visual-figure .training-image {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.opleiding-detail-page .training-visual-figure figcaption {
  margin-top: 10px;
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #8A97AE;
  text-align: left;
}

.opleiding-detail-page .training-learn-section + .training-visual-section {
  margin-top: 24px;
}

.opleiding-detail-page .training-content-grid--balanced {
  align-items: start;
}

.opleiding-detail-page .training-audience-section .training-content-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: start;
}

.opleiding-detail-page .training-audience-copy h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.opleiding-detail-page .training-audience-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opleiding-detail-page .training-audience-copy li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 16px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #4F607C;
}

.opleiding-detail-page .training-audience-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F58B73;
  transform: none;
}

.opleiding-detail-page .training-practical-box {
  background: #FAFAF8;
  border: 1px solid rgba(30, 58, 138, 0.08);
  border-radius: 20px;
  padding: 26px 28px;
  margin-top: 40px;
}

.opleiding-detail-page .training-practical-box h4 {
  margin: 0 0 16px;
  color: #163c8f;
  font-size: 1.15rem;
}

.opleiding-detail-page .training-practical-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opleiding-detail-page .training-practical-box li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.5;
  color: #5D6B85;
}

.opleiding-detail-page .training-practical-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F58B73;
  transform: none;
}

.opleiding-detail-page .training-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
  margin-top: 24px;
}

.opleiding-detail-page .training-impact-grid .impact-item {
  position: relative;
  padding-top: 20px;
  padding-left: 16px;
  border-top: 1px solid rgba(30, 58, 138, 0.08);
  font-size: 1.08rem;
  color: #4B5D78;
  line-height: 1.55;
}

.opleiding-detail-page .training-impact-grid .impact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(18px + 0.75em);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F58B73;
  transform: translateY(-50%);
}

.opleiding-detail-page .training-impact-section h3 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.opleiding-detail-page .impact-intro {
  max-width: 520px;
  margin: 0 0 28px;
  color: #5D6B85;
  line-height: 1.65;
}

.opleiding-detail-page .training-highlight-box {
  background: #F8F8F6;
  border: 1px solid rgba(30, 58, 138, 0.06);
  border-radius: 24px;
  padding: 44px 48px;
  max-width: 760px;
  margin: 0 auto;
}

.opleiding-detail-page .training-highlight-box .section-label {
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #9AA9C5;
}

.opleiding-detail-page .training-highlight-box h3 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.opleiding-detail-page .training-highlight-box p {
  margin: 0;
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #5B6B85;
}

.opleiding-detail-page .training-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-top: 32px;
  position: relative;
}

.opleiding-detail-page .training-process-grid::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 3%;
  right: 3%;
  height: 2px;
  background: rgba(30, 58, 138, 0.2);
}

.opleiding-detail-page .training-process-grid .process-step {
  position: relative;
  padding-top: 34px;
}

.opleiding-detail-page .training-process-grid .step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #E9EEF9;
  color: #1E3A8A;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.opleiding-detail-page .training-process-grid h4 {
  margin: 10px 0 0;
  color: #163c8f;
  line-height: 1.4;
  font-size: 1.05rem;
}

@media (max-width: 991.98px) {
  .opleiding-detail-page .training-intro-section { padding-top: 56px; }
  .opleiding-detail-page .training-learn-section { padding-top: 56px; }
  .opleiding-detail-page .training-visual-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .opleiding-detail-page .training-audience-section { padding-top: 56px; }
  .opleiding-detail-page .training-impact-section { padding-top: 56px; padding-bottom: 56px; }
  .opleiding-detail-page .training-highlight-section { padding-top: 56px; padding-bottom: 56px; }
  .opleiding-detail-page .training-process-section { padding-top: 56px; padding-bottom: 72px; }
  .opleiding-detail-page .cta-section.section-cta { padding-top: 56px; padding-bottom: 56px; }

  .opleiding-detail-page .training-intro-grid,
  .opleiding-detail-page .training-learn-section .training-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .opleiding-detail-page .training-intro-title h2 {
    max-width: none;
    font-size: clamp(2.6rem, 9vw, 4rem);
  }

  .opleiding-detail-page .training-intro-copy,
  .opleiding-detail-page .training-learn-section .training-content-intro p {
    max-width: none;
  }

  .opleiding-detail-page .training-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opleiding-detail-page .training-process-grid::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .opleiding-detail-page .training-intro-section {
    padding-top: 52px;
  }

  .opleiding-detail-page .training-learn-section { padding-top: 52px; }
  .opleiding-detail-page .training-visual-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .opleiding-detail-page .training-audience-section { padding-top: 52px; }
  .opleiding-detail-page .training-impact-section { padding-top: 52px; padding-bottom: 48px; }
  .opleiding-detail-page .training-highlight-section { padding-top: 52px; padding-bottom: 52px; }
  .opleiding-detail-page .training-process-section { padding-top: 52px; padding-bottom: 72px; }
  .opleiding-detail-page .cta-section.section-cta { padding-top: 52px; padding-bottom: 52px; }

  .opleiding-detail-page .training-content-intro h3,
  .opleiding-detail-page .training-audience-copy h3,
  .opleiding-detail-page .training-impact-section h3,
  .opleiding-detail-page .training-highlight-box h3,
  .opleiding-detail-page .training-process-section h3 {
    font-size: 1.45rem;
  }

  .opleiding-detail-page .training-intro-grid {
    margin-bottom: 56px;
  }

  .opleiding-detail-page .training-audience-section .training-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .opleiding-detail-page .training-practical-box {
    margin-top: 0;
  }

  .opleiding-detail-page .training-visual-figure {
    max-width: 100%;
  }

  .opleiding-detail-page .training-visual-figure .training-image {
    border-radius: 16px;
  }

  .opleiding-detail-page .training-impact-grid,
  .opleiding-detail-page .training-process-grid {
    grid-template-columns: 1fr;
  }

  .opleiding-detail-page .training-process-grid {
    gap: 24px;
  }

  .opleiding-detail-page .training-impact-grid {
    gap: 20px;
  }
}

/* Dienstdetail template */
.dienst-detail-page {
  --dienst-primary: #163c8f;
  --dienst-accent: #ff7a5c;
  --dienst-body: #5b6b85;
  --dienst-body-strong: #4f607c;
  --dienst-soft-bg: #fafaf8;
  --dienst-soft-border: rgba(22, 60, 143, 0.11);
  --dienst-soft-shadow: 0 10px 28px rgba(13, 39, 80, 0.06);
}

.dienst-detail-page .service-hero {
  background: #FCFBF8;
  padding-top: 96px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.dienst-detail-page .service-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 400px;
  height: 400px;
  border-radius: 32px;
  transform: rotate(45deg);
  background: rgba(22, 60, 143, 0.04);
  pointer-events: none;
}

.dienst-detail-page .service-hero .hero-grid {
  position: relative;
  z-index: 1;
}

.dienst-detail-page .service-hero .hero-content-col {
  max-width: 600px;
}

.dienst-detail-page .service-hero .hero-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(127, 147, 193, 0.82);
  font-weight: 600;
}

.dienst-detail-page .service-hero .hero-title {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
  font-weight: 700;
  color: var(--dienst-primary);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.dienst-detail-page .service-hero .hero-text {
  font-size: 1.08rem;
  color: rgba(37, 52, 92, 0.8);
  max-width: 540px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.dienst-detail-page .service-hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.dienst-detail-page .service-hero .btn-primary,
.dienst-detail-page .service-hero .btn-outline {
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dienst-detail-page .service-hero .btn-primary {
  background: var(--dienst-accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 120, 80, 0.3);
}

.dienst-detail-page .service-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 120, 80, 0.38);
}

.dienst-detail-page .service-hero .btn-outline {
  border-color: rgba(22, 60, 143, 0.2);
  color: var(--dienst-primary);
  background: rgba(255, 255, 255, 0.7);
}

.dienst-detail-page .service-hero .btn-outline:hover {
  color: var(--dienst-primary);
  border-color: rgba(30, 58, 138, 0.28);
  background: rgba(30, 58, 138, 0.05);
}

.dienst-detail-page .service-hero .hero-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.dienst-detail-page .service-hero .hero-meta-list span {
  position: relative;
  padding-left: 14px;
  font-size: 0.95rem;
  color: #5F6F89;
}

.dienst-detail-page .service-hero .hero-meta-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F58B73;
}

.dienst-detail-page .service-hero-card {
  background: var(--dienst-soft-bg);
  border: 1px solid var(--dienst-soft-border);
  border-radius: 28px;
  padding: 30px 30px 26px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.dienst-detail-page .hero-card-col {
  margin-top: 12px;
}

.dienst-detail-page .service-hero-card__head h3 {
  margin: 0 0 10px;
  color: var(--dienst-primary);
  font-size: 1.14rem;
  font-weight: 650;
}

.dienst-detail-page .service-hero-card-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.dienst-detail-page .service-hero-card-list li {
  position: relative;
  padding-left: 16px;
  color: var(--dienst-body-strong);
  line-height: 1.55;
  font-size: 0.96rem;
}

.dienst-detail-page .service-hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 122, 92, 0.78);
}

.dienst-detail-page .service-hero-card .btn-detail-card {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dienst-accent);
  color: #fff;
  border-radius: 14px;
  padding: 11px 20px;
  border: 0;
  box-shadow: 0 12px 26px rgba(255, 122, 92, 0.32);
  transition: all 0.25s ease;
}

.dienst-detail-page .service-hero-card .btn-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 92, 0.4);
}

.dienst-detail-page .service-intro-section,
.dienst-detail-page .service-why-section,
.dienst-detail-page .service-audience-section,
.dienst-detail-page .service-process-section,
.dienst-detail-page .service-impact-section,
.dienst-detail-page .service-highlight-section {
  padding-top: 80px;
}

.dienst-detail-page .service-process-section {
  padding-bottom: 56px;
}

.dienst-detail-page .service-intro-grid,
.dienst-detail-page .service-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.dienst-detail-page .service-intro-title h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #163c8f;
}

.dienst-detail-page .service-intro-copy p,
.dienst-detail-page .service-content-intro p {
  margin: 0;
  max-width: 600px;
  font-size: 1.06rem;
  line-height: 1.72;
  color: #4F607C;
}

.dienst-detail-page .service-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
}

.dienst-detail-page .service-why-section {
  padding-top: 72px;
}

.dienst-detail-page .service-why-section .service-content-intro h3 {
  font-size: 2.3rem;
}

.dienst-detail-page .service-intro-points span {
  position: relative;
  padding-left: 14px;
  font-size: 0.95rem;
  color: #5a6c89;
  font-weight: 500;
}

.dienst-detail-page .service-intro-points span::before,
.dienst-detail-page .service-content-list li::before,
.dienst-detail-page .service-audience-copy li::before,
.dienst-detail-page .service-context-box li::before,
.dienst-detail-page .service-impact-grid .impact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F58B73;
}

.dienst-detail-page .section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa9c5;
}

.dienst-detail-page .service-content-intro h3,
.dienst-detail-page .service-audience-copy h3,
.dienst-detail-page .service-process-section h3,
.dienst-detail-page .service-impact-section h3,
.dienst-detail-page .service-highlight-box h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.14;
  color: var(--dienst-primary);
}

.dienst-detail-page .service-content-list ul,
.dienst-detail-page .service-audience-copy ul,
.dienst-detail-page .service-context-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dienst-detail-page .service-content-list li,
.dienst-detail-page .service-audience-copy li,
.dienst-detail-page .service-context-box li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 16px;
  color: var(--dienst-body-strong);
  line-height: 1.58;
}

.dienst-detail-page .service-content-grid--balanced {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.dienst-detail-page .service-context-box {
  margin-top: 24px;
  background: var(--dienst-soft-bg);
  border: 1px solid rgba(30, 58, 138, 0.08);
  border-radius: 22px;
  padding: 32px;
}

.dienst-detail-page .service-context-box h4 {
  margin: 0 0 16px;
  color: var(--dienst-primary);
  font-size: 1.12rem;
}

.dienst-detail-page .service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  margin-top: 32px;
  position: relative;
}

.dienst-detail-page .service-process-grid::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 3%;
  right: 3%;
  height: 2px;
  background: rgba(30, 58, 138, 0.2);
}

.dienst-detail-page .service-process-grid .process-step {
  position: relative;
  padding-top: 34px;
}

.dienst-detail-page .service-process-grid .step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #E9EEF9;
  color: #1E3A8A;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.dienst-detail-page .service-process-grid h4 {
  margin: 8px 0 0;
  color: var(--dienst-primary);
  line-height: 1.4;
  font-size: 1.04rem;
}

.dienst-detail-page .impact-intro {
  max-width: 580px;
  margin: 0 0 24px;
  color: var(--dienst-body);
  line-height: 1.65;
}

.dienst-detail-page .service-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
}

.dienst-detail-page .service-impact-section {
  padding-top: 64px;
}

.dienst-detail-page .service-impact-section .section-label {
  margin-bottom: 12px;
}

.dienst-detail-page .service-impact-section h3 {
  margin-bottom: 16px;
}

.dienst-detail-page .service-impact-section .impact-intro {
  margin-bottom: 24px;
}

.dienst-detail-page .service-impact-grid .impact-item {
  position: relative;
  padding-top: 16px;
  padding-left: 18px;
  border-top: 1px solid rgba(30, 58, 138, 0.08);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--dienst-body-strong);
}

.dienst-detail-page .service-impact-grid .impact-item::before {
  left: 0;
  top: calc(16px + 0.72em);
  width: 6px;
  height: 6px;
  background: #F58B73;
}

.dienst-detail-page .service-highlight-section {
  padding-bottom: 72px;
}

.dienst-detail-page .service-highlight-box {
  max-width: 760px;
  margin: 0 auto;
  background: #f8f8f6;
  border: 1px solid rgba(30, 58, 138, 0.06);
  border-radius: 24px;
  padding: 44px 48px;
}

.dienst-detail-page .service-highlight-box p {
  margin: 0;
  max-width: 640px;
  font-size: 1.07rem;
  line-height: 1.74;
  color: var(--dienst-body);
}

.dienst-detail-page .cta-section.section-cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.dienst-detail-page .cta-sub {
  margin-bottom: 10px;
  opacity: 0.85;
}

@media (max-width: 991.98px) {
  .dienst-detail-page .service-hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .dienst-detail-page .service-intro-section,
  .dienst-detail-page .service-why-section,
  .dienst-detail-page .service-audience-section,
  .dienst-detail-page .service-process-section,
  .dienst-detail-page .service-impact-section,
  .dienst-detail-page .service-highlight-section {
    padding-top: 56px;
  }

  .dienst-detail-page .service-process-section,
  .dienst-detail-page .service-highlight-section {
    padding-bottom: 56px;
  }

  .dienst-detail-page .service-intro-grid,
  .dienst-detail-page .service-content-grid,
  .dienst-detail-page .service-content-grid--balanced {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dienst-detail-page .service-context-box {
    margin-top: 0;
  }

  .dienst-detail-page .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dienst-detail-page .service-process-grid::before {
    display: none;
  }

  .dienst-detail-page .service-impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .dienst-detail-page .service-hero .hero-title {
    font-size: 2.4rem;
  }

  .dienst-detail-page .service-process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
