:root {
  --green: #113b32;
  --green-2: #1f5f50;
  --green-3: #0a261f;
  --blue: #35aee2;
  --blue-2: #0d82b4;
  --ink: #16231f;
  --muted: #5e6d68;
  --line: #dce7e4;
  --paper: #ffffff;
  --soft: #f6f9f8;
  --soft-blue: #edf8fd;
  --soft-green: #edf5f2;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.wrap,
.nav,
.topbar-inner,
.footer-inner {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  background: var(--green);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--green);
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  line-height: 0.92;
  color: var(--green);
}

.brand-word {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 950;
  letter-spacing: 0;
}

.brand-payoff {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #41534d;
  font-size: 15px;
  font-weight: 760;
}

.nav-links a {
  padding: 29px 0 26px;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-2);
  border-color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(82vw, 320px);
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(17, 59, 50, 0.12);
}

.mobile-menu a {
  padding: 12px;
  color: #41534d;
  font-weight: 780;
}

.mobile-menu a:hover {
  background: var(--soft-blue);
  color: var(--blue-2);
}

.mobile-menu .mobile-call,
.mobile-menu .mobile-project {
  margin-top: 6px;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.mobile-menu .mobile-project {
  background: var(--blue);
  color: var(--green-3);
}

.mobile-menu .mobile-call:hover,
.mobile-menu .mobile-project:hover {
  background: var(--green-2);
  color: #fff;
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-cta,
.button-dark {
  background: var(--green);
  color: #fff;
}

.nav-project {
  background: var(--blue);
  color: var(--green-3);
}

.nav-phone {
  white-space: nowrap;
}

.button-blue {
  background: var(--blue);
  color: #fff;
}

.button-light {
  background: #fff;
  border-color: var(--line);
  color: var(--green);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(17, 59, 50, 0.14);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(53, 174, 226, 0.34);
  outline-offset: 3px;
}

.home-hero {
  min-height: clamp(620px, 80vh, 860px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 38, 31, 0.86), rgba(10, 38, 31, 0.56)),
    url("/assets/images/genso-werkvoorbereiding-poster.png") center / cover;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 38, 31, 0.9) 0%, rgba(10, 38, 31, 0.72) 42%, rgba(10, 38, 31, 0.42) 100%),
    linear-gradient(180deg, rgba(10, 38, 31, 0.14), rgba(10, 38, 31, 0.76));
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 104px 0 128px;
}

.home-hero .hero-kicker {
  color: rgba(222, 248, 255, 0.94);
}

.hero-title-link {
  display: inline-block;
  color: #fff;
}

.hero-title-link h1 {
  color: #fff;
  font-size: clamp(58px, 10vw, 136px);
  line-height: 0.88;
  text-wrap: balance;
}

.hero-title-link:hover h1 {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}

.hero-subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.46;
}

.home-hero .button-blue {
  background: var(--blue);
  color: var(--green-3);
}

.home-trust {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  transform: translateY(-34px);
  margin-bottom: -34px;
}

.trust-mini div {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(220, 231, 228, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 59, 50, 0.14);
  color: var(--green);
  font-weight: 900;
}

.narrow {
  max-width: 920px;
}

.home-intro {
  padding: 64px 0 54px;
}

.home-intro p {
  margin: 0;
  color: var(--green);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 850;
  line-height: 1.16;
  text-align: center;
  text-wrap: balance;
}

.compact-section {
  padding: 76px 0;
}

.compact-head {
  align-items: start;
  margin-bottom: 30px;
}

.compact-head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
}

.home-card-grid,
.service-tile-grid,
.proof-grid,
.audience-grid,
.work-preview-grid,
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-card,
.service-tile,
.proof-item,
.audience-card,
.work-preview-card,
.pillar-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 24px;
}

.home-card .number {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 950;
}

.home-card:hover,
.service-tile:hover,
.audience-card:hover,
.work-preview-card:hover,
.step-card:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 48px rgba(17, 59, 50, 0.1);
}

