/* ==========================================================================
   CKX — Bold Editorial design system.
   Client-owned stylesheet (loaded via the platform base layout's /assets/custom.css
   seam). All CKX components are authored in this repo; this file styles them,
   ported directly from the design mockup. Navy #002646 · sky #88b9d0 · off-white
   #f4f7f9. Poppins headlines · Hanken Grotesk body · Space Mono labels.
   ========================================================================== */

:root {
  --navy: #002646;
  --navy-cta: #001a30;
  --navy-footer: #001425;
  --sky: #88b9d0;
  --offwhite: #f4f7f9;
  --ink: #14273c;

  --wrap-max: 1200px;
  --gutter: 40px;
  --sec: 94px; /* section vertical rhythm */

  --font-head: var(--ckx-font-heading, "Poppins", sans-serif);
  --font-body: var(--ckx-font-body, "Hanken Grotesk", sans-serif);
  --font-mono: var(--ckx-font-mono, "Space Mono", monospace);
}

@keyframes ckx-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Base ────────────────────────────────────────────────────────────── */
body {
  background: var(--navy);
  font-family: var(--font-body);
  color: #fff;
}
a { color: inherit; text-decoration: none; }
/* Web Awesome's base stylesheet rounds bare <img> (border-radius: var(--wa-border-radius-m));
   with a "pill" theme radius that clips every image. Reset it — components opt back in. */
img { display: block; max-width: 100%; border-radius: 0; }

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap-max));
  margin-inline: auto;
}

