/*
Theme Name: Develop and Go V11
Theme URI: https://developandgo.nl
Author: Develop and Go
Version: 11.0
Description: Develop and Go V11 — twee duidelijke paden op de homepage (Logistiek & Warehouse / Procesverbetering MKB), gedeeld fundament (Wie ben ik / DAG-methode), plus og:image-fix, testimonial en profielfoto-placeholder.
Text Domain: developandgo-v44
*/

/* ============================================================
   CSS VARIABELEN — Huisstijl Develop and Go
   ============================================================ */
:root {
  --brand-blue:   #0F3E8A;
  --brand-teal:   #0FA4C4;
  --brand-navy:   #0B1736;
  --bg:           #07122B;
  --bg-soft:      #0B1736;
  --card:         #102349;
  --text:         #FFFFFF;
  --muted:        #D7E4F4;
  --body:         #10203A;
  --light:        #F8FBFF;
  --line:         #D9E6F2;
  --mid:          #385072;
  --success-bg:   #ECFDF5;
  --success-text: #065F46;
  --success-line: #A7F3D0;
  --error-bg:     #FEF2F2;
  --error-text:   #991B1B;
  --error-line:   #FECACA;
  --radius-sm:    12px;
  --radius-md:    18px;
  --radius-lg:    24px;
  --shadow:       0 16px 34px rgba(7,18,43,.07);
  --shadow-lg:    0 24px 56px rgba(7,18,43,.12);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}