.service-tile-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-tile {
  min-height: 250px;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.service-tile h3,
.service-tile p,
.service-tile small {
  margin: 0;
}

.service-tile p {
  color: var(--ink);
  line-height: 1.5;
}

.service-tile small {
  color: var(--muted);
  line-height: 1.45;
}

.mini-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue-2);
}

.mini-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-grid-six {
  grid-template-columns: repeat(3, 1fr);
}

.proof-item,
.pillar-card {
  min-height: 220px;
  padding: 24px;
}

.proof-item span,
.pillar-card span {
  width: 34px;
  height: 5px;
  display: block;
  margin-bottom: 34px;
  background: var(--blue);
}

.proof-item h3,
.pillar-card h3,
.home-card h3,
.step-card h3 {
  font-size: 20px;
}

.good-section {
  scroll-margin-top: 110px;
}

.good-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.good-intro p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.short-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) 1fr;
  gap: 38px;
  align-items: start;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step-card {
  min-height: 190px;
  padding: 24px;
}

.step-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience-card {
  min-height: 190px;
  padding: 24px;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.work-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-preview-card {
  overflow: hidden;
}

.work-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft-blue);
}

.work-preview-card div {
  padding: 22px;
}

.work-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.trustbar-section {
  padding: 34px 0;
}

.trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trustbar span,
.trustbar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.trustbar a {
  background: var(--green);
  color: #fff;
}

.cta-clean p {
  max-width: 620px;
}

.contact-grid-single {
  grid-template-columns: minmax(0, 820px);
}

.why-important {
  align-items: stretch;
}

.why-important .info-panel {
  display: grid;
  align-items: center;
}

.media-room-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.media-room-card {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.media-room-card.large {
  grid-row: span 2;
}

.media-room-card video,
.media-room-card img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
  background: var(--green);
}

.media-room-card.large video,
.media-room-card.large img {
  height: calc(100% - 112px);
  min-height: 430px;
}

.media-room-card div {
  padding: 20px;
}

.media-room-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 20px;
  align-items: start;
}

.contact-call-card .contact-fact a {
  color: var(--blue-2);
  font-size: 22px;
  font-weight: 950;
}

.request-checklist {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.request-checklist div {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.request-checklist strong {
  color: var(--green);
}

.request-checklist span {
  color: var(--muted);
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 59, 50, 0.08);
}

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

.form-field {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.form-field textarea {
  min-height: 142px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(53, 174, 226, 0.2);
  border-color: var(--blue-2);
}

.privacy-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form .button {
  margin-top: 20px;
  width: auto;
}

.contact-phone-line a {
  color: var(--blue-2);
  font-size: 24px;
  font-weight: 950;
}

.contact-business-section {
  padding-top: 64px;
}

.contact-business-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: 24px;
  align-items: start;
}

.business-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.business-card-list div {
  min-height: 118px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.business-card-list strong {
  color: var(--green);
}

.business-card-list span,
.business-card-list a {
  color: var(--muted);
  line-height: 1.45;
}

.form-success {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(31, 95, 80, 0.28);
  border-radius: 8px;
  background: var(--soft-green);
  color: var(--green);
  font-weight: 850;
}

.hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: 58px;
  align-items: center;
  padding: 96px 0 70px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin: 0;
  color: var(--green);
  font-size: clamp(42px, 6.9vw, 82px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.14;
}

.lead {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-visual,
.side-panel,
.card,
.service-card,
.project-card,
.process-card,
.why-item,
.info-panel,
.contact-card,
.note-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hero-visual {
  min-height: 460px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  box-shadow: 0 24px 68px rgba(17, 59, 50, 0.1);
}

.hero-visual.hero-video {
  min-height: 520px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--green);
}

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

.hero-video .media-video {
  position: absolute;
  inset: 0;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 38, 31, 0.04), rgba(10, 38, 31, 0.78));
}

.hero-video p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--muted);
  line-height: 1.55;
}

.hero-video p strong {
  color: var(--green);
}

.building-mark {
  width: 100%;
  min-height: 240px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  border: 1px solid var(--line);
}

.building-mark svg {
  width: min(78%, 290px);
  height: auto;
}

