/* ==========================================================================
   Got Your Six — hoofd-stylesheet
   Merk: Managed IT / Connectivity / Cloud / Telecom voor het MKB
   Kleuren afgeleid uit het logo:
     - Antraciet (tekst):  #333333
     - Oranje (chevron X): #F39200
   Wil je de merkkleuren aanpassen? Doe dat op ÉÉN plek hieronder (:root).
   ========================================================================== */

:root {
  /* Merkkleuren */
  --ink:            #2b2b2b;   /* hoofd tekstkleur / donker */
  --ink-soft:       #4a4a4a;
  --charcoal:       #333333;   /* logo-antraciet */
  --charcoal-dark:  #232323;
  --accent:         #f39200;   /* logo-oranje */
  --accent-dark:    #d97e00;
  --accent-soft:    #fff4e3;   /* zachte oranje tint voor vlakken */

  /* Neutraal */
  --white:          #ffffff;
  --bg:             #ffffff;
  --bg-alt:         #f6f7f9;   /* lichte sectie-achtergrond */
  --bg-charcoal:    #262626;   /* donkere sectie / footer */
  --line:           #e7e9ee;   /* randen */
  --muted:          #6b7280;   /* subtiele tekst */

  /* Typografie */
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Maatvoering */
  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(20,23,28,.06);
  --shadow:    0 12px 34px rgba(20,23,28,.10);
  --shadow-lg: 0 24px 60px rgba(20,23,28,.14);
  --t: .22s ease;
}

/* ---------- Reset / basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent-dark); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--charcoal); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.1em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--bg-alt); }
.section--charcoal { background: var(--bg-charcoal); color: #e9eaed; }
.section--charcoal h2, .section--charcoal h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--accent-dark);
  margin-bottom: .8rem;
}
.eyebrow::before { content: "»"; color: var(--accent); font-weight: 700; }
.section--charcoal .eyebrow { color: var(--accent); }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .82em 1.5em; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: all var(--t); white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(243,146,0,.32); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--charcoal); color: var(--charcoal); }
.btn--dark { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn--dark:hover { background: #000; border-color: #000; color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--charcoal); }
.btn--lg { font-size: 1.06rem; padding: .95em 1.8em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 92px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: auto; }
.brand .brand-fallback { font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; color: var(--charcoal); letter-spacing: .02em; line-height: 1; }
.brand .brand-fallback b { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  font-family: var(--font-head); font-weight: 500; font-size: .98rem; color: var(--charcoal);
  padding: .55em .85em; border-radius: 8px;
}
.main-nav a:hover { color: var(--accent-dark); background: var(--bg-alt); }
.main-nav a.active { color: var(--accent-dark); }
/* Onderstreping absoluut gepositioneerd: verandert de hoogte niet (geen "spring") en
   alleen op de directe menu-items, zodat het dropdown-pijltje van "Diensten" blijft staan. */
.main-nav > a.active::after {
  content: ""; position: absolute; left: .85em; right: .85em; bottom: 4px;
  height: 2px; background: var(--accent); border-radius: 2px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: .7em; color: var(--muted); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all var(--t);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: .6em .8em; border-radius: 8px; font-weight: 500; }
.dropdown a:hover { background: var(--accent-soft); }
.dropdown a::after { display: none; }
.dropdown small { display: block; color: var(--muted); font-weight: 400; font-size: .8rem; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { font-family: var(--font-head); font-weight: 600; color: var(--charcoal); white-space: nowrap; }
.header-phone:hover { color: var(--accent-dark); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--charcoal); border-radius: 2px; margin: 5px 0; transition: all var(--t); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 480px at 88% -10%, rgba(243,146,0,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.hero::before {
  /* chevron-motief rechtsonder */
  content: ""; position: absolute; right: -60px; bottom: -80px; width: 420px; height: 420px;
  background-image: repeating-linear-gradient(135deg, rgba(243,146,0,.10) 0 22px, transparent 22px 44px);
  transform: skewX(-8deg); pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 86px 0; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { font-size: 1.22rem; max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted); font-size: .95rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5em; }
.hero-trust span::before { content: "✓"; color: var(--accent); font-weight: 700; }

.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 28px; position: relative;
}
.hero-card h3 { display: flex; align-items: center; gap: 10px; }
.hero-card .pill { display: inline-block; background: var(--accent-soft); color: var(--accent-dark); font-family: var(--font-head); font-weight: 600; font-size: .78rem; padding: .3em .8em; border-radius: 999px; }
.hero-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.hero-card li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.hero-card li:first-child { border-top: 0; }
.hero-card .ic { flex: 0 0 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); display: grid; place-items: center; }
.hero-card .ic svg { width: 22px; height: 22px; stroke: var(--accent-dark); }
.hero-card strong { display: block; color: var(--charcoal); font-family: var(--font-head); }
.hero-card small { color: var(--muted); }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dfe2e9; }
.card .card-ic { width: 54px; height: 54px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 18px; }
.card .card-ic svg { width: 28px; height: 28px; stroke: var(--accent-dark); fill: none; stroke-width: 1.8; }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--ink-soft); margin-bottom: 1em; font-size: .98rem; }
.card .card-link { font-family: var(--font-head); font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: .35em; }
.card .card-link::after { content: "→"; transition: transform var(--t); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Feature list met chevrons */
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding: 8px 0 8px 34px; }
.check-list li::before {
  content: "»"; position: absolute; left: 4px; top: 7px; color: var(--accent);
  font-weight: 800; font-size: 1.1em;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--accent); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .95rem; margin-top: 6px; }
