/* =========================================================
   4B Webdesign Upgrade
   main.css

   Clean rebuild:
   - Geen CSS zoom-hack
   - Desktop voelt compacter, alsof 100% dichter bij 90% browserzoom ligt
   - Mobiele menu/layout behouden
   - Duplicaten opgeschoond
   - Media queries netjes gesloten en geordend
========================================================= */


/* =========================================================
   1. Design tokens
========================================================= */

:root {
  --cream: #f7f4ee;
  --sand: #ebe4d8;
  --stone: #d9cebf;

  --ink: #172033;
  --muted: #5d6473;

  --green: #66745b;
  --green-dark: #526248;

  --blue: #0f5cff;
  --white: #ffffff;

  --line: rgba(23, 32, 51, 0.12);
  --shadow: 0 24px 76px rgba(23, 32, 51, 0.13);

  --radius-sm: 16px;
  --radius-md: 25px;
  --radius-lg: 32px;

  --container: 1240px;
}


/* =========================================================
   2. Reset & base
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}


/* =========================================================
   3. Utilities & helpers
========================================================= */

.container {
  width: min(var(--container), calc(100% - 50px));
  margin-inline: auto;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 74px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.section-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
}

.lead {
  color: #30394b;
  font-size: clamp(19px, 1.8vw, 23px);
}

.soft-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.soft-link:hover {
  text-decoration: underline;
}

.intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main,
section,
footer {
  max-width: 100vw;
}


/* =========================================================
   4. Accessibility
========================================================= */

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid rgba(102, 116, 91, 0.45);
  outline-offset: 4px;
}


/* =========================================================
   5. Header & navigation
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: 100vw;
  overflow-x: clip;
  background: rgba(230, 222, 206, 0.96);
  border-bottom: 1px solid rgba(23, 32, 51, 0.14);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .brand,
.footer .brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 15px;
  text-decoration: none;
}

.site-header .brand img,
.footer .brand img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}

.site-header .brand-text,
.footer .brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-header .brand-sub,
.footer .brand-sub {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 7px;
}

.site-header .brand-sub {
  color: #6f7178;
}

.brand-fallback {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  position: relative;
  font-size: 15.5px;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px;
  background: var(--ink);
}

.mobile-panel {
  display: none;
}


/* =========================================================
   6. Buttons
========================================================= */

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}


/* =========================================================
   7. Hero
========================================================= */

.hero {
  position: relative;
  max-width: 100vw;
  padding: 105px 0 155px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand), #f8f6f1);
}

.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -224px;
  left: -10%;
  height: 335px;
  background: var(--green);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  opacity: 0.16;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 580px;
  padding-top: 0;
}

