/* ================================================================
   PERCAYSO INFORM — Main Stylesheet
   New build: June 2026
   ================================================================ */

@import url('https://use.typekit.net/kql5ytm.css');

:root {
  --navy:       #013366;
  --navy-light: #024a8c;
  --navy-dark:  #011933;
  --sky:        #19a5cc;
  --sky-light:  #4fc3e0;
  --aqua:       #61dfe5;
  --marine:     #9cf8e9;
  --grey-dark:  #575756;
  --grey-mid:   #8a8a8a;
  --grey-light: #ededed;
  --white:      #ffffff;
  --black:      #1a1a1a;
  --font-sans:  'greycliff-cf', 'Helvetica Neue', Arial, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: clip;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 1rem; top: 1rem; width: auto; height: auto; padding: 0.5rem 1rem;
  background: var(--sky); color: white; z-index: 9999;
}

/* ================================================================
   NAVIGATION — Glass Header
   ================================================================ */
.pil-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100000;
  height: 64px;
  background: rgba(1, 51, 102, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}
.pil-nav__left {
  display: flex; align-items: center; flex-shrink: 0;
}
.pil-nav__left a { text-decoration: none; display: flex; align-items: center; }
.pil-nav__logo { height: 38px; width: auto; display: block; }
.pil-nav__centre {
  flex: 1; display: flex; justify-content: flex-start; padding-left: 2rem;
}
.pil-nav__list {
  display: flex; gap: 0; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.pil-nav__item { position: relative; }
.pil-nav__link {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: none; border: none; cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap; text-decoration: none;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}
.pil-nav__link:hover,
.pil-nav__link[aria-expanded="true"] {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
}
.pil-nav__chevron { transition: transform 0.2s ease; }
.pil-nav__link[aria-expanded="true"] .pil-nav__chevron { transform: rotate(180deg); }
.pil-nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(1, 30, 70, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  min-width: 380px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100; padding: 0.4rem 0;
  list-style: none; margin: 0;
  display: flex;
}
.pil-nav__dropdown--single {
  flex-direction: column;
  min-width: 240px;
}
.pil-nav__dropdown-col {
  flex: 1;
  min-width: 0;
  padding: 0;
  list-style: none;
  margin: 0;
}
.pil-nav__dropdown-col + .pil-nav__dropdown-col {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.pil-nav__item--dropdown:hover .pil-nav__dropdown,
.pil-nav__link--parent[aria-expanded="true"] + .pil-nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.pil-nav__dropdown a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
  font-family: var(--font-sans);
}
.pil-nav__dropdown a:hover {
  background: rgba(255,255,255,0.1); color: #ffffff;
}
.pil-nav__dropdown-label {
  display: block; padding: 0.75rem 1.2rem 0.3rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sky); pointer-events: none;
}
.pil-nav__right {
  display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0;
}
.pil-nav__companion { height: 24px; width: auto; display: block; }
.pil-nav__companion-link { display: flex; align-items: center; opacity: 0.9; transition: opacity 0.2s ease; cursor: pointer; }
.pil-nav__companion-link:hover { opacity: 1; }
.pil-nav__cta {
  display: inline-block; padding: 0.45rem 1.1rem;
  background: var(--sky);
  border: none;
  border-radius: 20px;
  font-size: 0.85rem; font-weight: 700;
  color: #ffffff; text-decoration: none;
  transition: background 0.2s ease;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.pil-nav__cta:hover {
  background: #1490b5;
}

/* Mobile toggle */
.pil-nav__mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.pil-nav__burger {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.9); border-radius: 2px;
}
@media (max-width: 900px) {
  .pil-nav__centre, .pil-nav__right .pil-nav__cta { display: none; }
  .pil-nav__mobile-toggle { display: flex; }
  .pil-nav__item--dropdown:hover .pil-nav__dropdown {
    opacity: 0; visibility: hidden;
  }
  .pil-nav.pil-nav--open .pil-nav__centre {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pil-nav.pil-nav--open .pil-nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .pil-nav.pil-nav--open .pil-nav__item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
  }
  .pil-nav.pil-nav--open .pil-nav__link,
  .pil-nav.pil-nav--open .pil-nav__link--parent {
    padding: 0.85rem 0;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    display: block;
  }
  .pil-nav.pil-nav--open .pil-nav__dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 0;
    min-width: 0;
    flex-direction: column;
    transition: opacity 0.2s ease, max-height 0.3s ease, visibility 0.2s ease;
  }
  .pil-nav.pil-nav--open .pil-nav__link--parent[aria-expanded="true"] + .pil-nav__dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 800px;
    padding: 0.5rem 0;
  }
  .pil-nav.pil-nav--open .pil-nav__dropdown-col {
    border-left: none;
  }
  .pil-nav.pil-nav--open .pil-nav__dropdown-col + .pil-nav__dropdown-col {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .pil-nav.pil-nav--open .pil-nav__dropdown a {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  .pil-nav.pil-nav--open .pil-nav__dropdown-label {
    padding: 0.6rem 1.5rem 0.2rem;
  }
  .pil-nav.pil-nav--open .pil-nav__right .pil-nav__cta {
    display: inline-flex;
    margin-top: 1rem;
  }
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center top;
  color: var(--white);
  text-align: center;
  position: relative;
  padding: calc(64px + 5rem) 4rem 3rem;
}
.hero__headline {
  color: var(--sky);
  font-size: clamp(3.375rem, 6.75vw, 5.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 1200px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__subhead {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.hero__metrics {
  display: flex; flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero__metric {
  background: none;
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 150px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.hero__metric:last-child {
  border-right: none;
}
.hero__metric-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sky);
  line-height: 1.1;
}
.hero__metric-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
  line-height: 1.3;
}
.hero__ctas {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  color: var(--sky); opacity: 0.6;
  animation: hero-bounce 2s infinite;
  font-size: 2.25rem;
}
@keyframes hero-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-block;
  background: rgba(25, 165, 204, 0.25);
  color: #ffffff;
  border: 1.5px solid rgba(25, 165, 204, 0.6);
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 700; border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s ease; white-space: nowrap;
  font-family: var(--font-sans);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-primary:hover {
  background: rgba(25, 165, 204, 0.45);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(25,165,204,0.35);
}
.btn-ghost {
  display: inline-block;
  background: rgba(25, 165, 204, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(25, 165, 204, 0.35);
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 500; border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s ease; white-space: nowrap;
  font-family: var(--font-sans);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(25, 165, 204, 0.3);
  border-color: rgba(25, 165, 204, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(25,165,204,0.25);
}
.btn-primary--dark {
  background: var(--sky); color: var(--white);
}
.btn-ghost--dark {
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost--dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ================================================================
   SECTION: PROVOCATION (Quote Lake)
   ================================================================ */
.provocation {
  background: linear-gradient(to bottom, #a3dbeb 0px, #f3fafc 300px);
  padding: 5rem 2rem;
}
.provocation__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.provocation__header {
  text-align: center;
  margin-bottom: 3rem;
}
.provocation__headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.provocation__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.provocation__card {
  background: #ffffff;
  border: 1px solid rgba(1, 51, 102, 0.10);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  box-shadow: 0 2px 16px rgba(1, 51, 102, 0.06);
}
.provocation__card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--sky);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.provocation__card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--grey-dark);
  margin-bottom: 0.85rem;
}
.provocation__card p:last-child { margin-bottom: 0; }
.provocation__image {
  display: block;
  margin: 3rem auto 0;
  width: 70%;
  max-width: 900px;
  border-radius: 12px;
}
@media (max-width: 700px) {
  .provocation__cards { grid-template-columns: 1fr; }
  .provocation { padding: 3rem 1.25rem; }
}

/* ================================================================
   SECTION: SOL-CTA (Solution Call to Action)
   ================================================================ */
.sol-cta {
  background: linear-gradient(rgba(1,51,102,0.82), rgba(1,51,102,0.88)),
              url('../assets/images/backgrounds/technology.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}
.sol-cta__headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--sky);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.sol-cta__subhead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.sol-cta__buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.sol-cta__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: var(--font-sans);
}
.sol-cta__btn:hover {
  transform: translateY(-2px);
}
.sol-cta__btn--primary {
  background: var(--sky);
  color: #ffffff;
}
.sol-cta__btn--primary:hover {
  background: #1490b5;
}
.sol-cta__btn--secondary {
  background: transparent;
  color: var(--sky);
  border: 2px solid var(--sky);
}
.sol-cta__btn--secondary:hover {
  background: rgba(25,165,204,0.15);
}

/* ================================================================
   SECTION: PROBLEMS WE SOLVE
   ================================================================ */
.problems {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
}
.problems__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problems__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.problems__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.problems__card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem;
}
.problems__card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--sky);
  margin-bottom: 1rem;
}
.problems__card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
}
.problems__card p:last-child { margin-bottom: 0; }
.problems__products {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.problems__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s;
}
.problems__link:hover { color: var(--aqua); }
.problems__link::after { content: ' \203A'; }