.hero-visual p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-item {
  min-height: 132px;
  padding: 22px;
  background: #fff;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 18px;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 88px 0;
}

.section.white {
  background: #fff;
}

.section.blue {
  background: var(--soft-blue);
}

.section.green {
  background: var(--green);
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 38px;
}

.section-copy,
.card p,
.text p,
.project-card p,
.service-card p,
.process-card p,
.why-item p,
.info-panel p,
.contact-card p,
li {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: 42px;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card-grid.small .info-panel {
  min-height: 190px;
}

.card {
  min-height: 260px;
  padding: 26px;
  display: grid;
  gap: 22px;
  align-content: space-between;
}

.card:hover,
.service-card:hover,
.project-card:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 48px rgba(17, 59, 50, 0.1);
}

.icon,
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  color: var(--blue-2);
  font-size: 19px;
  font-weight: 950;
}

.card-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 360px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue);
}

.service-card .number {
  color: var(--blue-2);
  font-weight: 950;
}

.service-card ul,
.compact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.compact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.service-card li::before,
.compact-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--blue);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-item {
  min-height: 205px;
  padding: 26px;
}

.why-item h3 {
  margin-top: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-card {
  min-height: 245px;
  padding: 22px;
}

.process-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--blue-2);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.media,
.visual-panel {
  min-height: 470px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(17, 59, 50, 0.04), rgba(17, 59, 50, 0.08)),
    var(--image) center / cover;
}

.visual-panel {
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--soft-blue);
}

.video-frame {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green);
}

.video-frame .media-video,
.video-frame .media-image {
  min-height: 470px;
}

