/* ============================================================
   MiluSocials · Meta ads agency, Den Haag
   Design tokens + layout + section styles
   ============================================================ */

:root {
  --cream: #EDE8DC;
  --cream-dark: #E3DDD0;
  --dark-blue: #2C4A6E;
  --dark-blue-2: #1e3550;
  --mid-blue: #7BA3CC;
  --powder-blue: #B8D0E3;
  --white: #FDFCF9;
  --green: #2f8f5b;
  --text-dark: #1A2535;
  --text-muted: #6B7A8D;
  --navy-deep: #162434;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --r-btn: 8px;
  --r-card: 14px;
  --r-card-lg: 20px;

  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(44, 74, 110, 0.06);
  --shadow-md: 0 8px 28px rgba(44, 74, 110, 0.10);
  --shadow-lg: 0 18px 48px rgba(44, 74, 110, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.14; color: var(--dark-blue); letter-spacing: -0.02em; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid-blue);
}
.eyebrow .star { color: var(--mid-blue); }

.star { color: var(--mid-blue); display: inline-block; }

.section-title { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 1.25rem; text-wrap: balance; }
.section-body { font-size: 1.075rem; color: var(--text-muted); max-width: 620px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 600;
  padding: 0.85rem 1.5rem; border-radius: var(--r-btn);
  border: none; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  text-align: center;
}
.btn-primary { background: var(--dark-blue); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--dark-blue-2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-light { background: var(--cream); color: var(--dark-blue); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--text-muted); padding-left: 0.4rem; padding-right: 0.4rem; opacity: 0.7; box-shadow: none; }
.btn-ghost:hover { opacity: 1; transform: translateY(-1px); }

.link-arrow { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--dark-blue); transition: gap 0.25s ease; }
.link-arrow:hover { gap: 0.75rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(237, 232, 220, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(44, 74, 110, 0.10);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--dark-blue); letter-spacing: -0.01em; display: inline-flex; align-items: baseline; white-space: nowrap; }
.logo-img { height: 50px; width: 50px; border-radius: 12px; display: block; object-fit: cover; }
.logo .star { margin-left: 0.15rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); transition: color 0.2s ease; position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 0;
  background: var(--mid-blue); transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover { color: var(--dark-blue); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 0.6rem 1.25rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { width: 24px; height: 2px; background: var(--dark-blue); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
  background: rgba(237, 232, 220, 0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 74, 110, 0.10);
  display: flex; flex-direction: column; padding: 1rem var(--pad) 1.75rem;
  transform: translateY(-120%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  gap: 0.25rem;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 0.85rem 0; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid rgba(44,74,110,0.08); }
.mobile-menu .btn { margin-top: 1rem; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(7rem, 14vh, 11rem) 0 clamp(3rem, 6vh, 5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }

.blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(8px); z-index: 0; }
.blob-1 { top: -120px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184,208,227,0.45), rgba(184,208,227,0)); animation: float1 8s ease-in-out infinite; }
.blob-2 { bottom: -100px; left: -90px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(123,163,204,0.25), rgba(123,163,204,0)); animation: float2 10s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 25px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(28px, -22px); } }

