/* ===== IT Hulp Utrecht — huisstijl ===== */
:root {
  --primary: #178B9F;
  --primary-dark: #0D5966;
  --primary-light: #E8F5F7;
  --accent: #E8DCCF;
  --accent-dark: #2C2418;
  --text: #1a1a1a;
  --text-muted: #555f66;
  --bg-soft: #f7f9fa;
  --border: rgba(0, 0, 0, .1);
  --radius: 12px;
  --shadow: 0 2px 10px rgba(13, 89, 102, .08);
  --shadow-lg: 0 10px 30px rgba(13, 89, 102, .15);
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

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

a { color: var(--primary); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { line-height: 1.25; color: var(--text); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: .5rem; }

.section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; margin-top: .5rem; }

.badge {
  display: inline-block; background: var(--primary-light); color: var(--primary-dark);
  font-weight: 600; font-size: .85rem; padding: 6px 16px; border-radius: 999px; margin-bottom: 12px;
}

/* ===== Knoppen ===== */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 10px; font-weight: 600;
  font-size: 1rem; text-decoration: none; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #147a8c; }
.btn-accent { background: var(--accent); color: var(--accent-dark); }
.btn-outline-light { background: rgba(255,255,255,.15); color: #fff; border: 2px solid #fff; backdrop-filter: blur(4px); }
.btn-outline { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ===== Navigatie ===== */
.nav {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { height: 52px; width: auto; border-radius: 10px; }
.nav-brand-name { font-weight: 700; font-size: 1.1rem; color: var(--text); line-height: 1.2; }
.nav-brand-tag { font-size: .7rem; font-weight: 600; color: var(--primary); letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 1rem; padding: 6px 0; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); border-bottom: 2px solid var(--primary); }
.nav-links .btn { padding: 10px 22px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--text); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 16px 20px 20px; gap: 4px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; border-radius: 8px; }
  .nav-links a.active { border-bottom: none; background: var(--primary-light); }
  .nav-links a:hover { background: var(--bg-soft); }
  .nav-links .btn { text-align: center; margin-top: 8px; }
}

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff; padding: 110px 0 90px; overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,89,102,.92) 0%, rgba(23,139,159,.82) 55%, rgba(23,139,159,.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: clamp(1.15rem, 2.5vw, 1.5rem); color: rgba(255,255,255,.95); max-width: 640px; margin-bottom: 34px; }
.hero-usps { display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin-bottom: 34px; }
.hero-usp {
  display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.12);
  border-radius: 10px; padding: 13px 18px; font-size: 1.05rem; backdrop-filter: blur(4px);
}
.hero-usp svg { width: 24px; height: 24px; stroke: var(--accent); flex-shrink: 0; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Kaarten ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-img { position: relative; height: 210px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,89,102,.75), transparent 60%);
}
.card-img h3 { position: absolute; bottom: 14px; left: 16px; right: 16px; color: #fff; font-size: 1.25rem; }
.card-body { padding: 18px 20px 22px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.card-body p { color: var(--text-muted); font-size: .95rem; }
a.card { text-decoration: none; color: inherit; display: block; }

/* ===== Diensten detail ===== */
.service-detail { padding: 28px; scroll-margin-top: 96px; }
.service-detail-head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.service-icon {
  width: 54px; height: 54px; background: var(--primary-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.service-detail h3 { font-size: 1.35rem; }
.service-detail > p { color: var(--text-muted); margin-bottom: 16px; }
.check-list { list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; color: #333; }
.check-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  flex-shrink: 0; margin-top: 9px;
}

.notice {
  background: #fdf7e7; border: 2px solid #e9d48a; border-radius: var(--radius);
  padding: 18px 22px; max-width: 760px; margin: 0 auto; color: #6b5817; text-align: center;
}
.notice strong { color: #55460f; }

/* ===== Tarieven ===== */
.price-card { text-align: center; padding: 34px 26px; border: 2px solid var(--primary); }
.price-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.price-icon svg { width: 26px; height: 26px; stroke: #fff; }
.price-card h3 { font-size: 1.4rem; }
.price-card .price-sub { color: var(--text-muted); margin-bottom: 14px; }
.price-amount { font-size: 2.6rem; font-weight: 700; color: var(--primary); }
.price-per { color: var(--text-muted); margin-bottom: 18px; }
.price-card .check-list { text-align: left; max-width: 300px; margin: 0 auto; }
.price-card .check-list li::before {
  content: "✓"; background: none; color: #1a9b56; font-weight: 700; width: auto; height: auto; margin-top: 0;
}

.info-band { border-radius: var(--radius); padding: 26px; text-align: center; border: 1px solid; }
.info-band h3 { margin-bottom: 12px; font-size: 1.25rem; }
.band-green { background: #eefaf2; border-color: #b9e4c8; }
.band-blue { background: var(--primary-light); border-color: #A3CED4; }
.band-amber { background: #fdf7e7; border-color: #e9d48a; }
.band-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
@media (max-width: 760px) { .band-cols { grid-template-columns: 1fr; } }
.band-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: left; }
.band-item strong { display: block; margin-bottom: 4px; }
.band-item p { font-size: .9rem; color: var(--text-muted); }
.band-inline { display: flex; gap: 8px; align-items: center; justify-content: center; }
.band-inline svg { width: 20px; height: 20px; stroke: #1a9b56; flex-shrink: 0; }

.steps { text-align: left; }
.steps li { display: flex; gap: 12px; margin-bottom: 14px; list-style: none; color: var(--text-muted); }
.step-nr {
  width: 26px; height: 26px; border-radius: 50%; background: var(--primary); color: #fff;
  font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

/* ===== FAQ ===== */
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 12px; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "▾"; color: var(--primary); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p { padding: 0 22px 18px; color: var(--text-muted); }

/* ===== Testimonials ===== */
.stars { color: #f5b301; letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 10px; }
.quote { font-style: italic; color: var(--text-muted); margin-bottom: 16px; }
.quote-author { border-top: 1px solid var(--border); padding-top: 12px; }
.quote-author strong { display: block; }
.quote-author span { font-size: .88rem; color: var(--text-muted); }

/* ===== Over / team ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-img img { border-radius: 18px; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.split h3 { font-size: 1.6rem; margin-bottom: 16px; }
.split p { color: var(--text-muted); margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip { background: var(--primary-light); color: var(--primary-dark); font-size: .85rem; font-weight: 500; padding: 6px 14px; border-radius: 999px; }

.stat-card { text-align: center; padding: 26px; }
.stat-card svg { width: 30px; height: 30px; stroke: var(--primary); margin: 0 auto 8px; }
.stat-value { font-size: 1.7rem; font-weight: 700; }
.stat-label { color: var(--text-muted); font-size: .92rem; }

.team-card { padding: 34px; border: 2px solid rgba(23,139,159,.2); }
.team-grid { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: center; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }
.team-grid img { border-radius: 16px; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.team-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
@media (max-width: 640px) { .team-facts { grid-template-columns: 1fr; } }
.team-fact { display: flex; gap: 10px; align-items: center; font-size: .95rem; }
.team-fact svg { width: 18px; height: 18px; stroke: var(--primary); flex-shrink: 0; }
.team-contact a { display: flex; gap: 10px; align-items: center; text-decoration: none; color: var(--text); padding: 3px 0; }
.team-contact a:hover { color: var(--primary); }
.team-contact svg { width: 16px; height: 16px; stroke: var(--primary); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item svg { width: 24px; height: 24px; stroke: var(--primary); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { display: block; }
.contact-item a { color: var(--text-muted); text-decoration: none; }
.contact-item a:hover { color: var(--primary); text-decoration: underline; }
.contact-item p, .contact-item span { color: var(--text-muted); }
.contact-item .sub { font-size: .88rem; color: #8a949a; }

.form-card { padding: 30px; }
.form-card h3 { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d5dbdf; border-radius: 8px;
  font: inherit; background: #f6f8f9; transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--primary); outline-offset: 0; background: #fff; border-color: var(--primary);
}
.form-note { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ===== Bedankt ===== */
.thanks-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 64px 20px; }
.thanks-card { max-width: 620px; text-align: center; padding: 48px 36px; }
.thanks-icon {
  width: 90px; height: 90px; border-radius: 50%; background: #eefaf2;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.thanks-icon svg { width: 46px; height: 46px; stroke: #1a9b56; }

/* ===== Page header ===== */
.page-head { background: linear-gradient(135deg, var(--primary-light), #eef1fb); text-align: center; padding: 70px 0; }
.page-head h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 14px; }
.page-head p { font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

/* ===== Merken ===== */
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.brand {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 26px; font-weight: 600; color: var(--text-muted); box-shadow: var(--shadow);
}

/* ===== Sticky bel-knop (mobiel) ===== */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  background: var(--primary); color: #fff; border-radius: 999px;
  display: none; align-items: center; gap: 10px; padding: 14px 20px;
  text-decoration: none; font-weight: 700; box-shadow: 0 6px 18px rgba(13,89,102,.4);
}
.call-fab svg { width: 20px; height: 20px; stroke: #fff; }
@media (max-width: 860px) { .call-fab { display: flex; } }

/* ===== Footer ===== */
.footer { background: var(--primary-dark); color: #d7e5e8; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.footer img { height: 90px; width: auto; border-radius: 14px; margin-bottom: 18px; }
.footer h4 { color: #fff; margin-bottom: 14px; }
.footer p { font-size: .92rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: #d7e5e8; text-decoration: none; font-size: .92rem; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; stroke: #d7e5e8; flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 40px; padding-top: 22px; font-size: .88rem; color: #a8c2c7; }

/* Toegankelijkheid */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: #fff; color: var(--primary);
  padding: 10px 18px; z-index: 200; font-weight: 600;
}
.skip-link:focus { left: 10px; top: 10px; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