.video-caption {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.video-caption strong {
  color: var(--green);
}

.video-caption span {
  color: var(--muted);
  line-height: 1.45;
}

.status-label {
  display: inline-flex;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card {
  overflow: hidden;
}

.project-media,
.project-visual-panel {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft-blue);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.project-media {
  padding: 0;
  overflow: hidden;
  background: var(--green);
}

.project-media .media-video,
.project-media .media-image {
  aspect-ratio: 4 / 3;
}

.project-visual-panel span {
  display: inline-flex;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-body {
  padding: 24px;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.meta-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

.meta-row b {
  color: var(--green);
}

.page-hero {
  padding: 82px 0 72px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.54fr);
  gap: 48px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.breadcrumbs a {
  color: var(--blue-2);
}

.side-panel,
.info-panel,
.contact-card,
.note-card {
  padding: 26px;
}

.side-panel ul,
.bullet-list {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.side-panel li,
.bullet-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
}

.side-panel li::before,
.bullet-list li::before {
  content: "";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
}

.side-panel li::after,
.bullet-list li::after {
  content: "";
  width: 9px;
  height: 9px;
  margin: 9px 0 0 -27px;
  background: var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: start;
}

.contact-facts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-fact {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.contact-fact b {
  color: var(--green);
}

.request-steps {
  display: grid;
  gap: 12px;
  counter-reset: request;
  margin-top: 18px;
}

.request-steps li {
  counter-increment: request;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.request-steps li::before {
  content: counter(request);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.cta {
  padding: 78px 0;
  color: #fff;
  background: var(--green);
}

.cta h2 {
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta p,
.cta li {
  color: rgba(255, 255, 255, 0.82);
}

.cta .button-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.footer {
  padding: 56px 0 34px;
  background: var(--green-3);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 32px;
}

.footer-grid-business {
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.65fr) minmax(240px, 0.92fr) minmax(170px, 0.72fr);
  gap: 34px;
}

.business-details li {
  line-height: 1.45;
}

.footer-contact a:first-child {
  color: #fff;
  font-weight: 900;
}

.footer h2,
.footer h3,
.footer strong {
  color: #fff;
}

.footer h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-hero-video,
  .media-video {
    display: none;
  }

  .home-hero {
    background:
      linear-gradient(90deg, rgba(10, 38, 31, 0.88), rgba(10, 38, 31, 0.56)),
      url("/assets/images/genso-werkvoorbereiding-poster.png") center / cover;
  }

  .button,
  .nav-cta {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-inner,
  .section-head,
  .grid-4,
  .grid-3,
  .grid-2,
  .two-col,
  .card-grid,
  .service-grid,
  .why-grid,
  .process-grid,
  .split,
  .page-grid,
  .cta-grid,
  .footer-grid,
  .contact-grid,
  .contact-layout,
  .contact-business-grid,
  .business-card-list,
  .project-grid,
  .trust-strip,
  .trust-mini,
  .home-card-grid,
  .service-tile-grid,
  .proof-grid,
  .audience-grid,
  .work-preview-grid,
  .media-room-grid,
  .pillar-grid,
  .short-process,
  .step-row {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 74px 0 62px;
  }

  .hero-visual,
  .media,
  .visual-panel,
  .video-frame,
  .video-frame .media-video,
  .video-frame .media-image {
    min-height: 340px;
  }

  .home-hero {
    min-height: 70vh;
  }

  .home-hero-content {
    padding: 84px 0 108px;
  }

  .home-card,
  .service-tile,
  .proof-item,
  .audience-card,
  .pillar-card,
  .step-card {
    min-height: auto;
  }

  .media-room-card.large {
    grid-row: auto;
  }

  .media-room-card.large video,
  .media-room-card.large img,
  .media-room-card video,
  .media-room-card img {
    height: 320px;
    min-height: 0;
  }

  .trust-mini {
    transform: none;
    margin: 18px auto;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav,
  .topbar-inner,
  .footer-inner {
    width: min(100% - 28px, 1200px);
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 70px;
    gap: 12px;
  }

  .nav-actions {
    display: none;
  }

  .brand-word {
    font-size: 30px;
  }

  .brand-payoff {
    font-size: 9px;
  }

  .mobile-menu summary {
    min-height: 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }

  .home-hero {
    min-height: 70vh;
  }

  .home-hero-content {
    padding: 72px 0 86px;
  }

  .hero-title-link h1 {
    font-size: clamp(50px, 17vw, 74px);
  }

  .hero-subtitle {
    max-width: 34rem;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .home-intro {
    padding: 44px 0 38px;
  }

  .home-intro p {
    font-size: 24px;
    text-align: left;
  }

  .compact-section {
    padding: 54px 0;
  }

  .section,
  .cta {
    padding: 58px 0;
  }

  .page-hero {
    padding: 58px 0;
  }

  .card,
  .service-card,
  .why-item,
  .project-body,
  .side-panel,
  .info-panel,
  .contact-card,
  .note-card,
  .contact-form {
    padding: 22px;
  }

  .meta-row,
  .contact-fact {
    grid-template-columns: 1fr;
  }

  .trust-mini div {
    min-height: 58px;
    padding: 16px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form .button {
    width: 100%;
  }

  .trustbar {
    justify-content: flex-start;
  }

  .trustbar span,
  .trustbar a {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
  }

  .request-checklist {
    gap: 6px;
  }

  .request-checklist div {
    padding: 11px 0;
  }

  .proof-item span,
  .pillar-card span {
    margin-bottom: 24px;
  }
}

/* Premium visual polish */
:root {
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 10px 24px rgba(17, 59, 50, 0.08);
  --shadow-md: 0 18px 48px rgba(17, 59, 50, 0.12);
  --shadow-lg: 0 34px 90px rgba(10, 38, 31, 0.22);
  --warm: #fbfcfb;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(53, 174, 226, 0.08), transparent 32rem),
    linear-gradient(180deg, #fff 0%, var(--soft) 42%, #fff 100%);
  color: #13251f;
  text-rendering: optimizeLegibility;
}

.wrap,
.nav,
.topbar-inner,
.footer-inner {
  width: min(1240px, calc(100% - 44px));
}

.topbar {
  background: var(--green-3);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 231, 228, 0.74);
  box-shadow: 0 10px 30px rgba(10, 38, 31, 0.05);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
}

.brand-word {
  font-size: clamp(31px, 2.65vw, 42px);
}

.brand-payoff {
  color: #55716a;
  font-size: 10px;
  letter-spacing: 1.4px;
}

.nav-links {
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 30px 0 27px;
  border: 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button,
.nav-cta {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.button-blue,
.button-dark,
.nav-project {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 59, 50, 0.2);
}

.button-blue:hover,
.button-dark:hover,
.nav-project:hover {
  background: var(--green-2);
  box-shadow: 0 18px 38px rgba(17, 59, 50, 0.24);
}

.button-light,
.nav-phone {
  background: #fff;
  border-color: rgba(17, 59, 50, 0.18);
  color: var(--green);
}

.button-light:hover,
.nav-phone:hover {
  background: var(--soft-green);
  border-color: rgba(17, 59, 50, 0.28);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.home-hero {
  min-height: clamp(660px, 80vh, 900px);
  background:
    linear-gradient(90deg, rgba(10, 38, 31, 0.9), rgba(10, 38, 31, 0.5)),
    url("/assets/images/genso-werkvoorbereiding-poster.png") center / cover;
  isolation: isolate;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(10, 38, 31, 0.28));
  pointer-events: none;
  z-index: 1;
}

.home-hero-video {
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.015);
}

.home-hero-overlay {
  background:
    radial-gradient(circle at 20% 42%, rgba(53, 174, 226, 0.14), transparent 24rem),
    linear-gradient(90deg, rgba(4, 20, 16, 0.98) 0%, rgba(7, 36, 29, 0.86) 48%, rgba(7, 36, 29, 0.48) 100%),
    linear-gradient(180deg, rgba(4, 20, 16, 0.2), rgba(4, 20, 16, 0.84));
}

.home-hero-content {
  max-width: 780px;
  padding: 118px 0 116px;
}

.home-hero-content::before {
  content: "";
  position: absolute;
  inset: 72px auto 76px -30px;
  width: min(820px, calc(100vw - 42px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(6, 27, 22, 0.88), rgba(6, 27, 22, 0.46));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(234, 251, 255, 0.95);
}

.hero-title-link h1,
.home-hero-content h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.hero-title-link:hover h1 {
  text-decoration: none;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 26px;
  color: #fff;
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 760;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.hero-actions {
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.section {
  padding: 104px 0;
}

.section.white {
  background: #fff;
}

.compact-section {
  padding: 96px 0;
}

.section:not(.white):not(.green):not(.blue),
.contact-business-section {
  background:
    radial-gradient(circle at top right, rgba(53, 174, 226, 0.08), transparent 22rem),
    var(--soft);
}

.home-intro {
  padding: 72px 0 62px;
}

.home-intro p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(28px, 3.25vw, 46px);
  line-height: 1.12;
}

.section-label,
.eyebrow {
  color: var(--blue-2);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.compact-head {
  margin-bottom: 34px;
}

.compact-head h2,
h2 {
  font-size: clamp(34px, 4.1vw, 56px);
  letter-spacing: 0;
}

.section-copy,
.lead {
  max-width: 680px;
  color: #63736e;
}

.service-tile,
.proof-item,
.audience-card,
.work-preview-card,
.pillar-card,
.step-card,
.card,
.service-card,
.project-card,
.info-panel,
.side-panel,
.contact-form,
.business-card-list div {
  border-color: rgba(210, 225, 221, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-tile,
.proof-item,
.audience-card,
.pillar-card,
.step-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-tile::after,
.proof-item::after,
.audience-card::after,
.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(53, 174, 226, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.service-tile:hover,
.proof-item:hover,
.audience-card:hover,
.work-preview-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 174, 226, 0.42);
  box-shadow: var(--shadow-md);
}

.service-tile:hover::after,
.proof-item:hover::after,
.audience-card:hover::after,
.step-card:hover::after {
  opacity: 1;
}

.service-tile-grid {
  gap: 20px;
}

.service-tile {
  min-height: 285px;
  padding: 30px;
}

.mini-icon,
.card-icon,
.icon {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--soft-blue), #fff);
  box-shadow: inset 0 0 0 1px rgba(53, 174, 226, 0.16);
}

.service-tile h3,
.proof-item h3,
.audience-card h3,
.step-card h3 {
  font-size: 21px;
  line-height: 1.18;
}

.service-tile p,
.service-tile small,
.proof-item p,
.audience-card p,
.step-card p {
  position: relative;
  z-index: 1;
}

.proof-grid-six {
  gap: 18px;
}

.proof-grid-six .proof-item {
  min-height: 205px;
  padding: 28px;
}

.proof-grid-six .proof-item span {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--green), var(--green-2));
}

.proof-grid-six .proof-item span::after {
  content: "";
  width: 14px;
  height: 8px;
  display: block;
  margin: 14px auto 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.short-process {
  grid-template-columns: minmax(260px, 0.48fr) 1fr;
  gap: 52px;
}

.step-row {
  position: relative;
  gap: 22px;
}

.step-row::before {
  content: "";
  position: absolute;
  top: 43px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 95, 80, 0.18), rgba(53, 174, 226, 0.52), rgba(31, 95, 80, 0.18));
}

.step-card {
  min-height: 210px;
  padding: 30px;
  z-index: 1;
}

.step-card span {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(17, 59, 50, 0.18);
}

.audience-grid,
.work-preview-grid {
  gap: 20px;
}

.audience-card {
  min-height: 210px;
  padding: 30px;
}

.work-preview-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-preview-card img {
  aspect-ratio: 16 / 9;
  filter: saturate(0.94) contrast(1.04);
}

.work-preview-card div {
  padding: 26px;
}

.trustbar-section {
  background: #fff;
}

.trustbar {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, var(--soft));
  box-shadow: var(--shadow-sm);
}

.trustbar span,
.trustbar a {
  min-height: 44px;
  border-color: rgba(17, 59, 50, 0.12);
  background: #fff;
  box-shadow: 0 5px 14px rgba(17, 59, 50, 0.04);
}

.trustbar a {
  background: var(--green);
  color: #fff;
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(53, 174, 226, 0.09), transparent 26rem),
    #fff;
}

.page-grid {
  align-items: stretch;
}

.side-panel,
.info-panel {
  box-shadow: var(--shadow-sm);
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
}

.contact-form {
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-grid {
  gap: 18px;
}

.form-field {
  color: var(--green);
  font-size: 13px;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 54px;
  border-radius: 10px;
  background: var(--warm);
  border-color: rgba(210, 225, 221, 0.98);
}

.form-field textarea {
  min-height: 154px;
}

.contact-call-card,
.contact-layout .info-panel {
  background:
    linear-gradient(135deg, #fff, var(--soft-green));
}

.request-checklist div {
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 15px 0;
}

.contact-business-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.business-card-list {
  gap: 14px;
}

.business-card-list div {
  min-height: 132px;
}

.footer {
  padding: 72px 0 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 174, 226, 0.14), transparent 26rem),
    linear-gradient(180deg, #09241e, var(--green-3));
}

.footer-grid-business {
  gap: 40px;
}

.footer h2 {
  font-size: 28px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact a:first-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

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

@media (max-width: 1120px) {
  .nav-actions {
    display: none;
  }

  .mobile-menu div {
    width: min(88vw, 390px);
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu a {
    border-radius: 12px;
  }

  .home-hero-content::before {
    inset: 56px auto 58px -16px;
    width: min(760px, calc(100vw - 32px));
  }

  .service-tile-grid,
  .proof-grid-six,
  .audience-grid,
  .work-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-row::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav,
  .topbar-inner,
  .footer-inner {
    width: min(100% - 32px, 1240px);
  }

  .nav {
    min-height: 74px;
  }

  .mobile-menu summary {
    border-radius: 999px;
    background: #fff;
  }

  .mobile-menu div {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .home-hero {
    min-height: 72vh;
    background-position: center;
  }

  .home-hero-video {
    display: none;
  }

  .home-hero-content {
    padding: 70px 0 74px;
  }

  .home-hero-content::before {
    inset: 42px -6px 48px -6px;
    width: auto;
    border-radius: 18px;
  }

  .hero-title-link h1 {
    max-width: 8ch;
    font-size: clamp(58px, 16vw, 76px);
    line-height: 0.92;
  }

  .hero-subtitle {
    max-width: 31rem;
    font-size: 16px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .section,
  .compact-section,
  .cta,
  .contact-business-section {
    padding: 68px 0;
  }

  .home-intro {
    padding: 54px 0 46px;
  }

  .home-intro p {
    font-size: 25px;
    line-height: 1.18;
  }

  .service-tile-grid,
  .proof-grid-six,
  .audience-grid,
  .work-preview-grid,
  .business-card-list {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .proof-grid-six .proof-item,
  .audience-card,
  .step-card,
  .contact-form {
    padding: 24px;
  }

  .contact-form {
    border-radius: 16px;
  }

  .trustbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .trustbar span,
  .trustbar a {
    width: auto;
    min-height: 48px;
    padding: 0 10px;
    text-align: center;
    font-size: 12px;
  }

  .trustbar span:last-child {
    grid-column: 1 / -1;
  }

  .footer {
    padding-top: 58px;
  }
}

/* Benchmark-inspired system refinement */
:root {
  --surface: #ffffff;
  --surface-2: #f2f6f4;
  --surface-3: #eaf3ef;
  --stroke: rgba(17, 59, 50, 0.12);
}

.section-head {
  align-items: start;
}

.section-head .section-copy {
  padding-top: 6px;
}

.audience-routes-section {
  padding-top: 82px;
  padding-bottom: 82px;
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
}

.audience-routes {
  counter-reset: route;
}

.audience-routes .audience-card {
  counter-increment: route;
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 244, 0.94));
}

.audience-routes .audience-card::before {
  content: "0" counter(route);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(17, 59, 50, 0.16);
}

.audience-routes .audience-card span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-routes .audience-card h3 {
  margin-top: 8px;
}

.audience-routes .audience-card p {
  margin-top: 8px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.proof-aside {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 174, 226, 0.18), transparent 15rem),
    linear-gradient(145deg, var(--green), var(--green-3));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.proof-aside::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.proof-aside .section-label,
.proof-aside h3,
.proof-aside p {
  position: relative;
  z-index: 1;
}

.proof-aside .section-label {
  color: rgba(224, 248, 255, 0.9);
}

.proof-aside h3 {
  color: #fff;
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 0.98;
}

.proof-aside p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.proof-aside .button {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: 30px;
  background: #fff;
  color: var(--green);
}

.proof-grid-six {
  grid-template-columns: repeat(2, 1fr);
}

.proof-grid-six .proof-item {
  min-height: 184px;
}

.service-tile,
.audience-card,
.proof-item,
.step-card,
.work-preview-card {
  background: rgba(255, 255, 255, 0.96);
}

.service-tile h3,
.audience-card h3,
.proof-item h3,
.step-card h3,
.work-preview-card h3 {
  letter-spacing: 0;
}

.service-tile p,
.audience-card p,
.proof-item p,
.step-card p,
.work-preview-card p {
  color: #5c6f68;
}

.work-preview-card {
  background: #fff;
}

.work-preview-card img {
  min-height: 228px;
}

.page-hero {
  padding: 96px 0 82px;
}

.page-hero .side-panel {
  background: linear-gradient(145deg, #fff, var(--surface-2));
}

.contact-form-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
}

.contact-layout .info-panel {
  position: sticky;
  top: 122px;
  min-height: 410px;
  display: grid;
  align-content: start;
}

.contact-layout .info-panel h2 {
  font-size: clamp(30px, 3.1vw, 42px);
}

.contact-form {
  background:
    linear-gradient(180deg, #fff, #fbfdfc);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .proof-aside {
    min-height: 300px;
  }

  .proof-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout .info-panel {
    position: static;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .audience-routes-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .audience-routes .audience-card {
    min-height: 210px;
  }

  .proof-grid-six {
    grid-template-columns: 1fr;
  }

  .proof-aside {
    min-height: 270px;
    padding: 28px;
  }

  .proof-aside .button {
    width: 100%;
  }

  .page-hero {
    padding: 64px 0;
  }
}