.problems__audiences {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.problems__audiences-label {
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (max-width: 700px) {
  .problems__grid { grid-template-columns: 1fr; }
}

/* Audience roundels */
.audience-roundel {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.audience-roundel:hover {
  transform: scale(1.1);
  background: rgba(25,165,204,0.2);
  border-color: var(--sky);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.audience-roundel span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ================================================================
   SECTION: EVALUATE
   ================================================================ */
.evaluate {
  background: var(--white);
  padding: 5rem 2rem;
}
.evaluate__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.evaluate__header {
  text-align: center;
  margin-bottom: 3rem;
}
.evaluate__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.evaluate__subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--sky);
  font-weight: 700;
}
.evaluate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.evaluate__pitch p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--grey-dark);
  margin-bottom: 1rem;
}
.evaluate__rag-label {
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.evaluate__rag-label--red { color: #e74c3c; }
.evaluate__rag-label--amber { color: #f39c12; }
.evaluate__rag-label--green { color: #27ae60; }
.evaluate__steps {
  counter-reset: step;
}
.evaluate__step {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--grey-dark);
}
.evaluate__step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.evaluate__quote {
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.evaluate__cta {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 700px) {
  .evaluate__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SECTION: POSITIONING (What your data doesn't show)
   ================================================================ */
.positioning {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.positioning__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.positioning__header {
  text-align: center;
  margin-bottom: 2rem;
}
.positioning__headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.positioning__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-dark);
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}
.positioning__comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.positioning__col {
  border-radius: 12px;
  padding: 2rem;
}
.positioning__col--current {
  background: rgba(1, 51, 102, 0.04);
  border: 1px solid rgba(1, 51, 102, 0.10);
}
.positioning__col--missing {
  background: rgba(25, 165, 204, 0.06);
  border: 1px solid rgba(25, 165, 204, 0.2);
}
.positioning__col h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.positioning__col--current h3 { color: var(--grey-mid); }
.positioning__col--missing h3 { color: var(--sky); }
.positioning__col ul {
  list-style: none;
  padding: 0;
}
.positioning__col ul li {
  font-size: 0.9rem;
  color: var(--grey-dark);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}
.positioning__col ul li:last-child { border-bottom: none; }
.positioning__summary {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-dark);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.positioning__summary p { margin-bottom: 1rem; }
@media (max-width: 700px) {
  .positioning__comparison { grid-template-columns: 1fr; }
}

/* ================================================================
   SECTION: PLATFORM (Product Tree)
   ================================================================ */
.platform {
  background: var(--white);
  padding: 5rem 2rem;
}
.platform__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.platform__header {
  text-align: center;
  margin-bottom: 1rem;
}
.platform__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.platform__sub {
  font-size: 1.05rem;
  color: var(--grey-dark);
  max-width: 700px;
  margin: 0 auto 3rem;
}
.platform__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.platform__product {
  padding: 1.5rem;
  border: 1px solid rgba(1,51,102,0.08);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.platform__product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(1,51,102,0.08);
}
.platform__product-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
}
.platform__product h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.platform__product p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--grey-dark);
}
@media (max-width: 900px) {
  .platform__products { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .platform__products { grid-template-columns: 1fr; }
}

/* ================================================================
   SECTION: CUSTOMER LOGOS
   ================================================================ */
.logos-section {
  background: #f3fafc;
  padding: 4rem 2rem;
}
.logos-section__headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.logos-grid img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}
.logos-grid__invert {
  filter: brightness(0);
}
.logos-grid__sm {
  height: 27px !important;
}

/* ================================================================
   SECTION: TEAM
   ================================================================ */
.team {
  background: var(--sky);
  padding: 5rem 2rem;
}
.team__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}
.team__grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 140px;
  cursor: pointer;
}
.team__avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.55);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team__avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 0.25rem;
}
.team__role {
  color: rgba(255,255,255,0.72);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
}

