/* F3 project site: inner pages, news feed, partners */

.page-hero {
  color: var(--f3-white);
  padding: 5.5rem 1.25rem 3rem;
  margin: 0;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 85% 65% at 88% 12%, rgba(26, 188, 156, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 75% 55% at 8% 92%, rgba(46, 134, 193, 0.28) 0%, transparent 52%),
    linear-gradient(165deg, rgba(26, 82, 118, 0.92) 0%, rgba(21, 67, 96, 0.82) 50%, rgba(26, 188, 156, 0.65) 100%);
}

.page-hero .container {
  max-width: var(--f3-max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.page-hero .page-lead {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  opacity: 0.92;
  font-size: 1.05rem;
}

.inner-page .section:first-of-type:not(.about-split) {
  padding-top: 2.5rem;
}

.inner-page .section--white {
  background: var(--f3-white);
}

/* About page: mirrored split-media rows (Objectives / Implementation / Results) */
.inner-page .about-split {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.inner-page .about-split:nth-of-type(1) {
  z-index: 2;
}

.inner-page .about-split:nth-of-type(2) {
  z-index: 3;
}

.inner-page .about-split:nth-of-type(3) {
  z-index: 4;
}

.inner-page .about-split .split-media {
  position: relative;
  z-index: 2;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.inner-page .about-split .split-media__copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.inner-page .about-split .landing-section-head--compact {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: none;
  margin: 0 0 1.25rem;
}

.inner-page .about-split .landing-section-head h2 {
  text-align: left;
}

.inner-page .about-split .split-media__copy p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: var(--f3-muted);
}

.inner-page .about-split .split-media__copy p:last-child {
  margin-bottom: 0;
}

.inner-page .about-split .img-card {
  position: relative;
  z-index: 3;
}

.inner-page .about-split .img-card img {
  z-index: 1;
}

/* Implementation row: mirrored layout (image left, copy right) */
.inner-page .about-split:nth-of-type(2) .split-media {
  row-gap: 54px;
}

.inner-page .about-split:nth-of-type(2) .split-media__copy {
  margin-left: 0;
  margin-right: 0;
}

.inner-page .about-split:nth-of-type(2) .img-card {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-left: -36px;
  margin-right: -36px;
}

.inner-page .about-split:nth-of-type(2) .img-card img {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding-left: 0;
  padding-right: 0;
}

/* News feed — masonry + expandable articles */
.news-masonry {
  column-count: 1;
  column-gap: 1.25rem;
}

@media (min-width: 640px) {
  .news-masonry {
    column-count: 2;
  }
}

@media (min-width: 1100px) {
  .news-masonry {
    column-count: 3;
  }
}

.news-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.news-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  display: block;
  overflow: visible;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.news-card__preview {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(26, 82, 118, 0.08);
  background: var(--f3-white);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  border-radius: var(--f3-radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-card__preview:hover,
.news-card__preview:focus-visible {
  box-shadow: 0 10px 28px rgba(15, 35, 60, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.news-card__media {
  background: var(--f3-light);
  overflow: hidden;
  line-height: 0;
}

.news-card__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .news-card__preview {
    width: 100%;
    min-width: 0;
  }

  .news-card__media {
    width: 100%;
  }
}

.news-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
}

.news-card__date {
  margin: 0;
  font-size: 0.82rem;
}

.news-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--f3-navy);
}

.news-card__hint {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--f3-teal);
}

body.news-modal-open {
  overflow: hidden;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
}

.news-modal[hidden] {
  display: none !important;
}

.news-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 35, 60, 0.55);
  backdrop-filter: blur(2px);
}

.news-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  margin: 2vh auto 3rem;
  background: #fff;
  border-radius: var(--f3-radius);
  box-shadow: 0 24px 64px rgba(15, 35, 60, 0.22);
  padding: 1.5rem 1.5rem 2rem;
}

.news-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: var(--f3-light);
  color: var(--f3-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.news-modal__close:hover,
.news-modal__close:focus-visible {
  background: rgba(35, 207, 172, 0.2);
  outline: none;
}

.news-modal__header {
  padding-right: 2.5rem;
  margin-bottom: 0.5rem;
}

.news-modal__date {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.85rem;
}

.news-modal__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  color: var(--f3-navy);
}

.news-modal__body {
  max-height: none;
  padding-top: 0.5rem;
}

.news-article-content {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--f3-navy);
  padding-top: 1rem;
}

.news-article-content p {
  margin: 0 0 1rem;
}

.news-article-content h2,
.news-article-content h4,
.news-article-content h6 {
  margin: 1.25rem 0 0.75rem;
  color: var(--f3-navy);
  line-height: 1.3;
}

.news-article-content ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.news-article-content li {
  margin-bottom: 0.35rem;
}

.news-article-content a {
  color: var(--f3-teal);
  word-break: break-word;
}

.news-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--f3-radius) * 0.75);
}

.news-article-content figure {
  margin: 0 0 1rem;
}

