/* =========================================================
   NextUp Solutions — main.css
   Full design system, components, layouts & animations
   No Tailwind, no build step required.
   ========================================================= */

/* ── Google Fonts are loaded via wp_enqueue_style in functions.php ── */

/* ─────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────────────────────── */
:root {
  --primary:          hsl(199, 100%, 55%);
  --primary-dark:     hsl(199, 100%, 45%);
  --primary-light:    hsl(199, 100%, 65%);
  --navy:             hsl(225, 50%, 7%);
  --navy-light:       hsl(225, 30%, 15%);
  --orange:           #FF7A1A;
  --orange-hover:     #E8680B;
  --background:       #ffffff;
  --foreground:       hsl(225, 50%, 7%);
  --muted-foreground: hsl(220, 10%, 46%);
  --border:           hsl(220, 15%, 91%);
  --surface-elevated: hsl(220, 30%, 98%);
  --card:             #ffffff;
  --shadow-card:      0 1px 3px hsl(225 50% 7% / 0.06), 0 8px 32px -8px hsl(225 50% 7% / 0.08);
  --shadow-elevated:  0 12px 48px -12px hsl(225 50% 7% / 0.12);
  --gradient-dark:    linear-gradient(135deg, hsl(230,52%,7%) 0%, hsl(218,56%,14%) 50%, hsl(205,65%,22%) 100%);
  --gradient-text:    linear-gradient(135deg, hsl(199,100%,55%), hsl(199,100%,65%));
}

/* ─────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
svg { display: block; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   3. LAYOUT UTILITIES
   ───────────────────────────────────────────────────────── */
.container-wide  { max-width: 1280px; margin: 0 auto; }
.container-tight { max-width: 1152px; margin: 0 auto; }

.section-padding { padding: 4rem 1rem; }
@media (min-width: 640px)  { .section-padding { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .section-padding { padding: 6rem 2rem; } }

/* ─────────────────────────────────────────────────────────
   4. TYPOGRAPHY HELPERS
   ───────────────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  overflow: visible;
  padding-bottom: 0.1em; /* prevent clip on descenders */
}
.text-white   { color: #ffffff; }
.text-balance { text-wrap: balance; }

/* ─────────────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────────────── */
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--orange);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-orange:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,122,26,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.05);
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(30,30,60,0.70);
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-dark:hover {
  background: var(--surface-elevated);
  color: var(--foreground);
}

/* ─────────────────────────────────────────────────────────
   6. NAVBAR
   ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease-in-out,
              border-color 0.3s ease-in-out,
              box-shadow 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: hsl(220,15%,91%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .nav-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-container { height: 4.5rem; padding: 0 2rem; } }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 2.5rem; width: auto; transition: opacity 0.3s; }
@media (min-width: 1024px) { .nav-logo-img { height: 3rem; } }

.nav-links { display: none; align-items: center; gap: 0.125rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
/* Transparent state (homepage, before scroll) */
.site-header:not(.scrolled) .nav-link        { color: rgba(255,255,255,0.70); }
.site-header:not(.scrolled) .nav-link:hover  { color: #ffffff; }
.site-header:not(.scrolled) .nav-link.active { color: #ffffff; font-weight: 600; }
/* Scrolled state */
.site-header.scrolled .nav-link        { color: hsl(220,10%,40%); }
.site-header.scrolled .nav-link:hover  { color: var(--foreground); background: hsl(220,20%,96%); }
.site-header.scrolled .nav-link.active { color: var(--primary); font-weight: 600; }

.nav-cta-wrap { display: none; flex-shrink: 0; }
@media (min-width: 1024px) { .nav-cta-wrap { display: block; } }
.nav-cta { padding: 0 1.25rem; height: 2.5rem; font-size: 0.875rem; }

.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.site-header:not(.scrolled) .nav-hamburger       { color: #ffffff; }
.site-header:not(.scrolled) .nav-hamburger:hover { background: rgba(255,255,255,0.10); }
.site-header.scrolled .nav-hamburger             { color: var(--foreground); }
.site-header.scrolled .nav-hamburger:hover       { background: hsl(220,20%,96%); }

.hamburger-icon { display: flex; align-items: center; justify-content: center; }
.icon-close     { display: none; }
.nav-hamburger.open .icon-menu  { display: none; }
.nav-hamburger.open .icon-close { display: block; }

/* Mobile menu */
.mobile-menu-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.22s ease-in-out, opacity 0.18s ease-in-out;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-panel.is-open { grid-template-rows: 1fr; opacity: 1; }
.mobile-menu-panel > div   { overflow: hidden; min-height: 0; }

.mobile-menu-inner { position: relative; overflow: hidden; }
.mobile-radial-glow {
  pointer-events: none;
  position: absolute;
  top: -2rem; right: 1rem;
  width: 12rem; height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(199,100%,55%,0.12) 0%, transparent 70%);
}
.mobile-nav {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  gap: 0.125rem;
}
.mobile-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
  color: rgba(255,255,255,0.60);
  background: transparent;
  border: 1px solid transparent;
}
.mobile-nav-item:hover {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.mobile-nav-active {
  color: hsl(199,100%,65%) !important;
  background: hsl(199,100%,55%,0.08) !important;
  border-color: hsl(199,100%,55%,0.18) !important;
  font-weight: 600;
  box-shadow: inset 3px 0 0 hsl(199,100%,55%,0.70), 0 0 16px hsl(199,100%,55%,0.08);
}
.mobile-nav-arrow { flex-shrink: 0; transition: opacity 0.2s, transform 0.2s; opacity: 0; }
.mobile-nav-active .mobile-nav-arrow            { opacity: 0.60; color: hsl(199,100%,65%); }
.mobile-nav-item:hover .mobile-nav-arrow        { opacity: 0.55 !important; transform: translateX(2px); }

/* ─────────────────────────────────────────────────────────
   7. FOOTER
   ───────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, hsl(230,54%,5%) 0%, hsl(220,56%,10%) 50%, hsl(208,62%,15%) 100%);
  color: rgba(255,255,255,0.55);
  overflow: hidden;
}

/* Subtle glow accent top-right */
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, hsl(199,100%,55%,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
}
@media (min-width: 640px)  { .footer-container { padding: 3.5rem 1.5rem 2rem; } }
@media (min-width: 1024px) { .footer-container { padding: 4.5rem 2rem 2rem; } }

/* ── Grid ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 0 4rem; }
}

/* ── Brand column ── */
.footer-logo { height: 2rem; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 22rem;
  color: rgba(255,255,255,0.45);
}

/* ── Column titles ── */
.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

/* ── Nav links ── */
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}
.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.footer-link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: hsl(199,100%,55%);
  transition: width 0.2s ease;
  flex-shrink: 0;
}
.footer-link:hover::before { width: 10px; }

/* ── Contact list ── */
.footer-contact-list { display: flex; flex-direction: column; gap: 0.625rem; padding: 0; margin: 0; list-style: none; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s ease;
}
.footer-contact-item:hover { color: rgba(255,255,255,0.85); }
.footer-contact-icon { color: hsl(199,100%,55%); flex-shrink: 0; }

/* ── Divider ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10) 20%, rgba(255,255,255,0.10) 80%, transparent);
  margin: 2.5rem 0 0;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.375rem;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
}

/* ── Left block: copyright + KvK ── */
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}
.footer-kvk {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.01em;
}

/* ── Right block: legal links ── */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0;
}
.footer-legal-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.125rem 0;
  position: relative;
}
.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(199,100%,55%);
  transition: width 0.2s ease;
}
.footer-legal-link:hover { color: rgba(255,255,255,0.75); }
.footer-legal-link:hover::after { width: 100%; }

.footer-legal-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.75rem;
  padding: 0 0.75rem;
  user-select: none;
}

/* ─────────────────────────────────────────────────────────
   8. SECTION HEADING
   ───────────────────────────────────────────────────────── */
.section-heading    { margin-bottom: 3rem; text-align: center; }
@media (min-width: 1024px) { .section-heading { margin-bottom: 4rem; } }

.section-label {
  display: inline-block;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--orange);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  text-wrap: balance;
  color: var(--foreground);
}
@media (min-width: 1024px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1280px) { .section-title { font-size: 3rem; } }
.section-title--light { color: #ffffff; }

.section-desc {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--muted-foreground);
}
.section-desc--light { color: rgba(255,255,255,0.70); }

/* ─────────────────────────────────────────────────────────
   9. SHARED CARD HELPERS
   ───────────────────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}
.hover-lift { transition: transform 0.3s, box-shadow 0.3s; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }

/* ─────────────────────────────────────────────────────────
   10. HERO SECTION (homepage)
   ───────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, hsl(230,52%,7%) 0%, hsl(218,56%,14%) 50%, hsl(205,65%,22%) 100%);
}
.hero-bg-glow {
  position: absolute;
  top: 0; right: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, hsl(199,100%,55%,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 8rem 1rem 6rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 640px)  { .hero-content-wrap { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) {
  .hero-content-wrap {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 10rem 2rem 8rem;
  }
}
.hero-text { width: 100%; }
@media (min-width: 1024px) { .hero-text { flex: 1; } }

.hero-visual-wrap { display: none; }
@media (min-width: 1024px) {
  .hero-visual-wrap { display: flex; flex: 1; align-items: center; justify-content: flex-end; }
}

.hero-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.30;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  overflow: visible;
}
.hero-h-line { display: block; }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 42rem;
}
@media (min-width: 1024px) { .hero-sub { font-size: 1.0625rem; } }
/* Reduce gap when two hero-sub paragraphs follow each other */
.hero-sub + .hero-sub { margin-top: -1.25rem; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  align-items: flex-start;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; align-items: center; } }

.hero-btn-primary  { padding: 0 2rem; height: 3.25rem; }
.hero-btn-secondary { padding: 0 2rem; height: 3.25rem; }

.hero-usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.5rem;
  margin-top: 2.25rem;
}
@media (min-width: 1024px) { .hero-usps { grid-template-columns: repeat(4, auto); } }

.hero-usp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.70);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────
   11. SERVICES SECTION (homepage)
   ───────────────────────────────────────────────────────── */
.services-section { background: var(--background); }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { gap: 2rem; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }

.service-card-accent {
  height: 3px;
  background: linear-gradient(to right, var(--primary), hsl(199,100%,55%,0.70), hsl(199,100%,55%,0.20));
}
.service-card-body {
  display: flex;
  align-items: stretch;
  flex: 1;
}
.service-card-text {
  flex: 1;
  min-width: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .service-card-text { padding: 2.5rem; } }

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(199,100%,55%,0.10);
  border: 1px solid hsl(199,100%,55%,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
  color: var(--primary);
  position: relative;
}
.service-card:hover .service-icon { background: hsl(199,100%,55%,0.20); }

.service-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}
.service-card-desc  { color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.service-card-link  {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.2s;
  text-decoration: none;
  margin-top: auto;
}
.service-card:hover .service-card-link { gap: 0.625rem; }

.service-visual-col {
  display: none;
  position: relative;
  width: 10.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 640px)  { .service-visual-col { display: block; } }
@media (min-width: 1024px) { .service-visual-col { width: 12.5rem; } }

/* ─────────────────────────────────────────────────────────
   12. VOORDELEN SECTION (dark)
   ───────────────────────────────────────────────────────── */
.voordelen-section { background: var(--gradient-dark); }

.voordelen-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .voordelen-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } }

.voordelen-badge {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--orange);
  display: block;
}
.voordelen-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.voordelen-desc  { color: rgba(255,255,255,0.55); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; }
.voordelen-list  { display: flex; flex-direction: column; gap: 1rem; }
.voordelen-item  { display: flex; align-items: flex-start; gap: 0.75rem; }
.voordelen-item-text { color: rgba(255,255,255,0.75); font-weight: 500; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.08); border-color: hsl(199,100%,55%,0.30); }
.stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.875rem; color: var(--primary); margin-bottom: 0.25rem; }
.stat-label  { color: #ffffff; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; }
.stat-desc   { color: rgba(255,255,255,0.40); font-size: 0.75rem; line-height: 1.5; }

/* ─────────────────────────────────────────────────────────
   13. CASES SECTION (homepage)
   ───────────────────────────────────────────────────────── */
.cases-section { background: var(--background); }

.cases-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .cases-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cases-grid { gap: 2rem; } }

.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }

.case-card-visual  { height: 12rem; position: relative; overflow: hidden; }
.case-card-content { padding: 1.5rem; }
@media (min-width: 1024px) { .case-card-content { padding: 2rem; } }

.case-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--foreground); }
.case-card-desc  { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; }
.cases-more      { text-align: center; margin-top: 2.5rem; }

/* ─────────────────────────────────────────────────────────
   14. TESTIMONIALS SECTION (dark)
   ───────────────────────────────────────────────────────── */
.testimonials-section { background: var(--gradient-dark); }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { gap: 2rem; } }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: hsl(199,100%,55%,0.25); }