/* ================================================================
   SECTION: CASE STUDIES (placeholder)
   ================================================================ */
.case-studies {
  background: var(--white);
  padding: 5rem 2rem;
}
.case-studies__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.case-studies__placeholder {
  text-align: center;
  color: var(--grey-mid);
  font-size: 1rem;
  padding: 3rem;
  border: 2px dashed var(--grey-light);
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}

/* ================================================================
   SECTION: NEWS / BLOG
   ================================================================ */
.news {
  background: linear-gradient(to bottom, #a3dbeb 0px, #f3fafc 300px);
  padding: 5rem 2rem;
}
.news__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.news__card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(1, 51, 102, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(1, 51, 102, 0.14);
}
.news__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news__card:hover .news__thumb {
  animation: pulse 0.6s ease;
}
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.news__thumb--placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
}
.news__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.6rem;
}
.news__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.news__summary {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.news__meta {
  display: block;
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}
.news__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--sky);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news__link:hover { color: var(--navy); }
.news__link::after {
  content: '\203A';
  font-size: 1.8em;
  line-height: 1;
}
.news__see-all {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: rgba(1, 51, 102, 0.15);
  color: var(--navy);
  border: 1.5px solid rgba(1, 51, 102, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.news__see-all:hover {
  background: rgba(25, 165, 204, 0.2);
  border-color: rgba(25, 165, 204, 0.5);
  color: var(--sky);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .news__grid { grid-template-columns: 1fr; }
  .news__see-all { grid-column: 1; }
}

/* ================================================================
   CTA PANEL
   ================================================================ */
.cta-panel {
  background: linear-gradient(rgba(1,51,102,0.82), rgba(1,51,102,0.88)),
              url('../assets/images/backgrounds/technology.jpg') center center / cover no-repeat;
  padding: 8rem clamp(2rem, 6vw, 8rem);
  text-align: center;
}
.cta-panel__copy {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--sky);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 auto 2.5rem;
  max-width: 1000px;
}
.cta-panel__subcopy {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 auto 3rem;
  max-width: 900px;
  text-align: center;
}
.cta-panel__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
.pil-footer {
  background: var(--sky);
  padding: 4rem 2rem;
  text-align: center;
}
.pil-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.pil-footer__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.pil-footer__links a:hover { color: #ffffff; }
.pil-footer__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.pil-footer__social-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
}
.pil-footer__li-orb {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pil-footer__li-orb:hover { opacity: 0.75; }
.pil-footer__li-orb svg { fill: #ffffff; }
.pil-footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.pil-footer__logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.pil-footer__logos img:hover { opacity: 1; }
.pil-footer__reg {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* ================================================================
   FLOATING CTA ROUNDEL
   ================================================================ */
.float-cta {
  position: fixed;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  background: var(--sky);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(1, 51, 102, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-cta:hover {
  transform: translateY(calc(-50% - 3px));
  box-shadow: 0 8px 32px rgba(1, 51, 102, 0.35);
}
@media (max-width: 1400px) {
  .float-cta { right: 2rem; }
}
@media (max-width: 900px) {
  .float-cta { width: 80px; height: 80px; font-size: 0.7rem; right: 1rem; }
}

/* ================================================================
   SCHEDULE A CALL MODAL
   ================================================================ */
.sc-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(1,51,102,0.55);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.sc-modal-bg.active { display: flex; }
.sc-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(1,51,102,0.25);
}
.sc-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.sc-modal__close:hover { color: var(--navy); }
.sc-modal h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 0.5rem;
}
.sc-modal p {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
}
.sc-form input,
.sc-form textarea {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  color: #333;
}
.sc-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.sc-form input:focus,
.sc-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(25,165,204,0.15);
}
.sc-form__terms {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 1rem;
  text-align: center;
}
.sc-form__terms a { color: var(--sky); text-decoration: underline; }
.sc-form__human {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #575756;
  margin-bottom: 1rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
}
.sc-form__human input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--sky);
}
.sc-form__submit {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.sc-form__submit:hover { background: #1490b5; }
.sc-success {
  text-align: center;
  padding: 1rem 0;
}
.sc-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-size: 1.8rem;
  line-height: 56px;
  margin: 0 auto 1rem;
  text-align: center;
}

/* ================================================================
   SOLUTION PAGE: HERO (sky-to-navy gradient overlay on image)
   ================================================================ */
.sol-hero {
  position: relative;
  min-height: 85vh;
  background-color: var(--sky);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(25,165,204,0.25) 0%, rgba(1,51,102,0.60) 100%);
  z-index: 1;
}
.sol-hero--data-gaps {
  background-image: url('../assets/images/backgrounds/cracks.jpg');
}
.sol-hero--data-gaps::before {
  background: linear-gradient(to bottom, rgba(25,165,204,0.75) 0%, rgba(25,165,204,0.85) 50%, rgba(25,165,204,1) 75%);
}
.sol-hero--mispricing {
  background-image: url('../assets/images/backgrounds/whirlpool.jpg');
}
.sol-hero--mispricing::before {
  background: linear-gradient(to bottom, rgba(25,165,204,0.75) 0%, rgba(25,165,204,0.85) 50%, rgba(25,165,204,1) 75%);
}
.sol-hero--retention {
  background-image: url('../assets/images/backgrounds/sunrise.jpg');
}
.sol-hero--retention::before {
  background: linear-gradient(to bottom, rgba(25,165,204,0.75) 0%, rgba(25,165,204,0.85) 50%, rgba(25,165,204,1) 75%);
}
.sol-hero--quote-manipulation {
  background-image: url('../assets/images/backgrounds/storm.jpg');
}
.sol-hero--quote-manipulation::before {
  background: linear-gradient(to bottom, rgba(25,165,204,0.75) 0%, rgba(25,165,204,0.85) 50%, rgba(25,165,204,1) 75%);
}
.sol-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 9rem 4rem 5rem;
  text-align: center;
}
.sol-hero__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.sol-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sol-hero__subtitle--emphasis {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  margin-top: 0.5rem;
}

