/* ===== Pro Plus Traffic — stylesheet ===== */
:root {
  --asphalt: #14161a;
  --asphalt-2: #1c1f26;
  --asphalt-3: #262a33;
  --line: #333845;
  --ink: #0e0f12;
  --white: #ffffff;
  --muted: #a3aab8;
  --muted-2: #c8cdd8;
  --orange: #d36c15;       /* brand orange, sampled from the logo */
  --orange-600: #b85c10;   /* darker, for hover */
  --ring: #f0a14e;         /* light orange focus ring (visible on dark) */
  --ok: #5fbf6a;           /* success state (semantic, not brand) */
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--asphalt);
  color: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.1; margin: 0 0 .4em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 4rem); text-transform: none; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--orange); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700;
  color: var(--orange); margin: 0 0 .6rem;
}

/* ===== Buttons ===== */
.btn {
  --bg: var(--orange); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--bg); color: var(--fg);
  padding: .85rem 1.5rem; border-radius: 999px; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }
.btn-primary { background: var(--orange); box-shadow: 0 10px 26px rgba(211,108,21,.32); }
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-emergency { background: var(--orange); color: #fff; font-weight: 800; }
.btn-emergency:hover { background: var(--orange-600); }
.btn-block { width: 100%; }
.ic { width: 18px; height: 18px; fill: currentColor; }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(16,18,22,.88); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 76px; }
.brand-logo { height: 38px; width: auto; }
.main-nav { display: flex; gap: 28px; margin-left: 12px; margin-right: auto; }
.main-nav a {
  font-weight: 600; font-size: .96rem; color: var(--muted-2); position: relative; padding: 4px 0;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--orange);
  transition: width .25s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  background: transparent; color: var(--muted-2); border: 0; cursor: pointer;
  padding: 6px 12px; font: inherit; font-weight: 700; font-size: .82rem; letter-spacing: .04em;
}
.lang-toggle button.is-active { background: var(--orange); color: #fff; }
.btn-phone { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); color: #fff; padding: .6rem 1.1rem; font-size: .92rem; }
.btn-phone:hover { background: rgba(255,255,255,.16); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
/* Slight blur improves text legibility; scale(1.06) hides the soft blurred edges */
.hero-video { width: 100%; height: 100%; object-fit: cover; filter: blur(5px); transform: scale(1.06); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,18,22,.55) 0%, rgba(16,18,22,.35) 35%, rgba(16,18,22,.9) 100%),
    linear-gradient(90deg, rgba(16,18,22,.7) 0%, rgba(16,18,22,0) 60%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 24px 90px; max-width: 820px; }
.hero h1 { margin-bottom: .35em; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted-2); max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; }
.badge { display: inline-flex; align-items: baseline; gap: 8px; color: var(--muted-2); font-size: .95rem; }
.badge strong { font-size: 1.5rem; color: var(--orange); font-weight: 800; letter-spacing: -.02em; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 16px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} 100%{opacity:0} }

/* ===== Sections ===== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-alt { background: var(--asphalt-2); }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-intro { color: var(--muted); font-size: 1.08rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--asphalt-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(211,108,21,.5); box-shadow: var(--shadow); }
.card-ic { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(211,108,21,.14); margin-bottom: 18px; }
.card-ic svg { width: 28px; height: 28px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; border-top: 3px solid var(--orange); background: var(--asphalt); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.step-num { font-size: 2.4rem; font-weight: 800; color: rgba(255,255,255,.12); letter-spacing: -.03em; display: block; margin-bottom: 6px; }
.step h3 { margin-bottom: .35em; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ===== Band (video) ===== */
.band { position: relative; padding: clamp(80px, 12vw, 160px) 0; overflow: hidden; }
.band-media { position: absolute; inset: 0; z-index: 0; }
.band-video, .band-img { width: 100%; height: 100%; object-fit: cover; }
.band-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,13,16,.92) 0%, rgba(12,13,16,.7) 50%, rgba(12,13,16,.45) 100%); }
.band-content { position: relative; z-index: 2; max-width: 640px; }
.band-lead { color: var(--muted-2); font-size: 1.1rem; }
.values { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
.values li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.values li::before { content: ""; width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/16px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/16px no-repeat; }

/* ===== Careers CTA ===== */
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-row > div:first-child { max-width: 680px; }
.cta-row .section-intro { margin-bottom: 0; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: grid; grid-template-columns: 130px 1fr; align-items: baseline; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.ci-label { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.contact-list a { color: #fff; font-weight: 600; }
.contact-list a:hover { color: var(--orange); }
.emergency { margin: 26px 0 18px; padding: 20px; border: 1px solid rgba(211,108,21,.4); border-radius: var(--radius-sm); background: rgba(211,108,21,.08); }
.emergency strong { display: block; margin-bottom: 12px; }
.kvk { color: var(--muted); font-size: .9rem; margin: 0; }

.contact-form { background: var(--asphalt-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label, .consent { font-size: .9rem; font-weight: 600; color: var(--muted-2); }
.field label { display: block; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; background: var(--asphalt); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; color: #fff; font: inherit; font-size: .98rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(211,108,21,.2); }
.field input.invalid, .field textarea.invalid { border-color: #ff5252; box-shadow: 0 0 0 3px rgba(255,82,82,.16); }
.field textarea { resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 18px; line-height: 1.45; }
.consent input { margin-top: 3px; accent-color: var(--orange); width: 18px; height: 18px; flex: 0 0 auto; }
.consent a { color: var(--orange); text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 14px 0 0; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: #ff6b6b; }

/* Map */
.map-embed { margin-top: clamp(32px, 5vw, 56px); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); line-height: 0; }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }
@media (max-width: 560px) { .map-embed iframe { height: 320px; } }

/* ===== Footer ===== */
.site-footer { background: var(--ink); padding: 60px 0 28px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand img { height: 38px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); margin: 0; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--muted-2); font-weight: 600; }
.footer-nav a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; color: var(--muted); }
.footer-contact a { color: var(--muted-2); font-weight: 600; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 22px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--orange); }

/* ===== Legal pages ===== */
.legal { padding: 130px 0 80px; max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-size: 1.4rem; margin-top: 2em; }
.legal p, .legal li { color: var(--muted-2); }
.legal a { color: var(--orange); text-decoration: underline; }
.legal .updated { color: var(--muted); font-size: .9rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .btn-phone span { display: none; }
  .btn-phone { padding: .6rem; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(16,18,22,.97); backdrop-filter: blur(12px); padding: 12px 24px 24px;
    margin: 0; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease); border-bottom: 1px solid var(--line);
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .hero-content { padding-top: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  .hero-video, .band-video { display: none; }
}
