/* Inter — self-hosted brand font (locked 2026-07-27) */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/inter-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/inter-latin-500-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/inter-latin-600-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/inter-latin-700-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:swap;src:url('../fonts/inter-latin-800-normal.woff2') format('woff2');}
/* ============================================
   WILDBOS.COM — Design System
   Based on Intel.wildbos.com design tokens
   ============================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
  --midnight: #09111F;
  --surface: #0F1923;
  --white: #FFFFFF;
  --accent: #F5913E;
  --accent-light: #FBA85C;
  --accent-dark: #D97B2B;
  --accent-rgb: 245, 145, 62;
  --muted: #6B7A8D;
  --mint: #10B981;
  --gradient-accent: linear-gradient(135deg, #F5913E 0%, #FBA85C 100%);
  --gradient-dark: linear-gradient(180deg, #09111F 0%, #0F1923 100%);
  --card-border: rgba(255,255,255,0.06);
  --card-bg: rgba(255,255,255,0.03);
  --card-hover-bg: rgba(255,255,255,0.05);
  --card-hover-border: rgba(var(--accent-rgb),0.2);
  --text-primary: rgba(255,255,255,1);
  --text-secondary: rgba(255,255,255,0.88);
  --text-body: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.65);
  --text-faint: rgba(255,255,255,0.30);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
}

/* --- Per-page accent colors --- */
/* Homepage + default = Orange */
/* Trainingen = Green */
body.theme-green {
  --accent: #22C55E;
  --accent-light: #4ADE80;
  --accent-dark: #16A34A;
  --accent-rgb: 34, 197, 94;
  --gradient-accent: linear-gradient(135deg, #22C55E 0%, #4ADE80 100%);
}

/* Content = Blue */
body.theme-blue {
  --accent: #3B82F6;
  --accent-light: #60A5FA;
  --accent-dark: #2563EB;
  --accent-rgb: 59, 130, 246;
  --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
}

/* Intel = Orange (default, explicit for clarity) */
body.theme-orange {
  --accent: #F5913E;
  --accent-light: #FBA85C;
  --accent-dark: #D97B2B;
  --accent-rgb: 245, 145, 62;
  --gradient-accent: linear-gradient(135deg, #F5913E 0%, #FBA85C 100%);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--midnight);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
}
h1 { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
h2 { font-size: 2.5rem; letter-spacing: -0.03em; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4 { font-size: 1.125rem; }
p { color: var(--text-body); line-height: 1.7; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-body { color: var(--text-body); }

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 600px;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 24px;
  position: relative;
}

.section-alt {
  background: var(--surface);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 400ms var(--ease-out);
}

.nav.scrolled {
  background: rgba(9, 17, 31, 0.92);
  backdrop-filter: blur(32px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms ease;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--midnight) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all 300ms var(--ease-out);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.3);
  background: var(--accent-light);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 300ms var(--ease-out);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 300ms var(--ease-out);
  text-decoration: none;
  letter-spacing: -0.01em;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--midnight);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.35), 0 0 0 1px rgba(var(--accent-rgb), 0.15);
  background: var(--accent-light);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(var(--accent-rgb),0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid rgba(255,255,255,0.1);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Cards --- */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  padding: 32px;
  transition: all 400ms var(--ease-out);
}

.card:hover {
  border-color: var(--card-hover-border);
  background: var(--card-hover-bg);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(var(--accent-rgb),0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb),0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  line-height: 1.7;
}

/* Pillar Card (homepage) */
.pillar-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-number {
  font-size: 72px;
  font-weight: 800;
  color: rgba(var(--accent-rgb),0.06);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(var(--accent-rgb),0.06);
  border: 1px solid rgba(var(--accent-rgb),0.12);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 300ms var(--ease-out);
}

.pillar-link:hover {
  gap: 12px;
}

/* --- Glass --- */
.glass {
  background: rgba(15, 25, 35, 0.8);
  backdrop-filter: blur(32px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
}

/* Report preview responsive padding */
.glass > div { transition: padding 300ms var(--ease-out); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Subtle gradient orb background instead of canvas */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.06) 0%, rgba(var(--accent-rgb),0.02) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.03) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .subtitle {
  margin: 0 auto 40px;
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* --- Testimonials --- */
.testimonial-card {
  padding: 32px;
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Logo Marquee (infinite scroll) --- */
.logo-marquee-wrapper {
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.logo-marquee {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 400ms var(--ease-out);
}

.logo-marquee-item:hover {
  opacity: 1;
}

.logo-marquee-item img {
  filter: brightness(0) invert(1);
  height: 50px;
  width: auto;
  max-width: 216px;
  object-fit: contain;
}

.logo-marquee-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Fallback for text-only logos */
.logo-marquee-item .logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.08);
  border: 1.5px solid rgba(var(--accent-rgb),0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  margin: 0 auto 20px;
}

/* --- Pricing --- */
.pricing-card {
  padding: 40px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(var(--accent-rgb),0.3);
  background: rgba(var(--accent-rgb),0.04);
}

.pricing-card.featured::before {
  content: 'Populair';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: var(--midnight);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 16px 0 4px;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--mint);
}

.pricing-check svg {
  width: 12px;
  height: 12px;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  max-width: 500px;
  margin: 0 auto 32px;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 200ms ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms var(--ease-out);
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out), opacity 300ms ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
}

/* --- Footer --- */
.footer {
  padding: 64px 24px 32px;
  border-top: 1px solid var(--card-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-body);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-faint);
}

/* --- Animations (2026 Premium) --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  33% { transform: translateX(-48%) translateY(-20px) scale(1.02); }
  66% { transform: translateX(-52%) translateY(10px) scale(0.98); }
}

@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 500px; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes maskReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0% 0 0); }
}

/* Hero text animation — words slide up with clip mask */
.animate-fade-up {
  animation: fadeUp 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-up-delay-1 { animation-delay: 100ms; opacity: 0; }
.animate-fade-up-delay-2 { animation-delay: 200ms; opacity: 0; }
.animate-fade-up-delay-3 { animation-delay: 400ms; opacity: 0; }

/* Scroll Reveal — smoother, longer easing */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1), transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children — smoother cascading */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 120ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 360ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 600ms; }