.testimonial-stars  { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; color: var(--primary); }
.testimonial-quote  { color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 1.5rem; }
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.testimonial-avatar {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: hsl(199,100%,55%,0.20);
  border: 1px solid hsl(199,100%,55%,0.30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
}
.testimonial-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: #ffffff; font-size: 0.875rem; }
.testimonial-role { font-size: 0.75rem; color: rgba(255,255,255,0.40); }

/* ─────────────────────────────────────────────────────────
   15. WERKWIJZE SECTION (homepage)
   ───────────────────────────────────────────────────────── */
.werkwijze-section  { background: var(--background); }
.werkwijze-steps-wrap { position: relative; }

.werkwijze-connector {
  display: none;
  position: absolute;
  top: 2rem;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(199,100%,55%,0.25), transparent);
}
@media (min-width: 1024px) { .werkwijze-connector { display: block; } }

.werkwijze-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px)  { .werkwijze-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .werkwijze-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.werkwijze-step { text-align: center; position: relative; }
.step-circle {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: hsl(199,100%,55%,0.10);
  border: 2px solid hsl(199,100%,55%,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative; z-index: 10;
}
.step-number { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.125rem; color: var(--primary); }
.step-title  { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--foreground); }
.step-desc   { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; }

/* ─────────────────────────────────────────────────────────
   16. FAQ SECTION (dark)
   ───────────────────────────────────────────────────────── */
.faq-section { background: var(--gradient-dark); }
.faq-list    { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  transition: color 0.2s;
  gap: 1rem;
}
.faq-question:hover { color: var(--primary); }
.faq-question.open  { color: var(--primary); }
.faq-chevron { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s; color: rgba(255,255,255,0.50); }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: rgba(255,255,255,0.60); line-height: 1.7; font-size: 0.9375rem; }

/* ─────────────────────────────────────────────────────────
   17. CTA SECTION
   ───────────────────────────────────────────────────────── */