.section--charcoal .stat .lbl { color: #b9bcc4; }

/* ---------- Split (tekst + lijst) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }

/* ---------- Steps / werkwijze ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.steps--2col { grid-template-columns: repeat(2, 1fr); }
.stats--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .steps--2col { grid-template-columns: 1fr; } }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.step .n { counter-increment: step; width: 52px; height: 52px; border-radius: 12px; background: var(--charcoal); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; }
.step .n::before { content: counter(step); }
.step h3 { margin-bottom: .25em; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--charcoal); color: #fff; border-radius: 22px; padding: 54px 48px; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(243,146,0,.16) 0 20px, transparent 20px 40px); opacity: .5; pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfd2d8; max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 24px; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote p { font-size: 1.05rem; color: var(--ink); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote .who b { display: block; color: var(--charcoal); font-family: var(--font-head); font-size: .95rem; }
.quote .who small { color: var(--muted); }

/* ---------- Page hero (binnenpagina's) ---------- */
.page-hero { background: linear-gradient(180deg, var(--bg-alt), #fff); border-bottom: 1px solid var(--line); padding: 56px 0 48px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -40px; top: -40px; width: 260px; height: 260px; background-image: repeating-linear-gradient(135deg, rgba(243,146,0,.10) 0 18px, transparent 18px 36px); transform: skewX(-8deg); }
.page-hero .container { position: relative; }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-dark); }
.page-hero h1 { margin-bottom: .3em; }
.page-hero p { max-width: 60ch; color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Prose (tekstpagina) ---------- */
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.2em; }
.prose ul { padding-left: 0; }

/* ---------- FAQ ---------- */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--charcoal); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { padding: 16px 0 6px; margin: 0; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .ic { flex: 0 0 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; }
.contact-item .ic svg { width: 24px; height: 24px; stroke: var(--accent-dark); fill: none; stroke-width: 1.8; }
.contact-item b { font-family: var(--font-head); color: var(--charcoal); }
.contact-item a { font-size: 1.1rem; }
.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-dark); color: #b9bcc4; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1em; }
.site-footer a { color: #b9bcc4; }
.site-footer a:hover { color: var(--accent); }
.footer-brand img { height: 54px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand .brand-fallback { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.footer-brand .brand-fallback b { color: var(--accent); }
.footer-brand p { max-width: 34ch; font-size: .95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6em; }
.footer-contact { list-style: none; padding: 0; margin: 0; font-size: .95rem; }
.footer-contact li { margin-bottom: .6em; display: flex; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .86rem; color: #8b8f98; }
.footer-bottom a { color: #8b8f98; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
/* Visueel verborgen, wel leesbaar voor screenreaders (en telt mee voor headingstructuur) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 0; }
  .hero-card { order: 2; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 92px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 18px 22px;
    gap: 2px; transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--shadow);
    max-height: calc(100vh - 92px); overflow-y: auto;
  }
  .nav-open .main-nav { transform: translateY(0); }
  .main-nav a { padding: .8em .6em; font-size: 1.05rem; border-radius: 8px; }
  .main-nav a.active::after { display: none; }
  .has-dropdown > a::after { content: ""; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--accent-soft); border-radius: 0; margin: 2px 0 6px 12px; padding: 0; }
  .dropdown a { padding: .6em .8em; }
  .dropdown small { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  body { font-size: 16px; }
}

/* Toegankelijkheid */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto; } }