.news-article__layout {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .news-article__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .news-article__media {
    position: sticky;
    top: 0.5rem;
  }
}

.news-article__text > *:first-child {
  margin-top: 0;
}

.news-article__text > *:last-child {
  margin-bottom: 0;
}

.news-article__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-article-slideshow {
  border-radius: calc(var(--f3-radius) * 0.75);
  overflow: hidden;
  background: var(--f3-pale);
  border: 1px solid rgba(26, 82, 118, 0.08);
}

.news-article-slideshow__viewport {
  position: relative;
  width: 100%;
  background: #0f2338;
}

.news-article-slideshow__viewport.is-landscape {
  aspect-ratio: 16 / 9;
}

.news-article-slideshow__viewport.is-portrait {
  aspect-ratio: 9 / 16;
  width: min(100%, 78%);
  max-height: min(58vh, 480px);
  margin-inline: auto;
}

.news-article-slideshow__slide {
  display: none;
  position: absolute;
  inset: 0;
  margin: 0;
}

.news-article-slideshow__slide.is-active {
  display: block;
}

.news-article-slideshow__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-slideshow__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  background: var(--f3-light);
  border-top: 1px solid rgba(26, 82, 118, 0.08);
}

.news-article-slideshow__counter {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--f3-muted);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.news-article-slideshow__prev,
.news-article-slideshow__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 1px solid rgba(26, 82, 118, 0.12);
  border-radius: 50%;
  background: var(--f3-white);
  color: var(--f3-navy);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}

.news-article-slideshow__prev:hover,
.news-article-slideshow__next:hover {
  border-color: rgba(26, 82, 118, 0.28);
}

.news-article-slideshow__prev .bi,
.news-article-slideshow__next .bi {
  font-size: 0.85rem;
  line-height: 1;
}

.news-article__media figure:not(.news-article-slideshow__slide) {
  margin: 0;
}

.news-article__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--f3-radius) * 0.75);
}

.news-article-content .wp-block-group,
.news-article-content .has-background {
  background: none !important;
}

.news-content-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.news-content-gallery figure {
  margin: 0;
}

.news-content-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--f3-radius) * 0.75);
}

.news-card__summary {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--f3-muted);
  flex: 1;
}

.news-card__link {
  align-self: flex-start;
  margin-top: auto;
}

.btn-sm {
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
}

.news-status {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--f3-muted);
}

.news-status--loading {
  font-style: italic;
}

.news-status--warn,
.news-status--error {
  background: var(--f3-light);
  border-radius: var(--f3-radius);
  padding: 1.5rem;
  text-align: left;
  max-width: 36rem;
  margin: 0 auto;
}

.news-status--error {
  border-left: 4px solid #c0392b;
}

.news-status--warn {
  border-left: 4px solid #f39c12;
}

/* Partner blocks */
.partner-block {
  display: grid;
  grid-template-columns: minmax(9rem, 11rem) 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26, 82, 118, 0.12);
}

.partner-block:last-of-type {
  border-bottom: none;
}

.partner-block:nth-of-type(even) {
  grid-template-columns: 1fr minmax(9rem, 11rem);
}

.partner-block:nth-of-type(even) .partner-block__aside {
  order: 2;
}

.partner-block:nth-of-type(even) .partner-block__body {
  order: 1;
}

.partner-block__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  align-self: center;
}

.partner-block__logo {
  max-width: 140px;
  width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.partner-block__link {
  white-space: nowrap;
}

.partner-block__body {
  min-width: 0;
  text-align: left;
}

.partner-block h3 {
  margin: 0 0 0.5rem;
  color: var(--f3-navy);
}

@media (max-width: 768px) {
  .partner-block,
  .partner-block:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .partner-block:nth-of-type(even) .partner-block__body {
    order: unset;
    text-align: left;
  }

  .partner-block__aside {
    order: -1;
  }
}

.inner-page #partners.about-partners {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--f3-white);
}

.about-partners__map {
  margin-top: 1.75rem;
}

/* Products (legacy cards) */
.product-card h3 {
  margin: 0 0 0.5rem;
  color: var(--f3-navy);
}

.product-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.product-card li {
  margin-bottom: 0.35rem;
}

/* ── Results page ── */

.page-hero--results {
  background:
    linear-gradient(135deg, rgba(26, 82, 118, 0.88) 0%, rgba(26, 188, 156, 0.78) 100%),
    url("https://fitter3mindsvetjobs.wordpress.com/wp-content/uploads/2024/07/farbe-stuhle-header-products.png") center / cover no-repeat;
}

.page-hero__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.results-jump-nav {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.results-jump-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  flex-shrink: 0;
}

.results-jump-nav__icon {
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.92;
}

.results-jump-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
}

.results-jump-nav__link {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: var(--f3-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: var(--f3-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.results-jump-nav__link:hover,
.results-jump-nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--f3-white);
}

.results-jump-nav__link.is-active {
  background: var(--f3-white);
  color: var(--f3-navy);
  border-color: var(--f3-white);
}

html:has(.results-page) {
  scroll-behavior: smooth;
}

.results-page #wp2,
.results-page #ews,
.results-page #isa,
.results-page #action-plans,
.results-page #trainings,
.results-page #course,
.results-page #cop {
  scroll-margin-top: calc(var(--f3-nav-offset) + 1rem);
}