/* Gradient text shimmer on hover */
.gradient-text-hover:hover {
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
}

/* Section divider line animation */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb),0.3), transparent);
  transform-origin: left;
}

.section-divider.visible {
  animation: lineGrow 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Image reveal — slides in from right */
.image-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.image-reveal.visible {
  clip-path: inset(0 0% 0 0);
}

/* Number counter glow */
.stat-value {
  transition: text-shadow 400ms ease;
}

.stat-value:hover {
  text-shadow: 0 0 40px rgba(var(--accent-rgb),0.3);
}

/* Smooth link underline animation */
.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.link-underline:hover::after {
  width: 100%;
}

/* --- Feature List (service pages) --- */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.05) 0%, rgba(var(--accent-rgb),0.015) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero .subtitle {
  margin: 0 auto;
}

/* --- Lottie Animations --- */
.lottie-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lottie-container dotlottie-player {
  width: 100%;
  max-width: 480px;
}

.hero-lottie {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-lottie { display: none; }
}

/* --- Training Photo --- */
.training-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.training-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Testimonial stars --- */
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--accent);
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

/* --- Visual Block (mockup/illustration placeholder) --- */
.visual-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* --- Training format cards --- */
.format-card {
  padding: 40px;
  text-align: center;
}

.format-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(var(--accent-rgb),0.06);
  border: 1px solid rgba(var(--accent-rgb),0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
}

.format-icon svg {
  width: 28px;
  height: 28px;
}

/* --- Content Pipeline Visual --- */
.pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  padding: 40px 0;
}

.pipeline-step {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.pipeline-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: rgba(var(--accent-rgb),0.3);
  transform: translateY(-50%);
}

.pipeline-step:last-child::after {
  display: none;
}

.pipeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 12px;
  position: relative;
}

.pipeline-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--accent-rgb),0.2);
}

.pipeline-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pipeline-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hero-lottie { width: 35%; opacity: 0.08; }
  .lottie-container dotlottie-player { max-width: 380px; }
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  .section { padding: 72px 16px; }
  .section-header { margin-bottom: 48px; }
  .hero { padding: 100px 16px 60px; min-height: auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 22px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 17, 31, 0.98);
    backdrop-filter: blur(32px);
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--card-border);
    overflow-y: auto;
    z-index: 100;
  }

  .nav-links.open li {
    list-style: none;
  }

  .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text-secondary);
  }

  .nav-links.open .nav-cta {
    margin-top: 24px;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    border-bottom: none;
  }

  /* Stats */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px 0;
  }
  .stat-value { font-size: 1.75rem; }

  /* Buttons */
  .btn { width: 100%; padding: 16px 24px; }
  .btn-group { flex-direction: column; }

  /* Logo marquee */
  .logo-marquee { gap: 40px; animation-duration: 25s; }
  .logo-marquee-item span { font-size: 13px; }
  .logo-marquee-item img {
  height: 36px; width: auto; max-width: 144px; }
  .logo-marquee-item .logo-icon { width: 40px; height: 40px; font-size: 13px; }

  /* Pipeline */
  .pipeline { flex-direction: column; gap: 8px; }
  .pipeline-step { padding: 16px 12px; }
  .pipeline-step::after { display: none; }

  /* Pricing */
  .pricing-price { font-size: 2.25rem; }
  .pricing-card { padding: 28px; }

  /* Testimonials */
  .testimonial-card { padding: 24px; }
  .testimonial-quote { font-size: 0.9375rem; }

  /* Lottie */
  .hero-lottie { display: none; }
  .lottie-container { margin: 0 auto; }
  .lottie-container dotlottie-player { max-width: 300px; }

  /* Footer */
  .footer { padding: 48px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Cards */
  .card { padding: 24px; }
  .pillar-card { padding: 28px; }
  .pillar-number { font-size: 48px; top: 12px; right: 16px; }

  /* Process steps inside two-col */
  .process-steps { max-width: none; }

  /* Visual block */
  .visual-block { padding: 32px; aspect-ratio: auto; min-height: 240px; }

  /* Glass report preview */
  .glass { border-radius: var(--radius-md); }

  /* CTA banner */
  .cta-banner { padding: 56px 16px; }
  .cta-banner h2 { font-size: 1.5rem; }

  /* Feature list */
  .feature-list li { gap: 12px; padding: 16px 0; }

  /* FAQ */
  .faq-question { font-size: 0.9375rem; padding: 20px 0; }
  .faq-answer p { font-size: 14px; }

  /* Format cards (trainingen) */
  .format-card { padding: 28px 20px; }
  .format-icon { width: 52px; height: 52px; margin-bottom: 16px; }
  /* Mobile readability: bigger, whiter text */
  body { font-size: 16px; }
  p, li, .subtitle { color: rgba(255,255,255,0.92); }
  .card p, .feature-list span, .faq-answer p { color: rgba(255,255,255,0.88); font-size: 15px; }
  .testimonial-quote { color: rgba(255,255,255,0.90); }
  .section-header p { color: rgba(255,255,255,0.88); }
  .footer p, .footer a { color: rgba(255,255,255,0.75); }
  .logo-marquee-item { opacity: 0.8; }
  .logo-marquee-item span { color: var(--white); }
}

