/* ============================================
   ALMA INSIGHTS — Final Website
   Tokens & global styles
   ============================================ */

:root {
  --green-deep: #0D2B2B;
  --green-mid:  #1A3D3D;
  --green-soft: #2D4A4A;
  --green-light:#EDF2EF;
  --gold:       #C9A96E;
  --gold-light: #D9BD89;
  --gold-soft:  rgba(201,169,110,0.12);
  --cream:      #F7F4EF;
  --cream-warm: #F2EEE6;
  --white:      #FFFFFF;
  --text-body:  #2D4A4A;
  --text-muted: rgba(45,74,74,0.65);
  --text-faint: rgba(45,74,74,0.4);
  --line:       rgba(13,43,43,0.08);
  --line-strong:rgba(13,43,43,0.16);

  --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --pad-section-y: 140px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; }

/* ============================================
   Type scale
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-wrap: pretty;
}
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content:"";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ============================================
   Layout primitives
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
section { position: relative; }
.section-pad {
  padding: var(--pad-section-y) 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow {
  display:inline-block;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--green-deep); color: var(--cream); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(13,43,43,0.18); }
.btn-outline { background: transparent; color: var(--green-deep); border-color: var(--green-deep); }
.btn-outline:hover { background: var(--green-deep); color: var(--cream); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--green-deep); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(201,169,110,0.3); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(247,244,239,0.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-link:hover .arrow { transform: translateX(4px); }

/* ============================================
   Navigation
   ============================================ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav-wrap.scrolled {
  background: rgba(247,244,239,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 96px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--green-deep);
  position: relative;
  padding: 4px 0;
}
.nav-links a:not(.btn)::after {
  content:"";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}
.lang-toggle .lang { padding: 4px 6px; border-radius: 3px; transition: color .2s, background .2s; }
.lang-toggle .lang.active { color: var(--green-deep); font-weight: 600; }
.lang-sep { width: 1px; height: 12px; background: var(--line-strong); }

.nav-hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--green-deep); transition: transform .25s, opacity .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 96px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 24px 40px 32px;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-deep);
}
.mobile-nav a:last-child { border: none; }

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
}
/* aura canvas removed for cleaner, lighter hero */
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 40px 120px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-h1 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 24px 0 32px;
}
.hero-h1 .em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-body);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero glass card visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ffffff 0%, #fbf9f5 100%);
  box-shadow:
    0 24px 60px -28px rgba(13,43,43,0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}
.hero-frame::before {
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,169,110,0.05) 0%, transparent 60%);
}
.hero-mock {
  position: relative;
  z-index: 1;
  width: 88%;
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(13,43,43,0.22), 0 0 0 1px var(--line);
}
.hero-mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.hero-mock-title {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--green-deep);
}
.hero-mock-pill {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 8px;
  border-radius: 100px;
}
.hero-mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  align-items: center;
  font-size: 12px;
}
.hero-mock-row:last-child { border-bottom:none; }
.hero-mock-row .lbl { color: var(--text-muted); }
.hero-mock-row .val { color: var(--green-deep); font-weight: 600; font-family: var(--serif); font-size: 14px; }
.hero-mock-row .delta { font-size: 10px; color: var(--gold); margin-left:6px; }
.hero-mock-bar {
  margin-top: 18px; height: 70px;
  background:
    linear-gradient(to top, transparent 60%, var(--gold-soft) 60%, transparent 60.5%),
    linear-gradient(to top, transparent 0%, transparent 100%);
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.hero-mock-bar svg { width: 100%; height: 100%; display: block; }

/* Stat strip below hero */
.hero-strip {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13,43,43,0.02);
}
.hero-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.strip-stat .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.strip-stat .num em { font-style: italic; color: var(--gold); }
.strip-stat .lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   PROPOSITIE
   ============================================ */
#propositie { background: var(--white); }
.prop-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.prop-head h2 {
  font-size: clamp(34px, 4vw, 56px);
}
.prop-head p {
  font-size: 17px;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.prop-card {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--line);
  position: relative;
  transition: padding-left .35s ease;
}
.prop-card:not(:first-child) { padding-left: 40px; }
.prop-card:last-child { border-right: none; }
.prop-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.prop-num::after {
  content:"";
  flex: 1; height: 1px; background: var(--line);
}
.prop-card h3 {
  font-size: 26px;
  font-style: italic;
  margin-bottom: 18px;
}
.prop-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 300;
}
.prop-quote {
  margin-top: 80px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--green-deep);
  line-height: 1.35;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.prop-quote span { color: var(--gold); }