.results-block {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.results-block--alt {
  background: var(--f3-light);
}

.results-block--band {
  background:
    linear-gradient(120deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 82, 118, 0.06) 100%),
    var(--f3-white);
}

.results-block--cop {
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.results-block-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.results-block-head h2 {
  margin: 0.35rem 0 0;
  color: var(--f3-navy);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.results-tag,
.results-wp-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--f3-teal);
  background: rgba(26, 188, 156, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--f3-radius-pill);
}

.results-wp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.results-wp-tag {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.results-wp-block {
  width: 100%;
}

.results-wp-block + .results-wp-block,
.results-wp-panel + .results-wp-panel,
.wp4-section + .results-wp-panel {
  margin-top: clamp(3.5rem, 7vw, 5rem);
}

.wp4-section__head h2 {
  margin: 0 0 0.5rem;
  color: var(--f3-navy);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
}

.wp4-section__head p {
  margin: 0 0 2rem;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--f3-muted);
}

.results-wp-panel {
  width: 100%;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--f3-radius-lg);
  background: var(--f3-white);
  border: 1px solid rgba(26, 82, 118, 0.1);
  box-shadow: 0 2px 12px rgba(26, 82, 118, 0.05);
}

.results-wp-panel--trainings {
  background: var(--f3-white);
}

.wp4-trainings-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
}

.wp4-trainings-showcase__content {
  min-width: 0;
}

.wp4-trainings-showcase__themes {
  display: flex;
  align-items: stretch;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: var(--f3-radius);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafcfe 62%,
    #f0f6fb 88%,
    rgba(26, 82, 118, 0.1) 100%
  );
  border: 1px solid rgba(26, 82, 118, 0.06);
}

.wp4-trainings-showcase__themes .topic-cards--header {
  width: 100%;
  align-content: stretch;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.wp4-trainings-showcase__themes .topic-cards--header::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -8%;
  top: auto;
  width: 118%;
  height: 55%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(26, 82, 118, 0.1) 0%,
    rgba(26, 82, 118, 0.05) 42%,
    transparent 72%
  );
  filter: blur(18px);
  pointer-events: none;
}

.wp4-trainings-showcase__themes .topic-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  grid-auto-rows: 1fr;
}

/* Match Trainings catalog hero (.topic-cards--header) */
.wp4-trainings-showcase__themes .topic-cards--header .topic-card {
  --topic-color: var(--f3-navy);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--topic-color) 22%, #d8e8f4);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    color-mix(in srgb, var(--topic-color) 9%, white) 100%
  );
  box-shadow:
    0 4px 18px rgba(26, 82, 118, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--f3-navy);
  height: 100%;
  min-height: 7.5rem;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.wp4-trainings-showcase__themes .topic-card--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  text-align: left;
  padding: 1rem 1.05rem;
}

.wp4-trainings-showcase__themes .topic-cards--header .topic-card--link:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    color-mix(in srgb, var(--topic-color) 14%, white) 100%
  );
  border-color: color-mix(in srgb, var(--topic-color) 38%, #d8e8f4);
  box-shadow:
    0 8px 24px rgba(26, 82, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.wp4-trainings-showcase__themes .topic-card--link:focus-visible {
  outline: 2px solid var(--f3-teal);
  outline-offset: 2px;
}

.wp4-trainings-showcase__themes .topic-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  width: 100%;
}

.wp4-trainings-showcase__themes .topic-card-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.wp4-trainings-showcase__themes .topic-cards--header .topic-card-heading .topic-card-letter,
.wp4-trainings-showcase__themes .topic-cards--header .topic-card-letter {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--topic-color);
  text-transform: uppercase;
  font-weight: 700;
}

.wp4-trainings-showcase__themes .topic-cards--header .topic-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--topic-color);
  border: none;
  box-shadow: none;
  flex-shrink: 0;
}

.wp4-trainings-showcase__themes .topic-cards--header .topic-card-icon .bi {
  font-size: 1.05rem;
  line-height: 1;
}

.wp4-trainings-showcase__themes .topic-cards--header .topic-card-title {
  display: block;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--f3-navy);
  font-weight: 600;
  text-align: left;
}

@media (max-width: 900px) {
  .wp4-trainings-showcase__grid {
    grid-template-columns: 1fr;
  }

  .wp4-trainings-showcase__themes {
    order: -1;
  }
}

@media (max-width: 520px) {
  .wp4-trainings-showcase__themes .topic-cards {
    grid-template-columns: 1fr;
  }
}

.results-wp-panel__head h2 {
  margin: 0 0 0.5rem;
  color: var(--f3-navy);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
}

.results-wp-panel__head p {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--f3-muted);
}

.wp4-kit {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.wp4-kit__tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  align-items: stretch;
}