/* Small phones */
@media (max-width: 480px) {
  .section { padding: 48px 16px; }
  .page-hero { padding: 110px 16px 48px; }
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  .subtitle { font-size: 1rem; }
  .hero .subtitle { font-size: 0.9375rem; }
  .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 24px; }

  .grid-4 { grid-template-columns: 1fr; }

  .stats-row { gap: 16px; }
  .stat-value { font-size: 1.5rem; }
  .stat-label { font-size: 12px; }

  .logo-marquee { gap: 32px; animation-duration: 20s; }
  .logo-marquee-item span { font-size: 12px; }

  .testimonial-author { gap: 10px; }
  .testimonial-avatar { width: 38px; height: 38px; }
  .testimonial-name { font-size: 13px; }
  .testimonial-role { font-size: 12px; }

  .section-label { font-size: 11px; }
  .section-header p { font-size: 0.9375rem; }

  .pillar-number { display: none; }

  .step-number { width: 40px; height: 40px; font-size: 16px; }
}

/* --- Language Toggle --- */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 2px;
  margin-left: 8px;
}

.lang-toggle-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
  font-family: inherit;
}

.lang-toggle-btn.active {
  background: rgba(245, 145, 62, 0.12);
  color: var(--accent, #f5913e);
}

.lang-toggle-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .lang-switch {
    position: absolute;
    top: 20px;
    right: 60px;
  }
}

/* Purple theme for Ads page */
body.theme-purple {
  --accent: #7B5EA7;
  --accent-light: #9B7EC8;
  --accent-dark: #5E4589;
  --accent-rgb: 123, 94, 167;
}

/* Ads pricing 2-col grid */
.ads-pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 640px) {
  .ads-pricing-grid { grid-template-columns: 1fr !important; }
}

/* Pillar Card Links (clickable cards) */
a.pillar-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.pillar-card-link:hover {
  text-decoration: none;
  color: inherit;
}

a.pillar-card-link:visited {
  color: inherit;
}


/* Center bottom row of 5-item pillar grid on desktop */
#diensten .grid-3 {
  justify-items: center;
}
#diensten .grid-3 > * {
  width: 100%;
}
@media (min-width: 1025px) {
  #diensten .grid-3 {
    grid-template-columns: repeat(6, 1fr);
  }
  #diensten .grid-3 > :nth-child(1) { grid-column: 1 / 3; }
  #diensten .grid-3 > :nth-child(2) { grid-column: 3 / 5; }
  #diensten .grid-3 > :nth-child(3) { grid-column: 5 / 7; }
  #diensten .grid-3 > :nth-child(4) { grid-column: 2 / 4; }
  #diensten .grid-3 > :nth-child(5) { grid-column: 4 / 6; }
}

