/* Home hero — full-bleed */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding-top: clamp(40px, 6vw, 88px);
}

.hero__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: end;
}

.hero__copy {
  padding: 0 var(--gutter) clamp(40px, 5vw, 72px);
  margin-left: calc(var(--edge) - var(--gutter));
  max-width: 720px;
}

.hero__eyebrow {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.hero__title {
  font-size: clamp(38px, 5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 2.8vw, 36px);
  margin-top: clamp(28px, 3.2vw, 48px);
}

.hero__lead {
  max-width: 480px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: clamp(340px, 42vw, 640px);
  margin-top: calc(-1 * clamp(40px, 6vw, 88px));
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
}

.hero__media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 10%, rgba(255, 255, 255, 0.7) 24%, rgba(255, 255, 255, 0.32) 42%, rgba(255, 255, 255, 0.08) 60%, rgba(255, 255, 255, 0) 76%);
}

.hero__facts {
  position: relative;
  background: var(--navy-deep);
}

.hero__facts-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* Dark services section */
.services-anchor {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: var(--section-y) 0 0;
}

.services-anchor__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.42fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding-bottom: clamp(40px, 4vw, 64px);
}

.services-anchor__label {
  color: var(--accent);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.photo-band {
  position: relative;
  margin-top: clamp(64px, 7vw, 120px);
  height: clamp(320px, 38vw, 560px);
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 42, 84, 0.9) 0%, rgba(6, 42, 84, 0.45) 55%, rgba(6, 42, 84, 0.15) 100%);
}

.photo-band__content {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: var(--max);
  padding: clamp(28px, 4vw, 64px) var(--gutter);
  margin-left: calc(var(--edge) - var(--gutter));
}

.photo-band__title {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
  max-width: 720px;
}

.photo-band__sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-base);
  margin-top: 18px;
}

/* Founder strip */
.founder-strip {
  background: var(--navy-mid);
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
}

.founder-strip__media {
  position: relative;
  min-height: clamp(360px, 40vw, 620px);
  overflow: hidden;
}

.founder-strip__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}

.founder-strip__copy {
  padding: clamp(48px, 6vw, 104px) var(--gutter);
  margin-left: auto;
  margin-right: calc(var(--edge) - var(--gutter));
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
}