.wp4-kit-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem 1.25rem;
  border-radius: var(--f3-radius);
  background: var(--f3-light);
  border: 1px solid rgba(26, 82, 118, 0.1);
}

.wp4-kit-card:first-of-type {
  margin-right: 10px;
}

.wp4-kit-card:last-of-type {
  margin-left: 10px;
}

.wp4-kit__arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--f3-white);
  border: 1px solid rgba(26, 82, 118, 0.14);
  box-shadow: 0 2px 8px rgba(26, 82, 118, 0.1);
  color: var(--f3-teal);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.wp4-kit__arrow .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.wp4-kit-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.wp4-kit-card__lead {
  margin: 0 0 1.1rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--f3-muted);
}

.wp4-kit-card__action {
  margin-top: auto;
}

.wp4-plans-panel {
  padding: 1.2rem 1.25rem;
  border-radius: var(--f3-radius);
  background: var(--f3-white);
  border: 1px solid rgba(26, 82, 118, 0.1);
}

.wp4-plans-panel__head {
  margin-bottom: 1rem;
}

.wp4-plans-panel__title {
  margin: 0 0 0.35rem;
  color: var(--f3-navy);
  font-size: 1rem;
}

.wp4-plans-panel__lead {
  margin: 0;
  max-width: 44rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--f3-muted);
}

.wp4-plans-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp4-plan-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--f3-radius);
  background: var(--f3-light);
  border: 1px solid rgba(26, 82, 118, 0.08);
}

.wp4-plan-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.wp4-plan-item__country {
  color: var(--f3-navy);
  font-size: 0.92rem;
}

.wp4-plan-item__partner {
  font-size: 0.8rem;
  color: var(--f3-muted);
}

.wp4-plan-item__meta {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--f3-muted);
  opacity: 0.9;
}

.wp4-plan-item__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(26, 82, 118, 0.14);
  background: transparent;
  color: var(--f3-navy);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wp4-plan-item__download:hover {
  background: var(--f3-teal);
  border-color: var(--f3-teal);
  color: var(--f3-white);
}

.wp4-plan-item__download .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.wp4-trainings-catalog {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.wp4-trainings-catalog p {
  margin: 0;
  max-width: 40rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--f3-muted);
}

.wp4-trainings-catalog a:not(.results-tool-link) {
  color: var(--f3-navy);
  font-weight: 600;
}

.wp4-trainings-catalog .results-course-stat-chips {
  margin: 0;
}

.results-wp-block--last {
  margin-bottom: 0;
}

.results-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.results-split--reverse .results-split__media {
  order: 2;
}

.results-split--reverse .results-split__copy {
  order: 1;
}

.results-split__copy h2 {
  margin: 0.5rem 0 0.75rem;
  color: var(--f3-navy);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.results-split__copy > p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: var(--f3-muted);
}

/* WP5 blended course showcase */
.results-course-showcase {
  width: 100%;
  background: var(--f3-white);
  border-radius: var(--f3-radius-lg);
  border: 1px solid rgba(26, 82, 118, 0.12);
  box-shadow: 0 8px 32px rgba(26, 82, 118, 0.08);
  overflow: hidden;
  margin-bottom: clamp(3.5rem, 7vw, 5rem);
}

.results-course-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
}

.results-course-showcase__content h2 {
  margin: 0 0 0.65rem;
  color: var(--f3-navy);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.2;
}

.results-course-showcase__lead {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--f3-muted);
  max-width: 36rem;
}

.results-course-stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.results-course-stat-chips li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--f3-navy);
  background: rgba(26, 82, 118, 0.07);
  border: 1px solid rgba(26, 82, 118, 0.1);
  border-radius: var(--f3-radius-pill);
  padding: 0.3rem 0.65rem;
}

.results-course-highlights {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--f3-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.results-course-highlights li {
  margin-bottom: 0.35rem;
}

.results-course-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.results-course-showcase__visual {
  min-width: 0;
}

.course-demo--embedded {
  min-height: 340px;
  box-shadow: none;
  border: none;
}

.results-course-showcase__demo-caption {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--f3-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .results-course-showcase__grid {
    grid-template-columns: 1fr;
  }

  .results-course-showcase__visual {
    order: -1;
  }

  .course-demo--embedded {
    min-height: 300px;
  }
}

.results-list {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--f3-muted);
}

.results-list li {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

.results-list--compact {
  font-size: 0.95rem;
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.results-preview {
  margin: 0;
  border-radius: var(--f3-radius-lg);
  overflow: hidden;
  box-shadow: var(--f3-shadow);
  border: 1px solid rgba(26, 82, 118, 0.1);
  background: var(--f3-white);
}

.results-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.results-preview figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: var(--f3-muted);
  background: var(--f3-light);
  border-top: 1px solid rgba(26, 82, 118, 0.08);
}

.results-preview--rounded img {
  aspect-ratio: 1;
  object-fit: cover;
}

.results-preview--phone {
  margin-bottom: 1rem;
}

.results-cop-slideshow__viewport {
  position: relative;
}

.results-cop-slideshow__slide {
  display: none;
  margin: 0;
}

.results-cop-slideshow__slide.is-active {
  display: block;
}

.results-cop-slideshow__slide img {
  display: block;
  width: 100%;
  height: auto;
}

.results-cop-slideshow__caption {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: var(--f3-muted);
  background: var(--f3-light);
  border-top: 1px solid rgba(26, 82, 118, 0.08);
}

.results-cop-slideshow__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0.85rem 0.65rem;
  background: var(--f3-light);
  border-top: 1px solid rgba(26, 82, 118, 0.06);
}