/* ================================================================
   SOLUTION/PARTNERSHIPS HERO VARIANTS
   ================================================================ */
.sol-hero--insurers {
  background-image: url('../assets/images/backgrounds/insurance-lady.jpg');
}
.sol-hero--insurers::before {
  background: linear-gradient(to bottom, rgba(25,165,204,0.75) 0%, rgba(25,165,204,0.85) 50%, rgba(25,165,204,1) 75%);
}

.sol-hero--comparison {
  background-image: url('../assets/images/backgrounds/balancing-stones.jpg');
}
.sol-hero--comparison::before {
  background: linear-gradient(to bottom, rgba(25,165,204,0.75) 0%, rgba(25,165,204,0.85) 50%, rgba(25,165,204,1) 75%);
}

.sol-hero--brokers {
  background-image: url('../assets/images/backgrounds/life-preserver.jpg');
}
.sol-hero--brokers::before {
  background: linear-gradient(to bottom, rgba(25,165,204,0.75) 0%, rgba(25,165,204,0.85) 50%, rgba(25,165,204,1) 75%);
}

.sol-hero--mgas {
  background-image: url('../assets/images/backgrounds/umbrellas.jpg');
}
.sol-hero--mgas::before {
  background: linear-gradient(to bottom, rgba(25,165,204,0.75) 0%, rgba(25,165,204,0.85) 50%, rgba(25,165,204,1) 75%);
}

.sol-hero--partnerships {
  background-image: url('../assets/images/backgrounds/partnerships.jpg');
}
.sol-hero--partnerships::before {
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
}

/* ================================================================
   PARTNERSHIPS: PARTNER LOGO GRID
   ================================================================ */