a { text-decoration: none; color: var(--brand-blue); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-light { background: var(--light); }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
.section-title {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--brand-navy);
}
.section-intro {
  margin: 0 0 40px;
  color: var(--mid);
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 860px;
  line-height: 1.6;
}
.body-text {
  color: var(--mid);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.eyebrow {
  color: #7FD8EC;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow-dark {
  color: var(--brand-teal);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(7,18,43,.06);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { height: 72px; width: auto; max-width: 280px; object-fit: contain; }

/* Hamburger */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
  position: relative;
  transition: .2s;
}
.nav-toggle-label span::before { position: absolute; top: -6px; }
.nav-toggle-label span::after  { position: absolute; top:  6px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.nav a { color: var(--brand-navy); font-weight: 600; font-size: 15px; transition: color .15s; }
.nav a:hover { color: var(--brand-blue); }
.nav .nav-cta {
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: #fff !important;
  font-weight: 700;
}
.nav .nav-cta:hover { opacity: .9; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: all .2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: #fff;
  box-shadow: 0 6px 18px rgba(15,62,138,.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(15,62,138,.35); color: #fff; }
.btn-secondary  { border: 1.5px solid rgba(105,207,229,.5); color: #fff; background: transparent; }
.btn-secondary:hover { background: rgba(255,255,255,.07); color: #fff; }
.btn-outline    { border: 1.5px solid var(--brand-blue); color: var(--brand-blue); background: transparent; }
.btn-outline:hover { background: var(--brand-blue); color: #fff; }
.btn-white-outline { border: 1.5px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-white-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-full { width: 100%; text-align: center; }
.buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--text);
  padding: 72px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-height: 560px;
}
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}
.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  margin: 0 0 34px;
  max-width: 680px;
  line-height: 1.6;
}
.trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust span {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,164,196,.25);
  color: #D7E4F4;
  font-size: 13px;
  font-weight: 600;
}

/* Hero card */
.hero-card {
  background: linear-gradient(180deg, rgba(15,164,196,.08), rgba(15,62,138,.14)), var(--card);
  border: 1px solid rgba(15,164,196,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
}
.pill {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15,164,196,.12);
  color: #8DE0F0;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(15,164,196,.2);
  margin: 0 0 14px;
}
.hero-card h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.1;
  color: #fff;
}
.hero-card p { margin: 0; color: #D7E4F4; font-size: 17px; line-height: 1.6; }
.hero-list  { display: grid; gap: 12px; margin-top: 24px; }
.hero-list div {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dag-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

/* ============================================================
   CARDS (algemeen)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { margin: 0 0 10px; color: var(--brand-navy); font-size: 18px; }
.card p  { margin: 0; color: var(--mid); line-height: 1.6; }

.card-icon { font-size: 28px; margin-bottom: 14px; }
.card-icon-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}
.card-problem { border-left: 3px solid var(--brand-teal); }

/* Diensten extra */
.diensten-extra {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.dienst-extra-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.6;
  box-shadow: var(--shadow);
}
.dienst-extra-item strong { color: var(--brand-navy); display: block; margin-bottom: 4px; }

/* ============================================================
   PADENKIEZER (Logistiek vs. Procesverbetering)
   ============================================================ */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.path-card-icon { font-size: 30px; margin-bottom: 14px; }
.path-card h3 { margin: 0 0 10px; color: var(--brand-navy); font-size: 21px; }
.path-card p { margin: 0 0 16px; color: var(--mid); line-height: 1.6; }
.path-card-link {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 15px;
}

/* ============================================================
   PAD-SUBSECTIES (binnen Logistiek / Procesverbetering)
   ============================================================ */
.pad-intro {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.pad-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pad-subheading {
  color: var(--brand-navy);
  font-size: 22px;
  margin: 56px 0 20px;
}
.pad-subheading:first-of-type { margin-top: 40px; }
.pad-cta { margin-top: 40px; }

/* ============================================================
   OVER MIJ
   ============================================================ */
.about-photo-wrap { margin: 0 0 24px; }
.about-photo {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--brand-teal);
  box-shadow: var(--shadow);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.about-roles { display: grid; gap: 10px; margin-top: 24px; }
.role-item {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--light);
  border: 1px solid var(--line);
  color: var(--brand-navy);
  font-size: 15px;
  font-weight: 500;
}
.about-card { position: sticky; top: 120px; }
.about-card-inner {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  border: 1px solid rgba(15,164,196,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
}
.about-logo { height: 60px; width: auto; margin-bottom: 24px; }
.about-divider { height: 1px; background: rgba(255,255,255,.1); margin: 20px 0; }
.about-quote {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 24px;
}
.about-values { display: flex; flex-wrap: wrap; gap: 8px; }
.about-values span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,164,196,.25);
  color: #D7E4F4;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   DAG-METHODE
   ============================================================ */
.dag-steps { display: grid; gap: 28px; margin-top: 8px; }
.dag-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.dag-badge {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dag-letter-lg {
  color: #fff;
  font-weight: 900;
  font-size: 28px;
}
.dag-step-content h3 { margin: 6px 0 10px; color: var(--brand-navy); font-size: 22px; }
.dag-step-content p  { color: var(--mid); line-height: 1.65; margin: 0 0 16px; }
.dag-label { color: var(--brand-teal); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 4px; }
.dag-list { padding-left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dag-list li {
  padding: 9px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 500;
}
.dag-list li::before { content: "✓ "; color: var(--brand-teal); font-weight: 700; }

/* ============================================================
   RESULTATEN / BENEFITS
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.benefit {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 20px 22px;
  font-weight: 700;
  color: var(--brand-navy);
  box-shadow: var(--shadow);
  font-size: 15px;
}

/* ============================================================
   CASES
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-label {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-self: flex-start;
}
.case-card h3  { margin: 0; color: var(--brand-navy); font-size: 19px; }
.case-situation { color: var(--mid); font-size: 15px; margin: 0; line-height: 1.6; }
.case-result { background: var(--light); border-radius: var(--radius-sm); padding: 16px 18px; border: 1px solid var(--line); }
.case-result strong { color: var(--brand-navy); font-size: 14px; display: block; margin-bottom: 8px; }
.case-result ul { padding-left: 0; display: grid; gap: 6px; }
.case-result li { color: var(--mid); font-size: 14px; line-height: 1.5; }
.case-result li::before { content: "→ "; color: var(--brand-teal); font-weight: 700; }
.case-quote {
  border-left: 3px solid var(--brand-teal);
  padding-left: 14px;
  color: var(--mid);
  font-style: italic;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.faq-item h3 { margin: 0 0 8px; color: var(--brand-navy); font-size: 17px; }
.faq-item p  { margin: 0; color: var(--mid); font-size: 15px; line-height: 1.65; }

/* ============================================================
   CTA SECTIE
   ============================================================ */
.cta-section { background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%); }
.cta-card {
  text-align: center;
  padding: 64px 40px;
  color: #fff;
}
.cta-card .eyebrow { color: #7FD8EC; }
.cta-card h2 { color: #fff; margin: 0 0 16px; font-size: clamp(32px, 4vw, 52px); }
.cta-card p  { color: var(--muted); font-size: 19px; max-width: 580px; margin: 0 auto 32px; line-height: 1.6; }
.cta-card .buttons { justify-content: center; }

/* ============================================================
   GRID-2
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }

/* ============================================================
   CONTACTPAGINA
   ============================================================ */
.page-wrap { padding: 72px 0; }
.page-hero { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.page-hero h1 { color: var(--brand-navy); font-size: clamp(32px, 4vw, 52px); margin: 0 0 14px; }
.lead-dark { color: var(--mid); font-size: 19px; line-height: 1.6; margin: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-card, .form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-logo { height: 52px; width: auto; margin-bottom: 24px; }
.contact-card h3 { margin: 0 0 12px; color: var(--brand-navy); font-size: 20px; }
.contact-card p  { color: var(--mid); margin: 0 0 20px; line-height: 1.65; }
.contact-points  { display: grid; gap: 10px; margin-bottom: 24px; }
.contact-point {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--line);
  color: var(--brand-navy);
  font-weight: 600;
  font-size: 14px;
}
.contact-divider { height: 1px; background: var(--line); margin: 20px 0; }
.contact-tagline { color: var(--brand-navy); font-size: 15px; margin: 0 0 10px; line-height: 1.5; }
.contact-email-label { color: var(--mid); font-size: 15px; margin: 0; }
.contact-email-label a { color: var(--brand-blue); font-weight: 600; }

.form-card h3 { margin: 0 0 20px; color: var(--brand-navy); font-size: 20px; }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
}
.form-message.success { background: var(--success-bg); color: var(--success-text); border: 1px solid var(--success-line); }
.form-message.error   { background: var(--error-bg);   color: var(--error-text);   border: 1px solid var(--error-line);   }
.dag-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 14px;
}
.dag-form input,
.dag-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--body);
  transition: border-color .15s;
  background: #fff;
}
.dag-form input:focus,
.dag-form textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(15,164,196,.12);
}
.dag-form input::placeholder,
.dag-form textarea::placeholder { color: #99B0C8; }
.dag-form textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 13px; color: #7A93AA; margin-top: 12px; line-height: 1.5; }

/* ============================================================
   OVERIGE PAGINA'S (legal, 404)
   ============================================================ */
.page-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 860px;
}
.page-box h1 { margin-top: 0; color: var(--brand-navy); }
.page-box h2 { color: var(--brand-navy); }
.page-box p, .page-box li { color: var(--mid); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-navy);
  color: #fff;
  padding: 48px 0 36px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}
.footer-brand img   { height: 60px; width: auto; margin-bottom: 14px; }
.footer-sub         { color: #C8D9EF; font-size: 15px; line-height: 1.6; }
.footer-links       { display: grid; gap: 10px; justify-content: end; }
.footer-links a     { color: #D7E4F4; font-weight: 600; font-size: 15px; transition: color .15s; }
.footer-links a:hover { color: var(--brand-teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { color: #8AA4C0; font-size: 14px; }
.footer-email a { color: var(--brand-teal); font-weight: 600; font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dag-list { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards,
  .benefits,
  .faq-grid,
  .cases-grid,
  .diensten-extra,
  .footer-grid,
  .path-grid,
  .grid-2 { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .about-card { position: static; }
  .dag-step { grid-template-columns: 1fr; }
  .dag-badge { width: 52px; height: 52px; }
}

@media (max-width: 860px) {
  .nav-toggle-label { display: flex; }
  .nav {
    position: absolute;
    top: 89px;
    left: 20px; right: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
  }
  .nav a { width: 100%; padding: 8px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle:checked ~ .nav { display: flex; }
  .section { padding: 60px 0; }
  .hero { padding: 52px 0 68px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-card { padding: 48px 24px; }
  .page-hero { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-card { min-height: auto; }
  .buttons { flex-direction: column; }
  .btn { text-align: center; }
  .page-box, .contact-card, .form-card { padding: 24px; }
}

/* ============================================================
   UPDATES V5.1
   ============================================================ */

/* Hero card sub-titel */
.hero-card-sub {
  color: #8DE0F0;
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0 0;
}

/* Trust blokjes altijd op één rij */
.trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
.trust span {
  white-space: nowrap;
}

/* Kernwaarden naast elkaar op één rij */
.about-values {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
}
.about-values span {
  white-space: nowrap;
  flex-shrink: 0;
}

/* DAG lijst gelijke hoogte blokjes */
.dag-list-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}
.dag-list-equal li {
  height: 100%;
  display: flex;
  align-items: center;
}
.dag-list-equal li::before { content: "✓ "; color: var(--brand-teal); font-weight: 700; flex-shrink: 0; }

/* Cases grid 4 kolommen */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Formulier cursor fix */
.dag-form input,
.dag-form textarea,
.dag-form button {
  cursor: text;
}
.dag-form button {
  cursor: pointer;
}
.dag-form * {
  cursor: auto;
}
.dag-form button,
.dag-form button * {
  cursor: pointer !important;
}

/* Logo transparant op donkere achtergrond */
.about-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  background: transparent;
}

/* Responsive updates */
@media (max-width: 1200px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .cases-grid { grid-template-columns: 1fr; }
  .trust { flex-wrap: wrap; }
  .about-values { flex-wrap: wrap; }
}

/* ============================================================
   UPDATES V5.2
   ============================================================ */

/* Cases grid 3x3 */
.cases-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
}

/* Benefits blokjes gelijke hoogte */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.benefit {
  display: flex;
  align-items: center;
  min-height: 60px;
}

/* Logo in about card - wit vlak */
.about-logo {
  height: auto !important;
  width: 100% !important;
  max-width: 280px;
  margin: 0 auto 20px;
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

/* Cursor fix formulier - grondig */
.dag-form,
.dag-form *,
.dag-form input,
.dag-form textarea,
.dag-form select,
.dag-form label {
  cursor: auto !important;
}
.dag-form input[type="text"],
.dag-form input[type="email"],
.dag-form input[type="tel"],
.dag-form textarea {
  cursor: text !important;
}
.dag-form button[type="submit"],
.dag-form .btn {
  cursor: pointer !important;
}

/* Responsive cases */
@media (max-width: 980px) {
  .cases-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 1200px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============================================================
   UPDATES V5.3
   ============================================================ */

/* About brand tekst ipv logo */
.about-brand-text {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* Kernwaarden op één rij - forceer */
.about-values {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 6px;
  overflow-x: auto;
}
.about-values span {
  white-space: nowrap !important;
  flex-shrink: 0;
  font-size: 12px !important;
  padding: 5px 10px !important;
}

/* Benefits gelijke hoogte forceer */
.benefit {
  display: flex !important;
  align-items: center !important;
  min-height: 56px !important;
  height: auto !important;
}

/* Cases grid fix - altijd 3 kolommen op desktop */
@media (min-width: 981px) {
  .cases-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Footer logo - witte achtergrond via logo-footer.png */

/* ============================================================
   UPDATES V5.4
   ============================================================ */

/* About brand heading - groot over volle breedte */
.about-brand-heading {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  width: 100%;
  text-align: center;
}

/* Kernwaarden 4 items op één rij */
.about-values {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px;
  justify-content: center;
}
.about-values span {
  white-space: nowrap !important;
  flex-shrink: 0;
  font-size: 12px !important;
  padding: 6px 11px !important;
}

/* Cases grid - 5 rijen van 2 op desktop */
@media (min-width: 981px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}



/* Cases grid - 3x3 */
@media (min-width: 981px) {
  .cases-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ============================================================
   MOBIEL OVERFLOW FIX
   ============================================================ */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

* {
  max-width: 100%;
}

/* Hero sectie overflow fix */
.hero {
  overflow: hidden;
}

/* Trust blokjes wrappen op mobiel */
@media (max-width: 600px) {
  .trust {
    flex-wrap: wrap !important;
  }
  .trust span {
    white-space: normal !important;
  }
  .about-values {
    flex-wrap: wrap !important;
  }
  .hero-grid {
    padding: 0;
  }
  .container {
    padding: 0 16px !important;
    width: 100% !important;
  }
  .buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .dag-list {
    grid-template-columns: 1fr !important;
  }
  .cases-grid {
    grid-template-columns: 1fr !important;
  }
  .diensten-extra {
    grid-template-columns: 1fr !important;
  }
  .faq-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   MOBIEL FIX - BENEFITS & OVERFLOW
   ============================================================ */

/* Benefits altijd 1 kolom op mobiel */
@media (max-width: 768px) {
  .benefits {
    grid-template-columns: 1fr !important;
  }
  .benefit {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Voorkom dat kolommen buiten scherm vallen */
@media (max-width: 980px) {
  .benefits {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   V8 — LOGISTIEK SUPPORT & ERVARINGSBLOK
   ============================================================ */

/* Featured dienst kaart */
.card-featured {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  grid-column: span 2;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 12px 36px rgba(15,62,138,.28);
}
@media (max-width: 768px) {
  .card-featured { grid-column: span 1; flex-direction: column; gap: 20px; }
}
.card-featured .card-featured-label {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}
.card-featured h3 { color: #fff; margin: 0 0 10px; font-size: 22px; }
.card-featured p  { color: rgba(255,255,255,.88); margin: 0 0 16px; font-size: 16px; line-height: 1.6; }
.card-featured ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.card-featured ul li { color: rgba(255,255,255,.9); font-size: 15px; padding-left: 20px; position: relative; }
.card-featured ul li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; }
.card-featured-icon { font-size: 48px; flex-shrink: 0; margin-top: 4px; }

/* Ervaring / achtergrond blok */
.experience-bar {
  background: linear-gradient(135deg, var(--brand-navy), var(--bg));
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.experience-bar .exp-label {
  color: var(--brand-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.experience-bar .exp-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  flex: 1;
}
.exp-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.exp-item strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.exp-item span {
  color: var(--muted);
  font-size: 14px;
}
.exp-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}
@media (max-width: 600px) {
  .experience-bar { padding: 24px 20px; gap: 20px; }
  .exp-divider { display: none; }
}

/* Logistiek herkenning items */
.card-problem.card-logistiek {
  border-left: 3px solid var(--brand-teal);
}

/* ============================================================
   UPDATES V8
   ============================================================ */

/* Exp-divider verbergen */
.exp-divider { display: none !important; }

/* Card featured breder - neemt 2 kolommen in */
@media (min-width: 981px) {
  .card-featured {
    grid-column: span 2 !important;
  }
}

/* DAG lijst spaties fix */
.dag-list li::before,
.dag-list-equal li::before {
  content: "✓ ";
  color: var(--brand-teal);
  font-weight: 700;
}

/* ============================================================
   UPDATES V9
   ============================================================ */

/* Card featured volle breedte */
.card-featured-full {
  grid-column: 1 / -1 !important;
}

/* Praktijkvoorbeelden intro geen woordbreuk */
#cases .section-intro {
  white-space: normal;
  word-break: normal;
}

/* DAG lijst spaties fix */
.dag-list li,
.dag-list-equal li {
  padding-left: 0;
}

/* TERUG NAAR BOVEN KNOP */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0F3E8A;
  color: #fff;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15,62,138,0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #0FA4C4;
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}