.results-cop-slideshow__prev,
.results-cop-slideshow__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(26, 82, 118, 0.15);
  border-radius: 50%;
  background: var(--f3-white);
  color: var(--f3-navy);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.results-cop-slideshow__prev:hover,
.results-cop-slideshow__next:hover {
  background: var(--f3-white);
  border-color: rgba(26, 82, 118, 0.3);
}

.results-cop-slideshow__prev .icon,
.results-cop-slideshow__next .icon {
  width: 1rem;
  height: 1rem;
}

.results-cop-slideshow__dots {
  display: flex;
  gap: 0.4rem;
}

.results-cop-slideshow__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(26, 82, 118, 0.2);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.results-cop-slideshow__dot.is-active {
  background: var(--f3-teal);
  transform: scale(1.15);
}

.results-duo {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}

.results-duo--tools {
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: stretch;
}

.results-tool-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.results-tool-card .results-preview {
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
}

.results-tool-card .results-preview img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

.results-tool-card .results-preview--cover img {
  object-fit: cover;
  object-position: top center;
}

.results-tool-card .results-preview figcaption {
  flex-shrink: 0;
}

.results-tool-card__body {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.results-tool-card__body h3 {
  margin: 0 0 0.5rem;
  color: var(--f3-navy);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.results-tool-card__body p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--f3-muted);
}

.results-tool-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.results-tool-card__actions .results-tool-link {
  width: 100%;
}

.results-tool-card__actions .tool-download-pill {
  width: 100%;
}

/* Page-scale tool CTAs: nav/footer colours, .btn / download-pill sizing */
.results-tool-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--f3-radius);
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.results-tool-link .icon,
.results-tool-link .bi {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1;
}

.results-tool-link--ews {
  background: #23ceac;
  color: var(--f3-white);
  border: 2px solid #23ceac;
}

.results-tool-link--ews:hover {
  background: #1a9b85;
  border-color: #1a9b85;
  color: var(--f3-white);
}

.results-tool-link--course {
  background: var(--f3-white);
  color: var(--f3-navy);
  border: 2px solid rgba(26, 82, 118, 0.26);
  box-shadow: 0 1px 2px rgba(26, 82, 118, 0.06);
}

.results-tool-link--course:hover {
  border-color: rgba(26, 82, 118, 0.4);
  background: var(--f3-light);
  color: var(--f3-navy);
}

.results-tool-link--trainings {
  background: var(--f3-teal);
  color: var(--f3-white);
  border: 2px solid var(--f3-teal);
}

.results-tool-link--trainings:hover {
  background: #17a589;
  border-color: #17a589;
  color: var(--f3-white);
}

.tool-download-pill {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: var(--f3-radius);
  overflow: hidden;
  background: var(--f3-teal);
  box-shadow: 0 1px 0 rgba(26, 82, 118, 0.08);
  transition: box-shadow 0.15s ease;
}

.tool-download-pill:focus-within {
  box-shadow: 0 0 0 2px var(--f3-teal), 0 1px 0 rgba(26, 82, 118, 0.08);
}

.tool-download-pill__select {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0.6rem 2rem 0.6rem 1rem;
  border: none;
  border-right: 1px solid rgba(26, 82, 118, 0.12);
  background-color: var(--f3-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a5276'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 10.94l3.71-3.71a.75.75 0 1 1 1.06 1.06l-4.24 4.25a.75.75 0 0 1-1.06 0L5.21 8.29a.75.75 0 0 1 .02-1.08Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 1rem;
  color: var(--f3-navy);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
}

.tool-download-pill__select option {
  color: var(--f3-navy);
  background-color: var(--f3-white);
}

.tool-download-pill__select:focus {
  outline: none;
}

.tool-download-pill__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  padding: 0.6rem 1rem;
  border: none;
  background: var(--f3-teal);
  color: var(--f3-white);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease;
}

.tool-download-pill__btn:hover {
  background: #16a085;
  color: var(--f3-white);
}

.tool-download-pill__btn .icon {
  width: 1rem;
  height: 1rem;
}

.tool-download-pill--ews {
  background: #23ceac;
  box-shadow: 0 1px 0 rgba(26, 155, 133, 0.12);
}

.tool-download-pill--ews:focus-within {
  box-shadow: 0 0 0 2px #23ceac, 0 1px 0 rgba(26, 155, 133, 0.12);
}