/* ── Primitives ──────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}
.eyebrow--dark { color: rgba(0, 38, 70, 0.45); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: 32px;
  padding: 16px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sky { background: var(--sky); color: var(--navy); border-color: var(--sky); }
.btn-outline { background: transparent; color: var(--sky); border-color: rgba(136, 185, 208, 0.5); }
.btn-navy { background: var(--navy); color: #fff; }
/* Keep button text legible on hover (base.css a:hover otherwise darkens it). */
.btn-sky:hover { color: var(--navy); }
.btn-outline:hover { color: var(--sky); border-color: var(--sky); }
.btn-navy:hover { color: #fff; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  background: rgba(0, 38, 70, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(136, 185, 208, 0.16);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.nav__brand img { height: 30px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, 0.78); }
.nav__link:hover { color: #fff; }
.nav__cta.btn { padding: 11px 22px; font-size: 14px; border-radius: 30px; }

/* Mobile toggle — 46px sky-outlined icon button whose three bars morph to an X. */
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(136, 185, 208, 0.45);
  border-radius: 14px;
  background: rgba(136, 185, 208, 0.1);
  cursor: pointer;
}
.nav__toggle-bar { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--sky); }
.nav__toggle-bar--top { transition: transform 0.3s ease; }
.nav__toggle-bar--mid { transition: opacity 0.2s ease; }
.nav__toggle-bar--bot { transition: transform 0.3s ease; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar--top { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar--mid { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar--bot { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen editorial overlay — mobile only (hidden by default on all widths). */
.nav__overlay { display: none; }

@media (max-width: 820px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }

  /* When open, drop the bar's own fill so the overlay navy reads as one panel;
     the logo + morphing toggle stay above it (header z-index 50 > overlay 40). */
  .nav.is-open {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
  }

  .nav__overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 40;
    overflow: hidden;
    background: var(--navy);
    padding:
      calc(env(safe-area-inset-top) + 92px)
      calc(env(safe-area-inset-right) + 26px)
      calc(env(safe-area-inset-bottom) + 40px)
      calc(env(safe-area-inset-left) + 26px);
    opacity: 0;
    transform: translateY(-14px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.45s;
  }
  .nav__overlay.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav__hex { position: absolute; pointer-events: none; }
  .nav__hex--tr { right: -90px; top: 64px; width: 280px; opacity: 0.13; }
  .nav__hex--bl { left: -70px; bottom: -40px; width: 210px; opacity: 0.1; }

  .nav__editorial { position: relative; z-index: 1; }
  .nav__editorial-link {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(136, 185, 208, 0.16);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav__overlay.is-open .nav__editorial-link { opacity: 1; transform: translateY(0); }
  .nav__editorial-link:nth-child(1) { transition-delay: 0.12s; }
  .nav__editorial-link:nth-child(2) { transition-delay: 0.18s; }
  .nav__editorial-link:nth-child(3) { transition-delay: 0.24s; }
  .nav__editorial-link:nth-child(4) { transition-delay: 0.3s; }
  .nav__editorial-link:nth-child(5) { transition-delay: 0.36s; }
  .nav__editorial-link:nth-child(6) { transition-delay: 0.42s; }
  .nav__editorial-num {
    flex: none;
    width: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--sky);
  }
  .nav__editorial-label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .nav__overlay-ctas {
    position: relative;
    z-index: 1;
    margin-top: auto;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease 0.28s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
  }
  .nav__overlay.is-open .nav__overlay-ctas { opacity: 1; transform: translateY(0); }
  .nav__overlay-cta {
    display: block;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 600;
    border-radius: 32px;
  }
  .nav__overlay-cta--primary {
    margin-bottom: 12px;
    padding: 16px;
    font-size: 16px;
    color: var(--navy);
    background: var(--sky);
  }
  .nav__overlay-cta--call {
    padding: 15px;
    font-size: 15px;
    color: var(--sky);
    border: 1px solid rgba(136, 185, 208, 0.5);
  }
}

/* Reduced motion — plain fade, no slide or stagger. */
@media (prefers-reduced-motion: reduce) {
  .nav__overlay {
    transform: none;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  }
  .nav__overlay.is-open {
    transition: opacity 0.25s ease, visibility 0s;
  }
  .nav__editorial-link,
  .nav__overlay.is-open .nav__editorial-link,
  .nav__overlay-ctas,
  .nav__overlay.is-open .nav__overlay-ctas {
    transform: none;
    transition: opacity 0.25s ease;
    transition-delay: 0s;
  }
  .nav__toggle-bar { transition: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--navy); overflow: hidden; }
.hero__hex { position: absolute; pointer-events: none; }
.hero__hex--1 { right: -130px; top: -40px; width: 560px; opacity: 0.1; }
.hero__hex--2 { right: 260px; bottom: -120px; width: 280px; opacity: 0.16; }
.hero__wrap { position: relative; }
.hero__inner { padding: 84px 0 70px; max-width: 920px; }
.hero .eyebrow { font-size: 13px; letter-spacing: 0.2em; margin-bottom: 26px; }
.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.75rem, 1.4rem + 5vw, 4.875rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.accent { color: var(--sky); }
.hero__lead {
  font-size: 21px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 30px 0 38px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Logo marquee ────────────────────────────────────────────────────── */
.marquee {
  background: #06192b;
  border-top: 1px solid rgba(136, 185, 208, 0.16);
  border-bottom: 1px solid rgba(136, 185, 208, 0.16);
  padding: 26px 0;
  overflow: hidden;
}
.marquee__label {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.marquee__viewport { overflow: hidden; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  padding-left: 40px;
  animation: ckx-marquee 40s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: none; display: flex; align-items: center; height: 44px; }
.marquee__item img {
  max-height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.marquee__item img:hover { opacity: 1; }

/* ── Shared: light section head ──────────────────────────────────────── */
.services, .benefits, .pricing, .contact { background: var(--offwhite); color: var(--ink); }
.services, .benefits, .pricing, .contact,
.team, .projects, .testimonials { padding: var(--sec) 0; }
.team, .projects, .testimonials { background: var(--navy); }

/* ── Services ────────────────────────────────────────────────────────── */
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.services__head-main .eyebrow { margin-bottom: 14px; display: block; }
.services__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
  max-width: 560px;
}
.services__intro { font-size: 17px; line-height: 1.55; color: rgba(20, 39, 60, 0.65); max-width: 380px; margin: 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.service {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 38, 70, 0.08);
  border-radius: 16px;
  padding: 34px;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -28px rgba(0, 38, 70, 0.45); }
.service__top { display: flex; align-items: center; justify-content: space-between; }
.service__n { font-family: var(--font-head); font-weight: 800; font-size: 54px; line-height: 1; color: var(--sky); }
.service__hex { width: 34px; height: auto; }
.service__title { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--navy); margin: 20px 0 12px; }
.service__body { font-size: 15.5px; line-height: 1.62; color: rgba(20, 39, 60, 0.68); margin: 0 0 22px; }
.service__more { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy); }

/* ── Team ────────────────────────────────────────────────────────────── */
.team { position: relative; overflow: hidden; scroll-margin-top: 76px; }
.team__hex { position: absolute; left: -100px; top: 60px; width: 300px; opacity: 0.1; pointer-events: none; }
.team__wrap { position: relative; }
.team .eyebrow { display: block; margin-bottom: 16px; }
.team__title { font-family: var(--font-head); font-weight: 800; font-size: 48px; line-height: 1.02; letter-spacing: -0.02em; color: #fff; margin: 0; max-width: 740px; }
.team__lead { font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); max-width: 620px; margin: 24px 0 0; }
.team__body { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 30px; margin-top: 50px; align-items: stretch; }
.team__photo {
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.team__photo:has(.team__photo-label) {
  border: 1px solid rgba(136, 185, 208, 0.25);
  background: repeating-linear-gradient(135deg, rgba(136, 185, 208, 0.1) 0 9px, transparent 9px 18px);
  padding: 22px;
}
.team__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.team__photo-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(136, 185, 208, 0.7); }
.team__members { display: flex; flex-direction: column; gap: 16px; }
.member { border: 1px solid rgba(136, 185, 208, 0.22); border-radius: 16px; padding: 26px 28px; background: rgba(136, 185, 208, 0.05); display: flex; gap: 22px; align-items: flex-start; }
.member__hex { width: 40px; height: auto; flex: none; margin-top: 4px; }
.member__name { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: #fff; margin: 0 0 8px; }
.member__role { color: var(--sky); font-weight: 600; font-size: 15px; }
.member__body { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0; }

/* ── Benefits ────────────────────────────────────────────────────────── */
.benefits__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: start; }
.benefits__intro .eyebrow { display: block; margin-bottom: 14px; }
.benefits__title { font-family: var(--font-head); font-weight: 800; font-size: 46px; line-height: 1.03; letter-spacing: -0.02em; color: var(--navy); margin: 0; }
.benefits__lead { font-size: 18px; line-height: 1.55; color: rgba(20, 39, 60, 0.65); margin: 24px 0 0; }
.benefits__hex { width: 64px; height: auto; margin-top: 36px; opacity: 0.9; }
.benefits__list { display: flex; flex-direction: column; gap: 16px; }
.benefit { background: #fff; border: 1px solid rgba(0, 38, 70, 0.08); border-radius: 16px; padding: 28px 30px; display: flex; gap: 26px; align-items: flex-start; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.benefit:hover { transform: translateY(-6px); box-shadow: 0 24px 46px -28px rgba(0, 38, 70, 0.4); }
.benefit__n { font-family: var(--font-head); font-weight: 800; font-size: 46px; line-height: 0.9; color: var(--sky); flex: none; }
.benefit__title { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--navy); margin: 2px 0 10px; }
.benefit__body { font-size: 15.5px; line-height: 1.62; color: rgba(20, 39, 60, 0.68); margin: 0; }

/* ── Projects ────────────────────────────────────────────────────────── */
.projects__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.projects__head-main { max-width: 620px; }
.projects__head-main .eyebrow { display: block; margin-bottom: 14px; }
.projects__title { font-family: var(--font-head); font-weight: 800; font-size: 48px; line-height: 1.02; letter-spacing: -0.02em; color: #fff; margin: 0; }
.projects__lead { font-size: 17px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); margin: 20px 0 0; }
.projects__cta.btn { padding: 14px 26px; font-size: 15px; border-radius: 30px; white-space: nowrap; }
.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.project { display: block; border: 1px solid rgba(136, 185, 208, 0.2); border-radius: 16px; overflow: hidden; background: rgba(136, 185, 208, 0.04); color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.project:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -26px rgba(0, 0, 0, 0.55); }
.project__media {
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(135deg, rgba(136, 185, 208, 0.12) 0 8px, transparent 8px 16px);
  border-bottom: 1px solid rgba(136, 185, 208, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project__media img { width: 100%; height: 100%; object-fit: cover; }
.project__media-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(136, 185, 208, 0.65); padding: 0 12px; text-align: center; }
.project__body { padding: 22px 24px; }
.project__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); margin-bottom: 8px; }
.project__title { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: #fff; margin: 0; }

/* ── Pricing ─────────────────────────────────────────────────────────── */
.pricing__head { max-width: 640px; }
.pricing__head .eyebrow { display: block; margin-bottom: 14px; }
.pricing__title { font-family: var(--font-head); font-weight: 800; font-size: 48px; line-height: 1.02; letter-spacing: -0.02em; color: var(--navy); margin: 0; }
.pricing__lead { font-size: 18px; line-height: 1.55; color: rgba(20, 39, 60, 0.65); margin: 22px 0 0; }
.pricing__panel {
  position: relative;
  overflow: hidden;
  margin-top: 46px;
  background: var(--navy);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.pricing__hex { position: absolute; right: -60px; bottom: -80px; width: 300px; opacity: 0.12; pointer-events: none; }
.pricing__info { position: relative; }
.pricing__offer { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: #fff; margin: 0 0 16px; }
.pricing__desc { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); margin: 0; max-width: 460px; }
.pricing__note { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); margin: 20px 0 0; max-width: 460px; }
.pricing__note a { color: var(--sky); font-weight: 600; }
.pricing__price { position: relative; border-left: 1px solid rgba(136, 185, 208, 0.25); padding-left: 40px; }
.pricing__amount { font-family: var(--font-head); font-weight: 800; font-size: 58px; line-height: 1; color: var(--sky); }
.pricing__unit { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-top: 10px; }
.pricing__cta.btn { margin-top: 28px; }

/* ── Testimonials ────────────────────────────────────────────────────── */
.testimonials__head { max-width: 640px; }
.testimonials__head .eyebrow { display: block; margin-bottom: 14px; }
.testimonials__title { font-family: var(--font-head); font-weight: 800; font-size: 48px; line-height: 1.02; letter-spacing: -0.02em; color: #fff; margin: 0; }
.testimonials__lead { font-size: 17px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); margin: 20px 0 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.tcard { background: rgba(136, 185, 208, 0.05); border: 1px solid rgba(136, 185, 208, 0.2); border-radius: 16px; padding: 30px; display: flex; flex-direction: column; margin: 0; }
.tcard__mark { font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--sky); line-height: 0.6; height: 24px; }
/* Web Awesome styles bare <blockquote> with a left border + indent; reset it. */
.tcard__quote { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); margin: 0 0 24px; padding: 0; border: 0; flex: 1; }
.tcard__author { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(136, 185, 208, 0.18); padding-top: 18px; }
.tcard__avatar { width: 44px; height: 44px; flex: none; border-radius: 50%; overflow: hidden; border: 1px solid rgba(136, 185, 208, 0.3); }
.tcard__avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard__avatar-ph { display: block; width: 100%; height: 100%; background: repeating-linear-gradient(135deg, rgba(136, 185, 208, 0.14) 0 5px, transparent 5px 10px); }
.tcard__meta { display: flex; flex-direction: column; }
.tcard__name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }
.tcard__role { font-size: 13px; color: rgba(255, 255, 255, 0.6); }

/* ── Contact ─────────────────────────────────────────────────────────── */
.contact__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.contact__head .eyebrow { display: block; margin-bottom: 16px; }
.contact__title { font-family: var(--font-head); font-weight: 800; font-size: 48px; line-height: 1; letter-spacing: -0.025em; color: var(--navy); margin: 0; }
.contact__lead { font-size: 18px; line-height: 1.55; color: rgba(20, 39, 60, 0.65); margin: 20px 0 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.contact__direct { background: var(--navy); border-radius: 20px; padding: 38px; display: flex; flex-direction: column; }
.contact__direct-h { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 8px; }
.contact__direct-intro { font-size: 15px; color: rgba(255, 255, 255, 0.6); margin: 0 0 26px; }
.contact__channels { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.channel { display: flex; align-items: center; gap: 18px; background: rgba(136, 185, 208, 0.08); border: 1px solid rgba(136, 185, 208, 0.25); border-radius: 16px; padding: 22px 24px; transition: background 0.2s ease, transform 0.2s ease; }
.channel:hover { background: rgba(136, 185, 208, 0.16); transform: translateY(-3px); }
.channel__hex { width: 38px; height: auto; flex: none; }
.channel__text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.channel__kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 4px; }
.channel__value { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: #fff; overflow-wrap: break-word; }
.channel__arrow { flex: none; font-family: var(--font-head); font-weight: 700; color: var(--sky); font-size: 20px; }
.contact__direct-note { font-size: 13.5px; color: rgba(255, 255, 255, 0.5); margin: 20px 0 0; }
.contact__form { background: #fff; border: 1px solid rgba(0, 38, 70, 0.08); border-radius: 20px; padding: 38px; display: flex; flex-direction: column; gap: 16px; }
.contact__form-h { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0, 38, 70, 0.5); margin-bottom: 8px; }
.field__input { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--offwhite); border: 1px solid rgba(0, 38, 70, 0.12); border-radius: 10px; padding: 14px 16px; }
.field__input:focus { outline: none; border-color: var(--sky); }
.field__textarea { resize: vertical; min-height: 118px; }
.field__error { color: #b3261e; font-size: 13px; margin-top: 6px; }
.contact__submit.btn { align-self: flex-start; padding: 16px 38px; border-radius: 34px; margin-top: 4px; }
.contact__feedback { font-size: 14px; margin: 0; }
.contact__feedback--success { color: #1f6f45; }
.contact__feedback--error { color: #b3261e; }

/* ── CTA band ────────────────────────────────────────────────────────── */
.cta { position: relative; background: var(--navy-cta); padding: 96px 0; overflow: hidden; }
.cta__hex-bg { position: absolute; left: -90px; bottom: -110px; width: 300px; opacity: 0.1; pointer-events: none; }
.cta__wrap { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.cta .eyebrow { display: block; letter-spacing: 0.2em; font-size: 13px; margin-bottom: 20px; }
.cta__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.25rem, 1.4rem + 2.8vw, 3.25rem); line-height: 1.02; letter-spacing: -0.025em; color: #fff; margin: 0; max-width: 560px; }
.cta__lead { font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, 0.7); margin: 22px 0 34px; max-width: 460px; }
.cta__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
/* Concentric hexagon emblem: a solid core with outline rings echoing outward
   from a shared centre (all three SVGs are centred on the same geometry). */
.cta__art { position: relative; height: 320px; display: flex; align-items: center; justify-content: center; }
.cta__art-echo { position: absolute; left: 50%; top: 50%; translate: -50% -50%; pointer-events: none; }
.cta__art-echo--1 { width: 292px; opacity: 0.28; }
.cta__art-echo--2 { width: 384px; opacity: 0.12; }
.cta__art-solid { position: relative; width: 200px; z-index: 2; filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45)); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { background: var(--navy-footer); color: rgba(255, 255, 255, 0.7); padding: 64px 0 40px; border-top: 1px solid rgba(136, 185, 208, 0.14); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; }
.footer__logo { height: 32px; width: auto; margin-bottom: 18px; }
.footer__blurb { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); margin: 0 0 18px; max-width: 300px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--sky); border: 1px solid rgba(136, 185, 208, 0.3); padding: 8px 14px; border-radius: 8px; transition: color 0.2s ease, border-color 0.2s ease; }
.footer__social:hover { color: #fff; border-color: rgba(136, 185, 208, 0.6); }
.footer__col-h { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link { font-size: 15px; color: rgba(255, 255, 255, 0.7); }
.footer__link:hover { color: #fff; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(136, 185, 208, 0.12); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy, .footer__credit { font-family: var(--font-mono); font-size: 12px; color: rgba(255, 255, 255, 0.45); }
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; column-gap: 32px; row-gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --sec: 64px; }
  .services__grid, .projects__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .team__body, .benefits__grid, .pricing__panel, .contact__grid, .cta__wrap { grid-template-columns: 1fr; }
  .contact__row { grid-template-columns: 1fr 1fr; }
  .pricing__price { border-left: none; padding-left: 0; border-top: 1px solid rgba(136, 185, 208, 0.25); padding-top: 24px; }
  .cta__art { display: none; }
}
@media (max-width: 620px) {
  /* Tighter side gutter on phones so oversized headings have room to breathe
     instead of breaking mid-word (e.g. "professionele" in the hero). */
  :root { --gutter: 24px; }
  .services__grid, .projects__grid, .testimonials__grid, .contact__row { grid-template-columns: 1fr; }
  .services__title, .team__title, .benefits__title, .projects__title, .pricing__title, .testimonials__title, .contact__title { font-size: 34px; }
  .pricing__panel { padding: 32px; }
  .contact__direct, .contact__form { padding: 28px; }
  .channel { gap: 14px; padding: 18px; }
  .channel__hex { width: 32px; }
  .channel__value { font-size: 17px; }
  /* Hero headline: shrink and balance so long Dutch words fit the phone width. */
  .hero__title { font-size: clamp(2.15rem, 1.1rem + 5vw, 3.25rem); }
  .hero__inner { padding: 60px 0 56px; }
  .hero__lead { font-size: 18px; margin: 24px 0 32px; }
}

/* ══ Interior pages ═══════════════════════════════════════════════════════ */

/* ── 404 ─────────────────────────────────────────────────────────────── */
.error404 { display: flex; align-items: center; min-height: 58vh; }
.error404__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.error404__nav { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(136, 185, 208, 0.18); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; }
.error404__nav a { color: rgba(255, 255, 255, 0.62); }
.error404__nav a:hover { color: var(--sky); }

/* ── Page hero ───────────────────────────────────────────────────────── */
.page-hero { position: relative; background: var(--navy); overflow: hidden; }
.page-hero__hex { position: absolute; right: -120px; top: -30px; width: 480px; opacity: 0.1; pointer-events: none; }
.page-hero__wrap { position: relative; width: min(100% - (var(--gutter) * 2), var(--wrap-max)); margin-inline: auto; padding: 78px 0 64px; }
.page-hero--narrow .page-hero__wrap { width: min(100% - (var(--gutter) * 2), 820px); padding-top: 60px; }
.page-hero--narrow .page-hero__title { font-size: clamp(2.25rem, 1.4rem + 2.8vw, 3.375rem); }
.page-hero .eyebrow { display: block; font-size: 13px; letter-spacing: 0.2em; margin-bottom: 24px; }
.page-hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.5rem, 1.2rem + 4.5vw, 4.5rem); line-height: 0.99; letter-spacing: -0.025em; color: #fff; margin: 0; max-width: 880px; }
.page-hero__intro { font-size: 19px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); max-width: 620px; margin: 24px 0 0; }
.page-hero__crumb { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.5); margin-top: 30px; }
.page-hero__crumb a { color: rgba(255, 255, 255, 0.7); }
.page-hero__crumb-current { color: var(--sky); }
.page-hero__crumb--top { margin-top: 0; margin-bottom: 22px; }
.page-hero__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.page-hero__tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); border: 1px solid rgba(136, 185, 208, 0.4); padding: 7px 14px; border-radius: 20px; }