.hero-title,
.hero h1.hero-title {
  margin: 0 0 18px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.55rem, 5.4vw, 4.9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-title--compact {
  max-width: 580px;
  margin: 0 0 24px;
  font-size: clamp(49px, 5.2vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-title--compact em {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  opacity: 0.9;
}

.hero-copy {
  max-width: 530px;
  margin: 24px 0;
  color: #333b4b;
  font-size: 17.5px;
  line-height: 1.55;
}

.hero-locations {
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  align-self: flex-start;
  margin-top: 40px;
  padding: 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.browserbar {
  height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 15px;
  background: var(--white);
  color: var(--blue);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
}

.hero-card h2,
.hero-card-title {
  margin: 16px 0;
  font-size: clamp(31px, 3.1vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, #d9cebf, #fff);
  border-radius: 22px;
}

.hero-card .rotate-word {
  color: #c8d6ba;
}

.hero-rotate {
  position: relative;
  height: 24px;
  margin-top: 8px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.hero-rotate span {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: rotateWords 12s infinite;
}

.hero-rotate span:nth-child(1) { animation-delay: 0s; }
.hero-rotate span:nth-child(2) { animation-delay: 2.4s; }
.hero-rotate span:nth-child(3) { animation-delay: 4.8s; }
.hero-rotate span:nth-child(4) { animation-delay: 7.2s; }
.hero-rotate span:nth-child(5) { animation-delay: 9.6s; }

.rotate-word {
  display: inline-block;
  transition: opacity 0.25s ease;
}

@keyframes rotateWords {
  0%   { opacity: 0; transform: translateY(10px); }
  10%  { opacity: 1; transform: translateY(0); }
  25%  { opacity: 1; }
  35%  { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.stat {
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.stat span {
  display: block;
  font-size: 13.5px;
  opacity: 0.8;
}


/* =========================================================
   8. Sections
========================================================= */

.intro,
.dark-section,
.light-section,
.projects,
.reviews,
.contact-section,
.services-section {
  padding-top: 98px;
  padding-bottom: 98px;
}

.intro {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
}

.dark-section {
  background: var(--ink);
  color: var(--white);
  border-radius: 40px 40px 0 0;
}

.dark-section .eyebrow {
  color: #c8d6ba;
}

.light-section {
  background: #dfe7d6;
}


/* =========================================================
   9. Diensten
========================================================= */

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(102, 116, 91, 0.14), transparent 34%),
    linear-gradient(180deg, var(--white), var(--cream));
}

.services-section::before {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  background: rgba(102, 116, 91, 0.12);
  border-radius: 999px;
  filter: blur(76px);
  pointer-events: none;
}

.services-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 62px;
}

.services-intro {
  max-width: 540px;
  margin: 0;
  color: #30394b;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.55;
}

.services-grid,
.services-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 32, 51, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 42px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(16px);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 116, 91, 0.22);
  box-shadow: 0 24px 64px rgba(23, 32, 51, 0.13);
}

.service-card--featured {
  background: var(--ink);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.service-card--wide {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  column-gap: 30px;
  align-items: start;
}

.service-card--wide .service-card-top,
.service-card--wide h3 {
  grid-column: 1;
}

.service-card--wide p,
.service-card--wide ul {
  grid-column: 2;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.service-number {
  color: var(--green);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
}

.service-card--featured .service-number {
  color: #c8d6ba;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: var(--green-dark);
  background: rgba(102, 116, 91, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.service-card--featured .service-tag {
  color: #c8d6ba;
  background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.service-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card ul {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #30394b;
  font-size: 15px;
  line-height: 1.4;
}

.service-card--featured li {
  color: rgba(255, 255, 255, 0.78);
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  transform: translateY(-50%);
}

.service-card--featured li::before {
  background: #c8d6ba;
}

.services-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 24px 28px;
  background: rgba(235, 228, 216, 0.72);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: var(--radius-md);
}

.services-cta p {
  max-width: 660px;
  margin: 0;
  color: #30394b;
  font-size: 16px;
  line-height: 1.5;
}


/* =========================================================
   10. Pricing / actie
========================================================= */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 76px;
}

.price-card,
.review-card,
.faq-item {
  padding: 27px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(23, 32, 51, 0.08);
}

.price-card {
  border: 1px solid transparent;
  transform: translateY(0);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 32, 51, 0.08);
  box-shadow: 0 16px 46px rgba(23, 32, 51, 0.12);
}

.price-card.featured {
  background: var(--green);
  color: var(--white);
  transform: translateY(-16px);
}

.price-card.featured:hover {
  transform: translateY(-19px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 54px rgba(23, 32, 51, 0.16);
}

.price {
  margin: 18px 0;
  font-size: 47px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.price-card ul {
  padding-left: 20px;
  color: inherit;
}

.price-card li {
  margin: 10px 0;
}


/* =========================================================
   11. Portfolio / projects
========================================================= */

.projects {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.projects .container {
  max-width: 1160px;
}

.projects .section-title {
  max-width: 760px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.project-card {
  overflow: hidden;
  padding: 0;
  background: #f6f1e8;
  color: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(23, 32, 51, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(23, 32, 51, 0.16);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d8cdbc;
}

.project-body {
  padding: 24px;
}

.project-body p {
  color: var(--muted);
}

.projects-grid--compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 52px;
}

.projects-grid--compact .project-card {
  overflow: hidden;
  background: #f6f1e8;
  border-radius: 22px;
}

.projects-grid--compact .project-card img {
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: top center;
}

.projects-grid--compact .project-body {
  padding: 22px 24px 26px;
}

.projects-grid--compact .project-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.projects-grid--compact .project-body p {
  max-width: 92%;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.projects--premium::before {
  content: "";
  position: absolute;
  top: 140px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: rgba(102, 116, 91, 0.18);
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.projects-grid--premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.project-card--device {
  position: relative;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.project-card--device::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.25), transparent 40%);
  opacity: 0.35;
  pointer-events: none;
}

.project-card--device::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.14), transparent 38%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-card--device:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.project-card--device:hover::after {
  opacity: 1;
}

.device-mockup {
  position: relative;
  padding: 10px;
  background: #101827;
  border-radius: 22px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.28);
}

.device-topbar {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}

.device-topbar span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.device-screen {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16 / 8.2;
  background: #f7f4ee;
  border-radius: 16px;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #f7f4ee;
  image-rendering: auto;
  transform: translateZ(0);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-card--device:hover .device-screen img {
  transform: scale(1.02);
  filter: none;
}

.project-card--device .project-body {
  padding: 22px 6px 4px;
  color: var(--white);
}

.project-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: #c8d6ba;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card--device .project-body h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.project-card--device .project-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.45;
}

.project-read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #c8d6ba;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease;
}

.project-card:hover .project-read-more {
  transform: translateX(4px);
  color: var(--white);
}

#portfolio .project-card {
  color: inherit;
  text-decoration: none;
}

#portfolio .project-card * {
  text-decoration: none;
}


/* =========================================================
   12. Process
========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.step {
  padding: 23px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
}

.step-num {
  color: var(--green);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.06em;
}


/* =========================================================
   13. Reviews
========================================================= */

.reviews {
  overflow-x: hidden;
  background: var(--cream);
}

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.reviews-summary {
  max-width: 280px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(23, 32, 51, 0.06);
}

.reviews-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.reviews-link {
  margin-top: 14px;
}

.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(23, 32, 51, 0.16);
}

.review-card p {
  margin: 0 0 24px;
  color: #30394b;
  font-size: 15px;
  line-height: 1.55;
}

.review-card strong {
  display: block;
  margin-top: auto;
  font-size: 16px;
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.stars {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 22px;
  letter-spacing: 0.12em;
}


/* =========================================================
   14. FAQ
========================================================= */

.faq-contact {
  padding: 98px 0;
  background: var(--white);
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-item {
  margin-bottom: 14px;
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 24px 26px;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-section {
  padding: 82px 0;
  background: var(--ink);
  color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 50px;
}

.faq-intro .section-title {
  font-size: clamp(41px, 4.5vw, 70px);
}

.faq-description {
  max-width: 420px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-section .faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  box-shadow: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.faq-section .faq-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.faq-section .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 22px;
  color: var(--white);
  background: none;
  border: 0;
  text-align: left;
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
}

.faq-plus {
  color: #7da0ff;
  font-size: 30px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-section .faq-question:hover .faq-plus {
  transform: scale(1.12);
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-section .faq-item.is-open .faq-question:hover .faq-plus {
  transform: rotate(45deg) scale(1.12);
}

.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-section .faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.faq-section .faq-item.is-open .faq-answer {
  max-height: 420px;
}


/* =========================================================
   15. Contact
========================================================= */

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 62px;
}

.contact-copy .lead {
  max-width: 520px;
  margin-top: 14px;
  font-size: 17px;
}

.contact-copy .section-title {
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.12;
}

.contact-card {
  padding: 30px;
  background: var(--sand);
  border-radius: 34px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

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

.contact-section--premium {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(102, 116, 91, 0.16), transparent 34%),
    var(--cream);
}

.contact-layout--premium {
  align-items: start;
  gap: 50px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.contact-badges span {
  padding: 7px 12px;
  background: rgba(102, 116, 91, 0.1);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.contact-meta div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 16px;
}

.contact-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-meta a,
.contact-meta strong {
  color: var(--ink);
  font-size: 16px;
  text-decoration: none;
}

.contact-card--premium {
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 32, 51, 0.09);
  border-radius: 34px;
  box-shadow: 0 28px 90px rgba(23, 32, 51, 0.11);
  backdrop-filter: blur(18px);
}

.contact-card-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 12px;
  background: rgba(102, 116, 91, 0.1);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(102, 116, 91, 0.12);
}

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

.contact-form .field {
  margin-bottom: 12px;
}

.contact-form label span {
  color: var(--green-dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 14px;
  outline: none;
  font-size: 15px;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: rgba(102, 116, 91, 0.38);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(102, 116, 91, 0.7);
  box-shadow: 0 0 0 4px rgba(102, 116, 91, 0.13);
}

.field-hint {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
}

.field-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--green);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  padding: 14px 18px;
  border: 0;
  cursor: pointer;
}

.contact-layout--reversed {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-layout--reversed .contact-copy {
  padding-top: 12px;
}

.contact-back-home {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  opacity: 0.78;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.contact-back-home:hover,
.contact-back-home:focus-visible {
  opacity: 1;
  transform: translateX(-2px);
  border-color: rgba(17, 17, 17, 0.25);
  background: rgba(17, 17, 17, 0.03);
}

.contact-back-home:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}


/* =========================================================
   16. Footer
========================================================= */

.footer {
  padding: 86px 0 80px;
  background: #131c2d;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 32px;
}

.footer-grid--optimized {
  grid-template-columns: 1.5fr 1fr 1fr;
}

.footer-logo {
  font-size: 66px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .brand {
  margin-bottom: 20px;
}

.footer .brand-sub {
  color: rgba(255, 255, 255, 0.72);
}

.footer .brand:hover {
  text-decoration: none;
}

.footer-desc,
.footer-address {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-address {
  font-style: normal;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 17px;
}

.footer-regions {
  margin-top: 24px;
}

.footer-regions summary {
  cursor: pointer;
  color: #c8d6ba;
  font-weight: 800;
  list-style: none;
}

.footer-regions summary::-webkit-details-marker {
  display: none;
}

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

.footer-kvk {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.footer-link-button {
  padding: 0;
  background: none;
  border: 0;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link-button:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}


/* =========================================================
   17. Effects & polish
========================================================= */

::selection {
  background: var(--green);
  color: var(--white);
}

.price-card,
.project-card,
.review-card,
.step,
.contact-card,
.service-card {
  will-change: transform;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.75s ease;
}

.fade-in.is-visible {
  opacity: 1;
}

.hero .fade-in,
.hero-content.fade-in,
.hero-card.fade-in {
  opacity: 1;
  transition: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transition: none;
  }
}


/* =========================================================
   18. Responsive
========================================================= */

@media (max-width: 1100px) {
  .hero-grid {
    gap: 48px;
  }

  .desktop-nav {
    gap: 18px;
  }

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

  .services-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .services-intro {
    max-width: 720px;
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 1050px) {
  .projects-grid--premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .projects-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    padding-top: 76px;
    font-size: 17px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    height: 76px;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: none !important;
    background: rgba(230, 222, 206, 0.96);
    backdrop-filter: blur(18px);
  }

  .site-header .brand img {
    width: 42px;
    height: 42px;
  }

  .site-header .brand-sub {
    font-size: 12px;
    letter-spacing: 6px;
  }

  .site-header::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(23, 32, 51, 0.16);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    pointer-events: none;
  }

  body.menu-open .site-header::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-panel {
    display: block;
    position: fixed !important;
    top: 86px !important;
    left: 12px;
    right: 12px;
    z-index: 2000;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    padding: 0;
    background: linear-gradient(145deg, #f8f5ef, #eee7db);
    border: 1px solid rgba(23, 32, 51, 0.08);
    border-radius: 30px;
    box-shadow:
      0 30px 80px rgba(23, 32, 51, 0.18),
      0 10px 30px rgba(23, 32, 51, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.975);
    transform-origin: top center;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-panel nav {
    display: grid;
    gap: 0;
    padding: 18px;
    counter-reset: mobile-menu;
  }

  .mobile-panel nav > a {
    counter-increment: mobile-menu;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 4px;
    color: var(--ink);
    border-bottom: 1px solid rgba(23, 32, 51, 0.09);
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    text-decoration: none;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.42s ease,
      transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      color 0.25s ease;
  }

  .mobile-panel.is-open nav > a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-panel nav > a:not(.mobile-cta)::before {
    content: "0" counter(mobile-menu);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  .mobile-panel nav > a:not(.mobile-cta)::after {
    content: "→";
    color: rgba(23, 32, 51, 0.38);
    font-size: 20px;
    transform: translateX(-4px);
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .mobile-panel nav > a:active,
  .mobile-panel nav > a:hover {
    color: var(--green-dark);
  }

  .mobile-panel .mobile-cta {
    min-height: auto;
    justify-content: center;
    margin-top: 18px;
    padding: 18px 20px;
    background: var(--ink);
    color: var(--white) !important;
    border: 0;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 18px 45px rgba(23, 32, 51, 0.22);
  }

  .mobile-panel .mobile-cta::before,
  .mobile-panel .mobile-cta::after {
    display: none;
  }

  .hero-grid,
  .split,
  .faq-contact-grid,
  .footer-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cards-3,
  .projects-grid,
  .process-grid,
  .reviews-row {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .price-card.featured,
  .price-card.featured:hover {
    transform: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .faq-layout,
  .contact-layout {
    gap: 42px;
  }

  .faq-section,
  .contact-section,
  .services-section {
    padding: 80px 0;
  }

  .faq-section .faq-question {
    padding: 22px;
    font-size: 18px;
  }

  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-summary {
    max-width: 100%;
  }

  .footer-grid,
  .footer-grid--optimized {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    padding: 28px;
    border-radius: 24px;
  }

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

  .contact-layout--reversed {
    grid-template-columns: 1fr;
  }

  .contact-layout--reversed .contact-copy {
    order: 1;
  }

  .contact-layout--reversed .contact-card {
    order: 2;
  }

  #actie,
  #portfolio,
  .reviews {
    overflow-x: hidden;
  }

  #actie .cards-3,
  #portfolio .projects-grid--premium,
  .reviews-row--4,
  .services-grid,
  .services-track {
    display: flex;
    align-items: stretch;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-y;
  }

  #actie .cards-3,
  #portfolio .projects-grid--premium,
  .services-grid,
  .services-track {
    margin-top: 40px;
    margin-inline: calc((100vw - 100%) / -2);
    padding: 4px calc((100vw - 90%) / 2) 24px;
  }

  .reviews-row--4 {
    margin-top: 32px;
    margin-inline: calc((100vw - 100%) / -2);
    padding: 4px 15px 24px;
  }

  #actie .cards-3::-webkit-scrollbar,
  #portfolio .projects-grid--premium::-webkit-scrollbar,
  .reviews-row--4::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .services-track::-webkit-scrollbar {
    display: none;
  }

  #actie .price-card,
  #portfolio .project-card--device,
  .service-card,
  .service-card--wide {
    flex: 0 0 90%;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    transform: none;
  }

  .reviews-row--4 .review-card {
    flex: 0 0 84%;
    min-height: auto;
    transform: none;
  }

  #actie .price-card:hover,
  #actie .price-card.featured:hover,
  #portfolio .project-card--device:hover,
  .service-card:hover,
  .reviews-row--4 .review-card:hover {
    transform: none;
  }

  #actie .price-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  #actie .price-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.15;
  }

  #actie .price-card p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.38;
  }

  #actie .price {
    margin: 10px 0 14px;
    font-size: 38px;
    line-height: 1;
  }

  #actie .price-card ul {
    margin: 0;
    padding-left: 18px;
  }

  #actie .price-card li {
    margin: 6px 0;
    font-size: 14.5px;
    line-height: 1.32;
  }

  #actie .price-card .btn {
    margin-top: auto;
    padding: 13px 18px;
  }

  .services-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .field-grid,
  .contact-meta {
    grid-template-columns: 1fr;
  }

  .projects-grid--premium {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 0 18px 18px;
    margin-left: -18px;
    margin-right: -18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .projects-grid--premium::-webkit-scrollbar {
    display: none;
  }

  .projects-grid--premium .project-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }

  .projects-grid--premium .project-card--featured {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .projects-grid--premium {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-card--device {
    padding: 14px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .projects {
    padding: 72px 0;
  }

  .projects-grid--compact {
    grid-template-columns: 1fr;
  }

  .reviews-row--4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .section-title {
    font-size: 42px;
  }

  .btn,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .site-header .brand {
    gap: 12px;
  }

  .site-header .brand img {
    width: 38px;
    height: 38px;
  }

  .site-header .brand-sub {
    font-size: 11px;
    letter-spacing: 5px;
  }

  .price,
  .footer-logo {
    font-size: 48px;
  }

  .hero {
    padding: 62px 0 118px;
  }

  .hero::before {
    height: 300px;
    bottom: -214px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: 0.13em;
  }

  .hero-content .hero-title--compact {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(39px, 9.7vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.052em;
  }

  .hero-content .hero-title--compact em {
    margin-top: 5px;
    font-size: 0.82em;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero-content .hero-title--compact .no-break,
  .hero-content .hero-title--compact strong {
    white-space: nowrap;
  }

  .hero-copy {
    max-width: 96%;
    margin: 0 0 30px;
    font-size: 16.5px;
    line-height: 1.62;
  }

  .hero-locations {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    gap: 14px;
    margin-bottom: 42px;
  }

  .hero-actions .btn {
    padding-block: 14px;
  }

  .hero-card {
    margin-top: 0;
    margin-bottom: 34px;
  }

  .services-section {
    padding: 72px 0;
  }

  .services-intro {
    font-size: 16.5px;
  }

  .service-card,
  .service-card--wide {
    flex-basis: 88%;
    padding: 22px;
    border-radius: 24px;
  }

  .service-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .service-number {
    font-size: 38px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-card p,
  .service-card li {
    font-size: 15px;
  }

  .services-cta {
    padding: 22px;
    border-radius: 24px;
  }
}

/* =========================================================
   19. Small mobile refinements
   Extra veilige tweaks voor heel smalle schermen
========================================================= */

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section-title {
    font-size: 38px;
    line-height: 0.98;
  }

  .hero-content .hero-title--compact {
    font-size: clamp(36px, 9.4vw, 41px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-card {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-card-title,
  .hero-card h2 {
    font-size: 32px;
  }

  .mobile-panel {
    left: 10px;
    right: 10px;
    border-radius: 26px;
  }

  .mobile-panel nav > a {
    min-height: 58px;
    font-size: clamp(26px, 8vw, 36px);
  }

  .price-card,
  .review-card,
  .faq-item,
  .service-card {
    border-radius: 22px;
  }

  #actie .price-card,
  .service-card,
  .service-card--wide {
    flex-basis: 86%;
  }

  .reviews-row--4 .review-card {
    flex-basis: 86%;
  }

  .projects-grid--premium .project-card {
    flex-basis: 86%;
    max-width: 86%;
  }

  .contact-card,
  .contact-card--premium {
    padding: 22px;
    border-radius: 26px;
  }

  .footer-grid {
    padding: 24px;
  }
}


/* =========================================================
   20. Large desktop refinements
   Voorkomt dat de site op grote schermen weer te groot voelt
========================================================= */

@media (min-width: 1400px) {
  :root {
    --container: 1220px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--container), calc(100% - 64px));
  }

  .nav-wrap {
    height: 80px;
  }

  .hero {
    padding: 96px 0 145px;
  }

  .hero-grid {
    gap: 66px;
  }

  .hero-title--compact {
    font-size: clamp(52px, 4.8vw, 78px);
  }

  .hero-card {
    max-width: 520px;
    margin-left: auto;
  }

  .section-title {
    font-size: clamp(40px, 4.2vw, 70px);
  }

  .intro,
  .dark-section,
  .light-section,
  .projects,
  .reviews,
  .contact-section,
  .services-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .services-grid,
  .services-track {
    gap: 20px;
  }

  .projects-grid--premium {
    gap: 28px;
  }
}


/* =========================================================
   21. Ultra wide screens
   Rustiger op grote monitors / externe displays
========================================================= */

@media (min-width: 1700px) {
  :root {
    --container: 1180px;
  }

  .hero-title--compact {
    font-size: clamp(52px, 4.2vw, 74px);
  }

  .hero-card-title,
  .hero-card h2 {
    font-size: clamp(32px, 2.6vw, 48px);
  }

  .section-title {
    font-size: clamp(40px, 3.8vw, 66px);
  }
}


/* =========================================================
   22. Browser fallbacks
   Voor browsers die overflow: clip niet overal goed ondersteunen
========================================================= */

@supports not (overflow: clip) {
  html,
  body,
  .site-header,
  .hero,
  main,
  section,
  footer {
    overflow-x: hidden;
  }
}


/* =========================================================
   23. Interaction polish
========================================================= */

@media (hover: hover) and (pointer: fine) {
  .btn,
  .nav-cta,
  .project-card,
  .price-card,
  .review-card,
  .service-card,
  .step {
    backface-visibility: hidden;
  }
}

@media (hover: none) {
  .btn:hover,
  .nav-cta:hover,
  .project-card:hover,
  .price-card:hover,
  .review-card:hover,
  .service-card:hover,
  .step:hover {
    transform: none;
  }
}


/* =========================================================
   24. Mobile menu active state
   Werkt samen met je bestaande JS die .is-open en body.menu-open zet
========================================================= */

@media (max-width: 900px) {
  .menu-toggle {
    position: relative;
    z-index: 2100;
  }

  .menu-toggle span {
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-panel nav > a:nth-child(1) { transition-delay: 0.03s; }
  .mobile-panel nav > a:nth-child(2) { transition-delay: 0.06s; }
  .mobile-panel nav > a:nth-child(3) { transition-delay: 0.09s; }
  .mobile-panel nav > a:nth-child(4) { transition-delay: 0.12s; }
  .mobile-panel nav > a:nth-child(5) { transition-delay: 0.15s; }
  .mobile-panel nav > a:nth-child(6) { transition-delay: 0.18s; }
  .mobile-panel nav > a:nth-child(7) { transition-delay: 0.21s; }
}


/* =========================================================
   25. Forms accessibility / polish
========================================================= */

input,
textarea,
select,
button {
  -webkit-tap-highlight-color: transparent;
}

input::placeholder,
textarea::placeholder {
  color: rgba(93, 100, 115, 0.72);
}

button:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}


/* =========================================================
   26. Final safety guards
========================================================= */

iframe,
video,
svg {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.full-width {
  width: 100%;
}

/* =========================================================
   Hero desktop height fix - SAFE
   Maakt de hero hoger zonder de layout/centrering te breken
========================================================= */

@media (min-width: 901px) {
  .hero {
    min-height: calc(100vh - 82px);
    min-height: calc(100svh - 82px);
    padding-top: 105px;
    padding-bottom: clamp(185px, 18vh, 240px);
  }

  .hero::before {
    bottom: -220px;
    height: 370px;
  }
}

/* =========================================================
   End of main.css
========================================================= */

.price-wrap {
  margin: 36px 0 28px;
}

.price {
  display: block;
  line-height: 0.95;
}

.tax-note {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.65;
}