.tool-download-pill--ews .tool-download-pill__btn {
  background: #23ceac;
}

.tool-download-pill--ews .tool-download-pill__btn:hover {
  background: #1a9b85;
}

/* Guide downloads — secondary row with label + outlined pill */
.tool-guide-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}

.tool-guide-row__label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--f3-muted);
  white-space: nowrap;
}

.tool-guide-row .tool-download-pill {
  flex: 1 1 auto;
  min-width: 0;
}

.tool-download-pill--guide {
  background: var(--f3-white);
  border: 2px solid rgba(35, 206, 172, 0.4);
  box-shadow: 0 1px 2px rgba(26, 155, 133, 0.06);
}

.tool-download-pill--guide:focus-within {
  border-color: rgba(35, 206, 172, 0.55);
  box-shadow: 0 0 0 2px rgba(35, 206, 172, 0.2), 0 1px 2px rgba(26, 155, 133, 0.06);
}

.tool-download-pill--guide .tool-download-pill__btn {
  background: transparent;
  color: #23ceac;
}

.tool-download-pill--guide .tool-download-pill__btn:hover {
  background: rgba(35, 206, 172, 0.1);
  color: #1a9b85;
}

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

.results-feature {
  padding: 1.5rem;
  border-radius: var(--f3-radius-lg);
  background: var(--f3-white);
  border: 1px solid rgba(26, 82, 118, 0.1);
  box-shadow: 0 4px 16px rgba(26, 82, 118, 0.06);
  display: flex;
  flex-direction: column;
}

.results-feature h3 {
  margin: 0 0 0.5rem;
  color: var(--f3-navy);
  font-size: 1.1rem;
}

.results-feature p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--f3-muted);
}

.results-feature__icon {
  margin-bottom: 1rem;
}

.results-title-with-icon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.results-inline-icon {
  display: inline-flex;
  color: var(--f3-teal);
  flex-shrink: 0;
}

.results-inline-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.results-badge {
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--f3-navy);
  background: var(--f3-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--f3-radius-pill);
  border: 1px dashed rgba(26, 82, 118, 0.25);
}

.results-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.results-card {
  padding: 1.5rem;
  border-radius: var(--f3-radius-lg);
  background: var(--f3-white);
  border: 1px solid rgba(26, 82, 118, 0.1);
  box-shadow: 0 2px 12px rgba(26, 82, 118, 0.05);
  text-align: center;
}

.results-card__thumb {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

.results-card h3 {
  margin: 0 0 0.5rem;
  color: var(--f3-navy);
}

.results-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--f3-muted);
  text-align: left;
}

.results-pillars {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.results-pillars strong {
  display: block;
  color: var(--f3-teal);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.results-pillars p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--f3-muted);
}