.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.5rem); margin: 1.4rem 0; font-weight: 800; letter-spacing: -0.03em; }
.hero h1 .accent { font-style: normal; color: var(--mid-blue); position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; bottom: 0.06em; height: 0.09em; width: 100%;
  background: var(--mid-blue); transform: scaleX(0); transform-origin: left;
  animation: drawLine 0.8s ease 0.9s forwards;
}
@keyframes drawLine { to { transform: scaleX(1); } }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; margin-bottom: 2rem; }
.hero-ctas { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

/* floating metric cards */
.hero-visual { position: relative; z-index: 2; min-height: 420px; display: flex; flex-direction: column; align-items: flex-start; }
.live-pill { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--white); border: 1px solid var(--powder-blue); border-radius: 100px; padding: 0.4rem 0.9rem; box-shadow: var(--shadow-sm); font-size: 0.82rem; font-weight: 700; color: #2f8f5b; margin: 0 1.5rem 0.9rem auto; }
.live-pill-sub { color: var(--text-muted); font-weight: 500; }
.metric-card {
  background: var(--white); border: 1px solid var(--powder-blue);
  border-radius: var(--r-card); box-shadow: var(--shadow-md);
  padding: 1.05rem 1.3rem; width: 268px; position: relative;
}
.metric-card + .metric-card { margin-top: 0.8rem; }
.metric-card .m-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.metric-card .m-value { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--dark-blue); margin: 0.15rem 0; line-height: 1.15; }
.metric-card .m-sub { font-size: 0.82rem; color: var(--green); font-weight: 600; }
.card-a { animation: floatCard 6s ease-in-out infinite; }
.card-b { margin-left: -2rem; animation: floatCard 7.5s ease-in-out infinite; }
.card-c { margin-left: 1.5rem; animation: floatCard 6.8s ease-in-out infinite 0.4s; }
.card-d { margin-left: -0.75rem; animation: floatCard 7.1s ease-in-out infinite 0.2s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.live-tag { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; color: #2f8f5b; margin-top: 0.35rem; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #36b46f; animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.4); } }

/* stats bar */
.stats-bar { display: flex; gap: 0; margin-top: clamp(2.5rem, 5vh, 4rem); border-top: 1px solid rgba(44,74,110,0.1); padding-top: 2rem; position: relative; z-index: 2; }
.stat { flex: 1; padding: 0 1.75rem; }
.stat:not(:last-child) { border-right: 1px solid rgba(44,74,110,0.12); }
.stat:first-child { padding-left: 0; }
.stat-value { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--dark-blue); line-height: 1; }
.stat-label { font-size: 0.92rem; color: var(--text-muted); margin-top: 0.55rem; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--cream-dark); border-top: 1px solid rgba(44,74,110,0.08); border-bottom: 1px solid rgba(44,74,110,0.08); overflow: hidden; padding: 1rem 0; }
.marquee-track { display: flex; width: max-content; animation: scrollX 28s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0 1.75rem; font-size: 0.875rem; font-weight: 600; color: var(--dark-blue); opacity: 0.6; white-space: nowrap; }
.marquee-item .star { opacity: 1; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: clamp(4rem, 9vh, 7rem) 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-cream-dark { background: var(--cream-dark); }
.section-dark { background: var(--dark-blue); position: relative; overflow: hidden; }
.section-head { max-width: 640px; margin-bottom: 3.25rem; }

/* ============================================================
   HOE HET WERKT
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--powder-blue), var(--mid-blue));
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; transition: transform 0.3s ease; }
.step:hover { transform: translateY(-4px); }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--cream);
  border: 2px solid var(--powder-blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--dark-blue);
  margin: 0 auto 1.25rem; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.step:hover .step-circle { background: var(--dark-blue); color: var(--cream); border-color: var(--dark-blue); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.95rem; color: var(--text-muted); }

/* Aanpak as dark section */
#aanpak .eyebrow, #aanpak .eyebrow .star { color: var(--powder-blue); }
#aanpak .section-title { color: var(--cream); }
#aanpak .section-body { color: rgba(237,232,220,0.65); }
#aanpak .steps::before { background: linear-gradient(90deg, rgba(184,208,227,0.4), var(--mid-blue)); }
#aanpak .step-circle { background: rgba(255,255,255,0.06); border-color: rgba(184,208,227,0.3); color: var(--cream); }
#aanpak .step:hover .step-circle { background: var(--powder-blue); color: var(--dark-blue); border-color: var(--powder-blue); }
#aanpak .step h3 { color: var(--cream); }
#aanpak .step p { color: rgba(237,232,220,0.62); }

/* ============================================================
   DIENSTEN (dark)
   ============================================================ */
.section-dark .glow-tr { position: absolute; top: -150px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(123,163,204,0.15), transparent 70%); pointer-events: none; }
.section-dark .glow-bl { position: absolute; bottom: -150px; left: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(123,163,204,0.15), transparent 70%); pointer-events: none; }
.diensten-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3.25rem; position: relative; z-index: 1; flex-wrap: wrap; }
.diensten-head .eyebrow { color: var(--powder-blue); }
.diensten-head .eyebrow .star { color: var(--powder-blue); }
.diensten-head h2 { color: var(--cream); }
.diensten-head .section-body { color: rgba(237,232,220,0.6); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(184,208,227,0.15);
  border-radius: var(--r-card); padding: 1.85rem; transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); border-color: rgba(184,208,227,0.35); }