.cta-section { background: var(--surface-elevated); position: relative; overflow: hidden; }
.cta-inner   { max-width: 64rem; margin: 0 auto; text-align: center; position: relative; z-index: 10; }
.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.cta-desc    { font-size: 1.125rem; color: var(--muted-foreground); max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-btn-primary   { padding: 0 2rem; height: 3.25rem; }
.cta-btn-secondary { padding: 0 2rem; height: 3.25rem; }

/* ─────────────────────────────────────────────────────────
   18. SUBPAGE HERO
   ───────────────────────────────────────────────────────── */
.hero-sub-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 1rem 5rem;
  background: linear-gradient(135deg, hsl(230,52%,7%) 0%, hsl(218,56%,14%) 50%, hsl(205,65%,22%) 100%);
}
@media (min-width: 640px)  { .hero-sub-section { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .hero-sub-section { padding-top: 10rem; padding-bottom: 7rem; padding-left: 2rem; padding-right: 2rem; } }

.hero-sub-glow {
  position: absolute; top: 0; right: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, hsl(199,100%,55%,0.04) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-sub-inner  { max-width: 1152px; margin: 0 auto; text-align: center; position: relative; z-index: 10; }
.hero-sub-badge  {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--orange);
}
.hero-sub-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero-sub-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   19. DIENSTEN PAGE
   ───────────────────────────────────────────────────────── */
.diensten-list { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 1024px) { .diensten-list { gap: 6rem; } }

.dienst-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .dienst-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.dienst-icon-wrap {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(199,100%,55%,0.10);
  border: 1px solid hsl(199,100%,55%,0.20);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.dienst-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}
@media (min-width: 1024px) { .dienst-title { font-size: 1.875rem; } }
.dienst-desc     { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1.5rem; }
.dienst-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.dienst-feature  { display: flex; align-items: center; gap: 0.75rem; }
.dienst-feature-text { color: var(--foreground); font-size: 0.875rem; font-weight: 500; }
.dienst-btn      { padding: 0 1.75rem; height: 3rem; }
.dienst-visual   { border-radius: 1rem; overflow: hidden; }
.dienst-visual-navy {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 4/3;
}
.dienst-visual-stone {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #f8f7f5;
  border: 1px solid rgba(200,200,200,0.70);
  aspect-ratio: 4/3;
}
.vis-grid-overlay {
  position: absolute; inset: 0; opacity: 0.70;
  background-image:
    linear-gradient(hsl(199,100%,55%,0.07) 1px, transparent 1px),
    linear-gradient(90deg, hsl(199,100%,55%,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.vis-glow-tr {
  position: absolute; top: 0; right: 0;
  width: 14rem; height: 14rem;
  background: hsl(199,100%,55%,0.10);
  border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.vis-glow-bl {
  position: absolute; bottom: 0; left: 0;
  width: 10rem; height: 10rem;
  background: rgba(255,122,26,0.08);
  border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.vis-content { position: relative; z-index: 10; width: 100%; height: 100%; padding: 1.25rem 1.5rem; }

/* ─────────────────────────────────────────────────────────
   20. CASES PAGE
   ───────────────────────────────────────────────────────── */
.cases-full-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .cases-full-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cases-full-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.case-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.case-visual-wrap     { height: 12rem; overflow: hidden; position: relative; }
.case-cat-badge {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 10;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: 9999px;
  background: rgba(14,27,66,0.70); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.10); color: var(--primary);
}
.case-full-content { padding: 1.5rem; }
@media (min-width: 1024px) { .case-full-content { padding: 2rem; } }
.case-full-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.75rem; }
.case-full-desc  { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.case-results    { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.case-results li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--foreground); font-weight: 500; line-height: 1.5; }
.case-result-dot {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1.5px solid #FF7A1A;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.case-result-dot::after {
  content: '';
  width: 0.22rem;
  height: 0.37rem;
  border-right: 1.5px solid #FF7A1A;
  border-bottom: 1.5px solid #FF7A1A;
  transform: rotate(40deg) translateY(-1px);
  display: block;
}

/* ─────────────────────────────────────────────────────────
   21. OVER ONS PAGE
   ───────────────────────────────────────────────────────── */
.mission-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .mission-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.mission-photo     { border-radius: 1rem; overflow: hidden; position: relative; box-shadow: 0 12px 48px -12px rgba(14,20,40,0.18); border: 1px solid rgba(200,200,200,0.60); }
.mission-photo img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; object-position: top; }
.mission-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(200,200,200,0.80);
}
.mission-photo-quote  { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.875rem; font-style: italic; color: var(--primary); }
.mission-photo-credit { color: hsl(220,10%,60%); font-size: 0.75rem; margin-top: 0.25rem; }

.values-section { position: relative; overflow: hidden; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.value-card {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.value-card:hover { transform: translateY(-4px); border-color: hsl(199,100%,55%,0.25); box-shadow: 0 8px 32px hsl(199,100%,55%,0.15); }
.value-icon-wrap {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  margin: 0 auto 1.25rem;
  background: hsl(199,100%,55%,0.15);
  border: 1px solid hsl(199,100%,55%,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
  color: var(--primary);
}
.value-card:hover .value-icon-wrap { transform: scale(1.05); }
.value-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.125rem; color: #ffffff; margin-bottom: 0.625rem; }
.value-desc  { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.6; }

.team-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 48rem; margin: 0 auto;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }

/* Team cards — used with .glass-card .p-8 in over-ons template */
.team-grid .glass-card {
  padding: 2.5rem 2rem 2rem;  /* extra top breathing room */
}
.team-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.team-avatar {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  flex-shrink: 0;
}
.team-avatar-letter { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--primary); }
.team-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.25rem; }
.team-role { color: var(--muted-foreground); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 1rem; }
.team-desc { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.65; border-top: 1px solid var(--border); padding-top: 1rem; }

/* ─────────────────────────────────────────────────────────
   22. WERKWIJZE PAGE
   ───────────────────────────────────────────────────────── */
.werkwijze-steps-list { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 1024px) { .werkwijze-steps-list { gap: 6rem; } }

.werkwijze-step-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 1024px) { .werkwijze-step-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.step-number-big { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 3rem; color: hsl(199,100%,55%,0.15); line-height: 1; }
.step-icon-row   { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.step-icon-wrap  {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: hsl(199,100%,55%,0.10);
  border: 1px solid hsl(199,100%,55%,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.step-detail-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}
@media (min-width: 1024px) { .step-detail-title { font-size: 1.875rem; } }
.step-detail-desc  { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1.5rem; }
.step-details-list { display: flex; flex-direction: column; gap: 0.75rem; }
.step-detail-item  { display: flex; align-items: center; gap: 0.75rem; }
.step-detail-text  { color: var(--foreground); font-size: 0.875rem; font-weight: 500; }

/* step visual containers */
.step-vis {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) { .step-vis { aspect-ratio: 1/1; } }

.step-vis-grid {
  position: absolute; inset: 0; opacity: 0.60;
  background-image:
    linear-gradient(hsl(199,100%,55%,0.07) 1px, transparent 1px),
    linear-gradient(90deg, hsl(199,100%,55%,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.step-vis-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.step-vis-inner { position: relative; z-index: 10; width: 100%; height: 100%; padding: 2rem; }

/* ─────────────────────────────────────────────────────────
   23. CONTACT PAGE
   ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 4rem; } }

.contact-form  { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row      { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group    { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label    { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--background);
  color: var(--foreground);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-input, .form-select { height: 3rem; }
.form-textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(199,100%,55%,0.15);
}
.form-submit { padding: 0 2rem; height: 3.25rem; }

.contact-success {
  padding: 1rem 1.25rem;
  background: hsl(142,76%,36%,0.10);
  border: 1px solid hsl(142,76%,36%,0.25);
  border-radius: 0.75rem;
  color: hsl(142,76%,22%);
  font-weight: 500;
  margin-bottom: 1rem;
  display: none;
}
.contact-success.visible { display: block; }

.contact-info-card { background: #ffffff; border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-card); }
@media (min-width: 1024px) { .contact-info-card { padding: 2.5rem; } }
.contact-info-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--foreground); margin-bottom: 1rem; }
.contact-info-list  { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item  { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info-icon  { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.contact-info-label { font-size: 0.875rem; color: var(--muted-foreground); }
.contact-info-value { font-weight: 500; color: var(--foreground); }
.contact-divider    { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* ─────────────────────────────────────────────────────────
   ANIMATION CSS (ported verbatim from src/index.css)
   ───────────────────────────────────────────────────────── */

/* Scroll-triggered entrance */
.anim-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.anim-fade-up.is-visible { opacity: 1; transform: none; }

.anim-slide-left {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.anim-slide-left.is-visible { opacity: 1; transform: none; }

.anim-d1 { transition-delay: 0.05s; }
.anim-d2 { transition-delay: 0.10s; }
.anim-d3 { transition-delay: 0.15s; }
.anim-d4 { transition-delay: 0.20s; }
.anim-d5 { transition-delay: 0.25s; }
.anim-d6 { transition-delay: 0.30s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-hero              { animation: heroFadeUp 0.7s ease-out both; }
.anim-hero.anim-hero-d2 { animation-delay: 0.15s; }
.anim-hero.anim-hero-d3 { animation-delay: 0.30s; }
.anim-hero.anim-hero-d4 { animation-delay: 0.45s; }
.anim-hero.anim-hero-d5 { animation-delay: 0.60s; }

/* ── Service card right-side visuals ── */
.svc-vis { position: absolute; inset: 0; overflow: hidden; }
.svc-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* 1. Automation */
.svc-vis-auto { display: flex; align-items: center; justify-content: center; }
.svc-auto-glow {
  position: absolute; top: 50%; left: 50%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(ellipse, hsl(199 100% 55% / 0.13) 0%, transparent 70%);
  animation: svcAutoGlow 3s ease-in-out infinite;
}
.svc-ring {
  position: absolute; top: 50%; left: 50%;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1.5px dashed hsl(199 100% 55% / 0.38);
  animation: svcRingPulse 2.6s ease-out infinite;
}
.svc-r2 { animation-delay: 0.87s; }
.svc-r3 { animation-delay: 1.73s; }
.svc-core {
  position: relative; z-index: 5;
  width: 56px; height: 56px;
  border-radius: 15px;
  background: hsl(199 100% 55% / 0.09);
  border: 1.5px solid hsl(199 100% 55% / 0.36);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 22px hsl(199 100% 55% / 0.16), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: svcCoreGlowBox 3s ease-in-out infinite;
}
.svc-core-ai-text {
  font-size: 18px; font-weight: 800;
  color: hsl(199 100% 50%);
  letter-spacing: -0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1; user-select: none;
}
.svc-tag {
  position: absolute; z-index: 6;
  font-size: 10px; font-weight: 600;
  color: hsl(199 100% 40%);
  background: hsl(199 100% 55% / 0.08);
  border: 1px solid hsl(199 100% 55% / 0.22);
  border-radius: 20px; padding: 3px 9px;
  white-space: nowrap;
  animation: svcTagFloat 3.5s ease-in-out infinite;
}
.svc-tag-a { top: 22%; right: 22%; }
.svc-tag-b { bottom: 22%; right: 22%; animation-delay: 1.1s; }
.svc-tag::before {
  content: ''; display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: hsl(199 100% 55% / 0.85);
  vertical-align: middle; margin-right: 5px; flex-shrink: 0;
}
.svc-tag::after {
  content: ''; position: absolute;
  top: 50%; right: 100%; transform: translateY(-50%);
  width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, hsl(199 100% 55% / 0.38));
  pointer-events: none;
}

/* 2. Workshop training visual */
.svc-vis-ws { display: flex; align-items: center; justify-content: center; }
.svc-ws-glow {
  position: absolute; top: 44%; left: 50%;
  width: 72px; height: 72px;
  transform: translate(-50%,-50%);
  background: hsl(199 100% 55% / 0.14);
  border-radius: 50%; filter: blur(18px);
  animation: wsHpGlow 4s ease-in-out infinite;
}
.svc-ws-or {
  position: absolute; top: 44%; left: 50%;
  border-radius: 50%; transform: translate(-50%,-50%);
}
.svc-ws-or1 { width: 82px; height: 82px; border: 1px solid hsl(199 100% 55% / 0.30); animation: wsHpOrbit 3.5s ease-in-out infinite; }
.svc-ws-or2 { width: 120px; height: 120px; border: 1px solid hsl(199 100% 55% / 0.15); animation: wsHpOrbit 3.5s ease-in-out infinite 1.3s; }
.svc-ws-board {
  position: absolute; top: 44%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 38px;
  background: hsl(199 100% 55% / 0.16);
  border: 1.5px solid hsl(199 100% 55% / 0.58);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  animation: wsHpFloat 5s ease-in-out infinite;
  z-index: 5;
}
.svc-ws-board::before {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 1.5px; height: 11px;
  background: hsl(199 100% 55% / 0.50);
}
.svc-ws-board::after {
  content: ''; position: absolute; top: calc(100% + 11px); left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 1.5px;
  background: hsl(199 100% 55% / 0.40);
}
.svc-ws-nd {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: hsl(199,100%,70%);
  box-shadow: 0 0 5px hsl(199 100% 55% / 0.85);
}
.svc-ws-nd1 { top: -7px; left: 7px;   animation: wsHpNd 2.8s ease-in-out infinite 0s; }
.svc-ws-nd2 { top: -7px; right: 7px;  animation: wsHpNd 2.8s ease-in-out infinite 0.9s; }
.svc-ws-nd3 { bottom: -7px; left: 22px; animation: wsHpNd 2.8s ease-in-out infinite 1.8s; }
.svc-ws-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.svc-ws-line    { animation: wsHpLineDash 2.2s linear infinite 0s; }
.svc-ws-line--2 { animation-delay: 0.7s; }
.svc-ws-line--3 { animation-delay: 1.4s; }
@keyframes wsHpLineDash { to { stroke-dashoffset: -14; } }
.svc-ws-seat {
  position: absolute; bottom: 16%;
  display: flex; flex-direction: column; align-items: center; gap: 2px; z-index: 3;
}
.svc-ws-sh {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid hsl(199 100% 65% / 0.60);
  background: hsl(199 100% 55% / 0.15);
}
.svc-ws-sb {
  width: 14px; height: 9px; border-radius: 3px 3px 0 0;
  border: 1.5px solid hsl(199 100% 65% / 0.45); border-bottom: none;
  background: hsl(199 100% 55% / 0.10);
}
.svc-ws-s1 { left: 18%;  animation: wsHpSeat 3.2s ease-in-out infinite 0.3s; }
.svc-ws-s2 { left: 50%; transform: translateX(-50%); animation: wsHpSeat 3.2s ease-in-out infinite 1.1s; }
.svc-ws-s3 { right: 18%; animation: wsHpSeat 3.2s ease-in-out infinite 1.9s; }
@keyframes wsHpGlow  { 0%,100%{opacity:.7;transform:translate(-50%,-50%) scale(1)}   50%{opacity:1;transform:translate(-50%,-50%) scale(1.25)} }
@keyframes wsHpOrbit { 0%,100%{opacity:.5;transform:translate(-50%,-50%) scale(1)}   50%{opacity:1;transform:translate(-50%,-50%) scale(1.07)} }
@keyframes wsHpFloat { 0%,100%{transform:translate(-50%,-50%) translateY(0)}           50%{transform:translate(-50%,-50%) translateY(-4px)} }
@keyframes wsHpNd    { 0%,100%{opacity:.45;transform:scale(1)}                        50%{opacity:1;transform:scale(1.5)} }
@keyframes wsHpSeat  { 0%,100%{opacity:.45}                                            50%{opacity:1} }

/* 3. Workflow flow */
.svc-vis-flow {
  display: flex; flex-direction: column; justify-content: center;
  gap: 10px; padding: 16px;
  position: absolute; inset: 0;
}
.svc-vis-flow::before {
  content: ''; position: absolute;
  left: 27px; top: 24px; bottom: 24px;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, hsl(199 100% 55% / 0.22) 25%, hsl(199 100% 55% / 0.22) 75%, transparent);
  pointer-events: none;
}
.svc-fl-step { display: flex; align-items: center; gap: 10px; opacity: 0.45; position: relative; z-index: 1; }
.svc-fl-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: hsl(199 100% 55% / 0.15); border: 1px solid hsl(199 100% 55% / 0.45);
  font-size: 9.5px; font-weight: 700; color: hsl(199, 100%, 65%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-fl-lbl { font-size: 11.5px; font-weight: 500; color: hsl(199, 100%, 72%); line-height: 1; }
.svc-fl-runner {
  position: absolute; left: 26px; top: 24px;
  width: 2px; height: 20px;
  background: linear-gradient(to bottom, transparent, hsl(199 100% 58% / 0.90), transparent);
  border-radius: 1px; pointer-events: none;
  animation: svcFlowRunner 4s linear infinite; z-index: 2;
}
.svc-fl-s1 { animation: svcStepFade 4s ease-in-out infinite 1.0s; }
.svc-fl-s2 { animation: svcStepFade 4s ease-in-out infinite 1.9s; }
.svc-fl-s3 { animation: svcStepFade 4s ease-in-out infinite 2.7s; }
.svc-fl-s4 { animation: svcStepFade 4s ease-in-out infinite 3.5s; }
.svc-fl-s1 .svc-fl-num { animation: svcStepLight 4s ease-in-out infinite 1.0s; }
.svc-fl-s2 .svc-fl-num { animation: svcStepLight 4s ease-in-out infinite 1.9s; }
.svc-fl-s3 .svc-fl-num { animation: svcStepLight 4s ease-in-out infinite 2.7s; }
.svc-fl-s4 .svc-fl-num { animation: svcStepLight 4s ease-in-out infinite 3.5s; }

/* 4. Website browser mockup */
.svc-vis-site { display: flex; align-items: center; justify-content: center; }
.svc-bw {
  width: 158px; border-radius: 9px; overflow: hidden;
  background: white; border: 1px solid hsl(220 15% 87%);
  box-shadow: 0 6px 24px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.06);
  position: relative; animation: svcBwFloat 5s ease-in-out infinite;
}
.svc-bw::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: svcBwShine 4.5s ease-in-out infinite 2s;
  pointer-events: none;
}
.svc-bw-bar {
  display: flex; align-items: center; gap: 4px; padding: 5px 8px;
  background: hsl(220 20% 96%); border-bottom: 1px solid hsl(220 15% 90%);
}
.svc-bd { width: 6px; height: 6px; border-radius: 50%; display: block; flex-shrink: 0; }
.svc-bw-hero {
  height: 28px; margin: 6px 6px 0; border-radius: 5px;
  background: linear-gradient(90deg, hsl(225 50% 17%), hsl(210 58% 28%));
  position: relative; overflow: hidden;
}
.svc-bw-hero::after {
  content: ''; position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 11px; background: #FF7A1A; border-radius: 4px; opacity: 0.92;
}
.svc-bw-body { padding: 6px 6px 5px; display: flex; flex-direction: column; gap: 5px; }
.svc-bw-row  { height: 6px; background: hsl(220 15% 88%); border-radius: 3px; }
.svc-bw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; padding: 0 6px 8px; }
.svc-bw-card { height: 20px; background: hsl(220 20% 96%); border: 1px solid hsl(220 15% 90%); border-radius: 4px; }

/* ── Case card animations ── */
.case-web-hdr { position: relative; overflow: hidden; }
.case-web-c0 { animation: caseWebCard 5s ease-in-out infinite 0.3s both; }
.case-web-c1 { animation: caseWebCard 5s ease-in-out infinite 0.7s both; }
.case-web-c2 { animation: caseWebCard 5s ease-in-out infinite 1.1s both; }
@keyframes caseWebCard {
  0%, 5%    { opacity: 0; transform: translateY(6px); }
  20%       { opacity: 1; transform: translateY(0);   }
  78%       { opacity: 1; transform: translateY(0);   }
  94%, 100% { opacity: 0; transform: translateY(6px); }
}
.case-web-cta { animation: caseWebCta 2.8s ease-in-out infinite; }
@keyframes caseWebCta {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
.case-web-shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.11) 50%, transparent 75%);
  transform: translateX(-180%);
  animation: caseWebShine 4s ease-in-out infinite 0.8s;
  pointer-events: none; z-index: 1;
}
@keyframes caseWebShine {
  0%, 15%   { transform: translateX(-180%); }
  55%, 100% { transform: translateX(220%);  }
}

/* CRM Workflow runner */
.case-wf-static-dot { display: none; }
.case-wf-line       { overflow: visible; }
.case-wf-runner {
  position: absolute; left: 0%; top: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: hsl(199 100% 58%);
  box-shadow: 0 0 8px 3px hsl(199 100% 55% / 0.52);
  transform: translate(-50%,-50%);
  animation: caseWfRunner 4.5s ease-in-out infinite; z-index: 5;
}
@keyframes caseWfRunner {
  0%   { left: 0%;   opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.case-wf-n0 > div:first-child { animation: caseWfNodeCyan   4.5s ease-in-out infinite 0s;    }
.case-wf-n1 > div:first-child { animation: caseWfNodeCyan   4.5s ease-in-out infinite 1.05s; }
.case-wf-n2 > div:first-child { animation: caseWfNodeCyan   4.5s ease-in-out infinite 2.25s; }
.case-wf-n3 > div:first-child { animation: caseWfNodeOrange 4.5s ease-in-out infinite 3.45s; }
@keyframes caseWfNodeCyan {
  0%, 100% { background: hsl(199 100% 55% / 0.18); box-shadow: 0 0 10px hsl(199 100% 55% / 0.22); }
  8%, 22%  { background: hsl(199 100% 55% / 0.50); box-shadow: 0 0 20px 5px hsl(199 100% 55% / 0.50); }
}
@keyframes caseWfNodeOrange {
  0%, 100% { background: rgba(255,122,26,0.18); box-shadow: 0 0 10px rgba(255,122,26,0.25); }
  8%, 22%  { background: rgba(255,122,26,0.55); box-shadow: 0 0 20px 5px rgba(255,122,26,0.55); }
}

/* Chat bubble animations */
.chat-anim-1 { animation: chatMsg1 9s ease-in-out infinite; will-change: opacity, transform; }
.chat-anim-2 { animation: chatMsg2 9s ease-in-out infinite; will-change: opacity, transform; }
.chat-anim-3 { animation: chatMsg3 9s ease-in-out infinite; will-change: opacity, transform; }
.chat-anim-4 { animation: chatMsg4 9s ease-in-out infinite; will-change: opacity, transform; }
@keyframes chatMsg1 {
  0%, 5%    { opacity: 0; transform: translateY(6px); }
  16%       { opacity: 1; transform: translateY(0);   }
  52%       { opacity: 1; transform: translateY(0);   }
  64%, 100% { opacity: 0; transform: translateY(-2px); }
}
@keyframes chatMsg2 {
  0%, 20%   { opacity: 0; transform: translateY(6px); }
  32%       { opacity: 1; transform: translateY(0);   }
  72%       { opacity: 1; transform: translateY(0);   }
  84%, 100% { opacity: 0; transform: translateY(-2px); }
}
@keyframes chatMsg3 {
  0%, 38%   { opacity: 0; transform: translateY(6px); }
  50%       { opacity: 1; transform: translateY(0);   }
  78%       { opacity: 1; transform: translateY(0);   }
  90%, 100% { opacity: 0; transform: translateY(-2px); }
}
@keyframes chatMsg4 {
  0%, 55%   { opacity: 0; transform: translateY(6px); }
  67%       { opacity: 1; transform: translateY(0);   }
  82%       { opacity: 1; transform: translateY(0);   }
  94%, 100% { opacity: 0; transform: translateY(-2px); }
}

/* Mobile service card flow lines */
.mob-flow { display: none; }
@media (max-width: 639px) {
  .mob-flow {
    display: block; position: absolute;
    left: 100%; top: 50%; transform: translateY(-50%);
    width: calc(100vw - 144px); height: 2px;
    pointer-events: none; overflow: visible;
  }
  .mob-fl-track {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, hsl(199 100% 55% / 0.38) 0%, hsl(199 100% 55% / 0.20) 65%, transparent 100%);
  }
  .mob-fl-n {
    position: absolute; top: 50%;
    width: 5px; height: 5px; border-radius: 50%;
    background: hsl(199 100% 55% / 0.20); border: 1px solid hsl(199 100% 55% / 0.38);
    transform: translate(-50%,-50%);
  }
  .mob-fl-n1 { left: 22%; animation: mobFlGlow 3.2s ease-in-out infinite 0.45s; }
  .mob-fl-n2 { left: 50%; animation: mobFlGlow 3.2s ease-in-out infinite 1.34s; }
  .mob-fl-n3 { left: 78%; animation: mobFlGlow 3.2s ease-in-out infinite 2.24s; }
  .mob-flow-3 .mob-fl-n1 { left: 18%; animation-delay: 0.32s; }
  .mob-flow-3 .mob-fl-n2 { left: 40%; animation-delay: 1.02s; }
  .mob-flow-3 .mob-fl-n3 { left: 62%; animation-delay: 1.73s; }
  .mob-fl-n4             { left: 82%; animation: mobFlGlow 3.2s ease-in-out infinite 2.37s; }
  .mob-flow-2 .mob-fl-n { border-radius: 2px; transform: translate(-50%,-50%) rotate(45deg); }
  .mob-flow-3 .mob-fl-n { border-radius: 2px; }
  .mob-flow-4 .mob-fl-n { width: 8px; height: 4px; border-radius: 2px; }
  .mob-fl-runner {
    position: absolute; top: 50%; left: 0%;
    width: 5px; height: 5px; border-radius: 50%;
    background: hsl(199 100% 60% / 0.95);
    box-shadow: 0 0 6px 2px hsl(199 100% 55% / 0.45);
    transform: translate(-50%,-50%);
    animation: mobFlRunner 3.2s ease-in-out infinite;
  }
  @keyframes mobFlRunner {
    0%   { left: 0%;   opacity: 0; }
    6%   { opacity: 1; }
    94%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
  }
  @keyframes mobFlGlow {
    0%, 100% { background: hsl(199 100% 55% / 0.20); box-shadow: none; }
    8%, 22%  { background: hsl(199 100% 60% / 0.78); box-shadow: 0 0 6px 2px hsl(199 100% 55% / 0.40); }
  }
  .mob-icon-anim-1::after {
    content: ''; position: absolute; bottom: 7px; left: 50%;
    width: 4px; height: 4px; border-radius: 50%;
    background: hsl(199 100% 60% / 0.70);
    box-shadow: -7px 0 0 hsl(199 100% 60% / 0.42), 7px 0 0 hsl(199 100% 60% / 0.42);
    transform: translateX(-50%); pointer-events: none;
    animation: mobAutoDots 1.5s ease-in-out infinite;
  }
  @keyframes mobAutoDots {
    0%, 100% { opacity: 0.30; transform: translateX(-50%) scale(1);    }
    50%       { opacity: 0.90; transform: translateX(-50%) scale(1.35); }
  }
  .mob-icon-anim-2::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 12px; border: 1.5px solid hsl(199 100% 55% / 0.55);
    pointer-events: none; animation: mobWorkshopRing 2.2s ease-out infinite;
  }
  @keyframes mobWorkshopRing {
    0%   { transform: scale(0.70); opacity: 0.85; }
    100% { transform: scale(1.40); opacity: 0;    }
  }
  .mob-icon-anim-3::after {
    content: ''; position: absolute; bottom: 7px; left: 7px; right: 7px;
    height: 2px; border-radius: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(199 100% 55% / 0.68) 50%, transparent 100%);
    background-size: 200% 100%; pointer-events: none;
    animation: mobFlowShimmer 1.8s linear infinite;
  }
  @keyframes mobFlowShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }
  .mob-icon-anim-4::before {
    content: ''; position: absolute; left: 6px; right: 6px; top: 8px; height: 1px;
    border-radius: 1px; background: hsl(199 100% 55% / 0.65);
    box-shadow: 0 1px 4px hsl(199 100% 55% / 0.28); pointer-events: none;
    animation: mobSiteScan 2.4s ease-in-out infinite;
  }
  @keyframes mobSiteScan {
    0%        { top: 8px;  opacity: 0;    }
    8%        { opacity: 0.80; }
    78%       { top: 38px; opacity: 0.45; }
    92%, 100% { top: 38px; opacity: 0;   }
  }
}

/* ── Hero Visual (hv-*) ── */
.hv-root { position: relative; width: 100%; max-width: 520px; height: 380px; margin-left: auto; }
.hv-glow {
  position: absolute; inset: -80px;
  background: radial-gradient(ellipse at 55% 50%, hsl(199 100% 55% / 0.18) 0%, transparent 68%);
  pointer-events: none; animation: hvGlowPulse 5s ease-in-out infinite;
}
.hv-browser-3d {
  position: absolute; top: 50px; left: 0; right: 52px;
  transform: perspective(1100px) rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
}
.hv-browser {
  background: linear-gradient(155deg, hsl(225 50% 9%) 0%, hsl(218 52% 13%) 100%);
  border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.07);
  animation: hvFloat 6.5s ease-in-out infinite;
}
.hv-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hv-dots { display: flex; gap: 5px; align-items: center; }
.hv-dot  { width: 9px; height: 9px; border-radius: 50%; display: block; }
.hv-url  {
  font-size: 10px; color: rgba(255,255,255,0.28); font-family: monospace;
  background: rgba(255,255,255,0.05); padding: 3px 10px;
  border-radius: 20px; border: 1px solid rgba(255,255,255,0.08);
}
.hv-dash { padding: 14px 16px 16px; }
.hv-dash-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.hv-dash-title  { color: rgba(255,255,255,0.95); font-size: 13px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.hv-dash-sub    { color: rgba(255,255,255,0.30); font-size: 9px; margin-top: 3px; }
.hv-badge-active {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,220,120,0.12); border: 1px solid rgba(0,220,120,0.22);
  border-radius: 20px; padding: 3px 9px;
  font-size: 9.5px; font-weight: 600; color: #00dc78; white-space: nowrap;
}
.hv-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #00dc78; flex-shrink: 0; animation: hvDotPulse 2s ease-in-out infinite; }
.hv-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 12px; }
.hv-stat  { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 8px 10px; text-align: center; }
.hv-stat-val { font-size: 15px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.hv-stat-lbl { font-size: 9px; color: rgba(255,255,255,0.38); margin-top: 3px; }
.hv-chart { position: relative; height: 78px; margin-bottom: 11px; }
.hv-bars  { display: flex; align-items: flex-end; gap: 4px; height: 100%; padding: 0 2px; }
.hv-bar-wrap { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.hv-bar-col  { width: 100%; border-radius: 3px 3px 0 0; transform-origin: bottom; animation: hvBarBreath 3.5s ease-in-out infinite; }
.hv-line-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hv-line-path {
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: hvLineDraw 2.2s ease forwards, hvLineShimmer 5s ease-in-out 2.3s infinite;
}
.hv-progress-row  { display: flex; align-items: center; gap: 8px; }
.hv-progress-lbl  { font-size: 9px; color: rgba(255,255,255,0.32); white-space: nowrap; }
.hv-progress-track { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.hv-progress-fill  { height: 100%; width: 0%; background: linear-gradient(90deg, hsl(199 100% 55%), hsl(199 100% 70%)); border-radius: 2px; animation: hvProgressFill 2.8s ease forwards 0.6s; }
.hv-progress-pct  { font-size: 9px; color: hsl(199 100% 65%); font-weight: 600; }
.hv-card {
  position: absolute;
  background: rgba(10,18,45,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.13); border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05); z-index: 10;
}
.hv-card-top    { top: 0; right: 0; animation: hvFloatAlt 5.2s ease-in-out infinite; }
.hv-card-bottom { bottom: 16px; left: -8px; animation: hvFloat 7.5s ease-in-out infinite 1.2s; }
.hv-dot-live    { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: hsl(199 100% 55%); box-shadow: 0 0 8px hsl(199 100% 55% / 0.7); animation: hvDotPulse 2.8s ease-in-out infinite; }
.hv-card-title  { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.95); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.hv-card-sub    { font-size: 9px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.hv-badge-arrow { width: 30px; height: 30px; border-radius: 8px; background: rgba(28,200,255,0.14); border: 1px solid rgba(28,200,255,0.28); display: flex; align-items: center; justify-content: center; color: hsl(199 100% 62%); font-size: 15px; font-weight: 700; flex-shrink: 0; }
.hv-badge-num   { font-size: 14px; font-weight: 800; color: hsl(199 100% 62%); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.hv-conn        { position: absolute; border-radius: 50%; background: hsl(199 100% 55%); pointer-events: none; }
.hv-conn-a      { width: 5px; height: 5px; top: 78px;  right: 36px; animation: hvConnPulse 3.2s ease-in-out infinite 0.4s; }
.hv-conn-b      { width: 4px; height: 4px; bottom: 110px; right: 18px; animation: hvConnPulse 3.2s ease-in-out infinite 1.6s; }
.hv-conn-c      { width: 3px; height: 3px; bottom: 60px; right: 44px; background: #FF7A1A; animation: hvConnPulse 3.2s ease-in-out infinite 2.8s; }

/* ── All @keyframes ── */
@keyframes svcRingPulse    { 0% { transform: translate(-50%,-50%) scale(0.35); opacity: 0.92; } 100% { transform: translate(-50%,-50%) scale(2.30); opacity: 0; } }
@keyframes svcAutoGlow     { 0%, 100% { transform: translate(-50%,-50%) scale(1.0);  opacity: 0.70; } 50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1.0; } }
@keyframes svcCoreGlowBox  { 0%, 100% { box-shadow: 0 0 16px hsl(199 100% 55% / 0.14), inset 0 1px 0 rgba(255,255,255,0.06); } 50% { box-shadow: 0 0 30px hsl(199 100% 55% / 0.32), inset 0 1px 0 rgba(255,255,255,0.10); } }
@keyframes svcTagFloat     { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-5px); } }
@keyframes svcRadarWedgeSpin { 0% { transform: translate(-50%,-50%) rotate(0deg); } 100% { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes svcRcInner      { 0%, 100% { box-shadow: 0 0 6px  hsl(199 100% 55% / 0.20); } 50% { box-shadow: 0 0 18px hsl(199 100% 55% / 0.52); } }
@keyframes svcRdotPulse    { 0%, 100% { opacity: 0.65; transform: scale(1);    } 50% { opacity: 1.00; transform: scale(1.35); } }
@keyframes svcStepFade     { 0%, 100% { opacity: 0.38; } 7%, 20% { opacity: 1; } }
@keyframes svcStepLight    { 0%, 100% { box-shadow: none; } 7%, 20% { box-shadow: 0 0 14px hsl(199 100% 55% / 0.58), 0 0 0 1.5px hsl(199 100% 55% / 0.45); } }
@keyframes svcFlowRunner   { 0% { transform: translateY(0px); opacity: 0; } 6% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateY(160px); opacity: 0; } }
@keyframes svcBwFloat      { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-5px); } }
@keyframes svcBwShine      { 0% { transform: translateX(-120%); } 28%, 100% { transform: translateX(200%); } }
@keyframes hvFloat         { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes hvFloatAlt      { 0%, 100% { transform: translateY(0px); } 40% { transform: translateY(-7px); } 70% { transform: translateY(-4px); } }
@keyframes hvGlowPulse     { 0%, 100% { opacity: 0.75; transform: scale(1);    } 50% { opacity: 1;    transform: scale(1.06); } }
@keyframes hvDotPulse      { 0%, 100% { opacity: 1;   transform: scale(1);    } 50% { opacity: 0.4; transform: scale(0.75); } }
@keyframes hvBarBreath     { 0%, 100% { transform: scaleY(1);    } 50% { transform: scaleY(0.91); } }
@keyframes hvLineDraw      { to { stroke-dashoffset: 0; } }
@keyframes hvLineShimmer   { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }
@keyframes hvProgressFill  { from { width: 0%; } to { width: 72%; } }
@keyframes hvConnPulse     { 0%, 100% { opacity: 0.55; transform: scale(1);   box-shadow: 0 0 4px hsl(199 100% 55% / 0.35); } 50% { opacity: 1; transform: scale(1.6); box-shadow: 0 0 10px hsl(199 100% 55% / 0.75); } }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-slide-left { opacity: 1 !important; transform: none !important; transition: none !important; }
  .anim-hero { animation: none !important; opacity: 1 !important; transform: none !important; }
  .mobile-menu-panel { transition: none !important; }
  .chat-anim-1, .chat-anim-2, .chat-anim-3, .chat-anim-4,
  .case-web-c0, .case-web-c1, .case-web-c2, .case-web-cta, .case-web-shine,
  .case-wf-runner,
  .case-wf-n0 > div:first-child, .case-wf-n1 > div:first-child,
  .case-wf-n2 > div:first-child, .case-wf-n3 > div:first-child { animation: none !important; }
  .case-web-shine { opacity: 0 !important; }
  .chat-anim-1, .chat-anim-2, .chat-anim-3, .chat-anim-4,
  .case-web-c0, .case-web-c1, .case-web-c2 { opacity: 1 !important; transform: none !important; }
  .case-wf-static-dot { display: block !important; }
  .mob-fl-runner { animation: none !important; opacity: 0 !important; }
  .mob-fl-n1, .mob-fl-n2, .mob-fl-n3, .mob-fl-n4 { animation: none !important; background: hsl(199 100% 55% / 0.28) !important; }
  .mob-icon-anim-1::after, .mob-icon-anim-2::before,
  .mob-icon-anim-3::after, .mob-icon-anim-4::before { animation: none !important; opacity: 0 !important; }
  .svc-ring, .svc-auto-glow, .svc-core, .svc-tag,
  .svc-ws-glow, .svc-ws-or1, .svc-ws-or2, .svc-ws-board,
  .svc-ws-nd1, .svc-ws-nd2, .svc-ws-nd3,
  .svc-ws-line, .svc-ws-line--2, .svc-ws-line--3,
  .svc-ws-s1, .svc-ws-s2, .svc-ws-s3,
  .svc-fl-runner, .svc-fl-s1, .svc-fl-s2, .svc-fl-s3, .svc-fl-s4,
  .svc-fl-s1 .svc-fl-num, .svc-fl-s2 .svc-fl-num, .svc-fl-s3 .svc-fl-num, .svc-fl-s4 .svc-fl-num,
  .svc-bw, .svc-bw::after { animation: none !important; }
  .svc-fl-s1, .svc-fl-s2, .svc-fl-s3, .svc-fl-s4 { opacity: 1 !important; }
  .svc-ws-s1, .svc-ws-s2, .svc-ws-s3 { opacity: 1 !important; }
  .hv-browser, .hv-glow, .hv-dot-live, .hv-badge-dot,
  .hv-bar-col, .hv-line-path, .hv-progress-fill,
  .hv-card-top, .hv-card-bottom,
  .hv-conn-a, .hv-conn-b, .hv-conn-c { animation: none !important; }
  .hv-line-path { stroke-dashoffset: 0 !important; }
  .hv-progress-fill { width: 72% !important; }
}

/* =========================================================
   24. SHARED HELPERS & UTILITY ALIASES
   ========================================================= */

/* Layout */
.mx-auto          { margin-left: auto; margin-right: auto; }
.text-center      { text-align: center; }
.overflow-hidden  { overflow: hidden; }
.relative         { position: relative; }

/* Width constraints */
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

/* Padding */
.p-6  { padding: 1.5rem; }
.p-8  { padding: 2rem; }
.px-4 { padding-left: 1rem;   padding-right: 1rem; }
.py-4 { padding-top: 1rem;    padding-bottom: 1rem; }

/* Margin bottom */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Margin top */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

/* Font family */
.font-heading { font-family: 'Plus Jakarta Sans', sans-serif; }
.font-body    { font-family: 'Inter', sans-serif; }

/* Font weight */
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold{ font-weight: 800; }

/* Font size */
.text-xs   { font-size: 0.75rem;  line-height: 1.5; }
.text-sm   { font-size: 0.875rem; line-height: 1.55; }
.text-base { font-size: 1rem;     line-height: 1.6; }
.text-lg   { font-size: 1.125rem; line-height: 1.65; }
.text-xl   { font-size: 1.25rem;  line-height: 1.5; }
.text-2xl  { font-size: 1.5rem;   line-height: 1.3; }
.text-3xl  { font-size: 1.875rem; line-height: 1.25; }
@media (min-width: 1024px) {
  .lg\:text-3xl { font-size: 1.875rem; line-height: 1.25; }
}

/* Line height */
.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.4; }
.leading-normal  { line-height: 1.5; }
.leading-relaxed { line-height: 1.7; }