/* ── One-time offer ──────────────────────────────────────────────────── */
.onetime { background: var(--offwhite); color: var(--ink); padding: var(--sec) 0; }
.onetime__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 52px; align-items: center; }
.onetime__intro .eyebrow { display: block; margin-bottom: 14px; }
.onetime__title { font-family: var(--font-head); font-weight: 800; font-size: 46px; line-height: 1.03; letter-spacing: -0.02em; color: var(--navy); margin: 0; }
.onetime__lead { font-size: 18px; line-height: 1.55; color: rgba(20, 39, 60, 0.65); margin: 24px 0 0; max-width: 480px; }
.onetime__panel { position: relative; overflow: hidden; background: var(--navy); border-radius: 20px; padding: 46px; }
.onetime__hex { position: absolute; right: -50px; bottom: -70px; width: 260px; opacity: 0.12; pointer-events: none; }
.onetime__panel-inner { position: relative; }
.onetime__offer { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: #fff; margin: 0 0 14px; }
.onetime__desc { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); margin: 0 0 28px; max-width: 420px; }
.onetime__price { display: flex; align-items: baseline; gap: 14px; }
.onetime__amount { font-family: var(--font-head); font-weight: 800; font-size: 58px; color: var(--sky); line-height: 1; }
.onetime__unit { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; }
.onetime__cta { margin-top: 30px; }
.onetime__note { margin-top: 24px; display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid rgba(0, 38, 70, 0.08); border-left: 4px solid var(--sky); border-radius: 14px; padding: 24px 28px; }
.onetime__note-hex { width: 36px; height: auto; flex: none; }
.onetime__note-text { font-size: 16px; line-height: 1.55; color: rgba(20, 39, 60, 0.8); }
.onetime__note-text strong { color: var(--navy); }
.onetime__note-text p { margin: 0; }