/* ============================================
   PRODUCT — dashboard mockup
   ============================================ */
#product { background: var(--green-light); }
.product-head { text-align: center; margin-bottom: 72px; }
.product-head h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  max-width: 720px;
  margin: 16px auto 20px;
}
.product-head p {
  font-size: 17px;
  color: var(--text-body);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Two static module blocks (Data Entry + Data Dashboarding) */
.modules-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
}
.module-block {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.module-block.reverse { grid-template-columns: 1.4fr 0.85fr; }
.module-block.reverse .module-meta { order: 2; }
.module-block.reverse .module-shot { order: 1; }
.module-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.module-meta h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-bottom: 16px;
  line-height: 1.1;
}
.module-meta p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
}
.module-feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module-feat li {
  font-size: 13px;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
}
.module-feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.module-shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(13,43,43,0.28),
    0 0 0 1px var(--line);
}
.module-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.dashboard-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow:
    0 40px 100px -30px rgba(13,43,43,0.25),
    0 0 0 1px var(--line);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.dash-bar {
  height: 38px;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #E0857B; }
.dash-dot.y { background: #DDB867; }
.dash-dot.g { background: #7FAE85; }
.dash-url {
  margin-left: 16px;
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-faint);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.dash-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 540px;
}
.dash-side {
  background: var(--cream);
  border-right: 1px solid var(--line);
  padding: 24px 18px;
}
.dash-side-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0 12px 12px;
}
.dash-side ul { list-style: none; }
.dash-side li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-body);
  border-radius: 6px;
  cursor: pointer;
}
.dash-side li:hover { background: rgba(13,43,43,0.04); }
.dash-side li.active { background: var(--green-deep); color: var(--cream); }
.dash-side li.active .ico { color: var(--gold); }
.dash-side li .ico {
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.dash-main { padding: 32px; }
.dash-main-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.dash-main-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green-deep);
}
.dash-main-title em { color: var(--gold); }
.dash-period {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.kpi-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px;
  border-left: 2px solid var(--gold);
}
.kpi-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.kpi-value {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.kpi-delta {
  font-size: 11px;
  color: #4D8B6A;
  margin-top: 4px;
}
.kpi-delta.neg { color: #C77068; }

.chart-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
.chart-box {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px;
  min-height: 200px;
}
.chart-box-title {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.chart-box-title em { color: var(--gold); }
.chart-svg { width: 100%; height: 160px; display: block; }

.dash-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.dash-list li {
  display:grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center;
  padding: 8px 12px; border-radius: 6px; background: var(--white);
  font-size: 12px;
}
.dash-list .name { color: var(--green-deep); font-weight: 500; }
.dash-list .pct { font-family: var(--serif); font-size: 14px; color: var(--green-deep); }
.dash-list .tag { font-size: 9px; padding: 3px 8px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.dash-list .tag.up { background: rgba(127,174,133,0.15); color: #5A8A66; }
.dash-list .tag.flat { background: rgba(13,43,43,0.05); color: var(--text-muted); }

/* ============================================
   PROCESS
   ============================================ */
#process-section { background: var(--cream); }
.process-head { text-align: center; margin-bottom: 80px; }
.process-head h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  max-width: 680px;
  margin: 16px auto 0;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-flow::before {
  content:"";
  position: absolute;
  top: 56px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) 50%, var(--gold) 100%);
  opacity: 0.3;
}
.process-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px 36px;
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(13,43,43,0.04);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  z-index: 1;
}
.process-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 var(--gold), 0 12px 40px rgba(13,43,43,0.1);
}
.process-step-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.process-block h3 {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 14px;
}
.process-block p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 300;
}
.process-block .feat {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.process-block .feat span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.process-block .feat span::before {
  content:""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
}

/* ============================================
   TIJDWINST
   ============================================ */
#tijdwinst { background: var(--green-light); }
.tijdwinst-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.tijdwinst-head h2 {
  font-size: clamp(34px, 4vw, 56px);
  max-width: 540px;
}
.tijdwinst-head p {
  font-size: 16px;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
}
.savings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line);
}
.savings-table thead th {
  padding: 18px 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}
