/* ===== Halco Services – huisstijl ===== */
:root {
  --slate: #3a4854;
  --slate-dark: #2e3a44;
  --teal: #e0501e;          /* koraalrood accent */
  --teal-dark: #c2410c;     /* koraal donker (hover) */
  --teal-light: #fdeee6;    /* licht koraal (chips/icoontjes) */
  --grey-bg: #faf7f5;
  --text: #3a4854;
  --text-soft: #5d6b76;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(58, 72, 84, 0.08);
  --shadow-hover: 0 8px 32px rgba(58, 72, 84, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  font-size: 16.5px;
}

h1, h2, h3, h4 { font-family: 'Outfit', 'Inter', sans-serif; line-height: 1.2; color: var(--slate); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--text-soft); }
a { color: var(--teal); text-decoration: none; }
img { max-width: 100%; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8ecee;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo img { height: 44px; display: block; }
nav ul { display: flex; gap: 32px; list-style: none; align-items: center; }
nav a { color: var(--slate); font-weight: 500; font-size: 0.98rem; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: #fff !important; padding: 10px 22px;
  border-radius: 999px; font-weight: 600; transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--slate); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ===== Hero ===== */
.hero { padding: 90px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.hero .kicker, .kicker {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p.lead { font-size: 1.15rem; margin-bottom: 34px; max-width: 540px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; transition: all 0.2s; cursor: pointer; border: none;
  font-family: inherit;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-ghost { border: 2px solid var(--slate); color: var(--slate); padding: 12px 28px; }
.btn-ghost:hover { background: var(--slate); color: #fff; }
.btn-white { background: #fff; color: var(--slate); }
.btn-white:hover { transform: translateY(-2px); }

.hero-card {
  background: var(--slate); border-radius: 20px; padding: 40px 36px; color: #fff;
  box-shadow: var(--shadow-hover);
}
.hero-card h3 { color: #fff; margin-bottom: 18px; font-size: 1.1rem; }
.hero-card ul { list-style: none; }
.hero-card li {
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; color: #dfe6ea;
}
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before { content: "→"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ===== Secties ===== */
section { padding: 80px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.bg-grey { background: var(--grey-bg); }
.bg-slate { background: var(--slate); }
.bg-slate h2, .bg-slate h3 { color: #fff; }
.bg-slate p { color: #c8d2d9; }

/* ===== Cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--teal); flex-shrink: 0;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.96rem; flex-grow: 1; }
.card .card-link { margin-top: 18px; font-weight: 600; font-size: 0.95rem; }
.card .card-link:hover { color: var(--teal-dark); }

/* ===== USP-strook ===== */
.usp-item { text-align: center; padding: 10px; }
.usp-item .big { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.usp-item p { font-size: 0.93rem; }

/* ===== Case cards ===== */
.case {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 40px 38px; margin-bottom: 28px;
}
.case .case-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--teal-dark); background: var(--teal-light);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.case h3 { font-size: 1.45rem; margin-bottom: 12px; }
.case ul { margin: 16px 0 0 0; list-style: none; }
.case li { padding: 7px 0; display: flex; gap: 11px; color: var(--text-soft); font-size: 0.97rem; }
.case li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ===== Callscope band ===== */
.callscope-band { border-radius: 24px; background: linear-gradient(135deg, var(--slate) 0%, var(--slate-dark) 100%); padding: 60px 50px; color: #fff; }
.callscope-band .kicker { background: rgba(224,80,30,0.2); color: #f5a079; }
.callscope-band h2 { color: #fff; margin-bottom: 16px; }
.callscope-band p { color: #c8d2d9; max-width: 600px; margin-bottom: 28px; }

/* ===== Over / foto ===== */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.photo-frame {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-hover);
  aspect-ratio: 4/5; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder {
  font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 700; color: var(--teal);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.photo-placeholder small { font-size: 0.85rem; font-weight: 500; color: var(--text-soft); }

/* ===== Tijdlijn ===== */
.timeline { list-style: none; margin-top: 28px; border-left: 2px solid var(--teal-light); padding-left: 28px; }
.timeline li { position: relative; padding-bottom: 24px; }
.timeline li::before {
  content: ""; position: absolute; left: -35px; top: 7px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--teal);
}
.timeline strong { color: var(--slate); display: block; font-family: 'Outfit', sans-serif; }
.timeline span { font-size: 0.95rem; color: var(--text-soft); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--slate); border-radius: 20px; padding: 40px 36px; color: #fff; }
.contact-info-card h3 { color: #fff; margin-bottom: 24px; }
.contact-line { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #dfe6ea; }
.contact-line:last-of-type { border-bottom: none; }
.contact-line a { color: #fff; font-weight: 500; }
.contact-line a:hover { color: #f5a079; }
.contact-line svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

form .field, .tc-card .field { margin-bottom: 18px; }
form label, .tc-card label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; color: var(--slate); }
form input, form textarea, form select, .tc-card input, .tc-card textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #dde3e7; border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--text); background: #fff;
  box-sizing: border-box; transition: border-color 0.2s;
}
form input:focus, form textarea:focus, form select:focus, .tc-card input:focus, .tc-card textarea:focus { outline: none; border-color: var(--teal); }

/* ===== CTA-band ===== */
.cta-band { text-align: center; padding: 90px 0; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 520px; margin: 0 auto 32px; font-size: 1.08rem; }

/* ===== Footer ===== */
footer { background: var(--slate-dark); color: #b9c4cc; padding: 56px 0 28px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer img { height: 40px; margin-bottom: 16px; }
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer a { color: #b9c4cc; transition: color 0.2s; }
footer a:hover { color: #f5a079; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: #8b99a3; }

/* ===== Landingspagina's ===== */
.lp-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid #e8ecee; }
.lp-header .nav-wrap { height: 70px; }
.lp-hero { padding: 80px 0 70px; text-align: center; }
.lp-hero h1 { max-width: 800px; margin: 0 auto 22px; }
.lp-hero p.lead { font-size: 1.15rem; max-width: 620px; margin: 0 auto 34px; }
.lp-section-narrow { max-width: 760px; margin: 0 auto; }
.pain-stat { text-align: center; padding: 18px 10px; }
.pain-stat .big { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--slate); }
.pain-stat p { font-size: 0.88rem; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

/* ===== Trajectcheck widget ===== */
.tc-card { padding: 36px 34px; }
.tc-progress { height: 6px; background: var(--teal-light); border-radius: 999px; margin-bottom: 22px; overflow: hidden; }
.tc-progress-bar { height: 100%; background: var(--teal); border-radius: 999px; transition: width 0.3s; }
.tc-stap { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-dark); margin-bottom: 8px; }
.tc-card h3 { margin-bottom: 18px; font-size: 1.3rem; }
.tc-intro { margin-bottom: 20px; }
.tc-opties { display: flex; flex-direction: column; gap: 10px; }
.tc-optie { text-align: left; padding: 14px 18px; border: 1.5px solid #dde3e7; border-radius: 10px; background: #fff; font-family: inherit; font-size: 1rem; color: var(--text); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.tc-optie:hover { border-color: var(--teal); background: var(--teal-light); }
.tc-optie.gekozen { border-color: var(--teal); background: var(--teal-light); font-weight: 600; }
.tc-terug { background: none; border: none; color: var(--text-soft); font-family: inherit; font-size: 0.92rem; cursor: pointer; margin-top: 18px; padding: 0; }
.tc-terug:hover { color: var(--teal); }
.tc-submit { width: 100%; margin-top: 6px; }
.tc-fout { color: #c0392b; font-size: 0.92rem; margin-top: 4px; }
.tc-pijler { margin-bottom: 20px; }
.tc-pijler-kop { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.tc-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 10px; border-radius: 999px; }
.tc-label.tc-n1 { background: #fdecea; color: #c0392b; }
.tc-label.tc-n2 { background: #fef5e7; color: #b9770e; }
.tc-label.tc-n3 { background: #eafaf1; color: #1e8449; }
.tc-balk { height: 8px; background: #eef1f3; border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.tc-balk-vul { height: 100%; border-radius: 999px; }
.tc-balk-vul.tc-n1 { background: #e74c3c; }
.tc-balk-vul.tc-n2 { background: #f39c12; }
.tc-balk-vul.tc-n3 { background: #27ae60; }
.tc-uitleg { font-size: 0.94rem; }
.tc-prio { margin-top: 26px; padding: 22px 24px; background: var(--teal-light); border-radius: 12px; }
.tc-prio h3 { font-size: 1.1rem; margin-bottom: 10px; }
.tc-btnrow { margin-top: 16px; }
.tc-overall { display: flex; align-items: center; gap: 22px; margin-bottom: 24px; }
.tc-overall-num { font-family: 'Outfit', sans-serif; font-size: 3.2rem; font-weight: 700; color: var(--teal); line-height: 1; min-width: 120px; }
.tc-overall-txt h3 { margin-bottom: 4px; font-size: 1.25rem; }
.tc-overall-txt p { font-size: 0.92rem; }
.tc-balk-vul { transition: width 0.9s ease; }
.tc-truth { background: var(--slate); border-radius: 12px; padding: 22px 24px; margin-bottom: 24px; }
.tc-truth p { color: #dfe6ea; font-size: 0.95rem; }
.tc-truth-num { font-family: 'Outfit', sans-serif; font-size: 1.7rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.tc-truths { background: var(--slate); border-radius: 12px; padding: 22px 24px; margin-top: 26px; }
.tc-truths h3 { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.tc-truth-lijn { color: #dfe6ea; font-size: 0.97rem; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.tc-truth-lijn:first-of-type { border-top: none; padding-top: 0; }
@media (max-width: 640px) { .tc-overall { flex-direction: column; align-items: flex-start; gap: 10px; } }

@media print {
  body.tc-printing { visibility: hidden; }
  body.tc-printing #trajectcheck, body.tc-printing #trajectcheck * { visibility: visible; }
  body.tc-printing #trajectcheck { position: absolute; left: 0; top: 0; width: 100%; }
  body.tc-printing .tc-btnrow, body.tc-printing .tc-progress { display: none; }
  body.tc-printing .tc-truth, body.tc-printing .tc-truths { background: var(--slate) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ===== Responsief ===== */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .lp-header .nav-cta { font-size: 0.82rem; padding: 8px 14px; white-space: nowrap; }
  .lp-header .nav-logo img { height: 32px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding: 56px 0; }
  .callscope-band { padding: 40px 28px; }
  nav ul {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0; padding: 12px 24px 24px;
    border-bottom: 1px solid #e8ecee; box-shadow: var(--shadow);
  }
  nav ul.open { display: flex; }
  nav li { width: 100%; padding: 10px 0; }
  .nav-toggle { display: block; }
}
