/* ===========================================================================
   laadpassen.be — site styles (built on MobilityPlus tokens)
   =========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* reset slide-scale type vars to web scale */
:root {
  --t-display: 64px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--mp-navy); color: #fff; }
.btn-primary:hover { background: var(--mp-navy-deep); box-shadow: var(--sh-2); transform: translateY(-1px); }
.btn-lime { background: var(--mp-lime); color: var(--mp-ink); }
.btn-lime:hover { background: var(--mp-lime-deep); box-shadow: 0 8px 24px rgba(184,217,60,.35); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--mp-navy); border-color: var(--mp-n200); }
.btn-ghost:hover { border-color: var(--mp-navy); background: var(--mp-n50); }
.btn-on-dark { background: var(--mp-lime); color: var(--mp-ink); }
.btn-on-dark:hover { background: var(--mp-lime-deep); transform: translateY(-1px); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 18px 34px; font-size: 17px; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--mp-teal-deep);
  display: inline-block;
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.05; letter-spacing: -.025em;
  color: var(--mp-navy); margin: 14px 0 0;
}
.section-lead { font-size: 19px; color: var(--fg-2); margin: 18px 0 0; max-width: 620px; }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

section { padding: 96px 0; }
.section-head { margin-bottom: 56px; }

/* ===========================================================================
   HEADER
   =========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mp-n100);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.header-logo { height: 30px; width: auto; }
.header-logo-btn { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; }
.header-nav { display: flex; align-items: center; gap: 30px; margin-left: 14px; }
.header-nav a {
  text-decoration: none; color: var(--fg-1); font-weight: 500; font-size: 15.5px;
  position: relative; padding: 4px 0;
}
.header-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--mp-teal); transition: width .22s var(--ease);
}
.header-nav a:hover { color: var(--mp-navy); }
.header-nav a:hover::after { width: 100%; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* language switcher */
.lang-switch { display: flex; align-items: center; background: var(--mp-n100); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: none; background: none; cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: 13px; color: var(--fg-2); padding: 6px 11px; border-radius: 999px;
  transition: all .16s var(--ease); letter-spacing: .02em;
}
.lang-switch button.active { background: #fff; color: var(--mp-navy); box-shadow: var(--sh-1); }
.lang-switch button:hover:not(.active) { color: var(--mp-navy); }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-navy); color: #fff; padding: 104px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/hexagon-pattern-light.png') no-repeat right -120px top -80px;
  background-size: 720px; opacity: .06; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  right: -120px; top: -120px; pointer-events: none;
  background: radial-gradient(circle, rgba(25,189,207,.45) 0%, rgba(25,189,207,0) 68%);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .05em;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 16px; border-radius: 999px; color: #cfe9ee;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mp-lime); box-shadow: 0 0 0 4px rgba(217,246,92,.22); }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 5.6vw, 68px); line-height: 1.02; letter-spacing: -.03em;
  margin: 26px 0 0; color: #fff;
}
.hero h1 .accent { color: var(--mp-teal-soft); }
.hero-lead { font-size: 20px; line-height: 1.55; color: #c5d2e6; margin: 26px 0 0; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 54px; }
.hero-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 20px 24px; min-width: 168px; flex: 1;
}
.hero-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--mp-lime); letter-spacing: -.02em; }
.hero-stat .l { font-size: 13.5px; color: #aebbd0; margin-top: 4px; }

/* ===========================================================================
   LOGO / NETWORK STRIP
   =========================================================================== */
.strip { background: var(--mp-cream); padding: 34px 0; }
.strip-inner { display: flex; align-items: center; gap: 26px; justify-content: center; text-align: center; }
.strip-text { font-size: 16px; color: var(--mp-navy-deep); font-weight: 500; max-width: 760px; }
.strip-text b { font-weight: 700; }

/* ===========================================================================
   BENEFITS
   =========================================================================== */
.benefits { background: var(--bg-1); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit-card {
  background: #fff; border: 1px solid var(--mp-n100); border-radius: var(--r-lg);
  padding: 30px 26px; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.benefit-icon { width: 56px; height: 56px; margin-bottom: 20px; }
.benefit-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--mp-navy); margin: 0 0 10px; letter-spacing: -.01em; }
.benefit-card p { font-size: 15px; color: var(--fg-2); margin: 0; line-height: 1.55; }

/* ===========================================================================
   HOW IT WORKS
   =========================================================================== */
.how { background: var(--mp-navy-deep); color: #fff; position: relative; overflow: hidden; }
.how::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/hexagon-pattern-light.png') no-repeat left -150px bottom -120px;
  background-size: 640px; opacity: .05;
}
.how .eyebrow { color: var(--mp-teal-soft); }
.how .section-title { color: #fff; }
.how-toggle {
  display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.08);
  border-radius: 999px; padding: 4px; margin-bottom: 34px; position: relative; z-index: 1;
}
.how-toggle button {
  display: inline-flex; align-items: center; gap: 8px; border: none; background: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; color: #b6c2d6;
  padding: 9px 18px; border-radius: 999px; transition: all .16s var(--ease);
}
.how-toggle button svg { width: 16px; height: 16px; }
.how-toggle button.active { background: var(--mp-lime); color: var(--mp-ink); }
.how-toggle button:hover:not(.active) { color: #fff; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 1; }
.how-step {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 34px 30px;
}
.how-step .n {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--mp-ink); background: var(--mp-lime); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.how-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 0 0 10px; color: #fff; letter-spacing: -.01em; }
.how-step p { font-size: 15px; color: #b6c2d6; margin: 0; line-height: 1.55; }

/* ===========================================================================
   PRICING
   =========================================================================== */
.pricing { background: var(--bg-2); }
.pricing-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pricing-card {
  background: #fff; border-radius: var(--r-xl); padding: 44px 42px;
  box-shadow: var(--sh-3); border: 1px solid var(--mp-n100); position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--grad-dawn);
}
.pricing-card .plan-label { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--mp-teal-deep); }
.pricing-card .price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 4px; }
.pricing-card .price .amount { font-family: var(--font-display); font-weight: 700; font-size: 64px; color: var(--mp-navy); letter-spacing: -.03em; line-height: 1; }
.pricing-card .price-sub { font-size: 15px; color: var(--fg-2); margin-bottom: 28px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 15px; }
.feature-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; color: var(--fg-1); line-height: 1.45; }
.feature-list .check {
  flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--mp-teal);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.feature-list .check svg { width: 12px; height: 12px; stroke: #fff; }
.pricing-note { font-size: 13px; color: var(--fg-3); margin: 16px 0 0; text-align: center; }
.pricing-note a { color: var(--mp-teal-deep); }
.pricing-side .section-title { margin-top: 14px; }
.pricing-badge-row { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.pricing-badge {
  display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--mp-n100);
  border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--sh-1);
}
.pricing-badge .pb-v { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--mp-navy); }
.pricing-badge .pb-l { font-size: 13px; color: var(--fg-2); }