/* Text colour */
.text-white            { color: #ffffff; }
.text-primary          { color: var(--primary); }
.text-foreground       { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-white-55         { color: rgba(255,255,255,0.55); }

/* Tailwind-style slash variants (used in PHP templates) */
.text-white\/55 { color: rgba(255,255,255,0.55); }
.text-white\/70 { color: rgba(255,255,255,0.70); }
.text-white\/80 { color: rgba(255,255,255,0.80); }

/* Misc */
.text-balance  { text-wrap: balance; }
.items-center  { align-items: center; }

/* Glow blob used in all subpage heroes */
.hero-glow-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, hsl(199,100%,55%,0.04) 0%, transparent 70%);
  filter: blur(40px);
}

/* Subpage hero text styles */
.subpage-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #FF7A1A;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* Section label orange (inline label) */
.section-label-orange {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #FF7A1A;
}
.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
}
@media (min-width: 1024px) { .section-h2 { font-size: 2.25rem; } }

/* Two-column grid used on Over Ons mission section */
.two-col-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .two-col-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* Team photo */
.team-photo-wrap {
  position: relative; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 12px 48px -12px rgba(14,20,40,0.18);
  border: 1px solid rgba(200,200,200,0.60);
}
.team-photo-img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; object-position: top; }
.team-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(200,200,200,0.80);
}
.team-photo-quote  { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.875rem; font-style: italic; color: var(--primary); line-height: 1.4; }
.team-photo-credit { color: hsl(220,10%,60%); font-size: 0.75rem; margin-top: 0.25rem; }