.founder-strip__quote {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.founder-strip__meta {
  margin-top: clamp(32px, 3vw, 48px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.founder-strip__name {
  color: #fff;
  font-size: var(--text-md);
  font-weight: 600;
}

.founder-strip__role {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  margin-top: 4px;
}

.founder-strip__link {
  margin-top: 28px;
  display: inline-block;
}

/* Process steps home */
.process-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 4vw, 72px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.process-step {
  border-top: 2px solid var(--navy-deep);
  padding: 28px clamp(16px, 2vw, 36px) 0 0;
}

.process-step:last-child {
  border-top-color: var(--accent);
  padding-right: 0;
}

.process-step__num {
  color: rgba(6, 42, 84, 0.14);
  font-size: clamp(56px, 6vw, 104px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.process-step:last-child .process-step__num {
  color: rgba(4, 128, 254, 0.28);
}

.process-step__title {
  color: var(--navy-mid);
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 600;
  margin: 22px 0 10px;
}

.process-step__text {
  color: rgba(6, 42, 84, 0.72);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Closing CTA */
.cta-close {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: clamp(72px, 9vw, 150px) var(--gutter);
}

.cta-close__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: end;
}

.cta-close__title {
  color: #fff;
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.cta-close__rows {
  display: grid;
  gap: 0;
}

.cta-close__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-close__row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-close__key {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 6px;
}

.cta-close__val {
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 500;
  text-align: right;
  text-decoration: none;
}

a.cta-close__val:hover {
  color: var(--accent);
}

.cta-close .btn {
  margin-top: 30px;
  justify-self: start;
}

/* Page heroes — full-bleed dark anchor */
.page-hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: clamp(64px, 7vw, 112px) 0 clamp(56px, 6.5vw, 100px);
}

.page-hero > .container {
  position: relative;
}

.page-hero--split {
  overflow: visible;
  padding: 0;
}

.page-hero-panel--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.52fr);
}

.page-hero--split .page-hero__copy {
  position: relative;
  padding: clamp(64px, 7vw, 112px) var(--gutter) clamp(56px, 6.5vw, 100px);
  margin-left: calc(var(--edge) - var(--gutter));
  overflow: hidden;
  z-index: 1;
}

.page-hero--split .page-hero__media {
  position: relative;
  min-height: clamp(360px, 42vw, 620px);
  overflow: visible;
  z-index: 2;
}

.page-hero__copy {
  position: relative;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

.page-hero__media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero__media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__quote-card {
  position: absolute;
  left: clamp(-120px, -7vw, -40px);
  bottom: clamp(40px, 5vw, 80px);
  background: var(--accent);
  padding: 20px 26px;
  max-width: 290px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.35;
  z-index: 3;
}

.page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(40px, 4vw, 68px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero__stat {
  padding: 22px 40px 0 0;
}

.page-hero__stat-label {
  color: var(--accent);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-hero__stat-value {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
}

/* Timeline */
.timeline-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 40px);
  padding: clamp(22px, 2vw, 32px) 0;
  border-top: 1px solid rgba(6, 42, 84, 0.18);
}

.timeline-row:last-child {
  border-bottom: 1px solid rgba(6, 42, 84, 0.18);
}

.timeline-row__year {
  color: var(--navy-deep);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.timeline-row__year--accent {
  color: var(--accent);
}

.timeline-row__title {
  color: var(--navy-mid);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-row__text {
  color: rgba(6, 42, 84, 0.75);
  font-size: var(--text-base);
  line-height: 1.6;
  max-width: 640px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(32px, 5vw, 90px);
}

.value-item {
  display: flex;
  gap: 20px;
  padding: clamp(24px, 2.4vw, 34px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.value-item__title {
  color: #fff;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-item__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Pilot */
.pilot {
  background: var(--tint);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
}

.pilot__copy {
  padding: clamp(56px, 7vw, 120px) var(--gutter);
  margin-left: calc(var(--edge) - var(--gutter));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pilot__media {
  position: relative;
  min-height: clamp(340px, 38vw, 600px);
  overflow: hidden;
}

.pilot__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 55%;
}

.pilot__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 38px;
}

.pilot__stat {
  padding-right: 40px;
  border-right: 1px solid rgba(6, 42, 84, 0.18);
}

.pilot__stat:last-child {
  padding-left: 40px;
  padding-right: 0;
  border-right: none;
}

.pilot__stat:nth-child(2) {
  padding: 0 40px;
}

/* Mid CTA band */
.cta-band {
  background: var(--navy-mid);
  padding: clamp(56px, 6vw, 100px) var(--gutter);
}

.cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.cta-band__title {
  margin: 0;
  max-width: 900px;
  color: #fff;
  font-size: clamp(30px, 4vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Diensten */
.svc-cards {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 40px);
}

.svc-feature {
  background: var(--navy-deep);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.svc-feature__copy {
  padding: clamp(40px, 5vw, 80px) var(--gutter) clamp(48px, 6vw, 96px);
}

.svc-feature__media {
  position: relative;
  min-height: clamp(320px, 36vw, 560px);
  overflow: hidden;
}

.svc-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
}

.spec-item {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.spec-item__label {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.spec-item__value {
  color: #fff;
  font-size: var(--text-base);
}

.two-tone {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 40px);
}

.two-tone__card {
  padding: clamp(32px, 3.6vw, 60px);
  display: flex;
  flex-direction: column;
  min-height: clamp(330px, 32vw, 470px);
  border-radius: var(--radius-md);
}

.two-tone__card--navy {
  background: var(--navy-mid);
}

.two-tone__card--accent {
  background: var(--accent);
}

.two-tone__foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.svc-spec-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 48px);
  padding: clamp(28px, 3vw, 44px) 0;
  border-top: 1px solid rgba(6, 42, 84, 0.18);
}

.svc-spec-row:first-child {
  border-top: 2px solid var(--navy-deep);
}

.svc-spec-row:last-child {
  border-bottom: 1px solid rgba(6, 42, 84, 0.18);
}

.pricing {
  background: var(--navy-deep);
  padding: clamp(56px, 6vw, 100px) var(--gutter);
}

.pricing__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.62fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
}

.pricing__amount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing__amount strong {
  color: #fff;
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing__amount span {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-base);
}

/* Segment blocks */
.segment {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(32px, 3.4vw, 52px) 0;
  border-top: 1px solid rgba(6, 42, 84, 0.18);
}

.segment:first-child {
  border-top: 2px solid var(--navy-deep);
}

.segment:last-child {
  border-bottom: 1px solid rgba(6, 42, 84, 0.18);
}

.segment__num {
  color: rgba(6, 42, 84, 0.16);
  font-size: clamp(48px, 5vw, 88px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.segment__num--accent {
  color: rgba(4, 128, 254, 0.28);
}

.segment__title {
  margin: 14px 0 0;
  color: var(--navy-mid);
  font-size: clamp(26px, 2.8vw, 46px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.segment__tag {
  color: var(--accent);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 14px;
}

.segment__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 56px);
}

.segment__label {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(6, 42, 84, 0.5);
}

.segment__label--accent {
  color: var(--accent);
}

.ook-voor {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
}

.ook-voor__card {
  background: var(--tint);
  padding: clamp(24px, 2.6vw, 40px);
  min-height: 200px;
  border-radius: var(--radius-md);
}

.ook-voor__title {
  color: var(--navy-mid);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.ook-voor__text {
  color: rgba(6, 42, 84, 0.75);
  font-size: var(--text-base);
  line-height: 1.65;
}

/* Werkwijze steps */
.ww-step {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr) minmax(0, 0.5fr);
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(36px, 4vw, 64px) 0;
  border-bottom: 1px solid rgba(6, 42, 84, 0.18);
}

.ww-step:last-child {
  border-bottom: none;
}

.ww-step__num {
  color: rgba(6, 42, 84, 0.14);
  font-size: clamp(64px, 7vw, 132px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.045em;
}

.ww-step__num--accent {
  color: rgba(4, 128, 254, 0.3);
}

.ww-step__title {
  margin: 16px 0 0;
  color: var(--navy-mid);
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.ww-step__aside {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
}

.ww-step__aside-label {
  color: var(--accent);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ww-step__aside-text {
  color: var(--navy-deep);
  font-size: var(--text-base);
  line-height: 1.7;
}

.controle {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  background: var(--navy-deep);
}

.controle__media {
  position: relative;
  min-height: clamp(320px, 36vw, 560px);
  overflow: hidden;
}

.controle__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.controle__copy {
  padding: clamp(40px, 5vw, 90px) var(--gutter);
  margin-left: auto;
  margin-right: calc(var(--edge) - var(--gutter));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Contact */
.page-hero__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  padding: clamp(28px, 3vw, 40px) 0 0;
}

.page-hero__chips {
  justify-content: flex-end;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.72fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}

.contact-panel {
  background: var(--navy-mid);
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--radius-md);
}

.contact-panel__phone {
  display: block;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-panel__phone:hover,
.contact-panel__email:hover {
  color: var(--accent);
}

.contact-panel__email {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
}

.contact-panel__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin: 26px 0;
}

.contact-sample {
  background: var(--accent);
  padding: clamp(24px, 2.6vw, 36px);
  margin-top: clamp(16px, 2vw, 24px);
  border-radius: var(--radius-md);
}

.contact-sample__title {
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.contact-sample__text {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
  line-height: 1.6;
}

.contact-sample__link {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-size: var(--text-base);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 3px;
}

.contact-sample__link:hover {
  border-bottom-color: var(--navy-deep);
  color: var(--navy-deep);
}

.form-field-gap {
  margin-top: clamp(18px, 2vw, 28px);
}

.form-field-gap--lg {
  margin-top: clamp(24px, 2.6vw, 36px);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: clamp(24px, 2.6vw, 34px);
}

.form-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-sm);
}

/* 404 */
.error-page {
  background: var(--navy-deep);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vw, 140px) var(--gutter);
}

.error-page__inner {
  max-width: var(--max);
  margin: 0 auto;
}