.partners {
  background: #ffffff;
  padding: 5rem 2rem;
}
.partners__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.partners__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.partners__group-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}
.partners__group-label:first-of-type { margin-top: 0; }
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.partners__logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partners__logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(1,51,102,0.08);
}
.partners__logo-card img {
  height: 48px;
  width: 120px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.partners__logo-card--no-border {
  border: none;
  box-shadow: none;
}
.partners__logo-card--lg img {
  height: 64px;
  width: 140px;
}
.partners__logo-card--square img {
  height: 72px;
  width: 72px;
}
.partners__logo-card--xl img {
  height: 85px;
  width: 186px;
}
.partners__logo-card--square-lg img {
  height: 96px;
  width: 96px;
}
.partners__logo-card--md img {
  height: 64px;
  width: 160px;
}
.partners__logo-card:hover img { opacity: 1; }
.partners__name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   PARTNERSHIPS: ECOSYSTEM
   ================================================================ */
.ecosystem {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.ecosystem__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.ecosystem__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.ecosystem__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.ecosystem__col {
  text-align: center;
  padding: 1rem;
}
.ecosystem__col-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.ecosystem__col-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.ecosystem__col p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .ecosystem__columns { grid-template-columns: 1fr; }
}

/* ================================================================
   PARTNERSHIPS: PARTNER TYPES
   ================================================================ */
.partner-types {
  background: #ffffff;
  padding: 5rem 2rem;
}
.partner-types__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.partner-types__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.partner-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.partner-types__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-types__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.partner-types__card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.partner-types__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.partner-types__what-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 1rem 0 0.5rem;
}
.partner-types__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.partner-types__list li {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.partner-types__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
@media (max-width: 768px) {
  .partner-types__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PARTNERSHIPS: STEPS
   ================================================================ */
.partner-steps {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.partner-steps__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.partner-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.partner-steps__step {
  text-align: center;
  padding: 1rem;
}
.partner-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.partner-steps__step-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.partner-steps__step p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .partner-steps__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SOLUTION PAGE: 100 PEOPLE FRAMEWORK
   ================================================================ */
.hundred-people {
  background: #ffffff;
  padding: 5rem 2rem;
}
.hundred-people__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hundred-people__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.hundred-people__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.hundred-people__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
}
.hundred-people__number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.hundred-people__number--navy { color: var(--navy); }
.hundred-people__number--green { color: #2ea84e; }
.hundred-people__number--amber { color: #e8a317; }
.hundred-people__number--red { color: #d04040; }
.hundred-people__card-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.hundred-people__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.hundred-people__closing {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .hundred-people__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SOLUTION PAGE: BLIND SPOTS
   ================================================================ */
.blind-spots {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.blind-spots__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.blind-spots__list {
  max-width: 900px;
  margin: 0 auto;
}
.blind-spots__item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(1,51,102,0.08);
}
.blind-spots__item:last-child { border-bottom: none; }
.blind-spots__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.blind-spots__item-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.blind-spots__content p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/* ================================================================
   SOLUTION PAGE: CAPABILITIES
   ================================================================ */
.capabilities {
  background: var(--navy);
  padding: 5rem 2rem;
}
.capabilities__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.capabilities__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.capabilities__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.capabilities__card-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--sky);
  margin-bottom: 1rem;
}
.capabilities__card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.capabilities__closes {
  font-weight: 700;
  color: var(--aqua) !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.75rem !important;
}
.capabilities__powered {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.5) !important;
  font-style: italic;
}
.capabilities__card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease;
}
.capabilities__card-link:hover { color: #ffffff; }
.capabilities__card-link::after {
  content: ' \203A';
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .capabilities__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SOLUTION PAGE: PROOF POINTS
   ================================================================ */
.proof-points {
  background: #ffffff;
  padding: 5rem 2rem;
}
.proof-points__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.proof-points__metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.proof-points__copy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.proof-points__copy p {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.proof-points__kicker {
  font-weight: 900;
  color: var(--sky) !important;
  font-size: 1.15rem !important;
  margin-top: 0.5rem !important;
}

/* ================================================================
   SOLUTION PAGE: WHO THIS AFFECTS
   ================================================================ */
.who-affected {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.who-affected__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.who-affected__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.who-affected__grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}
@media (max-width: 768px) {
  .who-affected__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PRODUCT PAGE: HERO
   ================================================================ */
.prod-hero {
  background: var(--navy) center top / cover no-repeat;
  padding: 10rem 4rem 5rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prod-hero--di {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/eye.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--di::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--di .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--qi {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/maze.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--qi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--qi .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--sym {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/symphony.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--sym::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--sym .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--pi {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/policies.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--pi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--pi .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--ci {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/customer.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--ci::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--ci .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--bi {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/folders.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--bi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--bi .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--mi {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/marketing.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--mi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--mi .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--vi {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/car-dashboard.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--vi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--vi .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--alert {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/lighthouse.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--prosp {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/housing.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--renewal {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/calendar.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--renewal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--renewal .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--prosp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--prosp .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--alert::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--alert .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--pim {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/digital-dashboard.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--pim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--pim .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.prod-hero__orb {
  display: block;
  width: auto;
  height: auto;
  max-width: 240px;
  max-height: 100px;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
}
.prod-hero__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 1100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.prod-hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 1000px;
  margin: 0 auto 1.25rem;
  text-align: center;
}
.prod-hero__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.prod-hero__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.prod-hero__card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.prod-hero__card ul {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0.5rem 0 0.75rem 1.25rem;
}
.prod-hero__card li { margin-bottom: 0.35rem; }
.prod-hero__card-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--sky);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.prod-hero__card-kicker {
  font-weight: 900;
  color: var(--sky) !important;
  font-size: 1rem !important;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .prod-hero__cards { grid-template-columns: 1fr; }
}

/* ================================================================
   PRODUCT PAGE: QUOTE LAKE
   ================================================================ */
.quote-lake {
  background: linear-gradient(to bottom, #e8f6fa 0%, #ffffff 100%);
  padding: 5rem 2rem;
}
.quote-lake__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.quote-lake__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.quote-lake__metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.quote-lake__metric {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  text-align: center;
  min-width: 180px;
  box-shadow: 0 2px 12px rgba(1,51,102,0.06);
}
.quote-lake__metric-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--sky);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.quote-lake__metric-label {
  font-size: 0.82rem;
  color: var(--grey-mid);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quote-lake__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.quote-lake__col-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.quote-lake__col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .quote-lake__columns { grid-template-columns: 1fr; }
}

/* ================================================================
   PRODUCT PAGE: MANIPULATION PATTERNS
   ================================================================ */
.manipulation {
  background: var(--navy);
  padding: 5rem 2rem;
}
.manipulation__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.manipulation__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.manipulation__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.manipulation__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.manipulation__card-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--sky);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.manipulation__card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.manipulation__card-kicker {
  font-weight: 900;
  color: var(--sky) !important;
  font-size: 1rem !important;
}
.manipulation__grading {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 1.5rem;
  font-weight: 600;
}
.manipulation__stat {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2.5rem;
}
.manipulation__cta {
  text-align: center;
}
@media (max-width: 768px) {
  .manipulation__cards { grid-template-columns: 1fr; }
}

/* ================================================================
   PRODUCT PAGE: ENRICHMENT STEPS
   ================================================================ */
.enrichment {
  background: #ffffff;
  padding: 5rem 2rem;
}
.enrichment__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.enrichment__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}
.enrichment__steps {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 3rem;
  counter-reset: none;
}
.enrichment__step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.enrichment__step:last-child { border-bottom: none; }
.enrichment__step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sky);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enrichment__step-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.65;
  padding-top: 0.4rem;
}
.enrichment__closing {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ================================================================
   PRODUCT PAGE: TESTIMONIAL
   ================================================================ */
.testimonial {
  background: #f3fafc;
  padding: 5rem 2rem;
  text-align: center;
}
.testimonial__quote {
  max-width: 850px;
  margin: 0 auto 2rem;
  border: none;
}
.testimonial__quote p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--navy);
  line-height: 1.8;
  font-style: italic;
}
.testimonial__author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.testimonial__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}

/* ================================================================
   PRODUCT PAGE: AUDIENCES
   ================================================================ */
.audiences {
  background: #ffffff;
  padding: 5rem 2rem;
}
.audiences__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.audiences__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.audiences__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.audiences__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audiences__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.audiences__card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.audiences__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.audiences__card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease;
}
.audiences__card-link:hover { color: var(--navy); }
.audiences__card-link::after {
  content: ' \203A';
  font-size: 1.3em;
}
.audiences__grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .audiences__grid,
  .audiences__grid--three { grid-template-columns: 1fr; }
}

/* ================================================================
   PRODUCT PAGE: RELATED PRODUCTS
   ================================================================ */
.related {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.related__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.related__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.related__orb {
  display: block;
  margin: 0 auto 1rem;
}
.related__card-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.related__card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.related__card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease;
}
.related__card-link:hover { color: var(--navy); }
.related__card-link::after {
  content: ' \203A';
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .related__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   EVALUATE PAGE: HERO
   ================================================================ */
.eval-hero {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/evaluate-data-lake.jpg');
  background-size: cover;
  background-position: center;
}
.eval-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.eval-hero .prod-hero__inner {
  position: relative;
  z-index: 2;
}

/* ================================================================
   EVALUATE PAGE: RAG SEGMENTS
   ================================================================ */
.rag-segments {
  background: #ffffff;
  padding: 5rem 2rem;
}
.rag-segments__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.rag-segments__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.rag-segments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.rag-segments__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.25rem;
  border: 1px solid var(--grey-light);
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rag-segments__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.rag-segments__card-title {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.rag-segments__card--green .rag-segments__card-title { color: #2ea84e; }
.rag-segments__card--amber .rag-segments__card-title { color: #e89b00; }
.rag-segments__card--red .rag-segments__card-title { color: #d63031; }
.rag-segments__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.rag-segments__footer {
  font-size: 1.05rem;
  color: var(--navy);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  font-weight: 500;
}
.rag-segments__cta {
  text-align: center;
}
@media (max-width: 768px) {
  .rag-segments__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   EVALUATE PAGE: WATCH THE VIDEO
   ================================================================ */
.eval-video {
  background: #f3fafc;
  padding: 5rem 2rem;
  text-align: center;
}
.eval-video__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2rem;
}
.eval-video__intro {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2.5rem;
}
.eval-video__wrapper {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: min(56.25%, 607.5px);
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(1,51,102,0.15);
}
.eval-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.eval-video__cta {
  display: block;
  width: 280px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  background: var(--sky);
  color: #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.eval-video__watch-link {
  display: block;
  width: 280px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto 1.25rem;
  padding: 0;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.eval-video__watch-link:hover {
  background: var(--sky);
}
.eval-video__cta:hover {
  background: #1490b5;
}
.eval-video__play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}
.eval-video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eval-video__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(1,51,102,0.85);
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding-left: 4px;
}
.eval-video__play-btn:hover .eval-video__play-icon {
  background: var(--sky);
}

/* Video modal */
.eval-vid-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1,51,102,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.eval-vid-modal-bg.active { display: flex; }
.eval-vid-modal {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.eval-vid-modal iframe,
.eval-vid-modal video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  display: block;
  background: #000;
  object-fit: contain;
}
.eval-vid-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.eval-vid-modal__close:hover {
  color: var(--sky);
}

/* ================================================================
   EVALUATE PAGE: HOW IT WORKS
   ================================================================ */
.eval-how-it-works {
  background: var(--navy);
  padding: 5rem 2rem;
}
.eval-how-it-works__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.eval-how-it-works__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.eval-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.eval-how-it-works__step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
}
.eval-how-it-works__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.eval-how-it-works__step-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.eval-how-it-works__step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .eval-how-it-works__steps { grid-template-columns: 1fr; }
}

/* ================================================================
   EVALUATE PAGE: DELIVERABLES
   ================================================================ */
.eval-deliverables {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.eval-deliverables__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.eval-deliverables__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.eval-deliverables__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.eval-deliverables__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eval-deliverables__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.eval-deliverables__card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.eval-deliverables__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .eval-deliverables__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   EVALUATE PAGE: QUOTE LAKE ADVANTAGE
   ================================================================ */
.eval-quote-lake {
  background: #ffffff;
  padding: 5rem 2rem;
}
.eval-quote-lake__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.eval-quote-lake__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.eval-quote-lake__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.eval-quote-lake__metric {
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 150px;
  border-right: 1px solid rgba(1,51,102,0.15);
}
.eval-quote-lake__metric:last-child { border-right: none; }
.eval-quote-lake__metric-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sky);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.eval-quote-lake__metric-label {
  font-size: 0.8rem;
  color: var(--grey-mid);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.eval-quote-lake__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.eval-quote-lake__col-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
}
.eval-quote-lake__col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .eval-quote-lake__columns { grid-template-columns: 1fr; }
}

/* ================================================================
   EVALUATE PAGE: AUDIENCES (navy glass cards)
   ================================================================ */
.eval-audiences {
  background: var(--navy);
  padding: 5rem 2rem;
}
.eval-audiences__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.eval-audiences__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.eval-audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.eval-audiences__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2.25rem;
  transition: background 0.25s ease;
}
.eval-audiences__card:hover {
  background: rgba(255,255,255,0.1);
}
.eval-audiences__card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.eval-audiences__card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.eval-audiences__card-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease;
}
.eval-audiences__card-link:hover { color: var(--aqua); }
.eval-audiences__card-link::after {
  content: ' \203A';
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .eval-audiences__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PI PAGE: ALERT SCENARIOS
   ================================================================ */
.alert-scenarios {
  background: #ffffff;
  padding: 5rem 2rem;
}
.alert-scenarios__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.alert-scenarios__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.alert-scenarios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.alert-scenarios__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.alert-scenarios__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.alert-scenarios__card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.alert-scenarios__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.alert-scenarios__footer {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .alert-scenarios__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PI PAGE: POLICY ENRICHMENT
   ================================================================ */
.policy-enrichment {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.policy-enrichment__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.policy-enrichment__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.policy-enrichment__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.policy-enrichment__col-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
}
.policy-enrichment__col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.policy-enrichment__col ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
.policy-enrichment__col ul li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.policy-enrichment__col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
@media (max-width: 768px) {
  .policy-enrichment__columns { grid-template-columns: 1fr; }
}

/* ================================================================
   PI PAGE: HOW IT WORKS (navy)
   ================================================================ */
.pi-how-it-works {
  background: var(--navy);
  padding: 5rem 2rem;
}
.pi-how-it-works__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.pi-how-it-works__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.pi-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.pi-how-it-works__step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
}
.pi-how-it-works__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.pi-how-it-works__step-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.pi-how-it-works__step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .pi-how-it-works__steps { grid-template-columns: 1fr; }
}

/* ================================================================
   PI PAGE: UPGRADE PATH
   ================================================================ */
.upgrade-path {
  background: #ffffff;
  padding: 5rem 2rem;
}
.upgrade-path__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.upgrade-path__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.upgrade-path__comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.upgrade-path__col {
  background: #ffffff;
  border: 2px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.5rem;
}
.upgrade-path__col--highlight {
  border-color: var(--sky);
  background: #f3fafc;
}
.upgrade-path__col-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.upgrade-path__col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.upgrade-path__col ul li {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.upgrade-path__col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
.upgrade-path__col-footer {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.upgrade-path__col-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease;
}
.upgrade-path__col-link:hover { color: var(--navy); }
.upgrade-path__col-link::after {
  content: ' \203A';
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .upgrade-path__comparison { grid-template-columns: 1fr; }
}

/* ================================================================
   PI PAGE: ROLE CARDS
   ================================================================ */
.role-cards {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.role-cards__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.role-cards__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.role-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.role-cards__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.role-cards__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.role-cards__card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
}
.role-cards__card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}
.role-cards__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.role-cards__card-quote {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .role-cards__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   INSURERS PAGE: TWO BATTLES
   ================================================================ */
.two-battles {
  background: #ffffff;
  padding: 5rem 2rem;
}
.two-battles__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.two-battles__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.two-battles__col-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
}
.two-battles__col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.two-battles__col-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease;
}
.two-battles__col-link:hover { color: var(--navy); }
.two-battles__col-link::after {
  content: ' \203A';
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .two-battles__columns { grid-template-columns: 1fr; }
}

/* ================================================================
   INSURERS PAGE: ORCHESTRATION
   ================================================================ */
.orchestration {
  background: var(--navy);
  padding: 5rem 2rem;
}
.orchestration__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.orchestration__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.orchestration__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  list-style: none;
  padding: 0;
}
.orchestration__step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
}
.orchestration__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.orchestration__step-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.orchestration__step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.orchestration__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.orchestration__proof-metric {
  padding: 1.25rem 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.orchestration__proof-metric:last-child { border-right: none; }
.orchestration__proof-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sky);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.orchestration__proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.orchestration__footnote {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .orchestration__steps { grid-template-columns: 1fr; }
}

/* ================================================================
   INSURERS PAGE: PIM SECTION
   ================================================================ */
.pim-section {
  background: #ffffff;
  padding: 5rem 2rem;
}
.pim-section__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.pim-section__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.pim-section__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pim-section__col-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
}
.pim-section__col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.pim-section__col ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
.pim-section__col ul li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.pim-section__col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
@media (max-width: 768px) {
  .pim-section__columns { grid-template-columns: 1fr; }
}

/* ================================================================
   PRODUCT GRID (3x2 with orbs)
   ================================================================ */
.product-grid {
  background: #ffffff;
  padding: 5rem 2rem;
}
.product-grid__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.product-grid__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.product-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.product-grid__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-grid__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.product-grid__orb {
  display: block;
  margin: 0 auto 1rem;
}
.product-grid__card-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.product-grid__card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.product-grid__card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-grid__card-link:hover { color: var(--navy); }
.product-grid__card-link::after {
  content: ' \203A';
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .product-grid__cards { grid-template-columns: 1fr; }
}

/* ================================================================
   CUSTOMER LOGOS
   ================================================================ */
.customer-logos {
  background: #f3fafc;
  padding: 4rem 2rem;
}
.customer-logos__headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.customer-logos__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.customer-logos__grid img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}
.customer-logos__invert {
  filter: brightness(0);
}
.customer-logos__sm {
  height: 27px !important;
}

/* ================================================================
   BIO MODALS
   ================================================================ */
.bio-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(1, 19, 51, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.bio-modal-bg.active {
  display: flex;
}
.bio-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
  animation: bioModalIn 0.25s ease;
}
@keyframes bioModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bio-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--grey-mid);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s ease;
}
.bio-modal__close:hover {
  color: var(--navy);
}
.bio-modal__name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.bio-modal__role {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 1.25rem;
}
.bio-modal__text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.bio-modal__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.bio-modal__email {
  color: var(--sky);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.bio-modal__email:hover {
  color: var(--navy);
  text-decoration: underline;
}
.bio-modal__schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sky);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.bio-modal__schedule:hover {
  color: var(--navy);
}
.bio-modal__schedule svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.bio-modal__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sky);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.bio-modal__linkedin:hover {
  color: var(--navy);
}
.bio-modal__linkedin svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ================================================================
   PRODUCT PAGE: INTELLIGENCE HUB
   ================================================================ */