/* --- Pricing Page Extras --- */
.pricing-subtitle {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 44px;
}
.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  min-height: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.save-text {
  color: var(--mint);
  font-weight: 600;
}
.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-accent { color: var(--accent); }
.check-mint { color: var(--mint); }
.feature-highlight {
  background: rgba(255,255,255,0.02);
  margin: 0 -16px;
  padding: 10px 16px !important;
  border-radius: 8px;
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 200ms;
}
.toggle-label.active { color: var(--white); }
.toggle-track {
  width: 48px;
  height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: background 200ms;
}
.toggle-track.annual { background: var(--accent); }
.toggle-thumb {
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 200ms;
}
.toggle-track.annual .toggle-thumb { transform: translateX(22px); }
.save-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--midnight);
  background: var(--mint);
  padding: 3px 10px;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 200ms, transform 200ms;
}
.save-pill.visible { opacity: 1; transform: scale(1); }
.intel-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  border-color: rgba(16, 185, 129, 0.15);
  background: rgba(16, 185, 129, 0.03);
}
.intel-banner h3 { margin-bottom: 8px; }
.intel-banner p { font-size: 14px; max-width: 480px; }
.intel-right { text-align: right; flex-shrink: 0; }
.triads-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
}
.triads-banner h3 { margin-bottom: 8px; }
.triads-banner p { font-size: 14px; max-width: 480px; }
.triads-name {
  font-weight: 700;
  background: linear-gradient(135deg, #FF6B35, #F7C948);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.enterprise-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 32px;
}
.enterprise-features span {
  padding: 6px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-body);
}
@media (max-width: 768px) {
  .intel-banner, .triads-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .intel-right { text-align: center; }
  .toggle-row { flex-wrap: wrap; }
}

/* --- Related reading cards (bilingual, lang-synced via [data-nl]/[data-en]) --- */
.related-reading .rr-grid{display:grid;gap:1.25rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.related-reading .rr-eyebrow-head{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--text-muted);margin:0 0 1.5rem}
.rr-card{display:flex;flex-direction:column;text-decoration:none;padding:1.75rem;border-radius:var(--radius-md,14px);border:1px solid var(--card-border);background:var(--card-bg);transition:border-color .25s var(--ease-out),transform .25s var(--ease-out)}
.rr-card:hover{border-color:var(--card-hover-border);transform:translateY(-3px)}
.rr-card .rr-eyebrow{font-size:.7rem;text-transform:uppercase;letter-spacing:.08em;color:var(--accent);margin:0 0 .6rem;font-weight:600}
.rr-card h3{font-size:1.0625rem;font-weight:700;color:var(--text-primary);margin:0 0 1.25rem;line-height:1.35}
.rr-card .rr-more{margin-top:auto;font-size:.8125rem;font-weight:600;color:var(--accent)}

/* ===== Taal fail-safe (2026-07-03) =====
   Elk één-talig component krijgt .nl-only of .en-only.
   Zo'n component is NOOIT zichtbaar op de andere taal — geen NL op EN, geen EN op NL.
   Bilinguale data-i18n-elementen krijgen GEEN van deze classes (die swappen zelf). */
html[lang="en"] .nl-only,
html[lang="nl"] .en-only { display: none !important; }

/* Reviews masonry (13-7-2026) */
.reviews-wall{columns:3;column-gap:24px}
.reviews-wall .testimonial-card{display:inline-block;width:100%;break-inside:avoid;margin:0 0 24px}
@media (max-width:900px){.reviews-wall{columns:2}}
@media (max-width:600px){.reviews-wall{columns:1}}

/* Content-links in accentkleur (Joost 13-7-2026) */
.faq-item a, .geo-who a, .geo-pkg-note a { color: var(--accent); text-decoration: none; }
.faq-item a:hover, .geo-who a:hover, .geo-pkg-note a:hover { text-decoration: underline; }

/* ===== GEO pricing packages (pkg cards) ===== */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-top: 8px; }
.pkg-card { display: flex; flex-direction: column; position: relative; padding: 34px 28px; }
.pkg-card h3 { font-size: 22px; margin: 0 0 8px; letter-spacing: -0.01em; }
.pkg-who { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.pkg-head { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--card-border); }
.pkg-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.pkg-features li { position: relative; padding-left: 30px; font-size: 15px; line-height: 1.45; color: var(--text-body); }
.pkg-features li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%;
  background-color: rgba(var(--accent-rgb),0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5913E' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px 11px; background-position: center; background-repeat: no-repeat;
}
.pkg-card.pkg-featured {
  border-color: rgba(var(--accent-rgb),0.45);
  background: linear-gradient(180deg, rgba(var(--accent-rgb),0.07) 0%, var(--card-bg) 55%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28), 0 0 0 1px rgba(var(--accent-rgb),0.16);
}
.pkg-card.pkg-featured:hover { border-color: rgba(var(--accent-rgb),0.6); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-accent); color: var(--midnight);
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 15px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(var(--accent-rgb),0.4);
}
@media (max-width: 860px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pkg-card { padding: 30px 26px; }
}


/* ===== Wat we doen — Soulz-stijl explainer (scroll-synced) ===== */
.ww-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; margin-top: 10px; }
.ww-list { display: flex; flex-direction: column; gap: 14px; }
.ww-item { padding: 22px 24px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--card-bg); transition: border-color .45s var(--ease-out), background .45s var(--ease-out), transform .45s var(--ease-out); }
.ww-item h3 { font-size: 18.5px; margin: 0 0 8px; display: flex; align-items: center; gap: 11px; letter-spacing: -0.01em; }
.ww-item p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0; transition: color .4s; }
.ww-item.active { border-color: rgba(var(--accent-rgb),.42); background: linear-gradient(180deg, rgba(var(--accent-rgb),.07) 0%, var(--card-bg) 60%); }
.ww-item.active p { color: var(--text-body); }
.ww-num { width: 27px; height: 27px; flex: 0 0 27px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; background: rgba(var(--accent-rgb),.12); color: var(--accent); transition: background .45s, color .45s; }
.ww-item.active .ww-num { background: var(--gradient-accent); color: var(--midnight); }