/* ── Monthly plans ───────────────────────────────────────────────────── */
.plans { background: var(--navy); color: #fff; padding: var(--sec) 0; }
.plans__head { max-width: 640px; }
.plans__head .eyebrow { display: block; margin-bottom: 14px; }
.plans__title { font-family: var(--font-head); font-weight: 800; font-size: 46px; line-height: 1.03; letter-spacing: -0.02em; color: #fff; margin: 0; }
.plans__lead { font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); margin: 22px 0 0; }
.plans__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 50px; max-width: 940px; }
.plan { position: relative; border-radius: 20px; padding: 38px; display: flex; flex-direction: column; background: rgba(136, 185, 208, 0.04); border: 1px solid rgba(136, 185, 208, 0.2); }
.plan--featured { background: rgba(136, 185, 208, 0.12); border: 2px solid var(--sky); }
.plan__badge { position: absolute; top: -13px; left: 38px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); background: var(--sky); padding: 6px 14px; border-radius: 20px; }
.plan__name { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: #fff; margin: 0; }
.plan__tagline { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.6); margin: 8px 0 24px; min-height: 44px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 24px; border-bottom: 1px solid rgba(136, 185, 208, 0.18); }
.plan__amount { font-family: var(--font-head); font-weight: 800; font-size: 48px; color: var(--sky); line-height: 1; }
.plan__per { font-family: var(--font-mono); font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.plan__includes { display: flex; flex-direction: column; gap: 14px; padding: 24px 0; flex: 1; }
.plan__inc { display: flex; gap: 12px; align-items: center; }
.plan__inc-icon { width: 22px; height: 22px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.plan__inc.is-on .plan__inc-icon { color: var(--navy); background: var(--sky); }
.plan__inc.is-on .plan__inc-icon::before { content: "\2713"; }
.plan__inc.is-off .plan__inc-icon { color: rgba(255, 255, 255, 0.55); background: rgba(136, 185, 208, 0.12); }
.plan__inc.is-off .plan__inc-icon::before { content: "\2715"; }
.plan__inc-label { font-size: 15px; color: #fff; }
.plan__inc.is-off .plan__inc-label { opacity: 0.5; }
.plan__extras { display: flex; flex-direction: column; gap: 14px; padding-top: 22px; border-top: 1px solid rgba(136, 185, 208, 0.18); margin-bottom: 28px; }
.plan__extra-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 3px; }
.plan__extra-v { font-size: 14.5px; color: rgba(255, 255, 255, 0.85); line-height: 1.4; }
.plan__cta { text-align: center; padding: 15px; border-radius: 30px; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { background: var(--offwhite); color: var(--ink); padding: var(--sec) 0; }
.faq__wrap { width: min(100% - (var(--gutter) * 2), 880px); margin-inline: auto; }
.faq .eyebrow { display: block; margin-bottom: 14px; }
.faq__title { font-family: var(--font-head); font-weight: 800; font-size: 46px; line-height: 1.03; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 40px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid rgba(0, 38, 70, 0.08); border-radius: 16px; padding: 6px 28px; }
.faq__q { cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 22px 0; list-style: none; font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--navy); }
.faq__q::-webkit-details-marker { display: none; }
.faq__sign { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--sky); color: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 18px; line-height: 1; }
.faq__sign::before { content: "+"; }
.faq__item[open] .faq__sign::before { content: "\2013"; }
.faq__a { font-size: 16px; line-height: 1.65; color: rgba(20, 39, 60, 0.72); max-width: 680px; padding: 0 0 24px; }
.faq__a p { margin: 0 0 1em; }
.faq__a p:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .onetime__grid, .plans__grid { grid-template-columns: 1fr; }
  .page-hero__title { font-size: 40px; }
  .onetime__title, .plans__title, .faq__title { font-size: 36px; }
}