.prod-hero--hub {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/intel-hub-background.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--hub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--hub .prod-hero__inner {
  position: relative;
  z-index: 2;
}
.prod-hero--companion {
  background-color: var(--navy);
  background-image: url('../assets/images/backgrounds/platform.jpg');
  background-size: cover;
  background-position: center;
}
.prod-hero--companion::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,51,102,0.78) 0%, rgba(1,51,102,0.88) 50%, rgba(1,51,102,1) 75%);
  z-index: 1;
}
.prod-hero--companion .prod-hero__inner {
  position: relative;
  z-index: 2;
}

/* --- Three Tiers --- */
.hub-tiers {
  background: #ffffff;
  padding: 5rem 2rem;
}
.hub-tiers__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hub-tiers__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.hub-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hub-tiers__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hub-tiers__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(1,51,102,0.1);
}
.hub-tiers__card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.hub-tiers__card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.hub-tiers__card-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.hub-tiers__card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.hub-tiers__card ul {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0.5rem 0 0.75rem 1.25rem;
}
.hub-tiers__card ul li {
  margin-bottom: 0.35rem;
}
@media (max-width: 768px) {
  .hub-tiers__grid { grid-template-columns: 1fr; }
}

/* --- Five Lines of Business --- */
.hub-lines {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.hub-lines__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hub-lines__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.hub-lines__pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.hub-lines__pill {
  background: var(--navy);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
}
.hub-lines__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.hub-lines__col-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
}
.hub-lines__col p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .hub-lines__columns { grid-template-columns: 1fr; }
  .hub-lines__pills { gap: 0.5rem; }
}