/* Value card top accent line */
.value-card-top-line {
  position: absolute; top: 0; left: 1.5rem; right: 1.5rem; height: 1px;
  background: linear-gradient(to right, transparent, transparent, transparent);
  border-radius: 9999px;
  transition: background 0.5s;
}
.value-card:hover .value-card-top-line {
  background: linear-gradient(to right, transparent, hsl(199,100%,55%,0.50), transparent);
}

/* =========================================================
   25. DIENSTEN PAGE — alternating row layout
   ========================================================= */
.dienst-list { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 1024px) { .dienst-list { gap: 6rem; } }

.dienst-row {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 1024px) { .dienst-row { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* On desktop: odd rows content left, visual right (default)
   Even rows: visual left (order-1), content right (order-2) */
@media (min-width: 1024px) {
  .dienst-row--reverse .dienst-content { order: 2; }
  .dienst-row--reverse .dienst-visual  { order: 1; }
  .dienst-row--reverse .step-visual    { order: 1; }
}

.dienst-content { /* text column */ }
.dienst-content p  { margin-bottom: 1.5rem; line-height: 1.7; }
.dienst-content h2 { margin-bottom: 1rem; }
.dienst-cta-btn { padding: 0 1.75rem; height: 3rem; }

.dienst-features {
  display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; list-style: none;
}
.dienst-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--foreground); line-height: 1.5; }

/* Diensten page visual containers (full aspect-ratio panels) */
.dienst-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}

