/* Page-level helpers for the multi-page site */
@import url('styles.css');

/* Active nav item */
.nav__links a.is-active {
  color: var(--blue);
  background: rgba(51,87,141,0.08);
}

/* Page hero — smaller than home */
.page-hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(42,61,80,0.08);
}
.page-hero__crumbs {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 24px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.page-hero__crumbs a { color: var(--blue); }
.page-hero__crumbs span { opacity: 0.4; }
.page-hero__grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 72px); align-items: end;
}
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; } }
.page-hero h1 {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 700; line-height: 0.98;
  letter-spacing: -0.03em; text-wrap: balance;
}
.page-hero h1 .blue { color: var(--blue); }
.page-hero h1 .red { color: var(--red); }
.page-hero h1 .italic { font-style: italic; font-weight: 500; color: var(--blue); }
.page-hero__side { display: flex; flex-direction: column; gap: 18px; }
.page-hero__side .lead { margin: 0; }

/* Generic rich text blocks on subpages */
.prose h2 {
  font-size: clamp(28px, 3vw, 44px); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 20px; text-wrap: balance;
}
.prose h3 {
  font-size: clamp(20px, 2vw, 26px); font-weight: 600;
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.prose p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 66ch; margin-bottom: 16px; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose ul { margin: 16px 0 24px 20px; }
.prose ul li {
  list-style: none; position: relative;
  padding: 6px 0 6px 26px;
  color: var(--ink-soft); font-size: 16px; line-height: 1.55;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 14px; height: 1px; background: var(--blue);
}

/* Two-column split */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 88px);
  align-items: start;
}
.split--sticky > :first-child { position: sticky; top: 96px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--sticky > :first-child { position: static; }
}

/* Feature grid used for services sub-blocks */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 40px;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: #fff; border: 1px solid rgba(42,61,80,0.08);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(51,87,141,0.1); }
.feat__num {
  font-family: ui-monospace, monospace; font-size: 11px;
  letter-spacing: 0.08em; color: var(--red); font-weight: 600;
}
.feat h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.feat p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

/* Numbered list big (process) */
.process {
  display: grid; grid-template-columns: 1fr; gap: 4px;
  margin-top: 40px;
  counter-reset: step;
}
.process__item {
  display: grid; grid-template-columns: 96px 1fr 1.3fr auto;
  gap: clamp(12px, 3vw, 40px);
  padding: 28px 0;
  border-top: 1px solid rgba(42,61,80,0.12);
  align-items: start;
}
.process__item:last-child { border-bottom: 1px solid rgba(42,61,80,0.12); }
.process__n {
  font-family: ui-monospace, monospace;
  font-size: 15px; color: var(--red); font-weight: 600;
  letter-spacing: 0.06em;
}
.process__item h4 {
  font-size: clamp(20px, 2vw, 26px); font-weight: 600;
  letter-spacing: -0.015em; color: var(--ink);
}
.process__item p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.process__meta { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 860px) {
  .process__item { grid-template-columns: 60px 1fr; }
  .process__item p, .process__meta { grid-column: 2; }
}

/* FAQ accordion */
.faq { margin-top: 40px; border-top: 1px solid rgba(42,61,80,0.12); }
.faq__item { border-bottom: 1px solid rgba(42,61,80,0.12); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 0; text-align: left;
  font-size: clamp(17px, 1.4vw, 20px); font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink);
}
.faq__q::after {
  content: "+"; font-size: 24px; color: var(--blue);
  transition: transform 0.2s;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ink-soft); font-size: 16px; line-height: 1.6;
}
.faq__item.is-open .faq__a {
  max-height: 600px;
  padding: 0 0 22px;
}