/* ── Prose (articles, legal, service/case detail) ────────────────────── */
.prose-section { background: var(--offwhite); color: var(--ink); padding: var(--sec) 0; }
.prose-section__wrap { width: min(100% - (var(--gutter) * 2), 760px); margin-inline: auto; }
.prose { font-size: 17px; line-height: 1.75; color: rgba(20, 39, 60, 0.82); }
.prose > :first-child { margin-top: 0; }
.prose h1 { font-family: var(--font-head); font-weight: 800; font-size: 40px; line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 24px; }
.prose h2 { font-family: var(--font-head); font-weight: 700; font-size: 28px; line-height: 1.15; color: var(--navy); margin: 44px 0 14px; }
.prose h3 { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--navy); margin: 30px 0 10px; }
.prose p { margin: 0 0 18px; }
.prose a { color: #2a6f97; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin: 0 0 8px; }
.prose li::marker { color: var(--sky); }
.prose strong { color: var(--navy); }
.prose img { border-radius: 16px; margin: 28px 0; width: 100%; }
.prose blockquote { border-left: 3px solid var(--sky); padding-left: 20px; margin: 24px 0; color: rgba(20, 39, 60, 0.7); }
.prose hr { border: none; border-top: 1px solid rgba(0, 38, 70, 0.12); margin: 36px 0; }

/* ── Services overview ───────────────────────────────────────────────── */
.services-ov { background: var(--offwhite); color: var(--ink); padding: var(--sec) 0; }
.services-ov .eyebrow { display: block; margin-bottom: 14px; }
.services-ov__title { font-family: var(--font-head); font-weight: 800; font-size: 46px; line-height: 1.03; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 44px; max-width: 620px; }
.services-ov__core { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.core-card { display: block; background: #fff; border: 1px solid rgba(0, 38, 70, 0.08); border-radius: 18px; padding: 40px; color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.core-card:hover { transform: translateY(-8px); box-shadow: 0 28px 54px -28px rgba(0, 38, 70, 0.45); }
.core-card__top { display: flex; align-items: center; justify-content: space-between; }
.core-card__n { font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--sky); line-height: 1; }
.core-card__hex { width: 40px; height: auto; }
.core-card__title { font-family: var(--font-head); font-weight: 700; font-size: 28px; color: var(--navy); margin: 22px 0 12px; }
.core-card__body { font-size: 16.5px; line-height: 1.62; color: rgba(20, 39, 60, 0.68); margin: 0 0 24px; max-width: 440px; }
.core-card__more { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy); }
.services-ov__more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.more-card { display: block; background: #fff; border: 1px solid rgba(0, 38, 70, 0.08); border-radius: 16px; padding: 32px; color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.more-card:hover { transform: translateY(-8px); box-shadow: 0 24px 46px -28px rgba(0, 38, 70, 0.4); }
.more-card__hex { width: 34px; height: auto; }
.more-card__title { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--navy); margin: 20px 0 10px; }
.more-card__body { font-size: 15px; line-height: 1.6; color: rgba(20, 39, 60, 0.68); margin: 0 0 20px; }
.more-card__more { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy); }