.savings-table thead th:last-child { text-align: center; width: 160px; }
.savings-table tbody tr { transition: background .18s ease; }
.savings-table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--line); }
.savings-table tbody tr:hover { background: rgba(13,43,43,0.015); }
.savings-table td {
  padding: 26px 24px;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
}
.row-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 4px;
  font-style: italic;
}
.row-subtitle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.col-now { color: var(--text-muted); position: relative; }
.col-now::before {
  content:"−";
  display: inline-block;
  margin-right: 8px;
  color: rgba(180,60,60,0.5);
  font-weight: 600;
}
.col-alma::before {
  content:"+";
  display: inline-block;
  margin-right: 8px;
  color: #4D8B6A;
  font-weight: 600;
}
.td-tijdwinst {
  vertical-align: middle !important;
  text-align: center;
  background: var(--green-deep);
}
.tw-pill {
  display: inline-block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.tw-days {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}
.tw-days span { font-size: 13px; font-style: normal; }
.tw-period {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.55);
}
.savings-footer {
  margin-top: 40px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--green-deep);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.savings-footer span { color: var(--gold); }

@media (max-width: 780px) {
  .savings-table thead { display: none; }
  .savings-table tbody tr { display: block; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 16px; }
  .savings-table tbody tr:not(:last-child) td { border-bottom: 1px dashed var(--line); }
  .savings-table td { display: block; padding: 12px 0; }
  .td-tijdwinst { background: transparent; padding: 16px 0; text-align: left; }
  .tw-pill { background: var(--green-deep); }
}

/* ============================================
   AI section
   ============================================ */
#ai {
  background: #0A1F1F;
  color: var(--cream);
  overflow: hidden;
}
#neural-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.6; pointer-events: none; }
.ai-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--pad-section-y) 40px;
}
.ai-head {
  text-align: center;
  margin-bottom: 80px;
}
.ai-head h2 {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.1;
  max-width: 820px;
  margin: 16px auto 24px;
}
.ai-head p {
  font-size: 17px;
  color: rgba(247,244,239,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
/* AI buckets — 4-column grid (Recognition / Validation / Reporting / Intelligence) */
.ai-buckets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ai-bucket {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,169,110,0.18);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 28px 24px 26px;
  transition: background .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.ai-bucket:hover { background: rgba(255,255,255,0.05); }
.ai-bucket-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 10px;
  display: block;
}
.ai-bucket h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 22px;
  line-height: 1.15;
  border-bottom: 1px solid rgba(201,169,110,0.22);
  padding-bottom: 18px;
}
.ai-feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ai-feat li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-feat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.ai-feat-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(247,244,239,0.5);
  font-weight: 300;
}

.ai-mcp {
  margin-top: 36px;
  padding: 24px 32px;
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ai-mcp-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.ai-mcp p {
  font-size: 14px;
  color: rgba(247,244,239,0.75);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.ai-quote {
  margin-top: 80px;
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.ai-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.45;
}

/* ============================================
   SECURITY
   ============================================ */
#security { background: var(--white); }
.security-head { margin-bottom: 56px; max-width: 640px; }
.security-head h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  margin-top: 16px;
}
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.sec-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  background: var(--cream);
  transition: border-color .25s ease, transform .25s ease;
}
.sec-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.sec-card-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.sec-card h3 {
  font-size: 19px;
  font-style: italic;
  margin-bottom: 10px;
}
.sec-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
}
.sec-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 32px;
  background: var(--cream-warm);
  border-radius: var(--radius-md);
}
.sec-feature {
  display: flex; flex-direction: column; gap: 4px;
}
.sec-feature .lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.sec-feature .val {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--green-deep);
  font-style: italic;
}

/* ============================================
   TEAM
   ============================================ */
#team { background: var(--cream); }
.team-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.team-head h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  margin-top: 16px;
  max-width: 540px;
}
.team-head p {
  font-size: 16px;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
}
.exp-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 60px;
  overflow: hidden;
}
.exp-strip-track {
  display: flex;
  align-items: center;
  height: 76px;
  white-space: nowrap;
  animation: expTicker 38s linear infinite;
}
.exp-item {
  display: inline-flex;
  align-items: center;
  padding: 0 72px;
  gap: 16px;
  flex-shrink: 0;
}
.exp-item .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--green-deep);
}
.exp-item .dot {
  color: var(--gold);
  font-size: 8px;
  line-height: 1;
  position: relative;
  top: 1px;
}
@keyframes expTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,43,43,0.08);
}
.team-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  padding: 3px;
  margin-bottom: 18px;
  background: var(--white);
}
.team-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.team-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
}