/* Screenshot / product card placeholder */
.shot {
  position: relative;
  background: linear-gradient(135deg, #eef2f8 0%, #dbe6f4 100%);
  border: 1px solid rgba(42,61,80,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(51,87,141,0.1);
}
.shot__chrome {
  background: linear-gradient(135deg, #33578d, #2A3D50);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: 12px;
}
.shot__dots { display: flex; gap: 5px; }
.shot__dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.shot__body { padding: 20px; background: #fff; min-height: 360px; }
.shot__cap {
  font-family: ui-monospace, monospace; font-size: 11px;
  letter-spacing: 0.04em; color: var(--ink-soft);
  margin-top: 12px; text-align: center;
}

/* Pill-style inline tags */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(51,87,141,0.08); color: var(--blue);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.pill--red { background: rgba(229,46,19,0.08); color: var(--red); }
.pill--gray { background: rgba(42,61,80,0.08); color: var(--ink-soft); }

/* Stat row compact */
.stats--compact .stat { padding: 32px; }
.stats--compact .stat__num { font-size: clamp(40px, 5vw, 64px); }

/* Quote block */
.quote-block {
  background: var(--cream);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  position: relative;
}
.quote-block::before {
  content: "„"; position: absolute;
  top: 8px; left: 24px; font-size: 120px; line-height: 1;
  color: rgba(51,87,141,0.18); font-weight: 700;
}
.quote-block blockquote {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500; line-height: 1.3; letter-spacing: -0.015em;
  max-width: 60ch; position: relative;
}
.quote-block cite {
  display: block; font-style: normal;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  margin-top: 20px;
}

/* Compact leistungen cards */
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 48px;
}
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: #fff; border: 1px solid rgba(42,61,80,0.08);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 280px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(51,87,141,0.12); }
.svc__tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.svc h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
.svc p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.svc__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; }
.svc__foot a { font-size: 13px; font-weight: 600; color: var(--blue); }
.svc__foot a::after { content: " →"; }

/* Banner */
.banner {
  background: var(--dark-surface); color: #fff;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  display: grid; grid-template-columns: 1.4fr auto;
  align-items: center; gap: 24px; margin: 64px 0;
}
.banner h3 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; text-wrap: balance; max-width: 32ch; }
.banner p { color: rgba(255,255,255,0.72); margin-top: 8px; font-size: 15px; max-width: 54ch; }
@media (max-width: 760px) { .banner { grid-template-columns: 1fr; } }

/* Cases (testimonials) */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
@media (max-width: 760px) { .cases { grid-template-columns: 1fr; } }
.case {
  background: #fff; border: 1px solid rgba(42,61,80,0.08);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.case__meta {
  display: flex; gap: 10px; align-items: center; font-size: 12px;
  color: var(--ink-soft); letter-spacing: 0.04em;
}
.case h4 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.case p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.case__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding-top: 16px; border-top: 1px solid rgba(42,61,80,0.08);
}
.case__metric small { display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.case__metric strong { font-size: 22px; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

/* Footer additions */
.footer__certs {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 8px; font-size: 12px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
}
.footer__contact {
  list-style: none; display: flex; flex-direction: column; gap: 4px;
  font-size: 14px; line-height: 1.5;
}
.footer__contact strong { color: #fff; font-weight: 600; }
.footer__contact a { transition: color 0.15s; }
.footer__contact a:hover { color: #fff; }

/* Image placeholder (for product screenshots) */
.imgph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(51,87,141,0.04) 0 6px, transparent 6px 12px),
    linear-gradient(135deg, #eef2f8, #dbe6f4);
  border: 1px solid rgba(42,61,80,0.08);
  border-radius: 16px;
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: center; padding: 20px;
}

/* Anchor offset */
.anchor { scroll-margin-top: 90px; }

/* Prose lead */
.prose__lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5; color: var(--ink-soft);
  max-width: 66ch; margin-bottom: 28px;
  text-wrap: pretty;
}

/* Section dividers with eyebrow */
.section__intro { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.section__intro .eyebrow { margin-bottom: 18px; }

/* KPI row */
.kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin: 40px 0;
}
@media (max-width: 760px) { .kpi-row { grid-template-columns: 1fr 1fr; } }
.kpi {
  background: var(--cream); border-radius: 16px;
  padding: 24px;
}
.kpi__n {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 700; color: var(--blue);
  letter-spacing: -0.025em; font-variant-numeric: tabular-nums;
}
.kpi__l { font-size: 13px; color: var(--ink-soft); margin-top: 6px; line-height: 1.4; }

/* Deeper inline CTA */
.inline-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 600; font-size: 15px;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.inline-cta:hover { color: var(--red); }


/* ---------- Contact page additions ---------- */
body[data-page="kontakt"] .contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 56px); margin-top: 8px; align-items: start; }
@media (max-width: 900px) { body[data-page="kontakt"] .contact { grid-template-columns: 1fr; } }
.contact__info {
  background: #fff; border: 1px solid rgba(42,61,80,0.08);
  border-radius: 20px; padding: 32px;
}
.contact__row {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  padding: 14px 0; border-top: 1px solid rgba(42,61,80,0.08);
  align-items: start;
}
.contact__row:first-of-type { border-top: none; }
.contact__row > svg {
  width: 22px; height: 22px; color: var(--blue); margin-top: 2px;
  flex-shrink: 0;
}
.contact__row strong { display:block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.contact__row p { font-size: 15px; color: var(--ink); line-height: 1.5; margin: 0; }
.contact__row a { color: var(--ink); }
.contact__row a:hover { color: var(--blue); }

.contact__form {
  background: #fff; border: 1px solid rgba(42,61,80,0.08);
  border-radius: 20px; padding: clamp(28px, 3.5vw, 40px);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.check {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
  margin: 20px 0 4px; font-size: 13px; line-height: 1.5; color: var(--ink-soft);
  align-items: start;
}
.check input { margin-top: 3px; accent-color: var(--blue); }
.check a { color: var(--blue); text-decoration: underline; }

/* Map */
.map {
  position: relative; margin-top: 40px;
  background: #fff; border: 1px solid rgba(42,61,80,0.08);
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 16/7; min-height: 360px;
  box-shadow: 0 10px 40px rgba(51,87,141,0.08);
}
.map__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0; display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}
.map__link-wrap { position: absolute; inset: 0; display: block; }
.map__link-wrap:hover .map__frame { filter: saturate(1) contrast(1); }
.map__label {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  background: #fff; border: 1px solid rgba(42,61,80,0.1);
  padding: 14px 18px; border-radius: 12px;
  font-size: 13px; line-height: 1.5;
  box-shadow: 0 12px 32px rgba(51,87,141,0.15);
  max-width: 280px;
}
.map__label strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.map__label small { display: block; color: var(--ink-soft); font-size: 12px; margin-bottom: 10px; }
.map__link {
  display: inline-block; font-size: 12px; font-weight: 500;
  color: var(--blue); border-bottom: 1px solid currentColor;
}
.map__link:hover { color: var(--red); }

/* Legal pages */
.legal { max-width: 72ch; }
.legal h2 {
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em;
  margin: 36px 0 12px; color: var(--ink);
}
.legal h2:first-child { margin-top: 0; }
.legal p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 14px; }
.legal p strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--blue); border-bottom: 1px solid currentColor; }