/* ===========================================================================
   FAQ
   =========================================================================== */
.faq { background: var(--bg-2); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--mp-n100); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--mp-navy);
  padding: 24px 44px 24px 0; position: relative; letter-spacing: -.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { flex: none; width: 22px; height: 22px; transition: transform .25s var(--ease); color: var(--mp-teal-deep); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 0 24px; font-size: 16px; color: var(--fg-2); line-height: 1.6; max-width: 680px; }

/* ===========================================================================
   FINAL CTA
   =========================================================================== */
.final-cta { background: var(--grad-brand); color: #fff; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/hexagon-pattern-light.png') no-repeat center; background-size: cover; opacity: .07;
}
.final-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.final-cta h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4.5vw, 50px); letter-spacing: -.025em; margin: 0; color: #fff; }
.final-cta p { font-size: 19px; color: rgba(255,255,255,.92); margin: 18px auto 34px; max-width: 540px; }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.site-footer { background: var(--mp-ink); color: #fff; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 30px; margin-bottom: 18px; }
.footer-tagline { color: #9fb0c9; font-size: 15px; max-width: 320px; line-height: 1.55; }
.footer-col h4 { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer-col p, .footer-col a { color: #9fb0c9; font-size: 15px; line-height: 1.7; text-decoration: none; }
.footer-col a:hover { color: var(--mp-teal-soft); }
.footer-col .block { margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: #6f7f98;
}

/* ===========================================================================
   ORDER FLOW
   =========================================================================== */
.order-page { min-height: 100vh; background: var(--bg-2); }
.order-topbar {
  background: #fff; border-bottom: 1px solid var(--mp-n100); position: sticky; top: 0; z-index: 30;
}
.order-topbar-inner { display: flex; align-items: center; height: 68px; gap: 20px; }
.order-back { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; cursor: pointer; color: var(--fg-2); font-family: var(--font-body); font-weight: 500; font-size: 15px; padding: 8px 0; }
.order-back:hover { color: var(--mp-navy); }
.order-back svg { width: 17px; height: 17px; }
.order-topbar .header-logo { height: 26px; margin-left: 6px; }
.order-topbar .header-right { margin-left: auto; }

.order-body { max-width: 860px; margin: 0 auto; padding: 48px 24px 96px; }
.order-head { margin-bottom: 30px; }
.order-head h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px,3.6vw,40px); color: var(--mp-navy); letter-spacing: -.025em; margin: 0; }
.order-head p { font-size: 17px; color: var(--fg-2); margin: 12px 0 0; max-width: 600px; }

/* stepper */
.stepper { display: flex; align-items: center; gap: 0; margin: 30px 0 36px; }
.stepper-item { display: flex; align-items: center; gap: 12px; }
.stepper-dot {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; flex: none;
  background: #fff; border: 2px solid var(--mp-n200); color: var(--fg-3); transition: all .2s var(--ease);
}
.stepper-item.active .stepper-dot { background: var(--mp-navy); border-color: var(--mp-navy); color: #fff; }
.stepper-item.done .stepper-dot { background: var(--mp-teal); border-color: var(--mp-teal); color: #fff; }
.stepper-label { font-size: 14px; font-weight: 600; color: var(--fg-3); }
.stepper-item.active .stepper-label, .stepper-item.done .stepper-label { color: var(--mp-navy); }
.stepper-line { height: 2px; width: 38px; background: var(--mp-n200); margin: 0 14px; }
.stepper-line.done { background: var(--mp-teal); }

/* card */
.order-card { background: #fff; border: 1px solid var(--mp-n100); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-1); }
.order-card + .order-card { margin-top: 22px; }
.order-section-title { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--mp-navy); margin: 0 0 4px; letter-spacing: -.01em; }
.order-section-sub { font-size: 15px; color: var(--fg-2); margin: 0 0 24px; }

/* profile choice */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.profile-option {
  text-align: left; background: #fff; border: 2px solid var(--mp-n200); border-radius: var(--r-lg);
  padding: 28px 26px; cursor: pointer; transition: all .2s var(--ease); font-family: var(--font-body);
  display: flex; flex-direction: column; gap: 6px; position: relative;
}
.profile-option:hover { border-color: var(--mp-teal); transform: translateY(-3px); box-shadow: var(--sh-2); }
.profile-option.selected { border-color: var(--mp-navy); background: var(--mp-n50); }
.profile-option .po-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-dawn); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.profile-option .po-icon svg { width: 26px; height: 26px; color: var(--mp-navy-deep); }
.profile-option .po-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--mp-navy); }
.profile-option .po-sub { font-size: 14.5px; color: var(--fg-2); }
.profile-option .po-check { position: absolute; top: 18px; right: 18px; width: 24px; height: 24px; border-radius: 50%; background: var(--mp-navy); display: none; align-items: center; justify-content: center; }
.profile-option .po-check svg { width: 13px; height: 13px; stroke: #fff; }
.profile-option.selected .po-check { display: flex; }

/* form fields */
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.col-2 { grid-column: span 2; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--mp-navy-deep); }
.field label .req { color: var(--mp-pink); margin-left: 2px; }
.field input, .field select {
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  padding: 12px 14px; border: 1.5px solid var(--mp-n200); border-radius: var(--r-sm);
  background: #fff; transition: border-color .16s var(--ease), box-shadow .16s var(--ease); width: 100%;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--mp-teal); box-shadow: 0 0 0 3px rgba(25,189,207,.15); }
.field input.invalid, .field select.invalid { border-color: var(--mp-pink); }
.field .err { font-size: 12.5px; color: var(--mp-pink); font-weight: 500; }
.field-group-title { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--mp-teal-deep); margin: 28px 0 16px; padding-top: 22px; border-top: 1px solid var(--mp-n100); }
.field-group-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }

/* same-as checkbox */
.checkbox-row { display: flex; align-items: center; gap: 10px; margin: 4px 0 18px; }
.checkbox-row input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--mp-navy); cursor: pointer; }
.checkbox-row label { font-size: 14.5px; color: var(--fg-1); cursor: pointer; }

/* pass user blocks */
.user-block { border: 1.5px solid var(--mp-n100); border-radius: var(--r-md); padding: 24px; margin-bottom: 18px; background: var(--mp-n50); }
.user-block-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.user-block-head .ub-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--mp-navy); display: flex; align-items: center; gap: 10px; }
.user-block-head .ub-num { width: 26px; height: 26px; border-radius: 50%; background: var(--mp-navy); color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.user-remove { background: none; border: none; cursor: pointer; color: var(--mp-pink); font-weight: 600; font-size: 13.5px; display: flex; align-items: center; gap: 5px; padding: 6px 10px; border-radius: var(--r-sm); }
.user-remove:hover { background: rgba(255,71,121,.08); }
.user-remove svg { width: 15px; height: 15px; }
.add-user-btn {
  width: 100%; border: 2px dashed var(--mp-n300); background: #fff; border-radius: var(--r-md);
  padding: 16px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--mp-navy); display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: all .18s var(--ease);
}
.add-user-btn:hover { border-color: var(--mp-teal); background: var(--mp-n50); color: var(--mp-teal-deep); }
.add-user-btn svg { width: 18px; height: 18px; }

