:root {
  --ink: #071f34;
  --ink-soft: #15364e;
  --paper: #f4f1ea;
  --paper-soft: #fbfaf6;
  --mist: #e6eeee;
  --sand: #ebe4d8;
  --line: rgba(7, 31, 52, 0.12);
  --red: #f5332a;
  --orange: #ff9819;
  --yellow: #fff21a;
  --green: #74c044;
  --blue: #2eacd9;
  --purple: #7a3f98;
  --shadow: 0 24px 70px rgba(7, 31, 52, 0.13);
  --radius: 28px;
  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:
    radial-gradient(circle at 80% 4%, rgba(46, 172, 217, 0.16), transparent 30rem),
    linear-gradient(180deg, #f2efe7 0%, #fbfaf6 42%, #edf2f1 100%);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 20px;
  background: rgba(255, 255, 252, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(7, 31, 52, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.site-nav .nav-login-disabled {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(7, 31, 52, 0.75);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: 180ms ease;
}

.site-nav a:hover,
body[data-page="home"] .site-nav a[href="index.html"],
body[data-page="diensten"] .site-nav a[href="diensten.html"],
body[data-page="projecten"] .site-nav a[href="projecten.html"],
body[data-page="over-ons"] .site-nav a[href="over-ons.html"],
body[data-page="contact"] .site-nav a[href="contact.html"] {
  background: var(--ink);
  color: white;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: white;
}

.hero,
.page-hero,
.contact-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 62px auto 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 42px;
  align-items: center;
  min-height: 690px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(7, 31, 52, 0.95), rgba(11, 58, 84, 0.86)),
    url("assets/images/diensten/fotografie.png") center / cover;
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  padding: 26px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.55rem, 5.2vw, 5.05rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.15vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(7, 31, 52, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.55;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero .eyebrow {
  color: #9fe2ff;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: 180ms ease;
}

.button.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(7, 31, 52, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button:hover,
.service-pill:hover,
.project-card:hover,
.service-card:hover {
  transform: translateY(-3px);
}

.hero-media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(60vh, 590px);
  min-height: 420px;
  object-fit: cover;
}

.stat-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(280px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  font-size: 1.2rem;
}

.stat-card span {
  margin-top: 4px;
  color: rgba(7, 31, 52, 0.68);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 76px auto;
}

.intro-band {
  padding: 46px;
  border: 1px solid rgba(7, 31, 52, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(230, 238, 238, 0.96), rgba(235, 228, 216, 0.92));
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.intro-grid,
.services-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.soft-panel,
.service-card,
.project-card,
.contact-form,
.value-list,
.contact-cards a,
.contact-cards span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 42px rgba(7, 31, 52, 0.06);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: -18px auto 70px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(7, 31, 52, 0.08);
  backdrop-filter: blur(14px);
}

.trust-strip span {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 12px;
  border-radius: 20px;
  background: var(--paper-soft);
  color: rgba(7, 31, 52, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.soft-panel,
.service-card {
  padding: 26px;
}

.soft-panel p,
.service-card p,
.project-card p,
.split-copy p,
.value-list span {
  color: rgba(7, 31, 52, 0.68);
  line-height: 1.6;
}

.icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(46, 172, 217, 0.12);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--ink);
}

.icon.camera::before {
  width: 25px;
  height: 18px;
  border-radius: 6px;
}

.icon.camera::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.icon.layers::before {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  transform: rotate(45deg);
}

.icon.layers::after {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  transform: translate(6px, 6px) rotate(45deg);
  opacity: 0.35;
}

.icon.spark::before {
  width: 21px;
  height: 21px;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.icon.drone::before {
  width: 26px;
  height: 2px;
  border-width: 2px 0 0;
}

.icon.drone::after {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border-style: dotted;
}

.icon.plan::before {
  width: 24px;
  height: 28px;
  border-radius: 3px;
}

.icon.plan::after {
  width: 10px;
  height: 28px;
  border-width: 0 2px;
}

.icon.tour::before {
  width: 28px;
  height: 18px;
  border-radius: 50%;
}

.icon.tour::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.icon.video::before {
  width: 25px;
  height: 18px;
  border-radius: 5px;
}

.icon.video::after {
  width: 0;
  height: 0;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent var(--ink);
  border-style: solid;
  transform: translateX(18px);
}

.icon.edit::before {
  width: 26px;
  height: 2px;
  border-width: 2px 0 0;
  transform: rotate(-38deg);
}

.icon.edit::after {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: translate(9px, -8px) rotate(-38deg);
}

.icon.cube::before {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  transform: rotate(30deg) skew(-10deg);
}

.icon.cube::after {
  width: 11px;
  height: 24px;
  border-width: 0 2px 0 0;
  transform: translateX(4px) rotate(30deg);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.85fr);
  gap: 58px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.stack-main,
.stack-float {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-main {
  inset: 0 auto auto 0;
  width: 78%;
  height: 430px;
  border-radius: 34px;
}

.stack-float {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 270px;
  border: 10px solid var(--paper);
  border-radius: 32px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: 180ms ease;
}

.service-pill .icon {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
}

.cta-band {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 80px auto 100px;
  padding: 30px;
  border-radius: 32px;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.cta-band .eyebrow {
  color: var(--yellow);
}

.cta-band img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.cta-band h2 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: center;
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(7, 31, 52, 0.94), rgba(14, 72, 96, 0.84));
  color: white;
  box-shadow: var(--shadow);
}

.page-hero.compact {
  display: block;
  max-width: 920px;
}

.page-hero-img {
  width: 100%;
  min-height: 310px;
  max-height: 430px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.logo-tile {
  padding: 44px;
  background: transparent;
  border: 0;
  box-shadow: none;
  object-fit: contain;
}

.page-hero .logo-tile {
  width: min(360px, 72vw);
  min-height: 0;
  justify-self: center;
  padding: 0;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.34));
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero .eyebrow {
  color: #9fe2ff;
}

.dark-band {
  margin: 82px 0;
  padding: 8px 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(46, 172, 217, 0.26), transparent 24rem),
    linear-gradient(135deg, #061d33 0%, #092d48 100%);
  color: white;
}

.dark-band .section {
  margin: 66px auto;
}

.dark-band .eyebrow {
  color: #9fe2ff;
}

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

.glass-stat {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
}

.glass-stat strong {
  display: block;
  margin-bottom: 34px;
  color: var(--yellow);
  font-size: 2rem;
}

.glass-stat span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

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

.service-card {
  scroll-margin-top: 120px;
  transition: 180ms ease;
}

.service-card .mini-toggle {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.more-text {
  display: grid;
  grid-template-rows: 0fr;
  color: rgba(7, 31, 52, 0.68);
  line-height: 1.6;
  overflow: hidden;
  transition: 220ms ease;
}

.service-card.open .more-text {
  grid-template-rows: 1fr;
  margin-top: 14px;
}

.service-card .more-text {
  grid-template-rows: 1fr;
  margin-top: 14px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.filter.active {
  background: var(--ink);
  color: white;
}

.project-card {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: 180ms ease;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.project-card div {
  padding: 22px;
}

.project-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h2 {
  margin-top: 8px;
  font-size: 1.45rem;
}

.project-card strong {
  display: inline-flex;
  margin-top: 14px;
  color: #52a6ff;
  font-size: 0.88rem;
  font-weight: 950;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
  min-height: calc(100vh - 220px);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-reasons span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(236, 246, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-cards a,
.contact-cards span {
  display: block;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(7, 31, 52, 0.72);
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 172, 217, 0.14);
}

.contact-office {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 20%, rgba(38, 136, 255, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
}

.office-copy {
  display: grid;
  align-content: center;
  padding: 18px;
}

.office-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.office-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: rgba(236, 246, 255, 0.78);
  font-weight: 800;
  line-height: 1.45;
}

.office-details a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.map-panel {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.value-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.value-list div {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.value-list div + div {
  border-top: 1px solid var(--line);
}

.workflow-section {
  margin-top: 78px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 16%, rgba(38, 136, 255, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.workflow-card h3 {
  margin-top: 24px;
}

.workflow-card p {
  color: rgba(236, 246, 255, 0.72);
  line-height: 1.65;
}

.workflow-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: rgba(38, 136, 255, 0.14);
  filter: drop-shadow(0 0 10px rgba(47, 134, 255, 0.22));
}

.workflow-icon::before,
.workflow-icon::after {
  content: "";
  position: absolute;
  border: 2.5px solid #2f86ff;
}

.workflow-icon.calendar::before {
  inset: 14px 12px 12px;
  border-radius: 6px;
}

.workflow-icon.calendar::after {
  left: 18px;
  right: 18px;
  top: 23px;
  border-width: 2.5px 0 0;
}

.workflow-icon.speed::before {
  width: 24px;
  height: 24px;
  left: 15px;
  top: 17px;
  border-radius: 50%;
  border-right-color: transparent;
  transform: rotate(-35deg);
}

.workflow-icon.speed::after {
  width: 14px;
  height: 2px;
  left: 29px;
  top: 29px;
  border-width: 2.5px 0 0;
  transform: rotate(-30deg);
}

.workflow-icon.portal::before {
  inset: 15px 12px 18px;
  border-radius: 6px;
}

.workflow-icon.portal::after {
  width: 14px;
  height: 14px;
  left: 22px;
  top: 28px;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: rgba(7, 31, 52, 0.66);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 26px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(251, 251, 247, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-login-disabled {
    text-align: center;
  }

  .hero,
  .page-hero,
  .contact-layout,
  .split-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 28px;
  }

  .hero-media img {
    height: 460px;
    min-height: 0;
  }

  .intro-grid,
  .services-grid,
  .project-grid,
  .stats-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .intro-band {
    padding: 28px;
  }

  .image-stack {
    min-height: 440px;
  }

  .stack-main {
    width: 100%;
    height: 330px;
  }

  .stack-float {
    width: 58%;
    height: 190px;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 142px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero,
  .page-hero,
  .contact-layout {
    margin-top: 38px;
  }

  .hero,
  .page-hero {
    padding: 22px;
    border-radius: 28px;
  }

  .hero-media,
  .page-hero-img {
    border-radius: 28px;
  }

  .hero-media img {
    height: 360px;
  }

  .stat-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .section {
    margin: 56px auto;
  }

  .intro-band {
    padding: 24px;
  }

  .service-pill {
    width: 100%;
  }
}

/* Dark premium direction */
:root {
  --ink: #f8fbff;
  --ink-soft: #d5e6f7;
  --paper: #06192b;
  --paper-soft: rgba(255, 255, 255, 0.075);
  --mist: rgba(255, 255, 255, 0.08);
  --sand: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.15);
  --blue: #2688ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

body {
  background:
    radial-gradient(circle at 78% 5%, rgba(38, 136, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 12% 22%, rgba(126, 63, 152, 0.18), transparent 22rem),
    linear-gradient(180deg, #06192b 0%, #03111f 58%, #06192b 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 70%);
}

.site-header {
  position: sticky;
  top: 18px;
  width: min(1400px, calc(100% - 44px));
  padding: 14px 18px;
  background: rgba(5, 20, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 214px;
}

.site-nav {
  gap: 12px;
}

.site-nav a,
.site-nav .nav-login-disabled,
.nav-services-trigger {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav > a,
.site-nav > .nav-login-disabled,
.nav-services-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
}

.site-nav > a.nav-login {
  gap: 8px;
  padding-right: 15px;
  color: #f8fbff;
  background:
    linear-gradient(135deg, rgba(38, 136, 255, 0.22), rgba(82, 166, 255, 0.1)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(82, 166, 255, 0.38),
    0 14px 34px rgba(0, 0, 0, 0.16);
}

.site-nav > .nav-login-disabled {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  cursor: default;
}

.site-nav > a.nav-login:hover,
.site-nav > a.nav-login:focus-visible {
  background:
    linear-gradient(135deg, rgba(18, 118, 255, 0.76), rgba(82, 166, 255, 0.46)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(159, 226, 255, 0.68),
    0 18px 42px rgba(18, 118, 255, 0.26);
}

.login-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav a:hover,
body[data-page="home"] .site-nav a[href="index.html"],
body[data-page="diensten"] .nav-services-trigger,
body[data-page="projecten"] .site-nav a[href="projecten.html"],
body[data-page="over-ons"] .site-nav a[href="over-ons.html"],
body[data-page="contact"] .site-nav a[href="contact.html"] {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.nav-services {
  position: relative;
}

.nav-services-trigger::after {
  content: "⌄";
  margin-left: 8px;
  font-size: 0.8rem;
}

.services-mega {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: 330px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(3, 17, 31, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: 180ms ease;
}

.services-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-services:hover .services-mega,
.nav-services:focus-within .services-mega,
.nav-services.open .services-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-list {
  display: grid;
  gap: 4px;
}

.mega-list a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 15px;
  color: white;
  text-decoration: none;
}

.mega-list a::after {
  content: "→";
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.mega-list a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mega-list .icon,
.mega-list .service-svg-small {
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 13px;
}

.mega-list strong {
  color: white;
  font-size: 0.98rem;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
}

.mega-list small {
  display: none;
}

.hero,
.page-hero,
.contact-layout {
  width: min(1400px, calc(100% - 44px));
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  min-height: 760px;
  margin-top: 26px;
  padding: 64px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(2, 11, 21, 0.98) 0%, rgba(2, 11, 21, 0.76) 38%, rgba(2, 11, 21, 0.34) 100%),
    url("assets/images/home/hero.png") center / cover;
  overflow: visible;
}

.hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -48px;
  height: 120px;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(38, 136, 255, 0.42), transparent 72%);
  filter: blur(22px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: clamp(3.15rem, 5.6vw, 5.9rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.45rem);
}

.hero .lead,
.page-hero .lead,
.split-copy p,
.soft-panel p,
.service-card p,
.project-card p,
.value-list span,
.more-text {
  color: rgba(236, 246, 255, 0.72);
}

.eyebrow {
  color: #52a6ff;
  letter-spacing: 0.04em;
}

.hero-media {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.075);
  transform-style: preserve-3d;
}

.hero-media img {
  height: 100%;
  min-height: 520px;
  opacity: 0.88;
}

.showreel-pill {
  position: absolute;
  left: 26px;
  top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 17, 31, 0.52);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.showreel-pill span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.stat-card {
  background: rgba(5, 20, 36, 0.76);
  border-color: rgba(255, 255, 255, 0.17);
  color: white;
}

.stat-card strong {
  font-size: 1.9rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  grid-template-columns: 1.3fr repeat(4, 1fr);
  margin-top: -28px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 20, 36, 0.78);
  color: white;
}

.trust-strip strong,
.trust-strip span {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
  text-align: center;
}

.trust-strip strong {
  color: #52a6ff;
  text-transform: uppercase;
}

.intro-band,
.dark-band,
.soft-panel,
.service-card,
.project-card,
.contact-form,
.value-list,
.contact-cards a,
.contact-cards span,
.page-hero {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.dark-band {
  background:
    radial-gradient(circle at 18% 16%, rgba(38, 136, 255, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.045);
}

.button.primary {
  background: linear-gradient(135deg, #0867ff, #2d91ff);
  color: white;
  box-shadow: 0 18px 46px rgba(8, 103, 255, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.service-pill,
.filter,
.service-card .mini-toggle {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.filter.active {
  background: linear-gradient(135deg, #0867ff, #2d91ff);
}

.icon {
  background: rgba(38, 136, 255, 0.13);
  color: #52a6ff;
}

.icon::before,
.icon::after {
  border-color: #52a6ff;
}

.icon.video::after {
  border-color: transparent transparent transparent #52a6ff;
}

.stack-float {
  border-color: #06192b;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(5, 20, 36, 0.96), rgba(10, 55, 95, 0.78)),
    url("assets/images/over-ons/hero-achtergrond.png") center / cover;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.contact-form label,
.contact-cards a,
.contact-cards span,
.text-link,
.site-footer {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  border-color: rgba(255, 255, 255, 0.13);
}

@media (max-width: 1050px) {
  .services-mega {
    left: auto;
    right: 0;
    transform: translateY(10px);
  }

  .nav-services:hover .services-mega,
  .nav-services:focus-within .services-mega,
  .nav-services.open .services-mega {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 26px;
  }

  .site-nav {
    background: rgba(3, 17, 31, 0.97);
  }

  .services-mega {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-services.open .services-mega {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px;
    overflow: hidden;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
  }

  .trust-strip strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .page-hero,
  .contact-layout,
  .section,
  .trust-strip,
  .cta-band {
    width: min(100% - 28px, 1400px);
  }

  .brand img {
    width: 142px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero {
    padding: 24px;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  .showreel-pill {
    left: 16px;
    top: 16px;
    max-width: calc(100% - 32px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

/* Refinements after visual review */
.hero h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 4vw, 4.35rem);
  line-height: 1.02;
}

.hero {
  min-height: 690px;
}

.page-hero h1,
.contact-layout h1 {
  max-width: 980px;
  font-size: clamp(2.35rem, 3.4vw, 4.05rem);
  line-height: 1.04;
}

.page-hero.compact h1 {
  max-width: 1040px;
  font-size: clamp(2.4rem, 3.65vw, 4.3rem);
}

.section-heading h2,
.split-copy h2,
.services-intro h2,
.cta-band h2 {
  font-size: clamp(1.85rem, 2.75vw, 3rem);
  line-height: 1.12;
}

.contact-layout {
  min-height: auto;
  align-items: center;
}

.contact-copy .lead {
  max-width: 620px;
  color: rgba(236, 246, 255, 0.78);
  font-weight: 650;
}

.cta-band {
  grid-template-columns: 96px minmax(0, 1fr) auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 78% 30%, rgba(38, 136, 255, 0.35), transparent 18rem),
    linear-gradient(135deg, rgba(5, 20, 36, 0.98), rgba(7, 34, 58, 0.92));
  color: white;
}

.cta-band .eyebrow {
  color: var(--yellow);
}

.cta-band h2 {
  color: white;
  max-width: 780px;
}

.cta-band img {
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.service-preview {
  width: min(1400px, calc(100% - 44px));
}

.services-intro h2 {
  max-width: 390px;
}

.service-card-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
  justify-content: flex-end;
  overflow-x: auto;
  padding: 8px 2px 12px;
  scrollbar-width: none;
}

.service-card-row::-webkit-scrollbar {
  display: none;
}

.home-service-card {
  display: flex;
  flex: 0 0 152px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 166px;
  padding: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  color: white;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition: 180ms ease;
}

.home-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 166, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(38, 136, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
}

.service-svg {
  width: 58px;
  height: 58px;
  margin: 0 0 20px;
  color: #2f86ff;
  stroke: #2f86ff;
  fill: none;
  filter: drop-shadow(0 0 10px rgba(47, 134, 255, 0.28));
}

.service-svg use {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-svg path,
.service-svg rect,
.service-svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-svg text {
  fill: currentColor;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  stroke: none;
}

.service-svg-small {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #52a6ff;
  filter: drop-shadow(0 0 10px rgba(82, 166, 255, 0.24));
}

.service-card > .service-svg-small {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.mega-list .service-svg-small {
  margin-bottom: 0;
}

.home-service-card strong {
  max-width: 124px;
  color: rgba(248, 251, 255, 0.9);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: normal;
  hyphens: manual;
}

.home-service-arrow {
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  align-self: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0867ff, #2d91ff);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(8, 103, 255, 0.32);
}

@media (max-width: 1100px) {
  .services-showcase {
    grid-template-columns: 1fr;
  }

  .service-card-row {
    justify-content: flex-start;
  }

  .home-service-arrow {
    width: 58px;
    border-radius: 50%;
  }
}

@media (max-width: 900px) {
  .hero h1,
  .page-hero h1,
  .page-hero.compact h1,
  .contact-layout h1 {
    font-size: clamp(2.35rem, 8vw, 3.8rem);
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .service-card-row {
    margin-right: -14px;
    padding-right: 14px;
  }

  .home-service-card {
    flex-basis: 145px;
    min-height: 152px;
  }

  .home-service-arrow {
    flex-basis: 52px;
  }
}

@media (max-width: 430px) {
  .home-service-card {
    flex-basis: 138px;
  }
}

/* Hero image-card removed: let the background photo carry the full section */
.hero {
  grid-template-columns: minmax(0, 760px);
  align-content: center;
  min-height: 650px;
}

.hero-copy {
  max-width: 760px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
    align-content: end;
  }
}

/* Keep header states dark on dark pages */
.site-nav a:hover,
.site-nav a:focus-visible,
.nav-services-trigger:hover,
.nav-services-trigger:focus-visible,
body[data-page="diensten"] .nav-services-trigger,
body[data-page="projecten"] .site-nav a[href="projecten.html"],
body[data-page="over-ons"] .site-nav a[href="over-ons.html"],
body[data-page="contact"] .site-nav a[href="contact.html"] {
  background: rgba(38, 136, 255, 0.16) !important;
  color: #f8fbff !important;
  box-shadow: inset 0 0 0 1px rgba(82, 166, 255, 0.52);
}

.site-nav > a.nav-login:hover,
.site-nav > a.nav-login:focus-visible {
  background:
    linear-gradient(135deg, rgba(18, 118, 255, 0.76), rgba(82, 166, 255, 0.46)),
    rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    inset 0 0 0 1px rgba(159, 226, 255, 0.68),
    0 18px 42px rgba(18, 118, 255, 0.26) !important;
}

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

  .workflow-card {
    min-height: 0;
  }

  .contact-office {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background:
      radial-gradient(circle at 35% 25%, rgba(82, 166, 255, 0.28), transparent 58%),
      rgba(5, 20, 36, 0.74);
    box-shadow: inset 0 0 0 1px rgba(82, 166, 255, 0.08);
    backdrop-filter: blur(14px);
  }

  .nav-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    margin: 0;
    background: rgba(236, 246, 255, 0.92);
    transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
  }

  .nav-toggle span:nth-child(2) {
    width: 11px;
    transform: translateX(3px);
  }

  .nav-toggle:hover,
  .site-header.nav-open .nav-toggle {
    border-color: rgba(82, 166, 255, 0.55);
    background:
      radial-gradient(circle at 35% 25%, rgba(82, 166, 255, 0.38), transparent 58%),
      rgba(13, 48, 82, 0.82);
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(0) scaleX(0.2);
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}

@media (min-width: 1600px) {
  .site-header,
  .hero,
  .trust-strip {
    width: min(1720px, calc(100% - 72px));
  }

  .hero {
    min-height: 720px;
    background-position: center 46%;
  }
}

.service-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
}

.service-feature:nth-child(even) {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.service-feature:nth-child(even) .service-copy {
  order: 2;
}

.service-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(16px, 2.2vw, 30px);
}

.service-copy .service-svg-small {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

.service-copy .eyebrow {
  margin-bottom: 8px;
  color: #78baff;
  font-size: clamp(1.35rem, 1.75vw, 1.75rem);
  font-weight: 950;
  line-height: 1.05;
  text-transform: none;
}

.service-copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
  line-height: 1.18;
}

.service-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(0.92rem, 0.98vw, 1rem);
  line-height: 1.58;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.service-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(236, 246, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  text-decoration: none;
  isolation: isolate;
}

.service-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 420ms ease, opacity 420ms ease;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 11, 21, 0.06), rgba(2, 11, 21, 0.58)),
    radial-gradient(circle at 18% 18%, rgba(82, 166, 255, 0.18), transparent 18rem);
}

.service-visual span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 17, 31, 0.62);
  color: rgba(248, 251, 255, 0.94);
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.service-visual:hover img {
  transform: scale(1.035);
  opacity: 0.94;
}

.service-visual-plan::after,
.service-visual-video::after,
.service-visual-edit::after {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(82, 166, 255, 0.42);
  border-radius: 22px;
  background: rgba(5, 20, 36, 0.66);
  color: #52a6ff;
  font-size: 1.3rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.service-visual-plan::after {
  content: "m2";
}

.service-visual-video::after {
  content: "play";
  font-size: 0.84rem;
  text-transform: uppercase;
}

.service-visual-edit::after {
  content: "voor/na";
  width: 86px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .service-feature,
  .service-feature:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .service-feature:nth-child(even) .service-copy {
    order: 0;
  }

  .service-copy {
    padding: 10px;
  }

  .service-visual,
  .service-visual img {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .service-copy .eyebrow {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .service-copy h2 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .service-visual,
  .service-visual img {
    min-height: 220px;
  }
}

.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 30px;
  align-items: center;
  width: min(1400px, calc(100% - 44px));
  margin: 42px auto 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 18%, rgba(38, 136, 255, 0.18), transparent 22rem),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.project-detail-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 380px;
  padding: clamp(18px, 2.4vw, 36px);
}

.project-detail-hero .text-link {
  margin-bottom: clamp(38px, 6vw, 82px);
}

.project-detail-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.project-detail-hero .lead {
  max-width: 620px;
  color: rgba(248, 251, 255, 0.76);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 720;
  line-height: 1.58;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.project-hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
}

.project-detail-hero .project-hero-media > img {
  width: 100%;
  height: 390px;
  min-height: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  cursor: zoom-in;
}

.project-detail-hero-tour .project-hero-media {
  border: 1px solid rgba(82, 166, 255, 0.38);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.project-detail-hero-tour .project-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 44%, rgba(38, 136, 255, 0.2), transparent 11rem),
    linear-gradient(180deg, rgba(2, 11, 21, 0.1), rgba(2, 11, 21, 0.48));
  pointer-events: none;
}

.project-detail-hero-tour .project-hero-media > img {
  cursor: default;
}

.project-detail-hero-compare .project-hero-media {
  border: 1px solid rgba(82, 166, 255, 0.38);
  background: rgba(2, 11, 21, 0.4);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.project-detail-hero-compare .before-after {
  width: 100%;
  height: 390px;
  aspect-ratio: auto;
}

.before-after-hero {
  width: 100%;
  height: 390px;
  aspect-ratio: auto;
  border-radius: 28px;
}

.tour-preview-button {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: none;
  grid-template-columns: 42px minmax(0, auto);
  gap: 10px;
  align-items: center;
  min-width: 168px;
  max-width: calc(100% - 48px);
  min-height: 62px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(159, 226, 255, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(25, 124, 255, 0.86), rgba(9, 29, 50, 0.9)),
    rgba(13, 31, 50, 0.86);
  color: white;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    0 0 0 6px rgba(5, 19, 32, 0.16);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tour-preview-button:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 226, 255, 0.72);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    0 0 0 8px rgba(38, 136, 255, 0.12);
}

.tour-preview-button::before {
  content: "▶";
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  line-height: 1;
}

.tour-preview-button span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.tour-preview-button strong {
  display: block;
  margin-top: 3px;
  color: white;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.project-detail-hero-tour .tour-preview-button {
  display: grid;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.project-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(236, 246, 255, 0.78);
  font-weight: 850;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 24px;
  align-items: start;
}

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

.gallery-item {
  position: relative;
  display: block;
  min-height: 210px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item:first-child {
  grid-column: 1 / -1;
  min-height: 460px;
  border-radius: 26px;
}

.gallery-item:first-child img {
  min-height: 460px;
}

.gallery-item:hover img {
  transform: scale(1.025);
  opacity: 0.92;
}

.gallery-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 11, 21, 0.58);
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 950;
  backdrop-filter: blur(5px);
}

.project-gallery-embed {
  display: block;
}

.project-gallery-video {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.project-gallery-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.compare-showcase {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 136, 255, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.before-after {
  --position: 50%;
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(2, 11, 21, 0.72);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.compare-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare-after-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  clip-path: inset(0 0 0 var(--position));
}

.compare-after-wrap .compare-img {
  width: 100%;
}

.compare-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 19, 32, 0.74);
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.compare-label-before {
  left: 16px;
}

.compare-label-after {
  right: 16px;
}

.compare-handle {
  position: absolute;
  top: 0;
  left: var(--position);
  z-index: 4;
  width: 46px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(38, 136, 255, 0.42), 0 0 28px rgba(38, 136, 255, 0.55);
  transform: translateX(-50%);
}

.compare-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(159, 226, 255, 0.44);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(25, 124, 255, 0.95), rgba(9, 29, 50, 0.9));
  color: white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.compare-copy {
  padding: 2px 4px 4px;
}

.compare-copy h3 {
  margin-top: 4px;
  color: white;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.video-showcase {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 136, 255, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.video-showcase-horizontal {
  grid-column: span 1;
}

.video-showcase-vertical {
  align-content: start;
}

.video-frame {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(2, 11, 21, 0.72);
}

.video-showcase-horizontal .video-frame {
  aspect-ratio: 16 / 9;
}

.video-showcase-vertical .video-frame {
  width: min(100%, 270px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
}

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

.video-copy {
  padding: 2px 4px 4px;
}

.video-copy h3 {
  margin: 4px 0 8px;
  color: white;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.video-copy p:not(.eyebrow) {
  color: rgba(236, 246, 255, 0.76);
  font-weight: 680;
  line-height: 1.55;
}

.video-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(159, 226, 255, 0.34);
  border-radius: 999px;
  background: rgba(38, 136, 255, 0.14);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 28px;
}

.video-modal.open {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 9, 18, 0.82);
  backdrop-filter: blur(12px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(1120px, 92vw);
  max-height: 90vh;
  padding: 16px;
  border: 1px solid rgba(159, 226, 255, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 136, 255, 0.18), transparent 18rem),
    rgba(11, 28, 45, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.video-modal-panel.video-modal-vertical {
  width: min(440px, 92vw);
}

.video-modal-panel video {
  display: block;
  width: 100%;
  max-height: 78vh;
  border-radius: 20px;
  background: black;
  object-fit: contain;
}

.video-modal-horizontal video {
  aspect-ratio: 16 / 9;
}

.video-modal-vertical video {
  aspect-ratio: 9 / 16;
}

.video-modal-panel p {
  margin: 0;
  color: rgba(236, 246, 255, 0.76);
  font-weight: 850;
}

.video-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(5, 19, 32, 0.92);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.virtual-tour-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(82, 166, 255, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 136, 255, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.virtual-tour-frame::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.virtual-tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-deliverables {
  position: sticky;
  top: 120px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.project-deliverables h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

.project-deliverables ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.project-deliverables li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(236, 246, 255, 0.78);
  font-weight: 780;
}

@media (max-width: 900px) {
  .project-detail-hero,
  .project-detail-layout {
    grid-template-columns: 1fr;
  }

  .project-detail-hero .project-hero-media > img,
  .before-after-hero,
  .gallery-item:first-child {
    height: auto;
    min-height: 300px;
  }

  .tour-preview-button {
    right: 16px;
    bottom: 16px;
    grid-template-columns: 38px minmax(0, auto);
    min-width: 150px;
    min-height: 56px;
    padding: 9px 15px 9px 9px;
  }

  .tour-preview-button::before {
    width: 38px;
    height: 38px;
  }

  .tour-preview-button strong {
    font-size: 0.84rem;
  }

  .project-gallery-video {
    grid-template-columns: 1fr;
  }

  .before-after {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .compare-showcase {
    padding: 12px;
    border-radius: 24px;
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item img {
    min-height: 240px;
  }

  .gallery-item:first-child,
  .gallery-item:first-child img {
    min-height: 300px;
  }

  .project-deliverables {
    position: static;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 16px;
  padding: 34px;
  background:
    radial-gradient(circle at 78% 16%, rgba(38, 136, 255, 0.18), transparent 26rem),
    rgba(1, 9, 17, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(18px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  display: grid;
  gap: 14px;
  margin: 0;
  justify-items: center;
}

.lightbox-frame img {
  display: block;
  max-width: min(100%, 1180px);
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(82, 166, 255, 0.34);
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  touch-action: pan-y;
}

.lightbox-frame figcaption {
  color: rgba(236, 246, 255, 0.74);
  font-weight: 850;
}

.lightbox-close,
.lightbox-arrow {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(82, 166, 255, 0.24), transparent 58%),
    rgba(5, 20, 36, 0.78);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  width: 58px;
  height: 58px;
  font-size: 2.8rem;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  border-color: rgba(82, 166, 255, 0.56);
  background:
    radial-gradient(circle at 35% 25%, rgba(82, 166, 255, 0.36), transparent 58%),
    rgba(13, 48, 82, 0.84);
}

@media (max-width: 760px) {
  .lightbox {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lightbox-frame img {
    max-height: 72vh;
    border-radius: 20px;
  }

  .lightbox-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

.prep-hero,
.prep-intro,
.prep-checklist,
.prep-service-notes {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.prep-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 54px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(7, 31, 52, 0.96), rgba(15, 57, 93, 0.92)),
    var(--ink);
  box-shadow: 0 30px 80px rgba(7, 31, 52, 0.2);
  overflow: hidden;
}

.prep-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding: clamp(26px, 5vw, 58px);
}

.prep-hero h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.prep-hero .lead {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(236, 246, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.prep-hero .eyebrow {
  color: #9fe2ff;
}

.prep-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.prep-hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.prep-hero-media {
  min-height: 560px;
}

.prep-hero-media .before-after {
  height: 100%;
  min-height: 560px;
  border-radius: 24px;
}

.prep-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 74px;
}

.prep-intro h2,
.prep-service-notes h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.prep-intro p:not(.eyebrow) {
  margin: 34px 0 0;
  color: rgba(7, 31, 52, 0.72);
  font-size: 1.08rem;
  line-height: 1.8;
}

.prep-checklist {
  display: grid;
  gap: 14px;
  padding-top: 34px;
}

.prep-step {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 252, 0.76);
  box-shadow: 0 18px 46px rgba(7, 31, 52, 0.06);
}

.prep-step > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 25%, rgba(46, 172, 217, 0.28), transparent 60%),
    var(--ink);
  color: white;
  font-weight: 950;
}

.prep-step h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.prep-step ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prep-step li {
  position: relative;
  padding-left: 24px;
  color: rgba(7, 31, 52, 0.74);
  line-height: 1.58;
}

.prep-step li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 172, 217, 0.13);
}

.prep-service-notes {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 48px;
}

.prep-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.prep-service-notes h2 {
  max-width: 360px;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  line-height: 1.12;
}

.prep-service-notes .eyebrow {
  margin-bottom: 12px;
}

.prep-note-grid article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(7, 31, 52, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 252, 0.76);
  box-shadow: 0 18px 42px rgba(7, 31, 52, 0.06);
}

.prep-note-grid .service-svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  stroke: var(--blue);
}

.prep-note-grid h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.prep-note-grid p {
  margin: 0;
  color: rgba(7, 31, 52, 0.68);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .prep-hero,
  .prep-intro,
  .prep-service-notes {
    grid-template-columns: 1fr;
  }

  .prep-hero-copy,
  .prep-hero-media,
  .prep-hero-media .before-after {
    min-height: auto;
  }

  .prep-hero-media .before-after {
    aspect-ratio: 4 / 3;
  }

  .prep-step ul,
  .prep-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .prep-hero {
    margin-top: 28px;
    padding: 10px;
    border-radius: 24px;
  }

  .prep-hero-copy {
    padding: 24px;
  }

  .prep-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .prep-step {
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 20px;
  }

  .prep-step > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* Compact refinement for the hidden preparation page */
.prep-hero {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.95fr);
  gap: 18px;
  margin-top: 28px;
  padding: 14px;
  border-radius: 24px;
}

.prep-hero-copy {
  min-height: 390px;
  padding: clamp(24px, 4vw, 44px);
}

.prep-hero h1 {
  max-width: 620px;
  font-size: clamp(2rem, 3.35vw, 3.15rem);
  line-height: 1.08;
}

.prep-hero .lead {
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.62;
}

.prep-hero-actions {
  margin-top: 22px;
}

.prep-hero .eyebrow {
  margin-bottom: 18px;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  letter-spacing: 0.055em;
}

.prep-hero-media,
.prep-hero-media .before-after {
  min-height: 390px;
}

.prep-hero-media .before-after {
  border-radius: 18px;
}

.prep-intro {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(18px, 2.2vw, 26px) clamp(22px, 3.2vw, 38px);
  border: 1px solid rgba(159, 226, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 14%, rgba(46, 172, 217, 0.16), transparent 18rem),
    rgba(8, 31, 51, 0.76);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.16);
}

.prep-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2px;
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  letter-spacing: 0.055em;
}

.prep-intro h2,
.prep-service-notes h2 {
  color: white;
}

.prep-intro h2 {
  font-size: clamp(1.85rem, 2.35vw, 2.45rem);
  line-height: 1.08;
}

.prep-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(236, 246, 255, 0.78);
  font-size: 1rem;
  line-height: 1.68;
  max-width: 520px;
}

.prep-checklist {
  gap: 12px;
  padding-top: 28px;
}

.prep-step {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(159, 226, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 54, 84, 0.86), rgba(7, 28, 46, 0.82)),
    rgba(7, 31, 52, 0.78);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.14);
}

.prep-step > span {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(159, 226, 255, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 25%, rgba(159, 226, 255, 0.38), transparent 64%),
    rgba(28, 92, 142, 0.9);
  color: white;
}

.prep-step h2 {
  color: white;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.prep-step li {
  color: rgba(236, 246, 255, 0.78);
}

.prep-step li::before {
  background: #9fe2ff;
  box-shadow: 0 0 0 4px rgba(159, 226, 255, 0.12);
}

.prep-note-grid article {
  border-color: rgba(159, 226, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(15, 54, 84, 0.86), rgba(7, 28, 46, 0.82)),
    rgba(7, 31, 52, 0.78);
}

.prep-note-grid h3 {
  color: white;
}

.prep-note-grid p {
  color: rgba(236, 246, 255, 0.74);
}

@media (max-width: 820px) {
  .prep-hero,
  .prep-intro,
  .prep-service-notes {
    grid-template-columns: 1fr;
  }

  .prep-hero-copy,
  .prep-hero-media,
  .prep-hero-media .before-after {
    min-height: auto;
  }

  .prep-hero-media .before-after {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .prep-hero {
    padding: 10px;
    border-radius: 20px;
  }

  .prep-hero-copy {
    padding: 22px;
  }

  .prep-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .prep-intro {
    margin-top: 32px;
  }

  .prep-step {
    grid-template-columns: 1fr;
  }
}