.ww-stage { position: sticky; top: 96px; height: 360px; border: 1px solid var(--card-border); border-radius: var(--radius-lg); background: radial-gradient(120% 120% at 30% 20%, #10202f 0%, #0a1119 70%); overflow: hidden; }
.ww-anim { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.97); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); pointer-events: none; }
.ww-anim.active { opacity: 1; transform: scale(1); }
.ww-anim svg { width: 74%; height: auto; max-height: 76%; overflow: visible; }
@media (prefers-reduced-motion: reduce) { .ww-anim [class^="wa-"] { animation: none !important; } }

/* shared animated bits */
.wa-scan { animation: wwScan 3.4s var(--ease-out) infinite; }
@keyframes wwScan { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateY(150px); opacity: 0; } }
.wa-line { transform-origin: left center; animation: wwLinePulse 3.4s ease-in-out infinite; }
.wa-line.d2 { animation-delay: .5s; } .wa-line.d3 { animation-delay: 1s; } .wa-line.d4 { animation-delay: 1.5s; } .wa-line.d5 { animation-delay: 2s; }
@keyframes wwLinePulse { 0%,100% { opacity: .35; } 45% { opacity: 1; } }

.wa-quote { animation: wwQuoteFly 4s var(--ease-out) infinite; }
@keyframes wwQuoteFly { 0%,12% { transform: translate(0,0); opacity: 0; } 24% { opacity: 1; } 55%,100% { transform: translate(96px,-70px); opacity: 0; } }
.wa-bubble { transform-origin: center; animation: wwBubble 4s var(--ease-out) infinite; }
@keyframes wwBubble { 0%,45% { opacity: 0; transform: scale(.8); } 60% { opacity: 1; transform: scale(1); } 92% { opacity: 1; } 100% { opacity: 0; } }

.wa-starfill { animation: wwStarWipe 3.6s var(--ease-out) infinite; }
@keyframes wwStarWipe { 0%,8% { width: 0; } 55%,100% { width: 210px; } }
.wa-chip { opacity: 0; transform: translateY(8px); animation: wwChip 3.6s ease-out infinite; }
.wa-chip.d2 { animation-delay: .35s; } .wa-chip.d3 { animation-delay: .7s; }
@keyframes wwChip { 0%,25% { opacity: 0; transform: translateY(8px); } 40%,90% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; } }

.wa-ring { transform-origin: center; transform-box: fill-box; animation: wwRing 2.6s ease-out infinite; }
.wa-ring.d2 { animation-delay: .8s; } .wa-ring.d3 { animation-delay: 1.6s; }
@keyframes wwRing { 0% { transform: scale(.35); opacity: .7; } 80%,100% { transform: scale(1.6); opacity: 0; } }
.wa-flow { stroke-dasharray: 5 9; animation: wwFlow 1.4s linear infinite; }
@keyframes wwFlow { to { stroke-dashoffset: -28; } }
.wa-node { transform-origin: center; transform-box: fill-box; animation: wwNode 2.6s ease-in-out infinite; }
.wa-node.d2 { animation-delay: .4s; } .wa-node.d3 { animation-delay: .8s; } .wa-node.d4 { animation-delay: 1.2s; } .wa-node.d5 { animation-delay: 1.6s; }
@keyframes wwNode { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

.wa-arc { stroke-dasharray: 224; stroke-dashoffset: 224; animation: wwArc 3.6s var(--ease-out) infinite; }
@keyframes wwArc { 0%,8% { stroke-dashoffset: 224; } 55%,100% { stroke-dashoffset: 56; } }
.wa-needle { transform-box: view-box; transform-origin: 104px 152px; animation: wwNeedle 3.6s var(--ease-out) infinite; }
@keyframes wwNeedle { 0%,8% { transform: rotate(-90deg); } 55%,100% { transform: rotate(45deg); } }
.wa-bar { transform-origin: bottom; transform-box: fill-box; animation: wwBar 3.6s var(--ease-out) infinite; }
.wa-bar.d2 { animation-delay: .3s; } .wa-bar.d3 { animation-delay: .6s; } .wa-bar.d4 { animation-delay: .9s; }
@keyframes wwBar { 0%,15% { transform: scaleY(.15); } 60%,100% { transform: scaleY(1); } }

/* maandcyclus strip */
.ww-cycle { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ww-cycle-step { position: relative; padding: 20px 20px 20px 22px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--card-bg); }
.ww-cycle-step .wk { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.ww-cycle-step p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }
.ww-cycle-lead { text-align: center; margin: 40px 0 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }

@media (max-width: 900px) {
  .ww-grid { grid-template-columns: 1fr; gap: 18px; }
  .ww-stage { order: -1; height: 220px; top: 72px; }
  .ww-cycle { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .ww-cycle { grid-template-columns: 1fr; } }


/* ===== B2B people gallery (overgenomen van Studio) ===== */
.studio-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 8px; }
.studio-photo { aspect-ratio: 3/4; border-radius: var(--radius-md); overflow: hidden; position: relative; background: linear-gradient(135deg, rgba(var(--accent-rgb),0.08), rgba(255,255,255,0.03)); border: 1px solid var(--card-border); transition: transform .4s var(--ease-out), border-color .3s var(--ease-out); }
.studio-photo:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb),0.35); }
.studio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.studio-photo-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 14px 12px; background: linear-gradient(to top, rgba(9,17,31,0.92) 0%, rgba(9,17,31,0.65) 55%, rgba(9,17,31,0) 100%); color: var(--white); pointer-events: none; }
.studio-photo-label .name { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.studio-photo-label .company { display: block; font-size: 11px; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
@media (max-width: 760px) { .studio-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } .studio-photo-label { padding: 28px 10px 10px; } .studio-photo-label .name { font-size: 12px; } .studio-photo-label .company { font-size: 10px; } }


/* ===== StoryBrand: het plan (3 stappen) ===== */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.plan-step { position: relative; padding: 32px 28px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--card-bg); }
.plan-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-accent); color: var(--midnight); font-size: 20px; font-weight: 800; margin-bottom: 18px; }
.plan-step h3 { font-size: 19px; margin: 0 0 10px; letter-spacing: -0.01em; }
.plan-step p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
@media (min-width: 861px) {
  .plan-grid > .plan-step:not(:last-child)::after { content: "\2192"; position: absolute; right: -17px; top: 50%; transform: translateY(-50%); color: rgba(var(--accent-rgb),0.55); font-size: 22px; line-height: 1; z-index: 2; }
}