/* nav buttons */
.order-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; }
.order-nav .spacer { flex: 1; }

/* terms */
.terms-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 4px; padding: 18px; background: var(--mp-n50); border-radius: var(--r-md); }
.terms-row input { width: 19px; height: 19px; accent-color: var(--mp-navy); margin-top: 1px; cursor: pointer; flex: none; }
.terms-row label { font-size: 14.5px; color: var(--fg-1); line-height: 1.5; }
.terms-row a { color: var(--mp-teal-deep); font-weight: 600; }
.terms-error { color: var(--mp-pink); font-size: 13.5px; font-weight: 500; margin-top: 10px; }
.terms-row.sepa-err { outline: 1.5px solid var(--mp-pink); outline-offset: 0; }

/* review */
.review-block { margin-bottom: 24px; }
.review-block h4 { font-family: var(--font-body); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mp-teal-deep); margin: 0 0 12px; }
.review-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.review-rows.single { grid-template-columns: 1fr; }
.review-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; padding: 7px 0; border-bottom: 1px solid var(--mp-n100); }
.review-row .rk { color: var(--fg-2); }
.review-row .rv { color: var(--mp-navy); font-weight: 600; text-align: right; }
.review-user { border: 1px solid var(--mp-n100); border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 12px; }
.review-user .ru-head { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--mp-navy); margin-bottom: 10px; }
.review-count-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--mp-lime); color: var(--mp-ink); font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: 999px; margin-bottom: 20px; }

