/* ============================================================
   ACSI SERVICES — GLOBAL STYLESHEET
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --accent:       #CF7C11;
  --accent-dark:  #a86208;
  --accent-glow:  rgba(207,124,17,0.18);
  --accent-light: #f5ddb8;
  --dark:         #14110f;
  --dark-2:       #1e1a16;
  --mid:          #3a3229;
  --muted:        #7a6f65;
  --light:        #f7f4f0;
  --white:        #ffffff;
  --border:       #e8e2d9;
  --border-dark:  rgba(255,255,255,0.08);

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 56px rgba(0,0,0,0.14);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.18);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --transition: 0.22s var(--ease-out);

  --max-w:  1160px;
  --nav-h:  76px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6.5rem 0; }
.section-sm { padding: 4rem 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.025em; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--accent-light);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-dark .section-label {
  background: rgba(207,124,17,0.15);
  border: 1px solid rgba(207,124,17,0.3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.15s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(207,124,17,0.35); }

.btn-ghost { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-ghost:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.brand-link { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.main-nav a {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  font-weight: 400;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--dark); background: var(--light); }
.main-nav a[aria-current="page"] { color: var(--dark); font-weight: 500; }

.nav-cta { margin-left: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark-2); border-top: 1px solid var(--border-dark); }
.footer-inner { padding: 3.5rem 2rem 2rem; max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 0.3rem; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 0.15rem; align-items: center; }
.footer-nav a {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  padding: 0.35rem 0.7rem; border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.footer-nav a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero {
  background: var(--dark);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(207,124,17,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,124,17,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-orb {
  position: absolute; width: 400px; height: 400px;
  background: rgba(207,124,17,0.12); border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  top: -120px; right: -80px;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.page-hero .hero-badge {
  display: inline-block; font-size: 0.76rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em;
  background: rgba(207,124,17,0.14); border: 1px solid rgba(207,124,17,0.28);
  padding: 0.32rem 0.85rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white); font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 1.25rem;
}
.page-hero-title em { font-style: italic; color: var(--accent); }
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 580px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }

/* ===== CHECK ICON ===== */
.check-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; background: var(--accent); border-radius: 50%; flex-shrink: 0;
}
.check-icon::after {
  content: ''; width: 10px; height: 6px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* ===== YES / NO indicators ===== */
.yes, .no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
}
.yes { background: rgba(34,139,69,0.12); color: #228b45; }
.yes::before { content: '✓'; font-size: 13px; font-weight: 700; }
.no  { background: rgba(180,70,70,0.1);  color: #b44646; }
.no::before  { content: '✕'; font-size: 12px; font-weight: 700; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 8rem 0 7rem;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(207,124,17,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,124,17,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-orb-1 { width: 560px; height: 560px; background: rgba(207,124,17,0.16); top: -140px; right: -120px; }
.hero-orb-2 { width: 380px; height: 380px; background: rgba(207,124,17,0.09); bottom: -100px; left: -80px; }
.hero-inner { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
  display: inline-block; font-size: 0.76rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em;
  background: rgba(207,124,17,0.14); border: 1px solid rgba(207,124,17,0.3);
  padding: 0.35rem 0.95rem; border-radius: 100px; margin-bottom: 1.75rem;
  animation: fadeDown 0.6s var(--ease-out) both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 500; line-height: 1.08;
  color: var(--white); letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.62);
  max-width: 620px; margin-bottom: 2rem; line-height: 1.8;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}
.hero-benefits {
  display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2.75rem;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}
.hero-benefits li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.95rem; color: rgba(255,255,255,0.78);
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.4s both;
}

/* ===== VOORDELEN (HOME) ===== */
.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.voordeel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.voordeel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(207,124,17,0.3); }
.voordeel-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.25rem; flex-shrink: 0;
}
.voordeel-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--dark); margin-bottom: 0.6rem; }
.voordeel-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ===== STATS (HOME) ===== */
.stats-band {
  background: var(--dark);
  padding: 4rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500; color: var(--accent); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.5); }

/* ===== INTEGRATIES (HOME) ===== */
.integraties-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.integraties-text h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--dark); margin-bottom: 1.25rem; }
.integraties-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.integraties-visual { display: flex; flex-direction: column; gap: 1rem; }
.integratie-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.integratie-card:hover { box-shadow: var(--shadow-md); border-color: rgba(207,124,17,0.25); }
.integratie-logo {
  width: 48px; height: 48px; border-radius: 10px; background: var(--light);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.integratie-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 0.2rem; }
.integratie-card p  { font-size: 0.85rem; color: var(--muted); }