/* Shared visual helpers */
.svc-grid-overlay {
  position: absolute; inset: 0; opacity: 0.70; pointer-events: none;
  background-image:
    linear-gradient(hsl(199,100%,55%,0.07) 1px, transparent 1px),
    linear-gradient(90deg, hsl(199,100%,55%,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.svc-glow-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: hsl(199,100%,55%,0.10); filter: blur(80px);
  width: 14rem; height: 14rem; top: 0; right: 0;
}
.svc-glow-blob--bottom-right { top: auto; bottom: 0; right: 0; background: hsl(199,100%,55%,0.08); }

/* Diensten svc-inner: the content layer inside the visual */
.svc-vis-auto .svc-inner,
.svc-vis-flow .svc-inner,
.svc-vis-site .svc-inner {
  position: relative; z-index: 10;
  width: 100%; padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.625rem;
}

.svc-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem;
}
.svc-header-left { display: flex; align-items: center; gap: 0.5rem; }
.svc-icon-wrap {
  width: 1.75rem; height: 1.75rem; border-radius: 0.5rem;
  background: hsl(199,100%,55%,0.15); border: 1px solid hsl(199,100%,55%,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.svc-header-title { color: rgba(255,255,255,0.70); font-size: 0.75rem; font-weight: 600; }
.svc-live { display: flex; align-items: center; gap: 0.375rem; }
.svc-live-dot {
  width: 0.375rem; height: 0.375rem; border-radius: 50%; background: #4ade80;
  animation: hvDotPulse 2s ease-in-out infinite;
}
.svc-live span:last-child { font-size: 0.5625rem; color: rgba(255,255,255,0.35); }
.svc-realtime { font-size: 0.5625rem; color: rgba(255,255,255,0.30); }

/* Pipeline (AI visual) */
.svc-pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.375rem; margin-bottom: 0.75rem; }
.svc-node {
  border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.10);
  background: hsl(225,30%,15%);
  padding: 0.625rem; text-align: center;
}
.svc-node--done   { border-color: hsl(199,100%,55%,0.25); background: hsl(199,100%,55%,0.10); }
.svc-node--active { border-color: rgba(255,122,26,0.30); background: rgba(255,122,26,0.08); }
.svc-node svg     { margin: 0 auto 0.25rem; color: var(--primary); }
.svc-node--active svg { color: #FF7A1A; }
.svc-node--done svg   { color: var(--primary); }
.svc-node-label { font-size: 0.5rem; font-weight: 500; color: hsl(199,100%,55%,0.80); }
.svc-node--active .svc-node-label { color: #FF7A1A; }

.svc-log-row {
  display: flex; align-items: center; justify-content: space-between;
  background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem; padding: 0.5rem 0.75rem; gap: 0.5rem;
}
.svc-log-row > div { display: flex; align-items: center; gap: 0.5rem; }
.svc-log-label { color: rgba(255,255,255,0.60); font-size: 0.75rem; }
.svc-log-count { color: var(--primary); font-size: 0.625rem; font-weight: 600; }

/* Flow nodes (Workflow visual) */
.svc-flow-nodes { display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem; }
.svc-flow-node {
  flex: 1; text-align: center; border-radius: 0.5rem;
  padding: 0.5rem 0; font-size: 0.5625rem; font-weight: 700;
}
.svc-flow-node--primary { background: hsl(199,100%,55%,0.10); border: 1px solid hsl(199,100%,55%,0.25); color: var(--primary); }
.svc-flow-node--orange  { background: rgba(255,122,26,0.10);  border: 1px solid rgba(255,122,26,0.30);  color: #FF7A1A; }
.svc-flow-arrow { color: rgba(255,255,255,0.20); flex-shrink: 0; }

.svc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.5rem; }
.svc-metric-card {
  background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem; padding: 0.75rem;
}
.svc-metric-card--uptime { display: flex; flex-direction: column; justify-content: space-between; }
.svc-bars { display: flex; align-items: flex-end; gap: 2px; margin-bottom: 0.25rem; height: 2rem; }
.svc-bar-item { flex: 1; border-radius: 2px 2px 0 0; background: hsl(199,100%,55%,0.65); }
.svc-bar-item--orange { background: #FF7A1A; }
.svc-metric-label { font-size: 0.5625rem; color: rgba(255,255,255,0.30); margin-top: 0.25rem; }

.svc-status-bar {
  background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem; padding: 0.5rem 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.50); font-size: 0.625rem;
}

/* Browser mockup (Website visual) */
.svc-browser {
  background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.75rem; overflow: hidden; margin-bottom: 0.5rem;
}
.svc-browser-toolbar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.svc-browser-dots { display: flex; gap: 4px; }
.svc-dot { display: block; width: 0.5rem; height: 0.5rem; border-radius: 50%; }
.svc-dot--red    { background: rgba(248,113,113,0.50); }
.svc-dot--yellow { background: rgba(251,191,36,0.50); }
.svc-dot--green  { background: rgba(74,222,128,0.50); }
.svc-url-bar {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.375rem; padding: 0.125rem 0.5rem;
  display: flex; align-items: center; gap: 0.375rem; color: rgba(255,255,255,0.30); font-size: 0.5625rem;
}
.svc-url-icon { color: rgba(255,255,255,0.25); }
.svc-code-icon { color: rgba(255,255,255,0.25); }
.svc-browser-body { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.svc-preview-hero { background: hsl(225,50%,7%); border: 1px solid rgba(255,255,255,0.07); border-radius: 0.5rem; padding: 0.75rem; }
.svc-preview-h1  { height: 0.5rem; width: 66%; background: rgba(255,255,255,0.20); border-radius: 2px; margin-bottom: 0.375rem; }
.svc-preview-sub { height: 0.375rem; width: 50%; background: rgba(255,255,255,0.10); border-radius: 2px; margin-bottom: 0.625rem; }
.svc-preview-btns { display: flex; gap: 0.5rem; }
.svc-preview-btn-orange { height: 1.25rem; width: 5rem; border-radius: 9999px; background: rgba(255,122,26,0.70); }
.svc-preview-btn-outline { height: 1.25rem; width: 5rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.20); }
.svc-preview-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.375rem; }
.svc-preview-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 0.375rem; padding: 0.5rem; }
.svc-card-icon  { width: 1rem; height: 1rem; border-radius: 0.25rem; background: hsl(199,100%,55%,0.20); margin-bottom: 0.375rem; }
.svc-card-line  { height: 0.375rem; width: 100%; background: rgba(255,255,255,0.10); border-radius: 2px; margin-bottom: 0.25rem; }
.svc-card-line--short { width: 75%; background: rgba(255,255,255,0.05); }

.svc-site-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.svc-site-metric {
  background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem; padding: 0.625rem; text-align: center;
}

/* Radar/Workshop visual — position: absolute comes from base .svc-vis, do NOT override here */
.svc-radar-inner {
  position: absolute; inset: 0;
  background: #f8f7f5; border-radius: 1rem;
  display: flex; flex-direction: column;
}
.svc-radar-screen {
  flex: 1; background: white; margin: 0.625rem 0.625rem 0;
  border-radius: 0.625rem; border: 1px solid #e7e5e4; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-radar-toolbar {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.375rem 0.75rem; background: #f1f0ef; border-bottom: 1px solid #e7e5e4;
}
.svc-radar-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: #d6d3d1; }
.svc-radar-label { font-size: 0.5rem; color: #a8a29e; margin-left: 0.25rem; font-weight: 500; }
.svc-radar-body { flex: 1; display: flex; gap: 0.75rem; padding: 0.625rem; }
.svc-radar-chart { flex: 1; display: flex; flex-direction: column; gap: 0.375rem; }
.svc-radar-line { height: 0.375rem; background: #3c3c3c; border-radius: 2px; }
.svc-radar-line--bold { width: 66%; }
.svc-radar-line--thin { width: 50%; background: #d6d3d1; height: 0.25rem; }
.svc-radar-steps {
  display: flex; align-items: center; gap: 0.25rem; font-size: 0.4375rem; font-weight: 600; margin-top: 0.25rem;
}
.svc-step { padding: 0.125rem 0.375rem; border: 1px solid #d6d3d1; border-radius: 0.25rem; color: #78716c; background: #f8f7f5; font-size: 0.4375rem; }
.svc-step--active   { color: var(--foreground); }
.svc-step--highlight { border-color: rgba(255,122,26,0.50); color: #FF7A1A; background: rgba(255,122,26,0.08); }
.svc-step-arrow { width: 0.375rem; height: 1px; background: #d6d3d1; }
.svc-radar-bars { display: flex; align-items: flex-end; gap: 2px; height: 2rem; margin-top: 0.25rem; }
.svc-bar { flex: 1; border-radius: 1px 1px 0 0; }
.svc-radar-notes { width: 4rem; display: flex; flex-direction: column; gap: 0.25rem; padding-top: 0.25rem; }
.svc-note-line { height: 0.25rem; width: 100%; background: #e7e5e4; border-radius: 2px; }
.svc-note-line--short  { width: 75%; }
.svc-note-line--xshort { width: 50%; }
.svc-note-line--amber  { background: #fef3c7; }
.svc-note-divider { height: 1px; background: #fde68a; margin: 0.125rem 0; }
.svc-radar-caption {
  padding: 0.5rem 0.75rem; background: rgba(255,255,255,0.90);
  border-top: 1px solid #e7e5e4;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: #57534e; font-weight: 500;
}
.svc-radar-badge {
  font-size: 0.5625rem; color: #78716c; background: #f1f0ef;
  border: 1px solid #e7e5e4; border-radius: 9999px; padding: 0.125rem 0.5rem;
}

/* =========================================================
   26. CASES PAGE — full page card styles
   ========================================================= */
/* cases-grid is already defined; alias for page context */
.case-visual-wrap { height: 12rem; position: relative; overflow: hidden; }
.case-visual { width: 100%; height: 100%; }

/* Category badge */
.case-category-badge {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 10;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: 9999px;
  background: rgba(14,27,66,0.70); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.10); color: var(--primary);
}

/* Case card body */
.case-body { padding: 1.5rem; }
@media (min-width: 1024px) { .case-body { padding: 2rem; } }
.case-body h3 { margin-bottom: 0.625rem; }
.case-body p  { margin-bottom: 1rem; }

/* Grid / glow helpers inside case visuals */
.case-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(hsl(199,100%,55%,0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsl(199,100%,55%,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.case-glow {
  position: absolute; width: 7rem; height: 7rem;
  border-radius: 50%; filter: blur(50px); opacity: 0.20; pointer-events: none;
}

/* Chatbot visual */
.chat-anim-wrap {
  background: var(--navy); display: flex; flex-direction: column; justify-content: space-between;
  padding: 1rem;
}
.case-chat-header {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.75rem; padding: 0.5rem 0.75rem;
}
.chat-bot-avatar {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: hsl(199,100%,55%,0.20); border: 1px solid hsl(199,100%,55%,0.30);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-bot-dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; background: var(--primary); }
.chat-header-title { color: rgba(255,255,255,0.70); font-size: 0.75rem; font-weight: 500; flex: 1; }
.chat-online-wrap { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.chat-online-dot  { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: #4ade80; }
.chat-online-text { color: #4ade80; font-size: 0.625rem; }

.case-chat-messages { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; padding: 0.5rem 0; }
.chat-msg { display: flex; }
.chat-msg--user { justify-content: flex-end; }
.chat-msg--bot  { align-items: flex-end; gap: 0.375rem; }
.chat-bubble { border-radius: 1rem; padding: 0.375rem 0.75rem; font-size: 0.625rem; max-width: 75%; color: rgba(255,255,255,0.80); }
.chat-bubble--user { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.10); border-top-right-radius: 0.25rem; }
.chat-bubble--bot  { background: hsl(199,100%,55%,0.15); border: 1px solid hsl(199,100%,55%,0.20); border-top-left-radius: 0.25rem; }
.chat-bot-mini-avatar { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: hsl(199,100%,55%,0.20); border: 1px solid hsl(199,100%,55%,0.30); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-bot-mini-dot    { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: hsl(199,100%,55%,0.70); }

.case-chat-input {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.75rem; padding: 0.5rem 0.75rem;
}
.chat-input-line { flex: 1; height: 0.25rem; background: rgba(255,255,255,0.10); border-radius: 2px; }
.chat-send-btn {
  width: 1.25rem; height: 1.25rem; border-radius: 50%; background: #FF7A1A;
  flex-shrink: 0;
}

/* Website visual (light) */
.case-web-wrap { background: #f1f5f9; }
.case-web-browser-bar {
  background: #e2e8f0; border-bottom: 1px solid #cbd5e1;
  padding: 0.5rem 0.75rem; display: flex; align-items: center; gap: 0.5rem;
}
.case-web-dots { display: flex; gap: 4px; }
.w-red    { display: block; width: 0.625rem; height: 0.625rem; border-radius: 50%; background: #f87171; }
.w-yellow { display: block; width: 0.625rem; height: 0.625rem; border-radius: 50%; background: #fbbf24; }
.w-green  { display: block; width: 0.625rem; height: 0.625rem; border-radius: 50%; background: #4ade80; }
.case-web-url {
  flex: 1; background: white; border: 1px solid #cbd5e1; border-radius: 0.375rem;
  padding: 0.125rem 0.5rem; display: flex; align-items: center; gap: 0.25rem;
}
.w-ssl    { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.w-urlbar { height: 0.25rem; width: 7rem; background: #cbd5e1; border-radius: 2px; }
.case-web-nav {
  background: white; border-bottom: 1px solid #e2e8f0;
  padding: 0.5rem 1rem; display: flex; align-items: center; justify-content: space-between;
}
.case-web-logo { height: 0.5rem; width: 5rem; background: #334155; border-radius: 2px; }
.case-web-nav-links { display: flex; gap: 0.75rem; }
.case-web-nav-links div { height: 0.375rem; width: 2rem; background: #cbd5e1; border-radius: 2px; }
.case-web-hero {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.case-web-badge { height: 0.375rem; width: 4rem; background: rgba(255,255,255,0.30); border-radius: 2px; }
.case-web-h1    { height: 0.75rem; width: 9rem; background: rgba(255,255,255,0.80); border-radius: 2px; }
.case-web-sub   { height: 0.5rem; width: 7rem; background: rgba(255,255,255,0.50); border-radius: 2px; }
.case-web-cta   { height: 1.5rem; width: 5rem; border-radius: 0.375rem; background: #FF7A1A; margin-top: 0.25rem; }
.case-web-cards { background: white; padding: 0.75rem 1rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
.case-web-card  { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 0.5rem; padding: 0.5rem; }
.cwc-icon   { width: 1.5rem; height: 1.5rem; border-radius: 0.25rem; background: #e2e8f0; margin-bottom: 0.375rem; }
.cwc-line   { height: 0.375rem; width: 100%; background: #e2e8f0; border-radius: 2px; margin-bottom: 0.25rem; }
.cwc-line--short { width: 75%; background: #f1f5f9; }

/* CRM Workflow visual */
.case-wf-wrap { background: var(--navy); padding: 1rem; }
.case-wf-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.case-wf-title { color: rgba(255,255,255,0.60); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.case-wf-badge { background: rgba(74,222,128,0.20); border: 1px solid rgba(74,222,128,0.30); color: #4ade80; font-size: 0.5625rem; font-weight: 500; padding: 0.125rem 0.5rem; border-radius: 9999px; }
.case-wf-kanban { display: flex; gap: 0.5rem; flex: 1; }
.wf-col {
  flex: 1; border-radius: 0.75rem; padding: 0.5rem;
  display: flex; flex-direction: column; gap: 0.375rem;
}
.wf-col--white  { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.10); }
.wf-col--blue   { border: 1px solid hsl(199,100%,55%,0.20); background: hsl(199,100%,55%,0.10); }
.wf-col--amber  { border: 1px solid rgba(251,191,36,0.20); background: rgba(251,191,36,0.10); }
.wf-col--green  { border: 1px solid rgba(74,222,128,0.20); background: rgba(74,222,128,0.10); }
.wf-col-head { display: flex; align-items: center; justify-content: space-between; font-size: 0.5625rem; color: rgba(255,255,255,0.50); }
.wf-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; }
.wf-dot--white { background: rgba(255,255,255,0.40); }
.wf-dot--blue  { background: var(--primary); }
.wf-dot--amber { background: #fbbf24; }
.wf-dot--green { background: #4ade80; }
.wf-col-label { color: rgba(255,255,255,0.70); font-size: 0.5625rem; font-weight: 500; }
.wf-cards { display: flex; flex-direction: column; gap: 0.25rem; }
.wf-card  { height: 1rem; border-radius: 0.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.case-wf-auto {
  margin-top: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
  background: hsl(199,100%,55%,0.10); border: 1px solid hsl(199,100%,55%,0.20);
  border-radius: 0.75rem; padding: 0.375rem 0.75rem; font-size: 0.625rem; color: hsl(199,100%,60%,0.80);
}
.wf-spinner {
  width: 0.75rem; height: 0.75rem; border-radius: 50%;
  border: 2px solid var(--primary); border-top-color: transparent;
  animation: spin 1s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.case-wf-tasks { margin-left: auto; color: rgba(255,255,255,0.30); font-size: 0.625rem; }

/* Dashboard visual */
.case-dash-wrap { background: var(--navy); padding: 1rem; }
.case-dash-metrics { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.dash-metric { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 0.75rem; padding: 0.5rem; }
.dash-metric-label { color: rgba(255,255,255,0.40); font-size: 0.5625rem; margin-bottom: 0.125rem; }
.dash-metric-value { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.875rem; }
.dash-metric-sub   { color: rgba(255,255,255,0.30); font-size: 0.5625rem; }
.case-dash-chart {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem; padding: 0.75rem;
}
.dash-chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.625rem; color: rgba(255,255,255,0.50); font-weight: 500; }
.case-dash-bars { display: flex; align-items: flex-end; gap: 0.25rem; height: 3rem; }
.dash-bar { flex: 1; border-radius: 2px 2px 0 0; }
.dash-days { display: flex; justify-content: space-between; margin-top: 0.25rem; }
.dash-days span { color: rgba(255,255,255,0.30); font-size: 0.5625rem; text-align: center; }

/* Webshop visual (light) */
.case-shop-wrap { background: #fafaf9; }
.case-shop-bar {
  background: #e7e5e4; border-bottom: 1px solid #d6d3d1;
  padding: 0.5rem 0.75rem; display: flex; align-items: center; gap: 0.5rem;
}
.case-shop-nav {
  background: white; border-bottom: 1px solid #e7e5e4;
  padding: 0.5rem 1rem; display: flex; align-items: center; justify-content: space-between;
}
.shop-logo { height: 0.5rem; width: 4rem; background: #292524; border-radius: 2px; }
.shop-nav-right { display: flex; gap: 0.5rem; align-items: center; }
.shop-nav-right div { height: 0.375rem; width: 2rem; background: #d6d3d1; border-radius: 2px; }
.shop-cart { width: 1.25rem; height: 1.25rem; border-radius: 50%; border: 1px solid #d6d3d1; }
.case-shop-grid { padding: 0.75rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.shop-product { display: flex; flex-direction: column; gap: 0.25rem; }
.shop-img     { height: 3.5rem; border-radius: 0.5rem; }
.shop-line    { height: 0.25rem; width: 75%; background: #d6d3d1; border-radius: 2px; }
.shop-price-row { display: flex; align-items: center; justify-content: space-between; }
.shop-price-row span { color: #57534e; font-size: 0.5625rem; font-weight: 600; }
.shop-add { width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #FF7A1A; }

/* Logistiek visual */
.case-log-wrap { background: var(--navy); padding: 1rem; }
.case-log-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.60); }
.case-log-ontime { color: #4ade80; font-size: 0.625rem; font-weight: 500; text-transform: none; letter-spacing: 0; }
.case-log-steps { display: flex; flex-direction: column; gap: 0.5rem; }
.log-step { display: flex; align-items: center; gap: 0.75rem; }
.log-step-dot { width: 1rem; height: 1rem; border-radius: 50%; border: 1px solid; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.log-step-dot--done    { background: rgba(74,222,128,0.20); border-color: rgba(74,222,128,0.50); }
.log-step-dot--active  { background: hsl(199,100%,55%,0.20); border-color: hsl(199,100%,55%,0.50); }
.log-step-dot--pending { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }
.log-step-line { flex: 1; height: 1px; background: rgba(255,255,255,0.05); }
.log-step-label { font-size: 0.625rem; flex-shrink: 0; width: 8rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.log-step-label--done    { color: rgba(255,255,255,0.60); }
.log-step-label--active  { color: var(--primary); }
.log-step-label--pending { color: rgba(255,255,255,0.25); }
.log-time { color: rgba(255,255,255,0.30); font-size: 0.625rem; width: 2rem; text-align: right; flex-shrink: 0; }
.case-log-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; }
.log-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 0.5rem; padding: 0.5rem; text-align: center; }
.log-stat-label { color: rgba(255,255,255,0.40); font-size: 0.5625rem; margin-bottom: 0.125rem; }
.log-stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.875rem; }

/* =========================================================
   27. WERKWIJZE PAGE — step visual internals
   ========================================================= */
/* step-header */
.step-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.step-header .step-number { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 3rem; color: hsl(199,100%,55%,0.15); line-height: 1; }
/* step-icon-wrap is already defined in section 22 */

/* step visual container for werkwijze page */
.step-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .step-visual { aspect-ratio: 1/1; } }

/* Inner content layer */
.step-vis-inner { position: relative; z-index: 10; width: 100%; height: 100%; padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* Chat rows */
.step-chat-row { display: flex; align-items: flex-end; gap: 0.75rem; }
.step-chat-row--user { justify-content: flex-end; }
.step-chat-avatar {
  width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; font-size: 0.75rem;
}
.step-chat-avatar--bot  { background: hsl(199,100%,55%,0.20); border: 1px solid hsl(199,100%,55%,0.30); color: var(--primary); }
.step-chat-avatar--user { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.60); }
.step-bubble { border-radius: 1rem; padding: 0.625rem 1rem; font-size: 0.75rem; line-height: 1.5; max-width: 80%; }
.step-bubble--bot  { background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.10); border-bottom-left-radius: 0.25rem; color: rgba(255,255,255,0.70); }
.step-bubble--user { background: hsl(199,100%,55%,0.15); border: 1px solid hsl(199,100%,55%,0.20); border-bottom-right-radius: 0.25rem; color: hsl(199,100%,60%,0.90); }

/* Typing indicator */
.step-typing {
  display: flex; gap: 0.25rem; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 9999px; padding: 0.5rem 1rem;
}
.step-typing span {
  width: 0.375rem; height: 0.375rem; border-radius: 50%;
  background: hsl(199,100%,55%,0.60); display: block;
}
.step-typing span:nth-child(1) { animation: bounce 1.4s ease-in-out infinite 0ms; }
.step-typing span:nth-child(2) { animation: bounce 1.4s ease-in-out infinite 150ms; }
.step-typing span:nth-child(3) { animation: bounce 1.4s ease-in-out infinite 300ms; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* Bar chart (analyse step) */
.step-bar-chart { display: flex; align-items: flex-end; gap: 0.5rem; height: 7rem; margin-bottom: 0.75rem; }
.step-bar { flex: 1; border-radius: 3px 3px 0 0; }

/* Metric pills (analyse step) */
.step-metric-pills { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.step-metric-pill {
  background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.75rem; padding: 0.625rem; text-align: center;
}
.step-metric-val   { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.875rem; margin-bottom: 0.125rem; }
.step-metric-label { color: rgba(255,255,255,0.35); font-size: 0.5625rem; line-height: 1.3; }

.step-analyse-bar {
  display: flex; align-items: center; gap: 0.5rem;
  background: hsl(199,100%,55%,0.08); border: 1px solid hsl(199,100%,55%,0.15);
  border-radius: 0.75rem; padding: 0.5rem 0.75rem;
  color: rgba(255,255,255,0.55); font-size: 0.75rem;
}

/* Document mockup (voorstel step) */
.step-doc-header {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
}
.step-doc-icon {
  width: 1.75rem; height: 1.75rem; border-radius: 0.5rem;
  background: hsl(199,100%,55%,0.15); border: 1px solid hsl(199,100%,55%,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary);
}
.step-doc-title { color: rgba(255,255,255,0.80); font-size: 0.75rem; font-weight: 600; }
.step-doc-sub   { color: rgba(255,255,255,0.30); font-size: 0.5625rem; }
.step-doc-badge { margin-left: auto; background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.25); color: #4ade80; font-size: 0.5625rem; font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 9999px; white-space: nowrap; }

.step-doc-scope { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.75rem; }
.step-scope-item {
  display: flex; align-items: center; gap: 0.625rem;
  background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem; padding: 0.625rem 0.75rem;
}
.step-scope-item--done span { color: rgba(255,255,255,0.65); font-size: 0.75rem; }
.step-scope-item span { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.step-scope-pending { color: rgba(255,255,255,0.35) !important; }
.step-scope-check {
  width: 1rem; height: 1rem; border-radius: 0.25rem;
  border: 1px solid rgba(255,255,255,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.step-scope-check--done { background: hsl(199,100%,55%,0.20); border-color: hsl(199,100%,55%,0.30); }

.step-timeline { background: hsl(225,30%,15%); border: 1px solid rgba(255,255,255,0.07); border-radius: 0.75rem; padding: 0.625rem 0.75rem; }
.step-timeline-labels { display: flex; justify-content: space-between; font-size: 0.5625rem; color: rgba(255,255,255,0.35); margin-bottom: 0.375rem; }
.step-timeline-bar    { height: 0.375rem; background: rgba(255,255,255,0.05); border-radius: 9999px; overflow: hidden; }
.step-timeline-fill   { height: 100%; width: 66%; border-radius: 9999px; background: linear-gradient(90deg, hsl(199,100%,55%), #FF7A1A); }

/* Pipeline (realisatie step) */
.step-pipeline {
  display: flex; align-items: center; gap: 0.375rem; margin-bottom: 1rem;
}
.step-pipeline-stage {
  flex: 1; text-align: center; border-radius: 0.5rem; padding: 0.375rem;
  font-size: 0.5625rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 0.25rem;
}
.step-pipeline-stage--done   { background: hsl(199,100%,55%,0.15); border: 1px solid hsl(199,100%,55%,0.25); color: var(--primary); }
.step-pipeline-stage--orange { background: rgba(255,122,26,0.12); border: 1px solid rgba(255,122,26,0.30); color: #FF7A1A; }
.step-pipeline-stage svg { flex-shrink: 0; color: rgba(255,255,255,0.20); }

/* Activity log (realisatie step) */
.step-activity-log { display: flex; flex-direction: column; gap: 0.5rem; }
.step-log-item {
  display: flex; align-items: center; gap: 0.625rem;
  border-radius: 0.75rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(255,255,255,0.07);
  background: hsl(225,30%,15%);
}
.step-log-item--highlight { border-color: rgba(255,122,26,0.25); background: rgba(255,122,26,0.08); }
.step-log-text { font-size: 0.75rem; flex: 1; color: rgba(255,255,255,0.55); }
.step-log-text--highlight { color: #FF7A1A; font-weight: 600; }
.step-log-time { font-size: 0.5625rem; color: rgba(255,255,255,0.25); }

/* =========================================================
   28. CONTACT PAGE — additional helpers
   ========================================================= */
.contact-form-col { /* col-span-3 equivalent */ }
.contact-info-col { /* col-span-2 equivalent */ }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.contact-info-divider {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 0; /* top border acts as divider */
}
/* Override contact-success to show when PHP sends ?sent=1 */
.contact-success {
  display: flex !important; /* shown if element is rendered */
  align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: hsl(142,76%,36%,0.08);
  border: 1px solid hsl(142,76%,36%,0.25);
  border-radius: 0.75rem;
  color: hsl(142,76%,22%);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.contact-success strong { display: block; }
.contact-success p { font-size: 0.875rem; margin-top: 0.25rem; font-weight: 400; }

/* =========================================================
   29. WORKSHOPS OVERVIEW PAGE
   ========================================================= */

/* Grid */
.workshops-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .workshops-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Card */
.workshop-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.workshop-card:hover {
  border-color: rgba(0,170,255,0.3);
  box-shadow: 0 8px 40px rgba(0,150,220,0.10);
  transform: translateY(-4px);
}

/* Card visual header */
.workshop-card-visual {
  height: 11rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-vis-neural  { background: linear-gradient(135deg, hsl(225,50%,8%) 0%, hsl(218,52%,14%) 100%); }
.ws-vis-browser { background: linear-gradient(135deg, hsl(220,48%,9%) 0%, hsl(210,52%,15%) 100%); }
.ws-vis-team    { background: linear-gradient(135deg, hsl(36,30%,14%) 0%, hsl(30,25%,20%) 100%); }

/* Badge */
.workshop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 2rem;
  z-index: 2;
  line-height: 1.4;
}
.ws-badge-popular   { background: rgba(0,170,255,0.15); color: hsl(199,100%,60%); border: 1px solid rgba(0,170,255,0.25); }
.ws-badge-practical { background: rgba(0,170,255,0.15); color: hsl(199,100%,60%); border: 1px solid rgba(0,170,255,0.25); }
.ws-badge-custom    { background: rgba(0,170,255,0.15); color: hsl(199,100%,60%); border: 1px solid rgba(0,170,255,0.25); }

/* Card body */
.workshop-card-body {
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.workshop-price {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.625rem;
}
.workshop-price strong { color: #FF7A1A; font-size: 1.125rem; font-weight: 700; }
.workshop-price span   { font-size: 0.75rem; }

.workshop-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.125rem;
  line-height: 1.2;
}
.workshop-card-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.875rem;
}
.workshop-card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 1.125rem;
}

/* Feature list */
.workshop-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.workshop-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--foreground);
  line-height: 1.5;
}
.workshop-features li svg { flex-shrink: 0; margin-top: 0.15rem; }

/* CTA inside card */
.workshop-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  width: 100%;
}

/* Workshops page inline CTA section */
.workshops-cta-inner { max-width: 38rem; margin: 0 auto; }

/* Neural visual (Card 1) */
.wsv-neural {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wsv-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wsv-node {
  position: absolute;
  border-radius: 50%;
  background: hsl(199,100%,55%);
  box-shadow: 0 0 12px rgba(0,170,255,0.5);
}
.wsv-n-left    { width: 14px; height: 14px; left: 20%;  top: 50%; transform: translateY(-50%); }
.wsv-n-mid-top { width: 10px; height: 10px; left: 50%;  top: 26%; transform: translateX(-50%); background: hsl(199,100%,65%); }
.wsv-n-mid-mid { width: 12px; height: 12px; left: 50%;  top: 50%; transform: translate(-50%,-50%); }
.wsv-n-mid-bot { width: 10px; height: 10px; left: 50%;  top: 74%; transform: translateX(-50%); background: hsl(199,100%,65%); }
.wsv-n-right   { width: 14px; height: 14px; right: 20%; top: 50%; transform: translateY(-50%); background: #FF7A1A; box-shadow: 0 0 12px rgba(255,122,26,0.5); }
.wsv-chip {
  position: absolute;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  z-index: 2;
}
.wsv-chip-tl { top: 1.5rem; left: 1.5rem; }
.wsv-chip-br { bottom: 1.5rem; right: 1.5rem; }

/* Browser mock visual (Card 2) */
.wsv-browser-mock {
  width: 78%;
  background: hsl(220,30%,13%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.wsv-bm-bar {
  background: hsl(220,30%,17%);
  padding: 0.4rem 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wsv-bm-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.wsv-bm-url {
  flex: 1;
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-radius: 0.25rem;
  padding: 0.15rem 0.5rem;
  margin: 0 0.25rem;
}
.wsv-bm-body { padding: 0.625rem; display: flex; flex-direction: column; gap: 0.375rem; }
.wsv-bm-hero-block {
  height: 28px;
  background: linear-gradient(90deg, rgba(0,170,255,0.2), rgba(0,170,255,0.05));
  border-radius: 0.25rem;
}
.wsv-bm-row { display: flex; gap: 0.3rem; }
.wsv-bm-card {
  flex: 1;
  height: 18px;
  background: rgba(255,255,255,0.05);
  border-radius: 0.25rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.wsv-bm-ai-tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.5rem;
  font-weight: 600;
  color: hsl(199,100%,60%);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-end;
}

/* Team visual (Card 3) */
.wsv-team-scene {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.wsv-team-screen {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,200,150,0.15);
  border-radius: 0.5rem;
  padding: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.wsv-ts-line { height: 4px; background: rgba(255,200,150,0.25); border-radius: 2px; width: 70%; }
.wsv-ts-line--short { width: 45%; }
.wsv-ts-bar-row { display: flex; align-items: flex-end; gap: 0.3rem; height: 24px; margin-top: 0.2rem; }
.wsv-ts-bar { flex: 1; background: rgba(255,180,100,0.35); border-radius: 2px 2px 0 0; }
.wsv-team-people { display: flex; gap: 0.75rem; justify-content: center; }
.wsv-person { width: 28px; height: 28px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; background: rgba(255,200,150,0.25); border: 1px solid rgba(255,200,150,0.2); }
.wsv-p2 { transform: scale(1.1); background: rgba(255,200,150,0.35); }

/* =========================================================
   30. WORKSHOP DETAIL PAGES
   ========================================================= */

/* Hero stats bar */
.workshop-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}
.workshop-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  padding: 0.4rem 0.875rem;
}

/* 2-col detail layout */
.workshop-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .workshop-detail-grid {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

/* Content blocks */
.workshop-block { margin-bottom: 3.5rem; }
.workshop-block:last-child { margin-bottom: 0; }

.workshop-block-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.workshop-block-intro {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 56ch;
}

/* Outcomes grid */
.workshop-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .workshop-outcomes-grid { grid-template-columns: 1fr 1fr; }
}
.workshop-outcome-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.workshop-outcome-card:hover {
  border-color: rgba(0,170,255,0.25);
  box-shadow: 0 4px 16px rgba(0,150,220,0.07);
}
.workshop-outcome-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(0,170,255,0.08);
  border: 1px solid rgba(0,170,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(199,100%,55%);
  margin-top: 0.05rem;
}
.workshop-outcome-text {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.55;
}

/* Agenda */
.workshop-agenda {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.workshop-agenda::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--border);
  z-index: 0;
}
.workshop-agenda-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1.75rem;
}
.workshop-agenda-item:last-child { padding-bottom: 0; }
.workshop-agenda-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 0.25rem;
  padding-top: 0.1rem;
}
.workshop-agenda-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--background);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--foreground);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.workshop-agenda-item:hover .workshop-agenda-number {
  background: #FF7A1A;
  border-color: #FF7A1A;
  color: #fff;
}
.workshop-agenda-time {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  letter-spacing: 0.02em;
}
.workshop-agenda-content { padding-top: 0.25rem; }
.workshop-agenda-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.3rem;
}
.workshop-agenda-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Audience grid */
.workshop-audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 600px) {
  .workshop-audience-grid { grid-template-columns: 1fr 1fr; }
}
.workshop-audience-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.workshop-audience-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF7A1A;
  flex-shrink: 0;
  margin-top: 0.375rem;
}
.workshop-audience-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  display: block;
  margin-bottom: 0.2rem;
}
.workshop-audience-desc {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
.workshop-audience-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  background: rgba(255,122,26,0.05);
  border: 1px solid rgba(255,122,26,0.15);
  border-radius: 0.625rem;
  padding: 0.625rem 0.875rem;
}

/* Info card (aside) */
.workshop-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-elevated);
}
@media (min-width: 1024px) {
  .workshop-info-card { position: sticky; top: 6rem; }
}
.workshop-info-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.workshop-info-from { font-size: 0.8125rem; color: var(--muted-foreground); }
.workshop-info-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1;
}
.workshop-info-per { font-size: 0.8125rem; color: var(--muted-foreground); }
.workshop-info-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 48px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.workshop-info-link {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.workshop-info-link:hover { color: var(--primary); }
.workshop-info-divider { border-top: 1px solid var(--border); margin: 1.25rem 0; }
.workshop-info-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.workshop-info-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
.workshop-info-details li svg { flex-shrink: 0; color: var(--primary); margin-top: 0.1rem; }
.workshop-info-details li strong { color: var(--foreground); }
.workshop-info-included-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.workshop-info-included ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.workshop-info-included li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--foreground);
  line-height: 1.5;
}
.workshop-info-included li svg { flex-shrink: 0; margin-top: 0.15rem; }

/* Back link */
.workshop-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
  transition: color 0.2s;
}
.workshop-back-link:hover { color: var(--primary); }

/* =========================================================
   31. WORKSHOP DETAIL — V2 LAYOUT (updated design)
   ========================================================= */

/* Group pricing note in hero */
.workshop-groepsprijs-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

/* Outcome cards v2 (title + desc) */
.workshop-outcomes-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .workshop-outcomes-grid-v2 { grid-template-columns: 1fr 1fr; }
}
.workshop-outcome-card-v2 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.workshop-outcome-card-v2:hover {
  border-color: rgba(0,170,255,0.25);
  box-shadow: 0 4px 16px rgba(0,150,220,0.07);
}
.workshop-outcome-icon-v2 {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(0,170,255,0.08);
  border: 1px solid rgba(0,170,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(199,100%,55%);
  margin-top: 0.1rem;
}
.workshop-outcome-title-v2 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
  margin-bottom: 0.125rem;
}
.workshop-outcome-desc-v2 {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Dark Programma section (standalone) */
.workshop-programma-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.workshop-programma-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  color: #FF7A1A;
  background: rgba(255,122,26,0.12);
  border: 1px solid rgba(255,122,26,0.2);
  margin-bottom: 1rem;
}
.workshop-programma-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.workshop-programma-subtitle {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}
.workshop-agenda-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 48rem;
  margin: 0 auto;
}
.workshop-agenda-glass-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.2s;
}
@media (min-width: 640px) {
  .workshop-agenda-glass-item { padding: 1.25rem 1.5rem; }
}
.workshop-agenda-glass-item:hover { border-color: rgba(255,255,255,0.12); }
.workshop-agenda-glass-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding-top: 0.1rem;
  flex-shrink: 0;
}
.workshop-agenda-glass-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FF7A1A;
  box-shadow: 0 0 12px rgba(255,122,26,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: #ffffff;
}
.workshop-agenda-glass-time {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  font-variant-numeric: tabular-nums;
}
.workshop-agenda-glass-content { flex: 1; padding-top: 0.125rem; }
.workshop-agenda-glass-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.workshop-agenda-glass-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Voor wie section v2 (white bg + dark cards) */
.workshop-audience-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.workshop-audience-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  color: hsl(199,100%,55%);
  background: rgba(0,170,255,0.08);
  border: 1px solid rgba(0,170,255,0.15);
  margin-bottom: 1rem;
}
.workshop-audience-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.workshop-audience-section-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto;
}
.workshop-audience-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .workshop-audience-grid-v2 { grid-template-columns: 1fr 1fr; }
}
.workshop-audience-dark-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: hsl(225,48%,12%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(15,25,60,0.12);
  transition: border-color 0.2s;
}
.workshop-audience-dark-card:hover { border-color: rgba(255,255,255,0.15); }
.workshop-audience-dark-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.workshop-audience-dark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF7A1A;
  box-shadow: 0 0 6px rgba(255,122,26,0.5);
  flex-shrink: 0;
}
.workshop-audience-dark-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}
.workshop-audience-dark-desc {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  padding-left: 1.125rem;
}

/* =========================================================
   32. DIENST DETAIL PAGES (shared layout components)
   ========================================================= */

/* Intro section 2-col grid */
.dienst-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .dienst-intro-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* Orange section label */
.dienst-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF7A1A;
  margin-bottom: 0.75rem;
}

.dienst-intro-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.dienst-intro-body {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.dienst-intro-body:last-child { margin-bottom: 0; }

/* Benefits card */
.dienst-benefits-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}
.dienst-benefits-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}
.dienst-benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.dienst-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.5;
}
.dienst-benefits-list li svg { flex-shrink: 0; margin-top: 0.1rem; }

/* Contact section grid */
.dienst-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .dienst-contact-grid { grid-template-columns: 2fr 3fr; gap: 4rem; }
}
.dienst-contact-copy { display: flex; flex-direction: column; justify-content: center; }
.dienst-contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.dienst-contact-body {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Reassurance list */
.dienst-reassurance-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dienst-reassurance-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.dienst-reassurance-list li svg { flex-shrink: 0; }

/* Contact form */
.dienst-form { display: flex; flex-direction: column; gap: 1.25rem; }
.dienst-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .dienst-form-row { grid-template-columns: 1fr 1fr; }
}
.dienst-form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.dienst-form-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.dienst-form-field input,
.dienst-form-field textarea {
  width: 100%;
  padding: 0 1rem;
  height: 3rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.dienst-form-field textarea {
  height: auto;
  padding: 0.75rem 1rem;
  resize: none;
}
.dienst-form-field input:focus,
.dienst-form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,170,255,0.12);
}
.dienst-form-field input::placeholder,
.dienst-form-field textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

/* ── Section 33: AI Workshops Network Visual + Workflow fixes ─────────────── */

@keyframes wsa-ring  { 0%,100%{opacity:.12} 50%{opacity:.30} }
@keyframes wsa-glow  { 0%,100%{box-shadow:0 0 10px rgba(0,170,255,.18)} 50%{box-shadow:0 0 24px rgba(0,170,255,.48)} }
@keyframes wsa-float { 0%,100%{transform:translate(-50%,-50%) translateY(0)} 50%{transform:translate(-50%,-50%) translateY(-5px)} }
@keyframes wsa-dash  { to{stroke-dashoffset:-16} }

/* Container */
.svc-vis-ws-net {
  position: relative;
  background: hsl(225,50%,7%);
  border: 1px solid rgba(255,255,255,0.07);
}
.svc-glow-blob-bl {
  position: absolute; bottom: 0; left: 0;
  width: 160px; height: 160px; border-radius: 9999px;
  filter: blur(60px);
  background: rgba(0,170,255,0.06);
  pointer-events: none;
}

/* SVG lines */
.svc-ws-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.svc-ws-line { animation: wsa-dash 2.5s linear infinite; }
.svc-ws-line--1 { animation-delay: 0s; }
.svc-ws-line--2 { animation-delay: 0.45s; }
.svc-ws-line--3 { animation-delay: 0.9s; }
.svc-ws-line--4 { animation-delay: 1.35s; }
.svc-ws-line--5 { animation-delay: 1.8s; }

/* Centre hub */
.svc-ws-hub {
  position: absolute; left: 50%; top: 43%;
  transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center;
  width: 180px; height: 180px;
  animation: wsa-float 4s ease-in-out infinite;
}
.svc-ws-ring {
  position: absolute; border-radius: 9999px; border: 1px solid;
}
.svc-ws-ring--1 { width: 92px;  height: 92px;  border-color: rgba(0,170,255,0.20); animation: wsa-ring 3.5s ease-in-out infinite; }
.svc-ws-ring--2 { width: 136px; height: 136px; border-color: rgba(0,170,255,0.12); animation: wsa-ring 3.5s ease-in-out infinite 1s; }
.svc-ws-ring--3 { width: 180px; height: 180px; border-color: rgba(0,170,255,0.07); animation: wsa-ring 3.5s ease-in-out infinite 2s; }
.svc-ws-hub-icon {
  width: 56px; height: 56px; border-radius: 1rem;
  background: rgba(0,170,255,0.20); border: 1px solid rgba(0,170,255,0.40);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  animation: wsa-glow 3s ease-in-out infinite;
}

/* Topic nodes */
.svc-ws-node {
  position: absolute;
  transform: translate(-50%,-50%);
  background: rgba(15,25,50,0.92);
  border: 1px solid rgba(0,170,255,0.25);
  border-radius: 0.75rem;
  padding: 0.375rem 0.625rem;
  text-align: center;
  min-width: 68px;
  animation: wsa-glow 3s ease-in-out infinite;
}
.svc-ws-node-label { color: hsl(199,100%,55%); font-weight: 700; font-size: 0.5625rem; white-space: nowrap; }
.svc-ws-node-sub   { color: rgba(255,255,255,0.35); font-size: 0.4375rem; margin-top: 0.125rem; white-space: nowrap; }

/* Bottom bar */
.svc-ws-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.5rem 1rem;
  background: rgba(10,18,40,0.85);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
}

/* Workflow: active step + blue arrows */
.svc-flow-node--active {
  background: rgba(0,170,255,0.18);
  border: 1px solid rgba(0,170,255,0.50);
  color: hsl(199,100%,55%);
  box-shadow: 0 0 10px rgba(0,170,255,0.20);
}
.svc-flow-arrow-blue { color: rgba(0,170,255,0.35); flex-shrink: 0; }

/* ─── Cookie Popup ────────────────────────────────────────── */
#cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 360px;
  max-width: calc(100vw - 2rem);
  background: hsl(225, 50%, 7%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 1rem;
  padding: 1.25rem 1.375rem 1.125rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255,255,255,0.04) inset;
  font-family: 'Inter', sans-serif;
  display: none; /* Standaard verborgen — JS toont de popup alleen zonder opgeslagen keuze */
  flex-direction: column;
  gap: 1rem;
  /* Slide-up entry */
  animation: cookie-slide-up 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#cookie-popup.cookie-hidden {
  animation: cookie-slide-down 0.25s cubic-bezier(0.55, 0, 1, 0.45) both;
}

@keyframes cookie-slide-up {
  from { opacity: 0; transform: translateY(1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cookie-slide-down {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(1.5rem); }
}

.cookie-popup__header {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.cookie-popup__icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: hsl(199, 100%, 55%);
}

.cookie-popup__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.3;
}

.cookie-popup__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

.cookie-popup__text a {
  color: hsl(199, 100%, 65%);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-popup__text a:hover {
  color: hsl(199, 100%, 75%);
}

.cookie-popup__actions {
  display: flex;
  gap: 0.625rem;
}

.cookie-btn-accept {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.375rem;
  padding: 0 1rem;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  background: #FF7A1A;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-btn-accept:hover {
  background: #E8680B;
}

.cookie-btn-decline {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.375rem;
  padding: 0 1rem;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.85);
}

/* Mobile: center at bottom */
@media (max-width: 640px) {
  #cookie-popup {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    width: auto;
    max-width: 100%;
  }
}