/* --- Software House Integrations --- */
.hub-integrations {
  background: var(--navy);
  padding: 5rem 2rem;
}
.hub-integrations__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hub-integrations__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.hub-integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.hub-integrations__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
}
.hub-integrations__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.hub-integrations__card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.hub-integrations__card ul {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0.5rem 0 0.75rem 1.25rem;
}
.hub-integrations__card ul li {
  margin-bottom: 0.35rem;
}
.hub-integrations__footer {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hub-integrations__grid { grid-template-columns: 1fr; }
}

/* --- Hub Proof Cards --- */
.hub-proof {
  background: #f3fafc;
  padding: 5rem 2rem;
}
.hub-proof__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hub-proof__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.hub-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hub-proof__card {
  background: #ffffff;
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(1,51,102,0.05);
}
.hub-proof__card-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.hub-proof__card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.hub-proof__card strong {
  color: var(--navy);
}
@media (max-width: 768px) {
  .hub-proof__grid { grid-template-columns: 1fr; }
}

/* ---- COMPANION LOGIN MODAL ---- */
.cm-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(1,51,102,0.55);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cm-modal-bg.active { display: flex; }
.cm-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(1,51,102,0.25);
  text-align: center;
}
.cm-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.cm-modal__close:hover { color: var(--navy); }
.cm-modal__logo {
  display: block;
  margin: 0 auto 1.25rem;
  height: 28px;
  width: auto;
}
.cm-modal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}
.cm-modal p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.cm-modal input {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  box-sizing: border-box;
}
.cm-modal input:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(25,165,204,0.15);
}
.cm-modal__submit {
  display: inline-block;
  padding: 0.65rem 2.5rem;
  margin-top: 0.5rem;
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cm-modal__submit:hover { background: #1490b5; }
.cm-modal .cm-success {
  padding: 1.5rem 0;
}
.cm-modal .cm-success__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.cm-modal .cm-success p {
  color: var(--navy);
  font-weight: 600;
}
.cm-modal .cm-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner.hidden { display: none; }
.cookie-banner__text {
  max-width: 700px;
}
.cookie-banner__text a {
  color: var(--sky-light);
  text-decoration: underline;
}
.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: var(--sky);
  color: #fff;
}
.cookie-banner__btn--accept:hover { background: var(--sky-light); }
.cookie-banner__btn--decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.cookie-banner__btn--decline:hover { border-color: #fff; }
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 1rem;
  }
}

/* ================================================================
   RELATED READING (Topic Clusters)
   ================================================================ */
#related-reading ul li a {
  color: var(--navy);
  text-decoration: none;
  font-size: 1.05rem;
  padding: 0.75rem 1rem;
  display: block;
  border-left: 3px solid var(--sky);
  background: #fff;
  border-radius: 0 6px 6px 0;
  transition: border-color 0.2s, background 0.2s;
}
#related-reading ul li a:hover {
  border-left-color: var(--navy);
  background: #eef6fa;
}