@media (max-width: 900px) {
  .results-split,
  .results-split--reverse .results-split__media,
  .results-split--reverse .results-split__copy {
    grid-template-columns: 1fr;
    order: unset;
  }

  .results-duo,
  .results-cards,
  .wp4-kit__tools {
    grid-template-columns: 1fr;
  }

  .wp4-kit__arrow {
    position: relative;
    left: auto;
    top: auto;
    margin: -0.35rem auto;
    transform: rotate(90deg);
    justify-self: center;
  }

  .wp4-plans-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .wp4-plans-list {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-form {
  max-width: 42rem;
  margin: 0 auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__field {
  min-width: 0;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--f3-navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(26, 82, 118, 0.2);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 1rem;
}

.contact-form__field input {
  margin-bottom: 0;
}

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

.contact-form .btn-primary {
  background: var(--f3-light);
  color: var(--f3-navy);
  transition: background 0.15s ease;
}

.contact-form .btn-primary:hover {
  background: #c5e3f5;
  color: var(--f3-navy);
}

@media (max-width: 600px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .contact-form__field input {
    margin-bottom: 1rem;
  }
}

.contact-email {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-email a {
  color: var(--f3-teal);
  font-weight: 600;
  font-size: 1.15rem;
}

/* CTA strip */
.cta-strip {
  color: var(--f3-white);
  text-align: center;
  padding: 3rem 1.25rem;
  background:
    linear-gradient(165deg, rgba(26, 82, 118, 0.9) 0%, rgba(26, 188, 156, 0.75) 100%);
  border-radius: 0;
}

.cta-strip h2 {
  margin: 0 0 0.5rem;
}

.cta-strip p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

/* ── Home landing page ── */

.home-page .hero-split {
  color: var(--f3-text);
}

.home-page .hero-split::before {
  background:
    radial-gradient(ellipse 75% 55% at 94% 12%, rgba(46, 134, 193, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 6% 92%, rgba(26, 188, 156, 0.24) 0%, transparent 52%),
    linear-gradient(
      165deg,
      #ffffff 0%,
      #ffffff 24%,
      #f4fbfa 38%,
      #e0f0ec 52%,
      #c5dce8 72%,
      #9eb9ce 88%,
      #7fa8be 100%
    );
}

.home-page .hero-split::after {
  background: linear-gradient(to top, rgba(26, 82, 118, 0.1) 0%, transparent 58%);
}

.home-page .hero-copy h1,
.home-page .hero-copy .hero-sub {
  color: var(--f3-navy);
}

.home-page .hero-copy .hero-sub {
  opacity: 1;
}

.home-page .hero-copy .gradient-text {
  background: linear-gradient(90deg, var(--f3-navy) 0%, var(--f3-blue) 45%, var(--f3-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.home-page .hero-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--f3-teal);
  opacity: 1;
}

.home-page .hero-benefits {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  max-width: 30rem;
}

.home-page .hero-benefits li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--f3-muted);
}

.home-page .hero-benefits li:last-child {
  margin-bottom: 0;
}

.home-page .hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--f3-blue);
}

.home-page .hero-benefits strong {
  font-weight: 700;
  color: var(--f3-navy);
}

.home-page .hero-copy .btn-primary {
  background: var(--f3-navy);
  color: var(--f3-white);
}

.home-page .hero-copy .btn-primary:hover {
  background: var(--f3-blue-dark);
  color: var(--f3-white);
}

.home-page .hero-copy .btn-secondary {
  background: transparent;
  color: var(--f3-navy);
  border: 2px solid rgba(26, 82, 118, 0.35);
}

.home-page .hero-copy .btn-secondary:hover {
  background: rgba(26, 82, 118, 0.07);
  color: var(--f3-navy);
  border-color: rgba(26, 82, 118, 0.5);
}

@media (max-width: 900px) {
  .home-page .hero-benefits {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 26rem;
  }
}

.home-page .hero-media {
  aspect-ratio: 4 / 3;
  max-height: 420px;
}

.home-page .hero-media .hero-results-demo {
  height: 100%;
}

@media (max-width: 900px) {
  .home-page .hero-copy .hero-actions {
    justify-content: center;
  }
}

.home-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.landing-section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.landing-section-head--left h2 {
  text-align: left;
}

.home-split__copy p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: var(--f3-muted);
}

.home-split__copy p strong {
  color: var(--f3-navy);
}

.home-split__actions {
  margin-top: 1.25rem;
}

.logo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 2.5rem 2rem;
  border-radius: var(--f3-radius-lg);
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(26, 188, 156, 0.12) 0%, transparent 70%),
    var(--f3-light);
  border: 1px solid rgba(26, 82, 118, 0.08);
}

.logo-showcase img {
  width: min(240px, 70%);
  height: auto;
  object-fit: contain;
}

.home-page .home-products.section-alt {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  position: relative;
  isolation: isolate;
}

.home-page .home-products.section-alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(320px, 55%);
  background: radial-gradient(
    ellipse 120% 100% at 50% 100%,
    rgba(46, 134, 193, 0.16) 0%,
    rgba(232, 244, 252, 0.06) 42%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.home-products .container {
  max-width: min(1200px, 100%);
  position: relative;
  z-index: 1;
}

.product-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .product-teaser-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.home-products .product-teaser-card {
  box-shadow:
    0 6px 28px rgba(26, 82, 118, 0.09),
    0 2px 8px rgba(26, 82, 118, 0.04);
}

.product-teaser-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1rem 1.25rem;
  border-radius: var(--f3-radius);
  background: var(--f3-white);
  border: 1px solid rgba(26, 82, 118, 0.08);
  box-shadow: 0 2px 8px rgba(26, 82, 118, 0.04);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  min-height: 13.5rem;
}

.product-teaser-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--f3-shadow);
  border-color: rgba(26, 188, 156, 0.35);
}

.product-teaser-card:focus-visible {
  outline: 2px solid var(--f3-teal);
  outline-offset: 2px;
}

.product-teaser-icon {
  margin-bottom: 0.75rem;
}

.product-teaser-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--f3-navy);
  line-height: 1.3;
}

.product-teaser-card__desc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 4.75rem;
}

.product-teaser-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--f3-muted);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-teaser-card__arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--f3-teal);
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.product-teaser-card__arrow .icon {
  width: 1.75rem;
  height: 1.75rem;
}

.product-teaser-card:hover p,
.product-teaser-card:focus-visible p {
  opacity: 0;
  transform: translateY(0.35rem);
}

.product-teaser-card:hover .product-teaser-card__arrow,
.product-teaser-card:focus-visible .product-teaser-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .product-teaser-card p,
  .product-teaser-card__arrow {
    transition: none;
  }

  .product-teaser-card:hover p,
  .product-teaser-card:focus-visible p {
    transform: none;
  }

  .product-teaser-card:hover .product-teaser-card__arrow,
  .product-teaser-card:focus-visible .product-teaser-card__arrow {
    transform: none;
  }
}

.home-section-cta {
  text-align: center;
  margin: 1.75rem 0 0;
}

.home-page .home-contact {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--f3-pale) 0%, var(--f3-light) 100%);
}

.home-contact .contact-email {
  margin-bottom: 1.5rem;
}