/* ===== StoryBrand: wat er op het spel staat ===== */
.stakes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.stakes-card { padding: 32px 30px; border-radius: var(--radius-md); border: 1px solid var(--card-border); background: var(--card-bg); }
.stakes-card h3 { font-size: 18px; margin: 0 0 18px; padding-bottom: 16px; border-bottom: 1px solid var(--card-border); }
.stakes-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.stakes-card li { position: relative; padding-left: 30px; font-size: 15px; line-height: 1.5; color: var(--text-body); }
.stakes-neg h3 { color: var(--text-muted); }
.stakes-neg li::before { content: "\2715"; position: absolute; left: 0; top: 0; color: #7a8899; font-weight: 700; }
.stakes-pos { border-color: rgba(var(--accent-rgb),0.4); background: linear-gradient(180deg, rgba(var(--accent-rgb),0.06) 0%, var(--card-bg) 60%); }
.stakes-pos h3 { color: var(--white); }
.stakes-pos li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .plan-grid { grid-template-columns: 1fr; } .stakes-grid { grid-template-columns: 1fr; } }


/* ===== Dashboard-voorbeeld (product preview) ===== */
.dash-mock { position: relative; max-width: 620px; margin: 8px auto 0; padding: 30px 32px; border: 1px solid rgba(var(--accent-rgb),0.18); border-radius: var(--radius-lg); background: linear-gradient(180deg, #0f1c2b 0%, #0b131d 100%); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.dash-tag { position: absolute; top: 16px; right: 16px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); background: rgba(255,255,255,0.05); border: 1px solid var(--card-border); padding: 4px 10px; border-radius: 999px; }
.dm-top { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--card-border); }
.dm-ey { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 6px; }
.dm-score { font-size: 46px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.dm-score small { font-size: 18px; font-weight: 600; color: var(--text-faint); }
.dm-trend { font-size: 13px; font-weight: 700; color: var(--mint); background: rgba(16,185,129,0.1); padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.dm-trend span { color: var(--text-muted); font-weight: 500; }
.dm-engines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.dm-eng { display: flex; align-items: center; justify-content: space-between; font-size: 14.5px; color: var(--text-body); }
.dm-dots { display: flex; gap: 6px; }
.dm-dots i { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.09); display: block; }
.dm-dots i.on { background: var(--gradient-accent); }
.dm-sov { margin-bottom: 24px; }
.dm-sov-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-muted); margin-bottom: 9px; }
.dm-sov-row b { color: var(--white); }
.dm-sov-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.dm-sov-bar span { display: block; height: 100%; width: 62%; border-radius: 999px; background: var(--gradient-accent); }
.dm-feed { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.dm-feed > div { position: relative; padding-left: 26px; font-size: 14px; color: var(--text-body); }
.dm-feed > div::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.dm-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--card-border); font-size: 13.5px; font-weight: 600; color: var(--text-secondary); }
@media (max-width: 560px) { .dash-mock { padding: 26px 22px; } .dm-score { font-size: 38px; } }