/* success */
.order-success { max-width: 600px; margin: 0 auto; text-align: center; padding: 60px 0; }
.success-icon { width: 88px; height: 88px; border-radius: 50%; background: var(--mp-teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; animation: pop .4s var(--ease); }
.success-icon svg { width: 44px; height: 44px; stroke: #fff; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.order-success h2 { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--mp-navy); margin: 0 0 14px; letter-spacing: -.02em; }
.order-success p { font-size: 16px; color: var(--fg-2); line-height: 1.6; margin: 0 auto 30px; max-width: 480px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===========================================================================
   APP SECTION
   =========================================================================== */
.app-sec { background: var(--bg-1); }
.app-card {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-2); border: 1px solid var(--mp-n100);
}
.app-left {
  background: var(--grad-navy); color: #fff; padding: 56px 52px; position: relative; overflow: hidden;
}
.app-left::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/hexagon-pattern-light.png') no-repeat right -60px top -40px; background-size: 460px; opacity: .07;
}
.app-left .eyebrow { color: var(--mp-teal-soft); position: relative; z-index: 1; }
.app-left h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -.03em; margin: 16px 0 0; color: #fff; position: relative; z-index: 1; }
.app-left p { font-size: 17px; color: #c5d2e6; margin: 18px 0 0; max-width: 420px; line-height: 1.55; position: relative; z-index: 1; }
.app-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; position: relative; z-index: 1; }
.app-map-btn { align-self: flex-start; margin-top: 26px; position: relative; z-index: 1; }
.app-tag {
  font-size: 13.5px; font-weight: 600; color: #dce8ff; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 9px 16px;
}
.app-right { background: var(--bg-2); padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.store-btn {
  display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--mp-n200);
  border-radius: var(--r-lg); padding: 18px 24px; text-decoration: none; transition: all .2s var(--ease);
}
.store-btn:hover { border-color: var(--mp-navy); box-shadow: var(--sh-2); transform: translateY(-2px); }
.store-icon { width: 52px; height: 52px; border-radius: 13px; flex: none; display: flex; align-items: center; justify-content: center; }
.store-icon.apple { background: #07102A; }
.store-icon.google { background: #fff; border: 1px solid var(--mp-n200); }
.store-icon svg { width: 28px; height: 28px; }
.store-txt { display: flex; flex-direction: column; line-height: 1.2; }
.store-txt .via { font-size: 13px; color: var(--fg-2); font-weight: 500; }
.store-txt .name { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--mp-navy); letter-spacing: -.02em; }
.app-os-note { font-size: 14px; color: var(--fg-3); margin: 6px 0 0; }

@media (max-width: 860px) {
  .app-card { grid-template-columns: 1fr; }
  .app-left, .app-right { padding: 40px 32px; }
}

/* ===========================================================================
   REVEAL ANIMATION
   =========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 1000px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ===========================================================================
   INFO ALERT BLOCK
   =========================================================================== */
.info-alert {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fffbeb; border: 1.5px solid #f0b429;
  border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 24px;
  font-size: 15px; line-height: 1.6; color: var(--fg-1);
}
.info-alert-icon { font-size: 20px; flex: none; margin-top: 1px; }
.info-alert-body { flex: 1; }
.info-alert-title { font-weight: 700; color: #92600a; margin-bottom: 4px; display: block; }
.info-alert a { color: var(--mp-navy); font-weight: 600; text-decoration: underline; }
.info-alert a:hover { color: var(--mp-teal-deep); }

/* ===========================================================================
   FILE UPLOAD ZONE
   =========================================================================== */
.upload-zone { margin-bottom: 20px; }
.upload-zone-label {
  font-size: 15px; font-weight: 600; color: var(--fg-1); margin-bottom: 6px; display: block;
}
.upload-zone-sub { font-size: 13.5px; color: var(--fg-2); margin-bottom: 10px; display: block; }

.upload-drop-area {
  border: 2px dashed var(--mp-n200); border-radius: var(--r-lg);
  padding: 28px 24px; text-align: center; cursor: pointer;
  transition: border-color .18s, background .18s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.upload-drop-area:hover, .upload-drop-area.drag-over {
  border-color: var(--mp-teal); background: #f5feff;
}
.upload-drop-area.has-error { border-color: #e53e3e; background: #fff5f5; }
.upload-drop-area svg { width: 32px; height: 32px; color: var(--fg-3); }
.upload-drop-text { font-size: 14.5px; font-weight: 600; color: var(--mp-navy); margin: 0; }
.upload-drop-hint { font-size: 13px; color: var(--fg-3); margin: 0; }

.upload-file-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.upload-file-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--mp-n100);
  border-radius: var(--r-md); padding: 10px 14px;
}
.upload-file-item svg { width: 18px; height: 18px; color: var(--mp-teal-deep); flex: none; }
.upload-file-name { flex: 1; font-size: 14px; font-weight: 500; color: var(--fg-1); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-file-size { font-size: 12.5px; color: var(--fg-3); flex: none; }
.upload-file-remove {
  background: none; border: none; cursor: pointer; padding: 2px;
  color: var(--fg-3); display: flex; align-items: center; flex: none;
  transition: color .16s;
}
.upload-file-remove:hover { color: #e53e3e; }
.upload-file-remove svg { width: 18px; height: 18px; }
.upload-err { font-size: 13px; color: #e53e3e; margin-top: 6px; display: block; }

/* ===========================================================================
   ITSME VERIFICATION
   =========================================================================== */
.itsme-block {
  border: 1.5px solid var(--mp-n200); border-radius: var(--r-lg);
  padding: 36px 32px; margin-bottom: 28px;
  background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
}

/* logo */
.itsme-logo {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: #003249; letter-spacing: -.03em;
}
.itsme-logo-dot { width: 13px; height: 13px; border-radius: 50%; background: #00A3E0; flex: none; }
.itsme-logo-reg { font-size: 13px; font-weight: 400; color: var(--fg-3); vertical-align: super; }

/* text */
.itsme-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--mp-navy); margin: 6px 0 0;
}
.itsme-sub { font-size: 15px; color: var(--fg-2); max-width: 380px; margin: 0; }

/* main button */
.itsme-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #003249; color: #fff;
  border: none; border-radius: 999px; padding: 15px 28px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  cursor: pointer; margin-top: 10px;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.itsme-btn:hover { background: #002438; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,50,73,.28); }
.itsme-btn:active { transform: translateY(0); }
.itsme-btn-logo {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -.01em;
}
.itsme-btn-dot { width: 8px; height: 8px; border-radius: 50%; background: #00A3E0; flex: none; }

/* required badge */
.itsme-required-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #92600a; background: #fef3c7; border: 1px solid #f0b429;
  border-radius: 999px; padding: 3px 9px;
}

/* pending state */
.itsme-block.itsme-pending-state { gap: 14px; padding: 40px 32px; }
.itsme-spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--mp-n200); border-top-color: #003249;
  border-radius: 50%; animation: itsme-spin .85s linear infinite;
}
@keyframes itsme-spin { to { transform: rotate(360deg); } }
.itsme-pending-text { font-weight: 600; color: var(--mp-navy); margin: 4px 0 0; font-size: 16px; }
.itsme-pending-sub { font-size: 14px; color: var(--fg-2); margin: 0; max-width: 320px; }

/* verified banner */
.itsme-verified-banner {
  display: flex; align-items: center; gap: 14px;
  background: #f0faf5; border: 1.5px solid #34c77b;
  border-radius: var(--r-md); padding: 14px 18px; margin-bottom: 24px;
}
.itsme-verified-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: #34c77b; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex: none;
}
.itsme-verified-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.itsme-verified-text strong { font-size: 14.5px; color: #185c38; }
.itsme-verified-text span { font-size: 13px; color: var(--fg-2); }
.itsme-change-btn {
  background: none; border: 1px solid var(--mp-n200); border-radius: 999px;
  padding: 7px 14px; font-family: var(--font-body); font-size: 13px; color: var(--fg-2);
  cursor: pointer; white-space: nowrap; flex: none;
  transition: border-color .16s, color .16s;
}
.itsme-change-btn:hover { border-color: var(--mp-navy); color: var(--mp-navy); }

/* field verified badge */
.field-verified {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 700; color: #185c38;
  background: #e3f7ec; border-radius: 999px; padding: 2px 7px;
  margin-left: 7px; vertical-align: middle; letter-spacing: .01em;
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .header-nav { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .field.col-2 { grid-column: span 1; }
  .profile-grid { grid-template-columns: 1fr; }
  .review-rows { grid-template-columns: 1fr; }
  .hero-stat { min-width: 130px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .stepper-label { display: none; }
  .stepper-line { width: 24px; margin: 0 8px; }
  .order-card { padding: 24px; }
  .itsme-verified-banner { flex-wrap: wrap; }
  .itsme-change-btn { width: 100%; text-align: center; }
}

/* ===========================================================================
   NIEUWE SECTIES (2026-08-06): laden, netwerk, vergelijking, werkgevers,
   support, en de FAQ-groepen. Hergebruikt de bestaande tokens en, voor de
   laadstappen, het donkere .how-kader zodat bestellen en laden één blok vormen.
   =========================================================================== */

/* Laden staat bewust NIET in het donkere .how-kader: twee donkere secties na
   elkaar gaven één lang, monotoon blok (feedback Bart 2026-08-07). Zelfde
   vormtaal als de voordeelkaarten, met de lime cijferbadge van de stappen. */
.charge { background: var(--mp-cream); }
.charge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 42px; }
.charge-step {
  background: #fff; border: 1px solid var(--mp-n100); border-radius: var(--r-lg);
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.charge-step:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.charge-step .n {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--mp-ink); background: var(--mp-lime); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.charge-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--mp-navy); margin: 0 0 8px; letter-spacing: -.01em; }
.charge-step p { font-size: 15px; color: var(--fg-2); margin: 0; line-height: 1.55; }

/* --- netwerk: tekst links, netwerken rechts, anders gaapt de rechterhelft --- */
.net { background: var(--bg-2); }
.net-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.net-wrap .section-lead { margin-bottom: 0; }
.net-box {
  background: #fff; border: 1px solid var(--mp-n100); border-radius: var(--r-lg);
  padding: 32px 34px;
}
.net-names-title {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 16px;
}
.net-names { display: flex; flex-wrap: wrap; gap: 10px; }
.net-name {
  font-size: 14px; font-weight: 600; color: var(--mp-navy);
  background: var(--mp-n50); border: 1px solid var(--mp-n100);
  border-radius: 100px; padding: 7px 15px;
}
.net-note { font-size: 14.5px; color: var(--fg-2); margin: 20px 0 0; line-height: 1.55; }

/* --- vergelijking --- */
.cmp { background: var(--mp-cream); }
.cmp-scroll { margin-top: 40px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table {
  width: 100%; min-width: 720px; border-collapse: collapse;
  background: #fff; border: 1px solid var(--mp-n100); border-radius: var(--r-lg); overflow: hidden;
}
.cmp-table th, .cmp-table td {
  padding: 15px 18px; font-size: 14.5px; text-align: left; vertical-align: top;
  border-top: 1px solid var(--mp-n100);
}
.cmp-table thead th {
  border-top: none; font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--mp-navy); background: var(--mp-n50); white-space: nowrap;
}
.cmp-table tbody th {
  font-weight: 600; color: var(--mp-navy-deep); width: 210px;
}
.cmp-table td { color: var(--fg-2); }
.cmp-table tbody tr:nth-child(even) th, .cmp-table tbody tr:nth-child(even) td { background: rgba(11,23,64,.02); }
.cmp-table .cmp-us { background: rgba(25,189,207,.06); color: var(--mp-navy-deep); font-weight: 600; }
.cmp-table thead .cmp-us { background: rgba(25,189,207,.14); }
.cmp-badge {
  display: inline-block; margin-left: 10px; font-family: var(--font-body); font-size: 11px;
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--mp-ink); background: var(--mp-lime); border-radius: 100px; padding: 3px 9px;
}

/* --- werkgevers --- */
.biz { background: var(--bg-1); }
.biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 42px; }
.biz-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--mp-n100); border-radius: var(--r-lg); padding: 26px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.biz-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: transparent; }
.biz-check {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--mp-lime); color: var(--mp-ink);
  display: flex; align-items: center; justify-content: center;
}
.biz-check svg { width: 16px; height: 16px; }
.biz-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--mp-navy); margin: 0 0 6px; letter-spacing: -.01em; }
.biz-card p { font-size: 15px; color: var(--fg-2); margin: 0; line-height: 1.55; }
.biz-cta { margin-top: 34px; }