/* ===== DIGITALE ASSISTENTEN VOORDELEN (HOME) ===== */
.da-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.da-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: border-color var(--transition), background var(--transition);
}
.da-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(207,124,17,0.3); }
.da-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  color: var(--accent); opacity: 0.5; line-height: 1; flex-shrink: 0;
}
.da-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-weight: 500; margin-bottom: 0.5rem; }
.da-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.52); line-height: 1.7; }

/* ============================================================
   OVER ONS
   ============================================================ */
.overtuiging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch; /* 🔥 dit is belangrijk */
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo-wrapper img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.overtuiging-text h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1.25rem; }
.overtuiging-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }

.pillars { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.pillar  { display: flex; gap: 1.1rem; align-items: flex-start; }
.pillar-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent); flex-shrink: 0; margin-top: 2px;
}
.pillar strong { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.pillar p { font-size: 0.88rem; color: var(--muted); margin: 0; }

.meedenken-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.meedenken-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.meedenken-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mc-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--accent-light); margin-bottom: 1rem; line-height: 1; }
.meedenken-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 0.6rem; }
.meedenken-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* Instapproces (Werkwijze) */
.instap-steps { display: flex; flex-direction: column; gap: 0; }
.instap-step {
  display: flex; gap: 2rem; align-items: flex-start; position: relative; padding-bottom: 2.5rem;
}
.instap-step:last-child { padding-bottom: 0; }
.instap-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 48px; }
.instap-step-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; flex-shrink: 0;
}
.instap-step-line { width: 2px; flex: 1; background: var(--border); margin-top: 6px; min-height: 40px; }
.instap-step:last-child .instap-step-line { display: none; }
.instap-step-body { padding-top: 0.6rem; }
.instap-step-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.5rem; }
.instap-step-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

.schaal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.schaal-text h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1.25rem; color: var(--white); }
.schaal-text p  { color: rgba(255,255,255,0.58); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }
.schaal-items  { display: flex; flex-direction: column; gap: 1.1rem; }
.schaal-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark); border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.schaal-item:hover { border-color: rgba(207,124,17,0.35); }
.schaal-item-icon { font-size: 1.25rem; margin-top: 2px; }
.schaal-item h4 { font-family: var(--font-display); font-size: 1rem; color: var(--white); font-weight: 500; margin-bottom: 0.2rem; }
.schaal-item p  { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ============================================================
   PRODUCT
   ============================================================ */
.product-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.product-intro-text h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1.25rem; }
.product-intro-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }
.product-intro-visual { display: flex; flex-direction: column; gap: 1rem; }
.product-stat-card {
  background: var(--dark); color: var(--white);
  border-radius: var(--radius-md); padding: 2rem;
  border: 1px solid rgba(207,124,17,0.15);
}
.psc-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--accent); font-weight: 500; line-height: 1; margin-bottom: 0.4rem; }
.psc-label { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.walkthrough-steps { display: flex; flex-direction: column; gap: 2rem; }
.wt-step {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; align-items: flex-start;
}
.wt-step-num {
  width: 64px; height: 64px; background: var(--accent); color: var(--white);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; flex-shrink: 0;
}
.wt-step-body h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 0.6rem; padding-top: 0.8rem; }
.wt-step-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

.concurrentie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.conc-card {
  border-radius: var(--radius-md); padding: 2rem;
  border: 1px solid var(--border-dark);
}
.conc-card--them { background: rgba(255,255,255,0.03); }
.conc-card--us   { background: rgba(207,124,17,0.1); border-color: rgba(207,124,17,0.3); }
.conc-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 1rem; }
.conc-card--them h3 { color: rgba(255,255,255,0.5); }
.conc-card--us h3   { color: var(--accent); }
.conc-list { display: flex; flex-direction: column; gap: 0.75rem; }
.conc-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.conc-item span { font-size: 0.875rem; line-height: 1.6; }
.conc-card--them .conc-item span { color: rgba(255,255,255,0.45); }
.conc-card--us .conc-item span   { color: rgba(255,255,255,0.75); }
.ci-bad  { color: #b44646; font-size: 1.1rem; }
.ci-good { color: var(--accent); font-size: 1.1rem; }

/* ============================================================
   PAKKETTEN — PRICING
   ============================================================ */
.pakket-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start;
}
.pakket-card {
  position: relative; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 2.25rem;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pakket-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pakket-card--featured {
  border-color: var(--accent);
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(160deg, var(--accent), #e8a03d 80%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 0 5px rgba(207,124,17,0.07), var(--shadow-sm);
}
.pakket-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.25rem 1rem; border-radius: 100px; white-space: nowrap; text-transform: uppercase;
}
.pakket-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 0.2rem; }
.pakket-tagline { font-size: 0.82rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }

.pakket-price-block { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.pakket-price-monthly { font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.pakket-price-monthly span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pakket-price-onetime { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

.pakket-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.pakket-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; flex: 1; }
.pakket-features li {
  font-size: 0.88rem; color: var(--dark);
  padding-left: 1.5rem; position: relative; line-height: 1.5;
}
.pakket-features li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 5px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.pakket-card .btn { margin-top: auto; }

/* ===== PRICING TABLE ===== */
.pricing-table-wrap {
  overflow-x: auto; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--white);
  box-shadow: var(--shadow-sm); margin-bottom: 2rem;
}
.pricing-table { width: 100%; border-collapse: collapse; min-width: 580px; }
.pricing-table th {
  padding: 1rem 1.25rem; font-size: 0.85rem; font-weight: 600;
  color: var(--dark); background: var(--light); border-bottom: 1px solid var(--border);
  text-align: center; font-family: var(--font-body);
}
.pricing-table th.feature-col { text-align: left; }
.pricing-table .col-featured { background: rgba(207,124,17,0.07); }
.pricing-table td {
  padding: 0.85rem 1.25rem; font-size: 0.875rem; color: var(--dark);
  border-bottom: 1px solid var(--border); text-align: center;
}
.pricing-table td.feature-col { text-align: left; color: var(--mid); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(0,0,0,0.02); }
.pricing-cta { text-align: center; margin-top: 2rem; }

/* ===== QUALIFICATION WIZARD ===== */
.wizard-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.wizard-progress { margin-bottom: 2rem; }
.wizard-progress-bar {
  display: flex; align-items: center; gap: 0; margin-bottom: 0.75rem;
}
.wp-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; position: relative;
}
.wp-step::after {
  content: ''; position: absolute; top: 12px; left: 50%; right: -50%;
  height: 2px; background: var(--border); z-index: 0;
}
.wp-step:last-child::after { display: none; }
.wp-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--border); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--muted);
  position: relative; z-index: 1; transition: all 0.3s ease;
  flex-shrink: 0;
}
.wp-step.active .wp-dot  { background: var(--accent); border-color: var(--accent); color: var(--white); }
.wp-step.done .wp-dot    { background: var(--accent); border-color: var(--accent); color: var(--white); }
.wp-step.done .wp-dot::before { content: '✓'; font-size: 11px; }
.wp-step.done .wp-dot span { display: none; }
.wizard-progress-label { font-size: 0.8rem; color: var(--muted); text-align: center; }
.wizard-progress-label span { color: var(--accent); font-weight: 500; }

.wizard-slide { display: none; }
.wizard-slide.active {
  display: block;
  animation: slideIn 0.3s var(--ease-out) both;
}
.wizard-result { display: none; }
.wizard-result.active {
  display: block;
  animation: slideIn 0.4s var(--ease-out) both;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wizard-q  { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; }
.wizard-qs { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.75rem; }

.wizard-options { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.wizard-btn {
  padding: 0.7rem 1.3rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--white); color: var(--mid);
  font-family: var(--font-body); font-size: 0.9rem; cursor: pointer;
  transition: all var(--transition);
}
.wizard-btn:hover { border-color: var(--accent); color: var(--accent); }
.wizard-btn.selected { background: var(--accent); border-color: var(--accent); color: var(--white); }

.wizard-subfield { margin-bottom: 1.5rem; }
.wizard-subfield:last-child { margin-bottom: 0; }
.wizard-sub-q { font-size: 0.9rem; font-weight: 500; color: var(--dark); margin-bottom: 0.75rem; }

.wizard-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.wizard-step-indicator { font-size: 0.82rem; color: var(--muted); }

/* Result card (inside wizard) */
.wiz-result-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.5rem; }
.wiz-result-pakket {
  font-family: var(--font-display); font-size: 3rem; font-weight: 500;
  color: var(--dark); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.5rem;
}
.wiz-result-price { font-size: 1.05rem; color: var(--accent); font-weight: 500; margin-bottom: 0.75rem; }
.wiz-result-desc  { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.wiz-result-extras-title {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--mid); margin-bottom: 0.75rem; display: none;
}
.wiz-result-extras { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.extra-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; color: var(--mid); padding: 0.5rem 0.75rem;
  background: var(--light); border-radius: var(--radius-sm);
}
.extra-item::before { content: '+'; color: var(--accent); font-weight: 700; }
.wiz-result-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }

.contact-info-block { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: rgba(207,124,17,0.25); }
.cic-icon { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.cic-type  { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin-bottom: 0.25rem; }
.cic-value { font-size: 1.05rem; font-weight: 600; color: var(--dark); }
.cic-note  { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.cic-sub   { font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; line-height: 1.5; }

.contact-right { display: flex; flex-direction: column; gap: 2rem; }

.demo-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
}
.demo-block h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.75rem; }
.demo-block p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }

/* Phone CTA */
.phone-cta {
  position: relative; display: flex; align-items: center; gap: 1.25rem;
  background: var(--dark); color: var(--white);
  border-radius: var(--radius-md); padding: 1.75rem 2rem;
  text-decoration: none; transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.phone-cta::before {
  content: ''; position: absolute;
  inset: -3px; border-radius: calc(var(--radius-md) + 3px);
  background: linear-gradient(135deg, var(--accent), transparent 70%);
  opacity: 0.5; z-index: -1; border: 2px solid transparent;
  animation: pulseRing 2.5s ease-in-out infinite;
}
.phone-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(207,124,17,0.3); }
.phone-cta-icon { font-size: 2rem; flex-shrink: 0; }
.phone-cta-text {}
.phone-cta-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.25rem; }
.phone-cta-number { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--white); }
.phone-cta-24h {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem; border-radius: 100px; text-transform: uppercase;
}
.phone-cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

@keyframes pulseRing {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.012); }
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 0; cursor: pointer;
  font-size: 0.92rem; font-weight: 500; color: var(--dark);
  transition: color var(--transition);
  background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body);
}
.faq-q:hover { color: var(--accent); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--muted);
  transition: transform 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.faq-chevron::after { content: '▼'; font-size: 0.6rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 0 1.1rem 0; font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

.kvk-note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   LEGAL PAGES (algemenevoorwaarden / privacybeleid)
   ============================================================ */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.legal-meta {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-article,
.legal-section    { margin-bottom: 2.5rem; }
.legal-article h2,
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.art-num {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}
.legal-article p,
.legal-section p  { font-size: 0.925rem; color: var(--muted); line-height: 1.8; }
.legal-article p + p,
.legal-section p + p { margin-top: 0.75rem; }
.legal-divider    { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.legal-back:hover  { color: var(--accent); }
.legal-back::before { content: '←'; }
.rights-list       { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.rights-list li {
  font-size: 0.925rem;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.7;
}
.rights-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ============================================================
   INFO POPOVER
   ============================================================ */
#info-popover {
  position: fixed; max-width: 240px;
  background: var(--dark); color: rgba(255,255,255,0.9);
  font-size: 0.78rem; padding: 0.65rem 0.85rem;
  border-radius: 8px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateY(-4px); z-index: 9999; line-height: 1.5;
}
#info-popover.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.info-trigger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; font-size: 10px;
  border-radius: 50%; background: var(--mid); color: rgba(255,255,255,0.7);
  margin-left: 5px; cursor: pointer; border: none; font-family: var(--font-body);
  vertical-align: middle;
}
.info-trigger:hover { background: var(--accent); color: var(--white); }

/* ============================================================
   ANIMATIONS (keyframes)
   ============================================================ */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .voordelen-grid { grid-template-columns: repeat(2, 1fr); }
  .integraties-inner { gap: 3rem; }
  .overtuiging-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .meedenken-cards { grid-template-columns: 1fr 1fr; }
  .schaal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-intro { grid-template-columns: 1fr; gap: 3rem; }
  .concurrentie-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 860px) {
  .pakket-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .da-grid { grid-template-columns: 1fr; }
  .integraties-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 0.15rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.8rem 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 4.5rem 0; }
  .hero { padding: 6rem 0 5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .meedenken-cards { grid-template-columns: 1fr; }
  .voordelen-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-nav { justify-content: flex-start; }
  .wiz-result-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.2rem; }
  .wizard-wrap { padding: 1.75rem 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== INFO TOOLTIP ===== */
.info-trigger {
  margin-left: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-trigger::after {
  content: attr(data-info);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--dark);
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
  width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.info-trigger::before {
  content: "";
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--dark);
  opacity: 0;
  transition: all 0.2s ease;
}

.info-trigger:hover::after,
.info-trigger:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== OPTIONAL ICON ===== */
.optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: #f0a500;
}

.optional::before {
  content: "~";
  font-weight: 700;
  font-size: 14px;
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
  flex-shrink: 0;
}

.lang-btn svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.lang-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.lang-btn--active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207,124,17,0.2), 0 2px 8px rgba(0,0,0,0.15);
}

.lang-btn--inactive {
  opacity: 0.4;
  filter: grayscale(20%);
}

.lang-btn--inactive:hover {
  opacity: 0.75;
}

/* Op grote schermen: switch zit rechts naast de nav-cta,
   hamburger is toch al verborgen dus switch is de rechterrand */
@media (min-width: 769px) {
  .lang-switch {
    margin-left: 0.75rem;
  }
}

/* Op kleine schermen: hamburger krijgt geen margin-left:auto meer,
   de switch pakt die rol over en duwt alles naar rechts */
@media (max-width: 768px) {
  .hamburger {
    margin-left: 0;
  }
  .lang-switch {
    margin-left: auto;
    order: 99;
  }
}