/* ===== Dashboard 2-koloms (Soulz-opzet) + subtiele loop-animatie ===== */
.dash-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; margin-top: 8px; }
.dash-copy { text-align: left; }
.dash-copy h2 { margin-bottom: 16px; }
.dash-copy p { color: var(--text-body); font-size: 16px; line-height: 1.7; max-width: 520px; margin: 0; }
.dash-split .dash-mock { max-width: none; margin: 0; width: 100%; }
.dm-live { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); margin-left: 7px; vertical-align: middle; animation: dmLive 2.2s ease-in-out infinite; }
@keyframes dmLive { 0%,100% { opacity: .4; box-shadow: 0 0 0 0 rgba(16,185,129,.45); } 50% { opacity: 1; box-shadow: 0 0 0 5px rgba(16,185,129,0); } }
.dm-sov-bar span { position: relative; overflow: hidden; }
.dm-sov-bar span::after { content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 40%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transform: translateX(-140%); animation: dmShine 3.8s ease-in-out infinite; }
@keyframes dmShine { 0% { transform: translateX(-140%); } 55%,100% { transform: translateX(320%); } }
.dm-dots i.on { animation: dmDot 3s ease-in-out infinite; }
.dm-eng:nth-child(2) .dm-dots i.on { animation-delay: .4s; }
.dm-eng:nth-child(3) .dm-dots i.on { animation-delay: .8s; }
.dm-eng:nth-child(4) .dm-dots i.on { animation-delay: 1.2s; }
@keyframes dmDot { 0%,100% { opacity: .82; } 50% { opacity: 1; filter: brightness(1.18); } }
@media (prefers-reduced-motion: reduce) { .dm-live, .dm-sov-bar span::after, .dm-dots i.on { animation: none !important; } }
@media (max-width: 900px) {
  .dash-split { grid-template-columns: 1fr; gap: 26px; }
  .dash-copy { text-align: center; }
  .dash-copy p { margin-left: auto; margin-right: auto; }
  .dash-split .dash-mock { max-width: 620px; margin: 0 auto; }
}


/* ===== Studioportret-slider: 1 rij, tik-cadans ===== */
.studio-slider { position: relative; overflow: hidden; margin-top: 26px; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); }
.studio-track { display: flex; width: max-content; animation: studioTick 26.4s steps(12) infinite; will-change: transform; }
.studio-slider:hover .studio-track { animation-play-state: paused; }
.studio-track .studio-photo { flex: 0 0 220px; width: 220px; margin-right: 14px; }
@keyframes studioTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .studio-track { animation: none; } }
@media (max-width: 640px) { .studio-track .studio-photo { flex: 0 0 152px; width: 152px; margin-right: 10px; } }


/* ===== Dashboard v2: AI-visits block + scroll-in vullen (override loop) ===== */
.dm-visits { margin-bottom: 22px; }
.dm-sub { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 14px; }
.dm-vrow { display: flex; align-items: center; gap: 12px; margin-bottom: 11px; }
.dm-vlabel { flex: 0 0 78px; font-size: 13.5px; color: var(--text-body); }
.dm-vbar { flex: 1; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.dm-vbar i { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--gradient-accent); transition: width 1.1s cubic-bezier(.22,1,.36,1) .3s; }
.dm-vnum { flex: 0 0 32px; text-align: right; font-size: 14px; font-weight: 700; color: var(--white); }
.dash-mock.visible .dm-vbar i { width: var(--w); }
.dash-mock.visible .dm-vrow:nth-child(3) .dm-vbar i { transition-delay: .42s; }
.dash-mock.visible .dm-vrow:nth-child(4) .dm-vbar i { transition-delay: .54s; }
.dash-mock.visible .dm-vrow:nth-child(5) .dm-vbar i { transition-delay: .66s; }
/* Share of voice: vullen op scroll-in, loop-shine uit */
.dm-sov-bar span::after { display: none; }
.dm-sov-bar span { width: 0; transition: width 1.1s cubic-bezier(.22,1,.36,1) .78s; }
.dash-mock.visible .dm-sov-bar span { width: 62%; }
/* score + trend faden in */
.dm-score, .dm-trend { opacity: 0; transform: translateY(8px); transition: opacity .55s ease, transform .55s ease; }
.dash-mock.visible .dm-score { opacity: 1; transform: none; transition-delay: .1s; }
.dash-mock.visible .dm-trend { opacity: 1; transform: none; transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .dm-vbar i { width: var(--w); transition: none; }
  .dm-sov-bar span { width: 62%; transition: none; }
  .dm-score, .dm-trend { opacity: 1; transform: none; transition: none; }
}