.service-icon { width: 48px; height: 48px; border-radius: 11px; background: rgba(184,208,227,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.service-card h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: 0.65rem; }
.service-card p { color: rgba(237,232,220,0.62); font-size: 0.95rem; }

/* ============================================================
   VOOR WIE
   ============================================================ */
.voorwie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.checklist { list-style: none; margin: 1.75rem 0 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.75rem; font-size: 1rem; color: var(--text-dark); }
.checklist li .star { color: var(--mid-blue); flex-shrink: 0; margin-top: 0.15rem; }

.result-card { background: var(--dark-blue); border-radius: var(--r-card-lg); box-shadow: 0 26px 64px rgba(44,74,110,0.30); padding: 2.75rem 2.5rem; position: relative; overflow: hidden; }
.result-card::before { content: ""; position: absolute; top: -90px; right: -90px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(123,163,204,0.38), transparent 70%); pointer-events: none; }
.result-card .deco-star { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 1.6rem; color: var(--powder-blue); opacity: 0.6; z-index: 1; }
.result-card .r-label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--powder-blue); font-weight: 600; position: relative; }
.result-card .r-metric { font-family: var(--font-display); font-size: clamp(3.6rem, 8vw, 5.2rem); font-weight: 800; letter-spacing: -0.035em; color: var(--white); line-height: 1; margin: 0.55rem 0 0.55rem; position: relative; }
.result-card .r-metric .pct { color: var(--powder-blue); }
.result-card .r-desc { color: rgba(237,232,220,0.7); font-size: 1.02rem; margin-bottom: 2.25rem; position: relative; max-width: 320px; }
.bar-row { margin-bottom: 1.4rem; position: relative; }
.bar-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; margin-bottom: 0.55rem; }
.bar-head .bar-name { color: rgba(237,232,220,0.85); font-weight: 500; }
.bar-head .bar-val { color: #5cc98a; font-weight: 700; font-family: var(--font-display); font-size: 1rem; }
.bar-track { height: 10px; background: rgba(255,255,255,0.12); border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--powder-blue), var(--mid-blue)); width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 720px; }
.faq-item { border-bottom: 1px solid rgba(44,74,110,0.12); }
.faq-item:first-child { border-top: 1px solid rgba(44,74,110,0.12); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.4rem 0; font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; color: var(--dark-blue);
}
.faq-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid rgba(44,74,110,0.25); position: relative; transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--dark-blue); border-radius: 2px; transition: background 0.3s ease; }
.faq-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-item.open .faq-icon { background: var(--dark-blue); border-color: var(--dark-blue); transform: rotate(45deg); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--cream); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 1.5rem; color: var(--text-muted); font-size: 1rem; max-width: 640px; }

/* ============================================================
   OVER MIJ
   ============================================================ */
.over-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 4rem; align-items: center; }
.over-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 1rem 0 1.5rem; }
.over-text p { color: var(--text-dark); margin-bottom: 1.1rem; max-width: 540px; }
.over-text .link-arrow { margin-top: 0.5rem; }