/* --- whitelist eigen thuislaadstation --- */
.wl-sec { background: var(--bg-1); }
.wl-disclaimer { max-width: 680px; margin: 26px auto 0; text-align: center; font-size: 14.5px; color: var(--fg-2); line-height: 1.6; }
.wl-sec .biz-cta { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.wl-faq-link { font-size: 15px; font-weight: 600; color: var(--mp-teal-deep); text-decoration: underline; text-underline-offset: 3px; }
.wl-faq-link:hover { color: var(--mp-navy); }
.faq-a-inner a, .biz-card p a { color: var(--mp-teal-deep); text-decoration: underline; text-underline-offset: 2px; }
.faq-a-inner a:hover, .biz-card p a:hover { color: var(--mp-navy); }

/* --- FAQ-groepen --- */
.faq-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 30px 0 34px; }
.faq-tabs button {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600; cursor: pointer;
  color: var(--mp-navy); background: #fff; border: 1px solid var(--mp-n200);
  border-radius: 100px; padding: 9px 20px; transition: all .2s var(--ease);
}
.faq-tabs button:hover:not(.active) { border-color: var(--mp-n300); }
.faq-tabs button.active { background: var(--mp-navy); border-color: var(--mp-navy); color: #fff; }

/* --- support: overgenomen van de driver-onboardingpagina (keuze Bart
   2026-08-07), met de tokens van deze site --- */
.sup { background: var(--bg-2); padding-top: 0; }
.contact-banner {
  background: linear-gradient(135deg, var(--mp-navy-deep) 0%, var(--mp-navy) 55%, #0E4A6E 100%);
  border-radius: var(--r-xl); padding: 52px 40px; position: relative; overflow: hidden;
}
.contact-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  /* Zelfde tileable hexagon-SVG als de onboardingpagina; de PNG-patronen van
     deze site geven een heel ander, veel dichter motief. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 104' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1.4'%3E%3Cpolygon points='30,2 58,18 58,52 30,68 2,52 2,18'/%3E%3Cpolygon points='90,2 118,18 118,52 90,68 62,52 62,18'/%3E%3Cpolygon points='60,52 88,68 88,102 60,118 32,102 32,68'/%3E%3C/svg%3E");
  background-size: 220px 191px; opacity: .5;
}
.contact-banner-hd { text-align: center; margin-bottom: 36px; position: relative; z-index: 1; }
.contact-banner-hd .eyebrow-teal {
  color: var(--mp-teal); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; display: block; margin-bottom: 10px;
}
.contact-banner-hd h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 38px); font-weight: 700;
  margin: 0 0 10px; color: #fff; letter-spacing: -.025em;
}
.contact-banner-hd p { color: rgba(255,255,255,.7); margin: 0; font-size: 15px; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; position: relative; z-index: 1; }

.mobi-card {
  background: rgba(255,255,255,.97); border-radius: var(--r-lg); padding: 28px 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.mobi-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mobi-card-icon {
  width: 42px; height: 42px; background: rgba(25,189,207,.14); border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobi-card-icon svg { width: 21px; height: 21px; stroke: var(--mp-teal-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mobi-card-icon circle { fill: var(--mp-teal-deep); stroke: none; }
.mobi-card-title { color: var(--mp-navy); font-size: 15px; font-weight: 800; margin: 0 0 1px; }
.mobi-card-sub { color: var(--mp-teal-deep); font-size: 11px; font-weight: 700; margin: 0; }
.mobi-desc { color: var(--fg-1); font-size: 13.5px; line-height: 1.65; margin: 0 0 12px; }
.mobi-app-note { color: var(--fg-3); font-size: 11px; font-weight: 600; margin: 0 0 22px; display: flex; align-items: center; gap: 5px; }
.mobi-app-note svg { width: 13px; height: 13px; flex: none; stroke: var(--mp-teal-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mobi-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--mp-navy); border-radius: 10px; padding: 13px 24px;
  text-decoration: none; transition: background .15s var(--ease);
}
.mobi-cta:hover { background: var(--mp-navy-deep); }
.mobi-cta span { color: #fff; font-size: 14px; font-weight: 700; }
.mobi-cta svg { width: 13px; height: 13px; stroke: var(--mp-teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Eén tegel sinds de telefoon eruit is: verticaal centreren naast de
   Mobi-kaart, anders blijft er een gat onder de tegel. */
.contact-side { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.contact-tile {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: 22px; display: flex; align-items: flex-start; gap: 16px;
  transition: background .15s var(--ease);
}
.contact-tile:hover { background: rgba(255,255,255,.13); }
.contact-tile-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(25,189,207,.18);
  border: 1px solid rgba(25,189,207,.3); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.contact-tile-icon svg { width: 18px; height: 18px; stroke: var(--mp-teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-tile-body h4 { font-family: var(--font-display); color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.contact-tile-body .ct-desc { color: rgba(255,255,255,.55); font-size: 11.5px; margin: 0 0 10px; line-height: 1.55; }
.ct-btn {
  display: inline-flex; align-items: center; gap: 6px; background: var(--mp-teal);
  border-radius: 8px; padding: 9px 16px; text-decoration: none; transition: background .15s var(--ease);
}
.ct-btn:hover { background: var(--mp-teal-deep); }
.ct-btn span { color: #fff; font-size: 12px; font-weight: 700; }
.ct-btn svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1000px) {
  .net-wrap { grid-template-columns: 1fr; gap: 34px; }
  .charge-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-banner { padding: 38px 26px; }
}

@media (max-width: 760px) {
  .charge-grid { grid-template-columns: 1fr; }
  .net-box { padding: 24px 22px; }
  .cmp-table tbody th { width: 150px; }
}

/* ---- Cookiebanner (js/consent.js) ---- */
#cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1000;
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background:
    radial-gradient(120% 180% at 100% 0%, rgba(25, 189, 207, .22) 0%, rgba(25, 189, 207, 0) 55%),
    var(--mp-navy);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg); padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(9, 18, 60, .45), 0 2px 10px rgba(9, 18, 60, .3);
  animation: cookieBannerIn .45s cubic-bezier(.21, .8, .35, 1) both;
}
#cookie-banner::before {
  content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--mp-lime), var(--mp-teal, #19BDCF));
  opacity: .9;
}
.cookie-banner-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(217, 246, 92, .14); color: var(--mp-lime);
}
.cookie-banner-icon svg { width: 22px; height: 22px; }
.cookie-banner-content { flex: 1 1 300px; min-width: 0; }
.cookie-banner-title {
  margin: 0 0 3px; font-family: var(--font-display);
  font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: #fff;
}
.cookie-banner-text { margin: 0; font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, .75); }
.cookie-banner-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-banner-actions .btn { padding: 11px 20px; font-size: 14px; border-radius: 999px; }
#cookie-banner.cookie-banner-out {
  animation: cookieBannerOut .28s ease-in both;
  pointer-events: none;
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cookieBannerOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(16px) scale(.98); }
}
@media (prefers-reduced-motion: reduce) {
  #cookie-banner, #cookie-banner.cookie-banner-out { animation: none; }
}
@media (max-width: 620px) {
  #cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; gap: 14px; }
  .cookie-banner-icon { display: none; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}