.home-partners.home-partners {
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-partners .partners-carousel--bleed {
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}

.partners-map-wrap {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.home-partners .partners-map-wrap {
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
}

.partners-map-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(108%, 72rem);
  height: 125%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 72% 68% at 50% 50%,
    rgba(46, 134, 193, 0.26) 0%,
    rgba(46, 134, 193, 0.12) 38%,
    rgba(26, 82, 118, 0.06) 58%,
    transparent 76%
  );
  filter: blur(10px);
}

.partners-map {
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  border-radius: var(--f3-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 82, 118, 0.12);
  box-shadow:
    0 4px 20px rgba(26, 82, 118, 0.08),
    0 10px 40px rgba(46, 134, 193, 0.16),
    0 0 64px rgba(46, 134, 193, 0.14);
  background: var(--f3-light);
  position: relative;
  z-index: 1;
}

.partners-map .leaflet-container {
  overflow: hidden;
  border-radius: inherit;
}

.partners-map-hint {
  margin: 0.6rem 0 0;
  font-size: 0.8rem;
  color: var(--f3-muted);
  text-align: center;
}

.partners-map-marker {
  background: transparent;
  border: none;
}

.partners-map-marker span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--f3-teal);
  border: 2px solid var(--f3-white);
  box-shadow: 0 1px 6px rgba(26, 82, 118, 0.35);
}

.partners-map .leaflet-popup-content {
  margin: 0.65rem 0.85rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--f3-navy);
}

.partners-map-popup__addr {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--f3-muted);
}

.partners-map-popup__links {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
}

.partners-map-popup__links a {
  color: var(--f3-teal);
  font-weight: 600;
}

.home-page #partners.partners-band {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #ffffff 0%, var(--f3-pale) 100%);
}

.home-page .home-project {
  margin-top: 65px;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 768px) {
  .home-split {
    grid-template-columns: 1fr;
  }

  .landing-section-head--left {
    text-align: center;
  }

  .home-split__actions {
    text-align: center;
  }

  .logo-showcase {
    min-height: 200px;
    padding: 1.75rem;
  }
}

/* --- Mobile / tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .page-hero {
    padding: clamp(5rem, 14vw, 6rem) var(--f3-page-gutter) clamp(3rem, 6vh, 3.75rem);
  }

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

  .results-jump-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .results-jump-nav__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
    flex: none;
    width: 100%;
    margin: 0;
    padding: 0 0 0.45rem;
    mask-image: linear-gradient(to right, #000 calc(100% - 2.5rem), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 2.5rem), transparent 100%);
  }

  .results-jump-nav__list::-webkit-scrollbar {
    height: 4px;
  }

  .results-jump-nav__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
  }

  .results-jump-nav__link {
    flex: 0 0 auto;
    min-height: 2.35rem;
    padding: 0.4rem 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    scroll-snap-align: start;
  }

  .results-wp-panel {
    padding: clamp(0.75rem, 2vw, 1.1rem);
  }

  .wp4-trainings-showcase__grid {
    gap: 0.75rem;
  }

  .wp4-trainings-showcase__themes {
    padding: 0.45rem;
  }

  .wp4-trainings-showcase__themes .topic-card--stacked {
    padding: 0.6rem 0.65rem;
  }

  .wp4-trainings-showcase__themes .topic-card-body {
    gap: 0.35rem;
  }

  .results-card {
    padding: 0.75rem;
  }

  .results-course-showcase__grid {
    padding: clamp(0.75rem, 2vw, 1.1rem);
  }

  .wp4-kit-card {
    padding: 0.8rem 0.85rem;
  }

  .wp4-kit-card:first-of-type {
    margin-right: 0;
  }

  .wp4-kit-card:last-of-type {
    margin-left: 0;
  }

  .results-tool-card__body {
    padding: 0.75rem 0.85rem 0.85rem;
  }
}

@media (max-width: 768px) {
  .inner-page .about-split:nth-of-type(2) .img-card {
    margin-left: 0;
    margin-right: 0;
  }

  .inner-page .about-split:nth-of-type(2) .split-media {
    display: flex;
    flex-direction: column;
  }

  .inner-page .about-split:nth-of-type(2) .split-media__copy {
    order: -1;
  }

  .cta-strip {
    padding: 2.25rem var(--f3-page-gutter);
  }

  .cta-strip .btn {
    width: 100%;
    max-width: 18rem;
  }

  .section {
    padding: 2rem 0;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding-bottom: clamp(3.25rem, 7vh, 4rem);
  }

  .wp4-plans-list {
    grid-template-columns: 1fr;
  }

  .results-tool-link,
  .tool-download-pill__btn {
    white-space: normal;
    font-size: 0.9rem;
    text-align: center;
  }

  .tool-guide-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tool-guide-row__label {
    width: 100%;
  }

  .news-modal__dialog {
    margin: 1rem;
    padding: 1rem 1rem 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .contact-form .btn-primary {
    width: 100%;
  }

  .home-page .hero-copy .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .home-page .hero-copy .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