.founder-card { background: var(--white); border-radius: var(--r-card-lg); box-shadow: var(--shadow-lg); padding: 2.5rem 2rem 2.25rem; text-align: center; max-width: 320px; margin: 0 auto; }
.founder-photo { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; margin: 0 auto 1.35rem; display: block; border: 5px solid var(--cream); box-shadow: 0 8px 22px rgba(44,74,110,0.16); }
.founder-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--dark-blue); line-height: 1.1; }
.founder-role { font-size: 0.96rem; color: var(--mid-blue); font-weight: 600; margin-top: 0.35rem; }
.founder-loc { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.founder-card .socials { margin-top: 1.6rem; }
.founder-card .socials-label { margin-bottom: 0.75rem; }
.founder-card .socials-row { justify-content: center; gap: 0.6rem; }
.founder-card .social-link { width: 42px; height: 42px; padding: 0; border-radius: 50%; justify-content: center; background: var(--cream); font-size: 0; }
.signature { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.3rem; color: var(--mid-blue); margin: 1.5rem 0 2rem; }
.socials { margin-top: 2rem; }
.socials-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.85rem; }
.socials-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.05rem; border: 1px solid var(--powder-blue); border-radius: var(--r-btn); font-size: 0.9rem; font-weight: 600; color: var(--dark-blue); background: var(--white); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.social-link:hover { transform: translateY(-2px); border-color: var(--mid-blue); box-shadow: var(--shadow-sm); }
.social-link svg { width: 18px; height: 18px; fill: var(--dark-blue); display: block; }

/* ============================================================
   CONTACT (dark)
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; position: relative; z-index: 1; }
.contact-intro .eyebrow, .contact-intro .eyebrow .star { color: var(--powder-blue); }
.contact-intro h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); margin: 1rem 0 1.25rem; text-wrap: balance; }
.contact-intro .c-body { color: rgba(237,232,220,0.65); font-size: 1.075rem; margin-bottom: 1.75rem; }
.contact-meta { font-size: 0.95rem; color: rgba(237,232,220,0.55); line-height: 2; }
.contact-meta a { color: var(--powder-blue); transition: color 0.2s ease; }
.contact-meta a:hover { color: var(--cream); }

.contact-form { background: var(--white); border-radius: var(--r-card-lg); padding: 2.25rem; box-shadow: var(--shadow-lg); }
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-blue); margin-bottom: 0.4rem; }
.form-row input, .form-row textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.98rem; color: var(--text-dark);
  background: var(--cream); border: 1px solid var(--powder-blue); border-radius: var(--r-btn);
  padding: 0.8rem 0.95rem; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--mid-blue); box-shadow: 0 0 0 3px rgba(123,163,204,0.25); background: var(--white); }
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.85rem; text-align: center; }
.form-success { display: none; background: rgba(54,180,111,0.12); border: 1px solid rgba(54,180,111,0.4); color: #1f7a4d; border-radius: var(--r-btn); padding: 0.85rem 1rem; font-size: 0.9rem; margin-bottom: 1.1rem; line-height: 1.5; }
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); padding: 2.25rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer .f-logo { font-family: var(--font-display); font-size: 1.15rem; color: rgba(237,232,220,0.7); display: inline-flex; align-items: baseline; white-space: nowrap; }
.footer .f-logo-img { height: 46px; width: 46px; border-radius: 11px; display: block; object-fit: cover; }
.footer .f-copy { font-size: 0.85rem; color: rgba(237,232,220,0.3); }
.footer .f-ig { font-size: 0.9rem; color: rgba(184,208,227,0.6); transition: color 0.2s ease; }
.footer .f-ig:hover { color: var(--powder-blue); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .accent::after { transform: scaleX(1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .voorwie-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .over-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .steps::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diensten-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-bar { flex-direction: column; gap: 1.5rem; }
  .stat { padding: 0; border-right: none !important; }
  .stat:not(:last-child) { border-bottom: 1px solid rgba(44,74,110,0.12); padding-bottom: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-ctas { gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.3rem; }
  .hero h1 .accent { white-space: normal; }
}