/* ── Process ─────────────────────────────────────────────────────────── */
.process { position: relative; background: var(--navy); color: #fff; padding: var(--sec) 0; overflow: hidden; }
.process__hex { position: absolute; right: -90px; bottom: -110px; width: 300px; opacity: 0.1; pointer-events: none; }
.process__wrap { position: relative; }
.process .eyebrow { display: block; margin-bottom: 14px; }
.process__title { font-family: var(--font-head); font-weight: 800; font-size: 46px; line-height: 1.03; letter-spacing: -0.02em; color: #fff; margin: 0 0 44px; max-width: 620px; }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pstep { border: 1px solid rgba(136, 185, 208, 0.22); border-radius: 16px; background: rgba(136, 185, 208, 0.05); padding: 32px; }
.pstep__n { font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--sky); line-height: 1; }
.pstep__title { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; margin: 18px 0 10px; }
.pstep__body { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0; }

/* ── Price teaser ────────────────────────────────────────────────────── */
.price-teaser { background: var(--offwhite); color: var(--ink); padding: var(--sec) 0; }
.price-teaser__panel { position: relative; overflow: hidden; background: var(--navy); border-radius: 20px; padding: 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.price-teaser__hex { position: absolute; right: -60px; bottom: -80px; width: 300px; opacity: 0.12; pointer-events: none; }
.price-teaser__info { position: relative; }
.price-teaser .eyebrow { display: block; margin-bottom: 14px; }
.price-teaser__title { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: #fff; margin: 0 0 14px; }
.price-teaser__body { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); margin: 0; max-width: 440px; }
.price-teaser__price { position: relative; border-left: 1px solid rgba(136, 185, 208, 0.25); padding-left: 40px; }
.price-teaser__amount { font-family: var(--font-head); font-weight: 800; font-size: 54px; color: var(--sky); line-height: 1; }
.price-teaser__unit { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; margin-top: 10px; }
.price-teaser__cta { margin-top: 28px; }

@media (max-width: 960px) {
  .services-ov__core, .services-ov__more, .process__grid { grid-template-columns: 1fr; }
  .price-teaser__panel { grid-template-columns: 1fr; }
  .price-teaser__price { border-left: none; padding-left: 0; border-top: 1px solid rgba(136, 185, 208, 0.25); padding-top: 24px; }
  .services-ov__title, .process__title { font-size: 36px; }
}

/* ── Case index / related (light case cards) ─────────────────────────── */
.case-index { background: var(--offwhite); color: var(--ink); padding: var(--sec) 0; }
.case-index__wrap { width: min(100% - (var(--gutter) * 2), var(--wrap-max)); margin-inline: auto; }
.case-index__eyebrow { display: block; margin-bottom: 32px; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-grid--related { grid-template-columns: repeat(4, 1fr); }
.case-card { display: block; background: #fff; border: 1px solid rgba(0, 38, 70, 0.08); border-radius: 16px; overflow: hidden; color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.case-card:hover { transform: translateY(-8px); box-shadow: 0 24px 46px -28px rgba(0, 38, 70, 0.4); }
.case-card__media { aspect-ratio: 16 / 10; background: repeating-linear-gradient(135deg, rgba(0, 38, 70, 0.07) 0 8px, transparent 8px 16px); border-bottom: 1px solid rgba(0, 38, 70, 0.07); display: flex; align-items: center; justify-content: center; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; }
.case-card__media-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(0, 38, 70, 0.4); padding: 0 12px; text-align: center; }
.case-card__body { padding: 22px 24px; }
.case-card__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 8px; }
.case-card__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(20, 39, 60, 0.5); }

/* ── Case CTA (per-case quote + contact) ─────────────────────────────── */
.case-cta { position: relative; background: var(--navy); color: #fff; padding: var(--sec) 0; overflow: hidden; }
.case-cta__hex { position: absolute; right: -70px; bottom: -90px; width: 280px; opacity: 0.1; pointer-events: none; }
.case-cta__wrap { position: relative; width: min(100% - (var(--gutter) * 2), 820px); margin-inline: auto; }
.case-cta__quote-wrap { margin: 0 0 36px; padding: 0 0 40px; border-bottom: 1px solid rgba(136, 185, 208, 0.18); }
.case-cta .eyebrow { display: block; margin-bottom: 14px; }
.case-cta__quote { font-family: var(--font-head); font-weight: 600; font-size: 30px; line-height: 1.3; letter-spacing: -0.01em; color: #fff; margin: 0 0 28px; padding: 0; border: 0; }
.case-cta__author { display: flex; align-items: center; gap: 14px; }
.case-cta__avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex: none; border: 1px solid rgba(136, 185, 208, 0.3); }
.case-cta__avatar img { width: 100%; height: 100%; object-fit: cover; }
.case-cta__avatar-ph { display: block; width: 100%; height: 100%; background: repeating-linear-gradient(135deg, rgba(136, 185, 208, 0.14) 0 5px, transparent 5px 10px); }
.case-cta__meta { display: flex; flex-direction: column; }
.case-cta__name { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff; }
.case-cta__role { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.case-cta__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.case-cta__title { font-family: var(--font-head); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; margin: 0; color: #fff; max-width: 440px; }

@media (max-width: 960px) {
  .case-grid, .case-grid--related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .case-grid, .case-grid--related { grid-template-columns: 1fr; }
}