/* ===== AI-visits groei-indicatoren ===== */
.dm-vnum { flex: 0 0 30px; }
.dm-vd { flex: 0 0 46px; text-align: right; font-size: 12px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }
.dm-vd.up { color: var(--mint); }
.dm-vd.dn { color: #ef5350; }
.dm-vrow.down .dm-vbar i { background: linear-gradient(90deg, #ef5350, #f28a84); }
.dm-vrow.down .dm-vnum { color: #ef5350; }

/* slider: vloeiend glijden i.p.v. tik-stappen (Joost 14/7) */
.studio-track { animation-duration: 40s; animation-timing-function: linear; }

/* ===== Over Wildbos (about) ===== */
.about-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.about-photo img { width: 100%; max-width: 440px; height: auto; display: block; margin: 0 auto; border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.about-text p { margin-bottom: 14px; }
.about-text p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { order: -1; }
  .about-photo img { max-width: 380px; }
}

/* Fail-safe 2026-07-28: lange tekstblokken (legal) nooit onzichtbaar laten als de
   scroll-reveal-observer niet vuurt (blok hoger dan viewport haalde threshold nooit). */
.legal-content.reveal { opacity: 1; transform: none; }

/* --- Footer WhatsApp --- */
.footer-col a.footer-wa {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a.footer-wa svg {
  flex: none;
  opacity: 0.9;
  transition: opacity 200ms ease;
}
.footer-col a.footer-wa:hover svg { opacity: 1; }


/* --- Statistiekenrij met vier cijfers: vier op een rij houden --- */
.stats-row.geo-stats-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}
.stats-row.geo-stats-4 .stat-label { line-height: 1.5; }
@media (max-width: 1024px) {
  .stats-row.geo-stats-4 { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}
@media (max-width: 560px) {
  .stats-row.geo-stats-4 { grid-template-columns: 1fr; gap: 24px; }
}

/* Wat levert het op: leadwaarde-rekensom op de homepage (2026-07-31) */
.roi-calc { max-width: 980px; margin: 0 auto; }
.roi-inputs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.roi-field { display: flex; flex-direction: column; gap: 8px; }
.roi-field > span:first-child {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-muted);
  line-height: 1.35;
  min-height: 32px;
}
.roi-input-wrap {
  display: flex;
  align-items: center;
  background: var(--card-bg, rgba(255,255,255,.03));
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 0 12px;
  transition: border-color .18s ease;
}
.roi-input-wrap:focus-within { border-color: var(--accent); }
.roi-prefix { font-size: 15px; color: var(--text-muted); padding-right: 4px; }
.roi-input-wrap input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: inherit;
  font: inherit;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  padding: 12px 0;
  -moz-appearance: textfield;
}
.roi-input-wrap input::-webkit-outer-spin-button,
.roi-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.roi-card { text-align: center; padding: 32px 20px; }

/* Wat levert het op — vereenvoudigd 2026-08-03: een zin, een veld, een getal */
.roi-sentence {
  text-align: center;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 2.1;
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto;
}
.roi-inline {
  display: inline-flex;
  align-items: center;
  background: var(--card-bg, rgba(255,255,255,.03));
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 2px 12px;
  margin: 0 4px;
  vertical-align: middle;
}
.roi-inline:focus-within { box-shadow: 0 0 0 3px rgba(232,150,79,.18); }
.roi-prefix { color: var(--text-muted); padding-right: 3px; }
.roi-inline input {
  width: 5.2ch;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 6px 0;
  text-align: center;
  -moz-appearance: textfield;
}
.roi-inline input::-webkit-outer-spin-button,
.roi-inline input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.roi-hero { text-align: center; padding: 30px 20px 6px; }
.roi-hero-value {
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  line-height: 1.02;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: opacity .18s ease;
}
.roi-hero-value.is-updating { opacity: .45; }
.roi-hero-label {
  font-size: 15px;
  color: var(--text-muted);
  margin: 14px auto 0;
  max-width: 380px;
  line-height: 1.5;
}
.roi-then {
  text-align: center;
  font-size: 15px;
  color: var(--text-body);
  margin: 26px auto 0;
  max-width: 520px;
  line-height: 1.6;
}
.roi-then b { color: var(--accent); font-variant-numeric: tabular-nums; }
@media (max-width: 560px) {
  .roi-sentence { line-height: 2.3; }
  .roi-hero { padding: 24px 8px 4px; }
}

/* Eigen nulmeting-blok op de homepage (2026-07-31) */
.proof-card { text-align: center; padding: 32px 20px; }
.proof-card .stat-value { font-size: 2.25rem; font-variant-numeric: tabular-nums; }
.proof-card p { font-size: 13px; margin-top: 8px; }
.proof-body { max-width: 720px; margin: 32px auto 0; }
.proof-body p { font-size: 15px; color: var(--text-body); margin-bottom: 16px; }
.proof-body p:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .proof-card .stat-value { font-size: 1.75rem; } }

/* Sortlist review-widget onder de klantreviews (2026-07-31) */
.sortlist-proof {
  margin: 48px auto 0;
  max-width: 560px;
  text-align: center;
}
.sortlist-proof p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.sortlist-proof a {
  display: inline-block;
  line-height: 0;
  border-radius: 10px;
  transition: opacity .18s ease;
}
.sortlist-proof a:hover { opacity: .85; }
.sortlist-proof img {
  width: 512px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Auteur-byline in blogposts (2026-08-06) */
.blog-pub-date .blog-author a{color:var(--accent);text-decoration:none}
.blog-pub-date .blog-author a:hover{text-decoration:underline}