/* Person card on contact page */
.person-card {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.person-card::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,46,19,0.28) 0%, transparent 65%);
  pointer-events: none;
}
.person-card__top {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px;
  align-items: center; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.person-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #4a74ac);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: #fff;
  box-shadow: 0 6px 18px rgba(51,87,141,0.4);
}
.person-card__eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.person-card__name {
  font-size: 20px; font-weight: 600; letter-spacing: -0.015em;
  color: #fff; line-height: 1.2;
}
.person-card__role {
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-top: 2px; line-height: 1.4;
}
.person-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 16px 0; margin-bottom: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 1;
}
.person-card__tags span {
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.person-card__actions {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px;
  position: relative; z-index: 1;
}
.person-card__btn {
  display: grid; grid-template-columns: 16px 1fr;
  gap: 12px; align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.person-card__btn svg { color: rgba(255,255,255,0.55); }
.person-card__btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.person-card__btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 600;
}
.person-card__btn--primary svg { color: rgba(255,255,255,0.85); }
.person-card__btn--primary:hover {
  background: #c9260f;
  border-color: #c9260f;
}


/* Image showcase grid */
.imgshowcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 760px) { .imgshowcase { grid-template-columns: 1fr; } }
.imgshowcase__main {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
}
.imgshowcase__main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.imgshowcase__main:hover img { transform: scale(1.03); }
.imgshowcase__badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(42,61,80,0.15);
}
.imgshowcase__badge span {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 2px;
}
.imgshowcase__badge strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--ink);
}
.imgshowcase__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.imgshowcase__side img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease;
}
.imgshowcase__side img:hover { transform: scale(1.03); }