/* ============================================
   FAQ
   ============================================ */
#faq { background: var(--white); }
.faq-head {
  text-align: center;
  margin-bottom: 56px;
}
.faq-head h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  margin-top: 16px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--green-deep);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary .plus {
  width: 24px; height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, border-color .2s ease;
  font-size: 14px;
  color: var(--gold);
  font-style: normal;
}
.faq-item[open] summary .plus { transform: rotate(45deg); border-color: var(--gold); }
.faq-item .answer {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 300;
  max-width: 680px;
}

/* ============================================
   CONTACT (CTA)
   ============================================ */
#contact { background: var(--green-deep); color: var(--cream); position: relative; overflow: hidden; }
#contact::before {
  content:"";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}
#contact .container { position: relative; z-index: 1; }
.contact-head { text-align: center; margin-bottom: 64px; }
.contact-head .eyebrow { color: var(--gold); }
.contact-head .eyebrow::before { background: var(--gold); }
.contact-head h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--cream);
  margin: 16px auto 20px;
  max-width: 880px;
}
.contact-head h2 em { color: var(--gold); }
.contact-head p {
  font-size: 17px;
  color: rgba(247,244,239,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: rgba(247,244,239,0.04);
  border: 1px solid rgba(247,244,239,0.08);
  border-radius: var(--radius-md);
  padding: 40px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.5);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(247,244,239,0.06);
  border: 1px solid rgba(247,244,239,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  transition: border-color .25s ease, background .25s ease;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(247,244,239,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(247,244,239,0.3);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row .form-group { margin-bottom: 22px; }
.form-check {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.form-check input { width: 16px; height: 16px; accent-color: var(--gold); }
.form-check label {
  font-size: 13px;
  color: rgba(247,244,239,0.6);
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 13px;
  text-align: center;
}
.form-success.show { display: block; }

.contact-side .contact-card {
  background: rgba(247,244,239,0.04);
  border: 1px solid rgba(247,244,239,0.08);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin-bottom: 16px;
}
.contact-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 4px;
}
.contact-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: rgba(247,244,239,0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(247,244,239,0.06);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail svg { color: var(--gold); flex-shrink: 0; }
.contact-detail a { color: rgba(247,244,239,0.7); }
.contact-detail a:hover { color: var(--gold); }
.contact-cal {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.contact-cal h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
}
.contact-cal p {
  font-size: 13px;
  color: rgba(247,244,239,0.6);
  margin-bottom: 18px;
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #081a1a;
  color: rgba(247,244,239,0.5);
  padding: 60px 0 36px;
  border-top: 1px solid rgba(247,244,239,0.05);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 80px; opacity: 0.85; margin-bottom: 16px; }
.footer-brand p, .footer-tagline {
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  font-style: normal;
  color: var(--gold);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 13px;
  color: rgba(247,244,239,0.55);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(247,244,239,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(247,244,239,0.35);
}
.footer-bottom a { color: rgba(247,244,239,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { aspect-ratio: 16/10; max-width: 580px; }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .prop-grid { grid-template-columns: 1fr; }
  .prop-card { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0 !important; }
  .prop-card:last-child { border-bottom: none; }
  .process-flow { grid-template-columns: 1fr; }
  .process-flow::before { display: none; }
  .ai-buckets { grid-template-columns: repeat(2, 1fr); }
  .module-block, .module-block.reverse { grid-template-columns: 1fr; gap: 32px; }
  .module-block.reverse .module-meta { order: 0; }
  .module-block.reverse .module-shot { order: 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .sec-bottom { grid-template-columns: repeat(2, 1fr); }
  .dash-side { display: none; }
  .dash-body { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .chart-row { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  :root { --pad-section-y: 96px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .prop-head, .tijdwinst-head, .team-head { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(40px, 9vw, 64px); }
}
@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 14px 24px; }
  .hero-inner { padding: 60px 24px 80px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}