/* Photo strip (referenzen) */
.photostrip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 12px;
  margin: 32px 0 40px;
  height: 360px;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
@media (max-width: 860px) {
  .photostrip { grid-template-columns: 1fr 1fr; height: auto; }
  .photostrip__tall { display: none; }
}
@media (max-width: 560px) { .photostrip { grid-template-columns: 1fr; height: auto; } .photostrip__duo { display: none; } }
.photostrip__main,
.photostrip__tall {
  border-radius: 16px; overflow: hidden;
  height: 100%;
  max-height: 360px;
  position: relative;
}
.photostrip__main img,
.photostrip__tall img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.photostrip__main:hover img,
.photostrip__tall:hover img { transform: scale(1.04); }
.photostrip__duo {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 100%;
}
.photostrip__duo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease;
}
.photostrip__duo img:hover { transform: scale(1.04); }


/* Logobar with real image logos */
.logobar__logo {
  height: 48px; width: auto; max-width: 140px;
  object-fit: contain; object-position: center;
  filter: grayscale(0.2) opacity(0.85);
  transition: filter 0.2s, transform 0.2s;
}
.logobar__logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}

/* Feat card with logo */
.feat--logo {
  align-items: center; text-align: center; padding: 24px 20px; gap: 14px;
}
.feat--logo img {
  width: auto; max-width: 120px; height: 52px;
  object-fit: contain; object-position: center;
  display: block; margin: 0 auto;
}
.feat--logo p {
  font-size: 12px; color: var(--ink-soft); line-height: 1.4; margin: 0;
}


/* Page hero with background image */
.page-hero--img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.page-hero--img::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: color-mix(in srgb, var(--brand-navy, #1a4078) 82%, transparent);
}
.page-hero--img > .wrap { position: relative; z-index: 1; }
.page-hero--img .page-hero__crumbs,
.page-hero--img .page-hero__crumbs a,
.page-hero--img .page-hero__crumbs span { color: rgba(255,255,255,0.65) !important; }
.page-hero--img h1,
.page-hero--img h1 *,
.page-hero--img h1 span { color: #fff !important; font-style: inherit; }
.page-hero--img h1 .italic { font-style: italic !important; color: rgba(255,255,255,0.82) !important; }
.page-hero--img .lead,
.page-hero--img .lead * { color: rgba(255,255,255,0.85) !important; }
.page-hero--img .btn--ghost {
  border-color: rgba(255,255,255,0.45) !important;
  color: #fff !important;
}
.page-hero--img .btn--ghost:hover {
  border-color: #fff !important;
  background: rgba(255,255,255,0.12) !important;
}
.page-hero--img .eyebrow {
  color: rgba(255,255,255,0.75) !important;
}
.page-hero--img .eyebrow::before {
  background: rgba(255,255,255,0.5) !important;
}

/* ── Partner page ── */
.partner-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  padding: 16px 0;
}
.partner-block--reverse {
  grid-template-columns: 1fr 280px;
}
.partner-block--reverse .partner-block__logo { order: 2; }
.partner-block--reverse .partner-block__body  { order: 1; }
@media (max-width: 860px) {
  .partner-block,
  .partner-block--reverse { grid-template-columns: 1fr; gap: 32px; }
  .partner-block--reverse .partner-block__logo { order: 0; }
  .partner-block--reverse .partner-block__body  { order: 0; }
}
.partner-block__logo {
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}
.partner-block__logo img {
  max-width: 100%;
  height: auto;
}
.partner-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partner-list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.partner-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 13px;
}
