/* ============================================
   Hilux Media — Design System
   White-first, electric blue accent
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 140px;
}

@media (max-width: 768px) {
  html { scroll-padding-top: 80px; }
}

section[id] { scroll-margin-top: 140px; }
@media (max-width: 768px) { section[id] { scroll-margin-top: 80px; } }

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   Design Tokens
   ============================================ */
:root {
  /* Color */
  --color-bg:            #FFFFFF;
  --color-surface:       #F4F5FB;
  --color-dark:          #0D0F1C;
  --color-heading:       #0D0F1C;
  --color-body:          #4A4F7A;
  --color-muted:         #8B90B8;
  --color-blue:          #2233FF;
  --color-blue-hover:    #1A29CC;
  --color-lavender:      #B8BEF0;
  --color-border:        rgba(34, 51, 255, 0.10);
  --color-border-soft:   rgba(34, 51, 255, 0.06);
  --color-card-shadow:   rgba(34, 51, 255, 0.08);
  --color-blue-tint:     rgba(34, 51, 255, 0.04);

  /* Spacing — 8px grid */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 120px;

  /* Typography */
  --font-sans:    'Geist', system-ui, -apple-system, sans-serif;
  --font-display: 'Geist', system-ui, -apple-system, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;

  --text-xs:    12px;
  --text-sm:    14px;
  --text-base:  16px;
  --text-lg:    18px;
  --text-xl:    clamp(20px, 2.5vw, 24px);
  --text-2xl:   clamp(24px, 3vw, 32px);
  --text-3xl:   clamp(28px, 4vw, 44px);
  --text-4xl:   clamp(36px, 5vw, 56px);
  --text-hero:  clamp(40px, 6vw, 72px);

  --leading-tight:  1.1;
  --leading-snug:   1.3;
  --leading-normal: 1.7;

  --tracking-tight: -0.03em;
  --tracking-snug:  -0.02em;
  --tracking-wide:  0.12em;

  /* Layout */
  --page-margin: 16px;
  --container-max: 1320px;

  /* Effects */
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card:  0 8px 32px var(--color-card-shadow);
  --shadow-glow:  0 0 24px rgba(34, 51, 255, 0.25);
  --shadow-deep:  0 24px 60px rgba(13, 15, 28, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 481px) { :root { --page-margin: 24px; } }
@media (min-width: 769px) { :root { --page-margin: 32px; } }
@media (min-width: 1025px) { :root { --page-margin: 64px; } }

/* ============================================
   Base typography
   ============================================ */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Subtle grain texture — adds editorial paper-like depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

h1, h2, h3, h4 {
  color: var(--color-heading);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-snug);
}

h1, h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h2 { font-size: var(--text-3xl); font-weight: 700; letter-spacing: -0.04em; }

h3 { font-family: var(--font-sans); font-size: var(--text-xl); font-weight: 600; letter-spacing: -0.02em; }
h4 { font-family: var(--font-sans); font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.01em; }

p { max-width: 65ch; }

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================
   Layout primitives
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--page-margin);
  padding-right: var(--page-margin);
}

.section {
  padding: 58px 0;
}
@media (min-width: 769px) { .section { padding: 70px 0; } }
@media (min-width: 1025px) { .section { padding: 96px 0; } }

.section-tight {
  padding: var(--space-7) 0;
}
@media (min-width: 1025px) { .section-tight { padding: var(--space-8) 0; } }

.section-surface { background: var(--color-surface); }
.section-dark { background: var(--color-dark); color: #fff; }
.section-blue { background: var(--color-blue); color: #fff; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}

.section-dark .eyebrow,
.section-blue .eyebrow {
  color: var(--color-lavender);
}
.section-dark .eyebrow::before,
.section-blue .eyebrow::before {
  background: var(--color-lavender);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  min-height: 48px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-blue-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--color-bg);
  color: var(--color-blue);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  background: var(--color-surface);
  border-color: rgba(34, 51, 255, 0.25);
  transform: translateY(-1px);
}

.section-dark .btn-outline,
.section-blue .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.section-dark .btn-outline:hover,
.section-blue .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.section-blue .btn-primary {
  background: #fff;
  color: var(--color-blue);
}

.section-blue .btn-primary:hover {
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all 0.3s var(--ease);
}

@media (min-width: 769px) {
  .card { padding: var(--space-6) var(--space-5); }
}

.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-color: rgba(34, 51, 255, 0.18);
}

.card-featured {
  background: linear-gradient(180deg, rgba(34, 51, 255, 0.04) 0%, transparent 100%);
  border-color: rgba(34, 51, 255, 0.18);
}

/* ============================================
   Forms
   ============================================ */
.form-field {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 48px;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-heading);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  padding: 14px 16px;
  line-height: 1.5;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(34, 51, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%234A4F7A' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* ============================================
   Navigation (dark)
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #fff;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(34, 51, 255, 0.35));
}

.footer-brand-logo .nav-logo-mark svg {
  filter: drop-shadow(0 4px 14px rgba(34, 51, 255, 0.5));
}

.nav-links {
  display: none;
  gap: var(--space-5);
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-cta {
  display: none;
}

.nav-burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
}

.nav-burger span::before,
.nav-burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}

.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

@media (min-width: 1025px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* ============================================
   Mega-menu (desktop hover dropdowns)
   ============================================ */
.nav-item-mega {
  position: relative;
}

.nav-link-mega {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-link-mega::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s var(--ease);
}

.nav-item-mega:hover .nav-link-mega::after {
  transform: rotate(-135deg) translate(-1px, -1px);
}

/* Invisible bridge so hover doesn't break when moving down */
.nav-item-mega::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
  pointer-events: none;
}

.nav-item-mega:hover::before { pointer-events: auto; }

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 36px;
  width: 720px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 28px 72px rgba(13, 15, 28, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 110;
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.mega-menu-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  padding: 4px;
  margin: -4px;
  transition: background 0.2s var(--ease);
}

.mega-menu-item:hover {
  background: rgba(34, 51, 255, 0.05);
}

.mega-menu-item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(34, 51, 255, 0.25);
  transition: transform 0.25s var(--ease);
}

.mega-menu-item-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.mega-menu-item:hover .mega-menu-item-icon {
  transform: scale(1.06) rotate(-3deg);
}

.mega-menu-item-content {
  min-width: 0;
}

.mega-menu-item-content h5 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 2px 0 4px;
  letter-spacing: -0.015em;
}

.mega-menu-item-content p {
  font-size: 12.5px;
  color: var(--color-body);
  margin: 0;
  line-height: 1.45;
  max-width: 30ch;
}

/* Contact mega menu specific */
.mega-menu-contact {
  width: 760px;
}

.mega-menu-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}

.mega-menu-contact-card {
  background: var(--color-dark);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mega-menu-contact-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(34, 51, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.mega-contact-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}

.mega-contact-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-lavender) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(34, 51, 255, 0.3);
}

.mega-contact-card-head h5 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
}

.mega-menu-contact-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.mega-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.mega-contact-channels a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.mega-contact-channels a span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-lavender);
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.mega-contact-channels a:hover {
  color: var(--color-lavender);
}

@media (max-width: 1024px) {
  .nav-link-mega::after { display: none; }
  .mega-menu { display: none; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--color-surface);
  font-size: 22px;
  color: var(--color-heading);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-5);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mobile-menu-links a {
  color: var(--color-heading);
  padding: var(--space-2) 0;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: var(--space-5);
}

.mobile-menu .btn { width: 100%; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--color-surface);
  padding: var(--space-8) 0 var(--space-7);
  overflow: hidden;
}

@media (min-width: 769px) { .hero { padding: 96px 0; } }
@media (min-width: 1025px) { .hero { padding: 112px 0 96px; } }

.hero {
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(calc(-50% + var(--parallax-x))) translateY(var(--parallax-y));
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(34, 51, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  transition: transform 0.6s var(--ease);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    max-width: var(--container-max);
  }
}

/* Hero headline — tight, poster-style */
.hero-headline {
  font-size: clamp(38px, 8vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin-bottom: var(--space-3);
}

@media (min-width: 769px) {
  .hero-headline {
    font-size: clamp(44px, 5.5vw, 60px);
  }
}

@media (min-width: 1025px) {
  .hero-headline {
    font-size: clamp(40px, 3.8vw, 56px);
  }
}

@media (min-width: 1280px) {
  .hero-headline {
    font-size: clamp(48px, 3.6vw, 64px);
  }
}

@media (min-width: 1025px) {
  .hero .eyebrow,
  .hero .hero-headline,
  .hero .hero-subtext,
  .hero .hero-ctas {
    margin-left: 0;
    margin-right: 0;
  }
  .hero .hero-headline { text-align: left; }
  .hero .hero-ctas { justify-content: flex-start; }
  .hero .hero-stats {
    margin-left: 0;
    margin-right: 0;
    max-width: 540px;
  }
}

/* Hero visual (right column on desktop) */
.hero-visual {
  position: relative;
  margin-top: var(--space-6);
  padding: 24px 12px;
}

@media (min-width: 1025px) {
  .hero-visual {
    margin-top: 0;
    padding: 40px 24px;
  }
}

.hero-mockup {
  position: relative;
  background: var(--color-dark);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 38px 88px rgba(13, 15, 28, 0.28);
  animation: mockup-float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes mockup-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mockup { animation: none; }
}

.hero-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: #14172b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mockup-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hero-mockup-url {
  margin-left: 8px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

.hero-mockup-body {
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, #14172b 0%, #0d0f1c 70%);
  position: relative;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.hero-mockup-body::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(34, 51, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-mockup-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-lavender);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-mockup-eyebrow::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-blue);
}

.hero-mockup-title {
  height: 18px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  width: 80%;
  margin-bottom: 2px;
}

.hero-mockup-title.two {
  width: 55%;
}

.hero-mockup-line {
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.hero-mockup-line.medium { width: 70%; }
.hero-mockup-line.short { width: 45%; }

.hero-mockup-cta {
  width: 110px;
  height: 28px;
  background: var(--color-blue);
  border-radius: 6px;
  margin-top: 6px;
  box-shadow: 0 0 20px rgba(34, 51, 255, 0.5);
  position: relative;
}

.hero-mockup-cta::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
}

.hero-mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.hero-mockup-card {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

/* ============================================
   Service-specific hero visuals
   ============================================ */

/* WEBSHOP — Product grid + checkout */
.svh-webshop {
  background: linear-gradient(135deg, #14172b 0%, #0d0f1c 70%);
  padding: 24px;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.svh-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.svh-product {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svh-product-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(184, 190, 240, 0.15), rgba(34, 51, 255, 0.1));
  border-radius: 6px;
}

.svh-product-name {
  height: 6px;
  width: 70%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.svh-product-price {
  height: 8px;
  width: 40%;
  background: var(--color-blue);
  border-radius: 2px;
}

.svh-checkout-bar {
  background: var(--color-blue);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  box-shadow: 0 0 24px rgba(34, 51, 255, 0.5);
}

.svh-checkout-label {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.svh-checkout-price {
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
}

/* SEO — Google SERP result */
.svh-seo {
  background: #fff;
  padding: 18px 22px;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.svh-google-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #DFE1E5;
  border-radius: 24px;
  padding: 8px 16px;
}

.svh-google-bar::before {
  content: 'G';
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svh-google-bar-text {
  flex: 1;
  font-size: 11px;
  color: #5F6368;
  font-weight: 500;
}

.svh-serp-result {
  padding: 8px 10px;
  border-left: 3px solid var(--color-blue);
  background: rgba(34, 51, 255, 0.04);
  border-radius: 4px;
}

.svh-serp-result-rank {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.svh-serp-url {
  font-size: 10px;
  color: #5F6368;
  margin-bottom: 4px;
}

.svh-serp-title {
  font-size: 14px;
  color: #1A0DAB;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.svh-serp-snippet {
  font-size: 11px;
  color: #4D5156;
  line-height: 1.4;
}

.svh-serp-result.muted {
  border-left-color: rgba(13, 15, 28, 0.15);
  background: transparent;
  padding-left: 13px;
}

.svh-serp-result.muted .svh-serp-rank,
.svh-serp-result.muted .svh-serp-result-rank { display: none; }

/* SEA — Dashboard with chart */
.svh-sea {
  background: linear-gradient(135deg, #14172b 0%, #0d0f1c 70%);
  padding: 20px;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svh-sea-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.svh-sea-header-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.svh-sea-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(52, 199, 89, 0.15);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: #34C759;
}

.svh-sea-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 6px #34C759;
}

.svh-sea-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  min-height: 80px;
}

.svh-sea-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--color-blue) 0%, rgba(34, 51, 255, 0.3) 100%);
  border-radius: 4px 4px 0 0;
}

.svh-sea-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.svh-sea-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 10px;
}

.svh-sea-stat-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.svh-sea-stat-value {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.svh-sea-stat-delta {
  font-size: 10px;
  color: #34C759;
  font-weight: 700;
}

/* GOOGLE BEDRIJFSPROFIEL — Business card */
.svh-gbp {
  background: #fff;
  padding: 22px;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svh-gbp-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svh-gbp-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.svh-gbp-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 2px;
}

.svh-gbp-cat {
  font-size: 11px;
  color: var(--color-muted);
}

.svh-gbp-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-heading);
}

.svh-gbp-rating-num { font-weight: 700; }
.svh-gbp-rating-stars { color: #FFB534; letter-spacing: 1px; }
.svh-gbp-rating-count { color: var(--color-muted); }

.svh-gbp-map {
  flex: 1;
  background: linear-gradient(135deg, #E5E9EE 0%, #C5CEDD 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  min-height: 80px;
}

.svh-gbp-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 15, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 15, 28, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.svh-gbp-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 28px;
  height: 28px;
  background: var(--color-blue);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 4px 14px rgba(34, 51, 255, 0.4);
}

.svh-gbp-pin::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: #fff;
  border-radius: 50%;
}

.svh-gbp-actions {
  display: flex;
  gap: 8px;
}

.svh-gbp-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 51, 255, 0.08);
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 600;
}

.svh-gbp-btn.primary {
  background: var(--color-blue);
  color: #fff;
}

/* CRM — Automation flow */
.svh-crm {
  background: linear-gradient(135deg, #14172b 0%, #0d0f1c 70%);
  padding: 24px;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.svh-crm-flow {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.svh-crm-node {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
}

.svh-crm-node.active {
  background: rgba(34, 51, 255, 0.2);
  border-color: rgba(34, 51, 255, 0.4);
}

.svh-crm-node-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.svh-crm-node-text {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  flex: 1;
}

.svh-crm-node-status {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.svh-crm-connector {
  width: 2px;
  height: 14px;
  background: linear-gradient(180deg, rgba(34, 51, 255, 0.5), rgba(34, 51, 255, 0.1));
  margin-left: 26px;
}

/* FOTOGRAFIE — Photo mosaic */
.svh-foto {
  background: #fff;
  padding: 18px;
  aspect-ratio: 16 / 11;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.svh-foto-tile {
  border-radius: 8px;
  background: linear-gradient(135deg, #d4d8e8 0%, #a0a8c8 100%);
  position: relative;
  overflow: hidden;
}

.svh-foto-tile.warm {
  background: linear-gradient(135deg, #e8d8c8 0%, #c8a888 100%);
}

.svh-foto-tile.cool {
  background: linear-gradient(135deg, #d4e0e8 0%, #88a8c8 100%);
}

.svh-foto-tile.green {
  background: linear-gradient(135deg, #d4e8d8 0%, #88c8a0 100%);
}

.svh-foto-tile-big {
  grid-row: 1 / 3;
}

.svh-foto-shutter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 15, 28, 0.7);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.svh-foto-shutter::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: inset 0 0 0 1px rgba(13, 15, 28, 0.5);
}

/* HOSTING — Server status panel */
.svh-hosting {
  background: linear-gradient(135deg, #14172b 0%, #0d0f1c 70%);
  padding: 22px;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svh-hosting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.svh-hosting-row-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svh-hosting-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #34C759;
}

.svh-hosting-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 8px #34C759;
}

.svh-hosting-uptime {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.svh-hosting-uptime-bars {
  display: flex;
  gap: 3px;
  height: 32px;
}

.svh-hosting-uptime-bar {
  flex: 1;
  background: #34C759;
  border-radius: 2px;
  opacity: 0.85;
}

.svh-hosting-uptime-bar.warn { background: #FFB534; opacity: 0.6; }

.svh-hosting-shield {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(34, 51, 255, 0.15);
  display: grid;
  place-items: center;
  color: var(--color-blue);
  flex-shrink: 0;
}

.svh-hosting-shield svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 2;
}

/* Floating USP badges — frosted glass */
.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 18px 48px rgba(13, 15, 28, 0.10);
  z-index: 3;
  animation: breathe 5s ease-in-out infinite;
  will-change: transform;
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(34, 51, 255, 0.1);
  color: var(--color-blue);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.float-badge-icon.is-yellow {
  background: rgba(255, 181, 52, 0.15);
  color: #FFB534;
}

.float-badge-icon.is-green {
  background: rgba(52, 199, 89, 0.15);
  color: #34C759;
}

.float-badge-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2px;
  line-height: 1;
}

.float-badge-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Positioning each floating badge */
.float-badge.b1 {
  top: 6%;
  right: -6%;
  animation-delay: 0s;
}

.float-badge.b2 {
  top: 48%;
  left: -8%;
  animation-delay: 1.5s;
}

.float-badge.b3 {
  bottom: 4%;
  right: 8%;
  animation-delay: 2.8s;
}

@keyframes breathe {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(0.3deg); }
}

@media (max-width: 600px) {
  .float-badge { padding: 8px 10px; gap: 6px; }
  .float-badge-icon { width: 28px; height: 28px; font-size: 14px; border-radius: 8px; }
  .float-badge-label { font-size: 8px; }
  .float-badge-value { font-size: 11px; }
  .float-badge.b1 { right: -2%; }
  .float-badge.b2 { left: -2%; }
  .float-badge.b3 { right: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  .float-badge { animation: none; }
}

.hero-headline {
  margin-bottom: var(--space-4);
}

.hero-headline .serif-italic {
  color: var(--color-blue);
}

.hero-subtext {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto var(--space-6);
  color: var(--color-body);
}

.hero-ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  max-width: 540px;
  margin: var(--space-6) 0 var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

@media (max-width: 1024px) {
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

.hero-stat {
  text-align: left;
  min-width: 120px;
}

@media (max-width: 1024px) {
  .hero-stat { text-align: center; }
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-notice {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 18px;
  background: rgba(34, 51, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: var(--text-sm);
  color: var(--color-blue);
  font-weight: 500;
}

.hero-notice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(34, 51, 255, 0.15);
  animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================
   Services bento grid
   ============================================ */
.services-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  position: relative;
}

@media (min-width: 769px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
}

@media (min-width: 1100px) {
  .services-bento {
    grid-template-columns: 1.05fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 14px;
  }
}

/* Photo-style category headers */
.service-feature {
  background: linear-gradient(135deg, #2A2F4F 0%, #0D0F1C 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

@media (min-width: 1100px) {
  .service-feature.feature-online {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .service-feature.feature-marketing {
    grid-column: 3;
    grid-row: 3 / span 2;
  }
}

.service-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(34, 51, 255, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(184, 190, 240, 0.15) 0%, transparent 50%);
  z-index: 0;
}

.service-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 30% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, #000 30%, transparent 80%);
}

.service-feature h3 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.service-feature .feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-lavender);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 2;
}

.service-feature .feature-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(34, 51, 255, 0.2);
}

/* Service detail cards */
.service-detail {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 15, 28, 0.08);
  border-color: rgba(34, 51, 255, 0.2);
}

.service-detail.is-dark {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.06);
  position: relative;
}

.service-detail.is-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.service-detail.is-dark h3 { color: #fff; }
.service-detail.is-dark .service-link { color: var(--color-lavender); }
.service-detail.is-dark p { color: rgba(255, 255, 255, 0.62); }

.service-detail h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}

.service-detail p {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: var(--space-3);
  max-width: 32ch;
  position: relative;
  z-index: 1;
}

.service-detail .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
  transition: gap 0.25s var(--ease);
}

.service-detail:hover .service-link { gap: 10px; }

.service-visual {
  margin-top: auto;
  height: 78px;
  position: relative;
  overflow: visible;
}

/* Micro visuals inside service-detail cards */
.svis-phone {
  position: absolute;
  right: 0;
  bottom: -16px;
  width: 92px;
  height: 110px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff 0%, #f4f5fb 100%);
  border: 1.5px solid rgba(13, 15, 28, 0.1);
  box-shadow: 0 10px 24px rgba(13, 15, 28, 0.12);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

.svis-phone::before {
  content: '';
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(13, 15, 28, 0.15);
  margin: 0 auto 4px;
}

.svis-phone-bar {
  height: 5px;
  border-radius: 1.5px;
  background: rgba(13, 15, 28, 0.08);
}

.svis-phone-bar.b-hero { width: 70%; background: rgba(34, 51, 255, 0.25); height: 6px; }
.svis-phone-bar.b-short { width: 50%; }
.svis-phone-bar.b-medium { width: 75%; }

.svis-pay {
  position: absolute;
  right: 0;
  bottom: -10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid rgba(13, 15, 28, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 20px rgba(13, 15, 28, 0.1);
}

.svis-pay-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-heading);
  padding-right: 6px;
  border-right: 1px solid rgba(13, 15, 28, 0.08);
  margin-right: 4px;
}

.svis-pay-badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.svis-pay-badge.ideal { background: #CD0067; color: #fff; }
.svis-pay-badge.paypal { background: #003087; color: #fff; }
.svis-pay-badge.mc { background: linear-gradient(90deg, #EB001B 0%, #EB001B 50%, #F79E1B 50%, #F79E1B 100%); color: #fff; }

.svis-hosting {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  background: var(--color-dark);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}

.svis-hosting-lock {
  flex-shrink: 0;
  color: var(--color-lavender);
}

.svis-hosting-progress {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.svis-hosting-progress::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-lavender) 100%);
  width: 90%;
  border-radius: 3px;
}

.svis-camera {
  position: absolute;
  right: 8px;
  bottom: -14px;
  width: 88px;
  height: 70px;
}

.svis-camera svg {
  width: 100%;
  height: 100%;
  color: var(--color-heading);
}

.svis-search {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  font-size: 11px;
  color: var(--color-heading);
  font-weight: 500;
  white-space: nowrap;
}

.svis-search-g {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 8px;
  border-right: 1px solid rgba(13, 15, 28, 0.1);
}

.svis-stats {
  position: absolute;
  right: 0;
  bottom: -8px;
  display: flex;
  gap: 6px;
}

.svis-stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 80px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  font-family: var(--font-sans);
}

.svis-stat-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.svis-stat-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.svis-stat-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

.svis-stat-delta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(34, 51, 255, 0.1);
  color: var(--color-blue);
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
}

.svis-business {
  position: absolute;
  right: 0;
  bottom: -8px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  min-width: 170px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svis-business-pin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.svis-business-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 2px;
}

.svis-business-meta {
  font-size: 9px;
  color: var(--color-body);
  display: flex;
  align-items: center;
  gap: 3px;
}

.svis-business-stars {
  color: #FFB534;
  font-size: 9px;
}

.svis-flow {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.svis-flow-row {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.svis-flow-pill {
  background: #fff;
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-heading);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.svis-flow-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* Decorative connector bubbles between sections */
.service-bubble {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-blue);
  display: grid;
  place-items: center;
  font-size: 22px;
  z-index: 5;
  box-shadow: 0 10px 28px rgba(34, 51, 255, 0.35);
  pointer-events: none;
  border: 5px solid var(--color-surface);
}

@media (min-width: 1100px) {
  .service-bubble.bubble-eyes {
    top: calc(50% - 90px);
    left: calc(50% - 28px);
    transform: translate(-30%, -50%);
  }
  .service-bubble.bubble-rocket {
    top: calc(50% + 90px);
    left: calc(50% + 28px);
    transform: translate(-70%, -50%);
  }
}

@media (max-width: 1099px) {
  .service-bubble { display: none; }
}

/* ============================================
   USP marquee bar (after hero)
   ============================================ */
.usp-bar {
  background: var(--color-dark);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  position: relative;
}

.usp-bar::before,
.usp-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.usp-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--color-dark), transparent);
}

.usp-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--color-dark), transparent);
}

.usp-marquee {
  display: flex;
  width: 100%;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.usp-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  animation: marquee 38s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}

.usp-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
}

.usp-marquee-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-lavender);
  flex-shrink: 0;
}

.usp-marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .usp-marquee-track { animation: none; }
}

/* ============================================
   About section (homepage — founder block)
   ============================================ */
.section-about {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle at center, rgba(34, 51, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1025px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
  }
}

.about-photo {
  position: relative;
  max-width: 460px;
  margin: 24px auto;
  padding: 20px 24px 24px 20px;
}

.about-photo::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 0;
  bottom: 0;
  left: 32px;
  background: rgba(34, 51, 255, 0.08);
  border: 1px solid rgba(34, 51, 255, 0.18);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-photo-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #c8cee0 0%, #989fc4 50%, #6c70a0 100%);
  box-shadow: 0 34px 80px rgba(13, 15, 28, 0.22);
  display: grid;
  place-items: center;
}

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

.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 24px;
  text-align: center;
  line-height: 1.4;
}

.about-photo-placeholder svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.5;
  opacity: 0.65;
}

.about-photo-placeholder small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Floating quote bubble */
.about-quote {
  position: absolute;
  bottom: -14px;
  right: -10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 14px 16px 12px;
  max-width: 240px;
  box-shadow: 0 22px 54px rgba(13, 15, 28, 0.14);
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-heading);
  font-weight: 500;
}

.about-quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  line-height: 0;
  color: var(--color-blue);
  display: block;
  margin-bottom: 8px;
  height: 14px;
}

.about-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-quote-author::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-blue);
}

/* Content side */
.about-content {
  position: relative;
  z-index: 1;
}

.about-content .eyebrow {
  margin-bottom: var(--space-3);
}

.about-content h2 {
  margin-bottom: var(--space-3);
}

.about-lead {
  font-size: 17px;
  color: var(--color-body);
  margin-bottom: var(--space-4);
  max-width: 56ch;
  line-height: 1.65;
}

.about-stats {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin: var(--space-5) 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.about-stat {
  flex: 1;
  min-width: 110px;
}

.about-stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about-stat-label {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================
   Service hero (detail page) + supporting elements
   ============================================ */
.service-hero {
  background: var(--color-surface);
  padding: var(--space-7) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}

@media (min-width: 769px) { .service-hero { padding: 80px 0 64px; } }
@media (min-width: 1025px) { .service-hero { padding: 96px 0 80px; } }

.service-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(34, 51, 255, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1025px) {
  .service-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.service-hero-content { position: relative; }

.service-hero-content h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: var(--space-3);
}

.service-hero-content p {
  font-size: 17px;
  color: var(--color-body);
  margin-bottom: var(--space-5);
  max-width: 56ch;
}

.service-hero-visual {
  position: relative;
  padding: 24px 12px;
}

@media (min-width: 1025px) {
  .service-hero-visual { padding: 32px 24px; }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: var(--space-3);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.back-link:hover {
  color: var(--color-blue);
  gap: 10px;
}

/* ============================================
   Stats strip (band of numeric facts)
   ============================================ */
.stats-strip {
  background: var(--color-dark);
  color: #fff;
  padding: var(--space-5) 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.stats-strip-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 769px) { .stats-strip-grid { grid-template-columns: repeat(4, 1fr); } }

.stats-strip-item {
  text-align: center;
  padding: 0 var(--space-2);
}

.stats-strip-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stats-strip-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* ============================================
   Promise grid (3 numbered promise cards)
   ============================================ */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 769px) { .promise-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }

.promise-card {
  position: relative;
  padding-top: var(--space-5);
  border-top: 3px solid var(--color-blue);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.promise-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: rgba(34, 51, 255, 0.3);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-3);
}

.promise-card h3 {
  font-size: 19px;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.promise-card p {
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   5-step process layout
   ============================================ */
@media (min-width: 1025px) {
  .steps-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .steps-5::before {
    top: 56px;
    left: 10%;
    right: 10%;
  }
}

/* ============================================
   Service signature section (per-service unique)
   ============================================ */
.signature-section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.signature-section.is-dark {
  background: var(--color-dark);
  color: #fff;
}

.signature-section.is-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.signature-section.is-light::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(34, 51, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.signature-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  z-index: 1;
}

@media (min-width: 1025px) {
  .signature-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
  }
  .signature-grid.is-reversed > :first-child { order: 2; }
}

.signature-content h2 {
  margin-bottom: var(--space-3);
}

.signature-section.is-dark .signature-content h2 { color: #fff; }
.signature-section.is-dark .signature-content p { color: rgba(255, 255, 255, 0.7); }
.signature-section.is-dark .eyebrow { color: var(--color-lavender); }
.signature-section.is-dark .eyebrow::before { background: var(--color-lavender); }

.signature-lead {
  font-size: 17px;
  color: var(--color-body);
  margin-bottom: var(--space-4);
  max-width: 50ch;
}

.signature-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.signature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-heading);
  font-weight: 500;
}

.signature-section.is-dark .signature-checklist li { color: #fff; }

.signature-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-blue);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='3 8 7 12 13 4'/%3e%3c/svg%3e");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.signature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 15, 28, 0.18);
}

.signature-visual.tilted {
  transform: rotate(-1deg);
  transition: transform 0.5s var(--ease);
}

.signature-visual.tilted:hover {
  transform: rotate(0deg) scale(1.01);
}
.toc-strip {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  padding: var(--space-4) 0;
  position: sticky;
  top: 72px;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255, 255, 255, 0.92);
}

.toc-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.toc-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
}

.toc-strip-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  flex: 1;
}

.toc-strip-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-body);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  transition: all 0.2s var(--ease);
}

.toc-strip-link:hover {
  color: var(--color-blue);
  border-color: rgba(34, 51, 255, 0.25);
  background: rgba(34, 51, 255, 0.04);
}

@media (max-width: 768px) {
  .toc-strip { position: static; }
  .toc-strip-inner { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .toc-strip-links { flex-wrap: nowrap; }
  .toc-strip-link { white-space: nowrap; }
}

/* ============================================
   Positioning section (big editorial statement)
   ============================================ */
.positioning-section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.positioning-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(34, 51, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.positioning-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.positioning-inner .eyebrow {
  margin-bottom: var(--space-4);
}

.positioning-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.positioning-inner p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-body);
  max-width: 60ch;
  margin: 0 auto;
}

.positioning-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
  text-align: left;
}

@media (min-width: 769px) { .positioning-points { grid-template-columns: repeat(3, 1fr); } }

.positioning-point {
  padding: var(--space-3) 0;
  border-top: 2px solid var(--color-blue);
}

.positioning-point h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-2);
}

.positioning-point p {
  font-size: 13.5px;
  color: var(--color-body);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}

/* ============================================
   Industry segmentation (Voor wie)
   ============================================ */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 600px) { .industry-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); } }
@media (min-width: 1025px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }

.industry-card-large {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.industry-card-large:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 51, 255, 0.22);
  box-shadow: 0 14px 36px rgba(34, 51, 255, 0.08);
}

.industry-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: rgba(34, 51, 255, 0.22);
  letter-spacing: -0.04em;
}

.industry-card-large h3 {
  margin-bottom: var(--space-2);
  padding-right: 44px;
  font-size: 19px;
}

.industry-card-large p {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   Proof strip (Al X+ bedrijven)
   ============================================ */
.proof-strip {
  background: var(--color-dark);
  border-radius: 24px;
  padding: var(--space-6) var(--space-5);
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 769px) { .proof-strip { padding: 72px var(--space-7); } }

.proof-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
}

.proof-strip::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at center, rgba(34, 51, 255, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.proof-strip-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  text-align: center;
}

@media (min-width: 769px) {
  .proof-strip-content {
    grid-template-columns: auto 1fr;
    gap: var(--space-7);
    text-align: left;
  }
}

.proof-strip-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 9vw, 120px);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: #fff;
  display: block;
}

.proof-strip-num-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: var(--space-2);
  font-weight: 600;
}

.proof-strip-text h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.proof-strip-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

.proof-strip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-4);
  justify-content: center;
}

@media (min-width: 769px) { .proof-strip-pills { justify-content: flex-start; } }

.proof-strip-pill {
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.section-head-left {
  text-align: left;
  max-width: 700px;
  margin: 0 0 var(--space-6) 0;
}

.cases-foot-link {
  text-align: center;
  margin-top: var(--space-5);
}

/* ============================================
   Inline contact form (service pages)
   ============================================ */
.section-contact-form {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.section-contact-form::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(34, 51, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.cf-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1025px) {
  .cf-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
  }
}

.cf-content { position: relative; z-index: 1; }
.cf-content h2 { margin-bottom: var(--space-3); }

.cf-content .cf-lead {
  font-size: 17px;
  color: var(--color-body);
  margin-bottom: var(--space-5);
  max-width: 50ch;
}

.cf-person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-bg);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-4);
}

.cf-person-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-lavender) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(34, 51, 255, 0.3);
}

.cf-person-name {
  font-weight: 700;
  color: var(--color-heading);
  font-size: 15px;
  margin-bottom: 2px;
}

.cf-person-role {
  font-size: 12px;
  color: var(--color-muted);
}

.cf-quick-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cf-quick-channel {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-heading);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s var(--ease);
}

.cf-quick-channel:hover {
  border-color: rgba(34, 51, 255, 0.2);
  transform: translateY(-1px);
}

.cf-quick-channel-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(34, 51, 255, 0.08);
  color: var(--color-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cf-quick-channel-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke-width: 1.8;
}

.cf-card {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: var(--space-5);
  box-shadow: 0 18px 48px rgba(13, 15, 28, 0.08);
}

@media (min-width: 769px) {
  .cf-card { padding: var(--space-6); }
}

.cf-card h3 {
  margin-bottom: var(--space-2);
  font-size: var(--text-xl);
}

.cf-card > p {
  font-size: 14px;
  margin-bottom: var(--space-5);
  color: var(--color-body);
}

.cf-card .btn {
  width: 100%;
}

.cf-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 600px) {
  .cf-form-row { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
}

.cf-fineprint {
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: var(--space-3);
}

/* ============================================
   Callout strip (full-width banner with copy + CTAs)
   ============================================ */
.callout-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  position: relative;
  overflow: hidden;
}

.callout-strip::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at center, rgba(34, 51, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 769px) {
  .callout-strip {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-6);
    padding: var(--space-6) var(--space-6);
  }
}

@media (min-width: 1025px) {
  .callout-strip {
    padding: var(--space-7) var(--space-6);
  }
}

.callout-strip-content {
  position: relative;
  z-index: 1;
}

.callout-strip-content h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: var(--space-3);
}

.callout-strip-content p {
  font-size: 15px;
  color: var(--color-body);
  margin: 0;
  max-width: 56ch;
}

.callout-strip-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

@media (min-width: 600px) and (max-width: 768px) {
  .callout-strip-cta { flex-direction: row; flex-wrap: wrap; }
}

@media (min-width: 1025px) {
  .callout-strip-cta { flex-direction: column; align-items: stretch; }
  .callout-strip-cta .btn { justify-content: center; }
}

/* ============================================
   Info grid (3-col informational cards)
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 769px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.info-card {
  display: flex;
  flex-direction: column;
}

.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-3);
  box-shadow: 0 8px 20px rgba(34, 51, 255, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
}

.info-card:hover .info-card-icon {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(34, 51, 255, 0.4);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--color-body);
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--color-border);
}

.info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-list li strong {
  color: var(--color-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 14px;
}

/* ============================================
   Cases showcase (homepage — MHS-style)
   ============================================ */
.cases-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  align-items: flex-start;
  text-align: left;
  max-width: none;
}

@media (min-width: 769px) {
  .cases-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cases-head h2 {
  margin: 0;
  font-family: var(--font-sans);
}

.cases-accent {
  color: var(--color-blue);
  font-style: normal;
  font-family: inherit;
}

.cases-arrows {
  display: flex;
  gap: 10px;
}

.cases-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.cases-arrow:hover {
  background: var(--color-blue-hover);
  transform: scale(1.05);
}

.cases-arrow.is-light {
  background: var(--color-lavender);
  color: var(--color-blue);
}

/* Featured row (2 large cards) */
.cases-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

@media (min-width: 1025px) {
  .cases-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

.case-hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  position: relative;
}

@media (min-width: 600px) {
  .case-hero {
    grid-template-columns: 1.8fr 1fr;
  }
}

.case-hero-photo {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(180deg, transparent 50%, rgba(13, 15, 28, 0.85) 100%),
    linear-gradient(135deg, #5a4030 0%, #2a2f4f 40%, #0d0f1c 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
  overflow: hidden;
}

.case-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(184, 190, 240, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.case-hero-photo-content {
  position: relative;
  z-index: 2;
}

.case-hero-name {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.case-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.25s var(--ease);
}

.case-hero-link::after {
  content: '→';
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-size: 12px;
}

.case-hero:hover .case-hero-link { gap: 12px; }
.case-hero:hover .case-hero-link { color: #fff; }

.case-hero-stats {
  background: var(--color-dark);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  color: #fff;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.case-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-lavender);
  color: var(--color-blue);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  align-self: center;
  text-align: center;
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.case-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-stat-icon {
  font-size: 22px;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.case-stat-body {
  flex: 1;
  min-width: 0;
}

.case-stat-num {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 2px;
}

.case-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.3;
}

/* Mini cases section — static intro + carousel */
.cases-mini-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  position: relative;
}

@media (min-width: 769px) {
  .cases-mini-section {
    grid-template-columns: minmax(240px, 1fr) 2fr;
    gap: var(--space-4);
  }
}

@media (min-width: 1025px) {
  .cases-mini-section {
    grid-template-columns: minmax(280px, 1fr) 3fr;
  }
}

.cases-mini-wrap {
  position: relative;
  min-width: 0;
}

.cases-mini-grid {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px 4px;
  margin: -4px -4px 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cases-mini-grid::-webkit-scrollbar { display: none; }

.cases-mini-grid > .case-mini {
  flex: 0 0 86%;
  min-height: 320px;
  scroll-snap-align: start;
}

@media (min-width: 600px) {
  .cases-mini-grid > .case-mini { flex: 0 0 calc((100% - var(--space-3)) / 2); }
}

@media (min-width: 1025px) {
  .cases-mini-grid > .case-mini {
    flex: 0 0 calc((100% - 2 * var(--space-3)) / 3);
  }
}

/* Side arrows on carousel */
.cases-side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 6;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s var(--ease);
  border: none;
}

.cases-side-arrow.prev {
  left: -18px;
  background: #fff;
  color: var(--color-blue);
  box-shadow: 0 10px 24px rgba(13, 15, 28, 0.12);
  border: 1px solid var(--color-border);
}

.cases-side-arrow.next {
  right: -18px;
  background: var(--color-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 255, 0.32);
}

.cases-side-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.cases-side-arrow.next:hover {
  background: var(--color-blue-hover);
}

@media (max-width: 600px) {
  .cases-side-arrow {
    width: 40px;
    height: 40px;
  }
  .cases-side-arrow.prev { left: 6px; }
  .cases-side-arrow.next { right: 6px; }
}

.case-mini {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
}

.case-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 15, 28, 0.18);
}

/* Intro / CTA card */
.case-intro {
  background: var(--color-dark);
  color: #fff;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.case-intro h3 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.case-intro .btn {
  background: #fff;
  color: var(--color-heading);
  align-self: flex-start;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: var(--space-4);
}

.case-intro .btn:hover {
  background: var(--color-lavender);
  color: var(--color-blue);
  transform: translateY(-1px);
}

.case-intro-laptop {
  margin-top: auto;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: -16px;
}

/* Mockup of laptop with website */
.laptop-mockup {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #d4d8e8 0%, #b0b6cd 100%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
}

.laptop-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(13, 15, 28, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.laptop-frame {
  position: relative;
  z-index: 2;
  width: 90%;
  background: var(--color-dark);
  border-radius: 8px 8px 2px 2px;
  padding: 5px;
  box-shadow: 0 12px 28px rgba(13, 15, 28, 0.25);
}

.laptop-screen {
  background: var(--color-bg);
  border-radius: 4px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.laptop-screen-bar {
  height: 14px;
  background: #F4F5FB;
  border-bottom: 1px solid rgba(13, 15, 28, 0.06);
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 3px;
}

.laptop-screen-bar span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(13, 15, 28, 0.15);
}

.laptop-screen-content {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.laptop-screen-content::before {
  content: '';
  height: 8px;
  width: 60%;
  background: rgba(34, 51, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 2px;
}

.laptop-line {
  height: 4px;
  background: rgba(13, 15, 28, 0.08);
  border-radius: 1px;
}

.laptop-line.m { width: 80%; }
.laptop-line.s { width: 55%; }

.laptop-base {
  position: absolute;
  bottom: 8px;
  left: 4%;
  right: 4%;
  height: 8px;
  background: linear-gradient(180deg, #888fa8 0%, #5d6280 100%);
  border-radius: 0 0 12px 12px;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(13, 15, 28, 0.15);
}

/* Mini-case body */
.case-mini-foot {
  background: var(--color-dark);
  color: #fff;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* Hide old/legacy styles (kept for graceful fallback if needed) */
.cases-featured-foot {
  text-align: center;
  margin-top: var(--space-6);
}

/* ============================================
   Legacy featured cases (kept for compat)
   ============================================ */
.cases-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 769px) { .cases-featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .cases-featured-grid { grid-template-columns: repeat(3, 1fr); } }

.case-feature {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
}

.case-feature:hover {
  border-color: rgba(34, 51, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(34, 51, 255, 0.10);
}

.case-feature-media {
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, #1A1F44 0%, #0D0F1C 100%);
  position: relative;
  overflow: hidden;
}

.case-feature-media svg.case-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  color: var(--color-blue);
}

.case-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(34, 51, 255, 0.35) 0%, transparent 60%);
  transition: opacity 0.4s var(--ease);
}

.case-feature:hover .case-feature-media::after {
  opacity: 1.5;
}

.case-feature-mini-browser {
  position: absolute;
  inset: 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(8px);
  transition: transform 0.5s var(--ease);
}

.case-feature:hover .case-feature-mini-browser {
  transform: translateY(0);
}

.case-mini-chrome {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: #F4F5FB;
  border-bottom: 1px solid var(--color-border-soft);
}

.case-mini-chrome span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(13, 15, 28, 0.15);
}

.case-mini-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #FFFFFF;
}

.case-mini-bar {
  height: 6px;
  border-radius: 2px;
  background: rgba(13, 15, 28, 0.08);
}

.case-mini-bar.hero {
  height: 12px;
  width: 65%;
  background: rgba(34, 51, 255, 0.2);
}

.case-mini-bar.short { width: 45%; }
.case-mini-bar.medium { width: 75%; }

.case-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}

.case-mini-row span {
  aspect-ratio: 1;
  background: rgba(13, 15, 28, 0.06);
  border-radius: 2px;
}

.case-feature-body { padding: var(--space-4); }

.case-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-2);
}

.case-feature-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue);
}

.case-feature-headline {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  margin-bottom: var(--space-2);
}

.case-feature-result {
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: var(--space-3);
}

.case-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-blue);
  transition: gap 0.25s var(--ease);
}

.case-feature:hover .case-feature-link { gap: 10px; }

.cases-featured-foot {
  text-align: center;
  margin-top: var(--space-6);
}

/* ============================================
   Logo / Industry bar
   ============================================ */
.industry-bar {
  background: var(--color-surface);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.industry-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 769px) {
  .industry-bar-inner {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-5);
  }
}

.industry-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted);
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.industry-pill {
  padding: 8px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-heading);
}

.industry-pill.industry-pill-more {
  background: transparent;
  border-style: dashed;
  border-color: rgba(34, 51, 255, 0.3);
  color: var(--color-blue);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.01em;
}

/* ============================================
   Section header (eyebrow + headline + sub)
   ============================================ */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-7);
}

.section-head h2 { margin-bottom: var(--space-3); }
.section-head p { margin: 0 auto; color: var(--color-body); }

/* ============================================
   USP Grid
   ============================================ */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 600px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}

@media (min-width: 1025px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 2-koloms modifier (voor 4 cards = 2x2) */
.usp-grid.usp-grid-2col {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1025px) {
  .usp-grid.usp-grid-2col { grid-template-columns: repeat(2, 1fr); }
}

.usp-card {
  position: relative;
  counter-increment: usp;
}

.usp-card::after {
  content: counter(usp, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 26px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  line-height: 1;
  color: rgba(34, 51, 255, 0.22);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.usp-grid { counter-reset: usp; }

.usp-card .usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-blue);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  color: #fff;
  box-shadow: 0 8px 20px rgba(34, 51, 255, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.usp-card:hover .usp-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 28px rgba(34, 51, 255, 0.4);
}

.usp-card h3 { margin-bottom: var(--space-2); padding-right: 40px; }
.usp-card p { color: var(--color-body); font-size: 15px; }

/* ============================================
   How it works
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}

/* Mobile: verticale interactieve tijdlijn */
@media (max-width: 1024px) {
  .steps {
    padding-left: 64px;
    gap: var(--space-6);
  }

  /* Volle grijze lijn (background) */
  .steps::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 18px;
    bottom: 18px;
    width: 3px;
    background: rgba(34, 51, 255, 0.10);
    z-index: 0;
    border-radius: 3px;
  }

  /* Blauwe progress-fill met gradient — height update via JS */
  .steps::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 18px;
    width: 3px;
    height: var(--steps-progress, 0px);
    background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue) 70%, rgba(34, 51, 255, 0.6) 100%);
    z-index: 1;
    border-radius: 3px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 16px rgba(34, 51, 255, 0.5);
  }

  .step {
    position: relative;
    padding: var(--space-3) 0;
  }

  /* Bubble-marker op de lijn voor elke stap */
  .step::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 18px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 3px solid rgba(34, 51, 255, 0.2);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(13, 15, 28, 0.04);
  }

  /* Inner dot voor visual depth */
  .step::after {
    content: '';
    position: absolute;
    left: -41px;
    top: 27px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    z-index: 3;
    transition: background 0.4s var(--ease);
  }

  /* Active state: blauw gevuld met inner-dot + glow + scale */
  .step.is-active::before {
    background: var(--color-blue);
    border-color: var(--color-blue);
    box-shadow:
      0 0 0 6px rgba(34, 51, 255, 0.15),
      0 4px 16px rgba(34, 51, 255, 0.4);
    transform: scale(1.08);
  }

  .step.is-active::after {
    background: #fff;
  }

  /* Pulse-animatie op de meest recente actieve bubble */
  .step.is-active.is-current::before {
    animation: bubble-pulse 2.4s ease-in-out infinite;
  }

  @keyframes bubble-pulse {
    0%, 100% {
      box-shadow:
        0 0 0 6px rgba(34, 51, 255, 0.15),
        0 4px 16px rgba(34, 51, 255, 0.4);
    }
    50% {
      box-shadow:
        0 0 0 12px rgba(34, 51, 255, 0.05),
        0 4px 22px rgba(34, 51, 255, 0.55);
    }
  }

  /* Kleinere italic-cijfers op mobiel voor verticale layout */
  .step .step-num {
    font-size: clamp(52px, 11vw, 80px);
    margin-bottom: var(--space-2);
  }

  @media (prefers-reduced-motion: reduce) {
    .step.is-active.is-current::before { animation: none; }
    .steps::after { transition: none; }
  }
}

@media (min-width: 1025px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(34, 51, 255, 0.2) 50%, transparent 50%);
    background-size: 6px 1px;
    z-index: 0;
  }
}

.step {
  text-align: left;
  position: relative;
  z-index: 1;
  padding-top: var(--space-2);
}

@media (min-width: 1025px) { .step { padding: 0 var(--space-2); } }

.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 9vw, 120px);
  line-height: 1;
  color: var(--color-blue);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--space-3);
  background: var(--color-surface);
  position: relative;
  z-index: 2;
  width: fit-content;
  padding-right: var(--space-3);
}

.step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}

.step p {
  font-size: 14px;
  color: var(--color-body);
  max-width: 240px;
}

/* ============================================
   Concept preview (light w/ dark mockup)
   ============================================ */
.concept-preview {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.concept-preview::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(34, 51, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
}

@media (min-width: 1025px) {
  .concept-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
}

.concept-copy h2 { margin-bottom: var(--space-3); }
.concept-copy p { margin-bottom: var(--space-4); }

.concept-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.concept-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--color-heading);
}

.concept-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Browser mockup — tilted with decorative ring for editorial depth */
.browser-wrap {
  position: relative;
  padding: var(--space-5) var(--space-4);
}

.browser-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(34, 51, 255, 0.2);
  border-radius: var(--radius-xl);
  transform: rotate(2.5deg);
  z-index: 0;
  pointer-events: none;
}

.browser-wrap::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 6px rgba(34, 51, 255, 0.12);
  z-index: 2;
}

.browser {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform 0.6s var(--ease);
  z-index: 1;
}

.browser:hover {
  transform: rotate(0deg) scale(1.01);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #181a2a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.browser-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

.browser-body {
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, #14172b 0%, #0d0f1c 100%);
  position: relative;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.browser-skel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.browser-skel-hero {
  height: 32px;
  width: 70%;
  background: rgba(184, 190, 240, 0.2);
}

.browser-skel-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.browser-skel-line.short { width: 60%; }
.browser-skel-line.medium { width: 80%; }

.browser-skel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-top: auto;
}

.browser-skel-card {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-skel-btn {
  width: 120px;
  height: 36px;
  background: var(--color-blue);
  border-radius: 8px;
  margin-top: var(--space-2);
  box-shadow: 0 0 24px rgba(34, 51, 255, 0.4);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 769px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}

@media (min-width: 1025px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #FFB534;
  font-size: 16px;
  margin-bottom: var(--space-3);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--color-heading);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-soft);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-lavender) 100%);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-heading);
  font-size: 14px;
  line-height: 1.3;
}

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

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3) var(--space-4); }
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}

.faq-item[open] { border-color: rgba(34, 51, 255, 0.25); }

.faq-summary {
  padding: 20px var(--space-4);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-heading);
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-surface);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 700;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--color-blue);
  color: #fff;
}

.faq-body {
  padding: 0 var(--space-4) 20px;
  font-size: 15px;
  color: var(--color-body);
}

/* ============================================
   CTA section
   ============================================ */
.cta-section {
  background: var(--color-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(13, 15, 28, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: var(--space-3);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  margin: 0 auto var(--space-5);
}

.cta-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-dark);
  color: #C5C9DE;
  padding: var(--space-8) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

@media (min-width: 769px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-5); }
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: var(--space-3);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================
   About page
   ============================================ */
.page-hero {
  background: var(--color-surface);
  padding: var(--space-8) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1025px) { .page-hero { padding: 112px 0 96px; } }

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(34, 51, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.page-hero p {
  font-size: var(--text-lg);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1025px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
}

.two-col-reverse > :first-child { order: 2; }
@media (min-width: 1025px) { .two-col-reverse > :first-child { order: initial; } }

.photo-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(34, 51, 255, 0.08) 0%, rgba(184, 190, 240, 0.2) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.photo-placeholder.landscape { aspect-ratio: 16 / 11; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

/* Partners grid (solo + experts) */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 1025px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    align-items: stretch;
  }
}

.partner-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  position: relative;
}

.partner-card-primary {
  background: linear-gradient(180deg, rgba(34, 51, 255, 0.04) 0%, transparent 100%);
  border-color: rgba(34, 51, 255, 0.2);
}

.partner-card-primary .partner-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-lavender) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 32px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 10px 28px rgba(34, 51, 255, 0.3);
}

.partner-info .partner-name {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.partner-info .partner-role {
  font-size: 13px;
  color: var(--color-blue);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.partner-bio {
  font-size: 14px;
  color: var(--color-body);
  margin: 0;
}

.partner-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(34, 51, 255, 0.1);
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: var(--space-3);
  align-self: flex-start;
}

.partner-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.partner-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3) 0;
}

.partner-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px dashed var(--color-border);
}

.partner-list li:last-child { border-bottom: none; padding-bottom: 0; }

.partner-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(34, 51, 255, 0.08);
  color: var(--color-blue);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.partner-list li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.partner-list li span:not(.partner-list-icon) {
  font-size: 12.5px;
  color: var(--color-body);
}

.partner-note {
  font-size: 13px;
  color: var(--color-muted);
  font-style: italic;
  margin: 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.team-card {
  text-align: left;
}

.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(34, 51, 255, 0.08) 0%, rgba(184, 190, 240, 0.2) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-3);
  display: grid;
  place-items: center;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 22px;
}

.team-name {
  font-weight: 700;
  color: var(--color-heading);
  font-size: 16px;
  margin-bottom: 2px;
}

.team-role {
  font-size: 14px;
  color: var(--color-muted);
}

/* ============================================
   Case Studies page
   ============================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.filter-tab {
  padding: 10px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  min-height: 44px;
}

.filter-tab:hover { border-color: rgba(34, 51, 255, 0.2); color: var(--color-heading); }
.filter-tab.active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 600px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.case-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-color: rgba(34, 51, 255, 0.18);
}

.case-image {
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, rgba(34, 51, 255, 0.1) 0%, rgba(184, 190, 240, 0.25) 100%);
  position: relative;
  overflow: hidden;
}

.case-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(34, 51, 255, 0.15);
  border-radius: 8px;
}

.case-body { padding: var(--space-4); }

.case-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34, 51, 255, 0.08);
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: var(--space-2);
}

.case-headline {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-snug);
}

.case-result {
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: var(--space-3);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-mini-tag {
  font-size: 12px;
  color: var(--color-muted);
  padding: 4px 8px;
  background: var(--color-surface);
  border-radius: 6px;
}

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 1025px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-7);
  }
}

.contact-info h2 { margin-bottom: var(--space-3); }
.contact-info p { margin-bottom: var(--space-5); }

.contact-person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-4);
}

.contact-person-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-lavender) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-person-name {
  font-weight: 700;
  color: var(--color-heading);
  font-size: 16px;
  margin-bottom: 2px;
}

.contact-person-role {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.contact-person-meta {
  font-size: 13px;
  color: var(--color-body);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-heading);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s var(--ease);
  min-height: 56px;
}

.contact-channel:hover {
  border-color: rgba(34, 51, 255, 0.25);
  background: var(--color-surface);
}

.contact-channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(34, 51, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--color-blue);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-channel-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 2px;
}

.contact-form {
  padding: var(--space-5);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

@media (min-width: 769px) { .contact-form { padding: var(--space-6); } }

.contact-form h3 { margin-bottom: var(--space-2); }
.contact-form > p { margin-bottom: var(--space-5); font-size: 14px; }

.contact-form .btn { width: 100%; }

/* ============================================
   Funnel landing page
   ============================================ */
.funnel-header {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-soft);
  background: var(--color-bg);
}

.funnel-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.funnel-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 4px 4px 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
}

.funnel-phone-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(34, 51, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--color-blue);
}

.funnel-hero {
  background: var(--color-surface);
  padding: var(--space-7) 0 var(--space-6);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.funnel-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(34, 51, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.funnel-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.funnel-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.funnel-hero-sub {
  font-size: var(--text-lg);
  margin: 0 auto var(--space-4);
}

.funnel-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.funnel-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.funnel-trust-line {
  font-size: 13px;
  color: var(--color-muted);
}

.funnel-steps {
  background: var(--color-bg);
  padding: var(--space-7) 0;
}

.funnel-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 769px) { .funnel-steps-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); } }

.funnel-step {
  text-align: left;
  padding: var(--space-3) var(--space-3) var(--space-3) 0;
}

.funnel-step-icon {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  color: var(--color-blue);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--space-3);
  background: none;
  width: auto;
  height: auto;
}

.funnel-step h3 { font-size: 17px; margin-bottom: var(--space-2); }
.funnel-step p { font-size: 14px; color: var(--color-body); max-width: 240px; }

.funnel-form-section {
  background: var(--color-surface);
  padding: var(--space-7) 0;
}

.funnel-form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
}

@media (min-width: 769px) { .funnel-form-card { padding: var(--space-6); } }

.funnel-form-card h2 { font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.funnel-form-card > p { margin-bottom: var(--space-5); font-size: 14px; }

.funnel-form-card .btn { width: 100%; }

.funnel-mini-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 720px;
  margin: var(--space-6) auto 0;
}

@media (min-width: 769px) { .funnel-mini-testimonials { grid-template-columns: 1fr 1fr; } }

.funnel-mini-quote {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
}

.funnel-mini-quote p {
  font-size: 13px;
  color: var(--color-heading);
  line-height: 1.5;
  margin-bottom: 4px;
}

.funnel-mini-quote-meta {
  font-size: 12px;
  color: var(--color-muted);
}

.funnel-urgency {
  text-align: center;
  padding: var(--space-5) 0;
  background: var(--color-bg);
}

.funnel-urgency p {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(34, 51, 255, 0.06);
  border: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-blue);
  font-weight: 500;
}

.funnel-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: var(--space-5) 0;
  font-size: 13px;
  text-align: center;
}

.funnel-footer a {
  display: inline-block;
  padding: 12px 4px;
}

/* ============================================
   Scroll animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Hero entrance — orchestrated stagger */
.hero-inner > .reveal:nth-child(1) { transition-delay: 0ms; }
.hero-inner > .reveal:nth-child(2) { transition-delay: 80ms; }
.hero-inner > .reveal:nth-child(3) { transition-delay: 160ms; }
.hero-inner > .reveal:nth-child(4) { transition-delay: 240ms; }
.hero-inner > .reveal:nth-child(5) { transition-delay: 320ms; }
.hero-inner > .reveal:nth-child(6) { transition-delay: 400ms; }

.page-hero-inner > .reveal:nth-child(1) { transition-delay: 0ms; }
.page-hero-inner > .reveal:nth-child(2) { transition-delay: 100ms; }
.page-hero-inner > .reveal:nth-child(3) { transition-delay: 200ms; }

.funnel-hero-inner > .reveal:nth-child(1) { transition-delay: 0ms; }
.funnel-hero-inner > .reveal:nth-child(2) { transition-delay: 100ms; }
.funnel-hero-inner > .reveal:nth-child(3) { transition-delay: 200ms; }
.funnel-hero-inner > .reveal:nth-child(4) { transition-delay: 300ms; }
.funnel-hero-inner > .reveal:nth-child(5) { transition-delay: 400ms; }

/* Section heads — slightly delayed for rhythm */
.section-head .reveal { transition-delay: 0ms; }

@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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   CASE DETAIL — Verkerk Loodgieterswerken & template
   ============================================================ */

/* Breadcrumb */
.case-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}
.case-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.case-breadcrumb a:hover { color: var(--color-blue); }
.case-breadcrumb span:not(.case-breadcrumb-current) { color: rgba(13, 15, 28, 0.3); }
.case-breadcrumb-current { color: var(--color-dark); font-weight: 500; }

/* Hero — asymmetric */
.case-detail-hero {
  background: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.case-detail-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.case-detail-hero-left .eyebrow { color: var(--color-blue); }
.case-detail-hero-left h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
  color: var(--color-dark);
}
.case-detail-hero-left > p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.case-detail-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.case-detail-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 36px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.case-detail-hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-detail-hero-meta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}
.case-detail-hero-meta strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* Hero visual — browser mockup */
.case-detail-hero-visual {
  position: relative;
}
.case-hero-glow {
  position: absolute;
  inset: -40px -60px -40px -20px;
  background: radial-gradient(ellipse at 60% 50%, rgba(34, 51, 255, 0.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.case-mockup-browser {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(13, 15, 28, 0.25), 0 0 0 1px rgba(13, 15, 28, 0.06);
  overflow: hidden;
}
.case-mockup-chrome {
  background: #f1f2f7;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
}
.case-mockup-chrome .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.case-mockup-url {
  margin-left: 16px;
  background: #fff;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--color-muted);
  flex: 1;
  text-align: center;
  border: 1px solid var(--color-border);
}
.case-mockup-screen {
  background: #fafbfd;
  padding: 0;
}

/* Inside mockup — mock nav */
.mock-nav {
  background: var(--color-dark);
  color: #fff;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mock-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.mock-logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--color-blue);
  position: relative;
}
.mock-logo-mark::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 14px;
  background: #fff;
  border-radius: 1px;
  box-shadow: 6px -3px 0 #fff;
}
.mock-menu {
  display: flex;
  gap: 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.mock-cta {
  background: var(--color-blue);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
}

.mock-hero {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  padding: 26px 22px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
  align-items: center;
}
.mock-hero-text .mock-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  font-weight: 500;
}
.mock-hero-text h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 8px 0 10px;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}
.mock-hero-text h3 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-blue);
}
.mock-hero-text p {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.mock-buttons {
  display: flex;
  gap: 8px;
}
.mock-btn-primary, .mock-btn-outline {
  font-size: 0.72rem;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.mock-btn-primary {
  background: var(--color-blue);
  color: #fff;
}
.mock-btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}
.mock-hero-visual {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
}
.mock-card-stat {
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px -4px rgba(13, 15, 28, 0.08), 0 0 0 1px var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-card-stat strong {
  font-size: 0.95rem;
  color: var(--color-blue);
  font-weight: 600;
}
.mock-card-stat span {
  font-size: 0.7rem;
  color: var(--color-muted);
}

/* Stats section */
.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.case-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-stat-big {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px -15px rgba(13, 15, 28, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-stat-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(34, 51, 255, 0.2);
}
.case-stat-big-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.case-stat-big-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.case-stat-big-sub {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* Two-column problem + before-card */
.case-twocol {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.case-twocol-text .eyebrow { color: var(--color-blue); }
.case-twocol-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.case-twocol-text > p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin-bottom: 28px;
}
.case-pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-pain-list li {
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-muted);
}
.case-pain-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.case-pain-list li strong { color: var(--color-dark); font-weight: 600; }

.case-pull-quote {
  background: var(--color-surface, #fafbfd);
  border-left: 4px solid var(--color-blue);
  padding: 24px 28px;
  margin: 0;
  border-radius: 0 12px 12px 0;
}
.case-pull-quote p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--color-dark);
  margin: 0 0 12px;
}
.case-pull-quote cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* Before-card (visual of old site) */
.case-before-card {
  background: linear-gradient(135deg, #f4f4f6 0%, #e9e9ee 100%);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 50px -20px rgba(13, 15, 28, 0.15);
}
.case-before-tag {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--color-dark);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}
.case-before-screen {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  font-family: Georgia, serif;
  filter: saturate(0.6);
}
.case-before-banner {
  background: linear-gradient(180deg, #4a6a8a 0%, #3a5a7a 100%);
  padding: 18px;
  display: flex;
  gap: 8px;
}
.cb-bar { height: 8px; background: rgba(255,255,255,0.7); border-radius: 2px; }
.cb-bar-1 { width: 30%; }
.cb-bar-2 { width: 20%; }
.cb-bar-3 { width: 25%; }
.case-before-content { padding: 18px; }
.cb-line { height: 8px; background: #ccc; border-radius: 2px; margin-bottom: 10px; }
.w70 { width: 70%; }
.w90 { width: 90%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w80 { width: 80%; }
.cb-block { height: 60px; background: #e0e0e5; border-radius: 4px; margin: 12px 0; }
.case-before-footer {
  background: #eaeaef;
  padding: 8px 18px;
  font-size: 0.65rem;
  color: #888;
  font-family: 'Times New Roman', serif;
}

/* Dark section variant */
.section-dark {
  background: var(--color-dark);
  color: #fff;
}
.section-dark .eyebrow-light { color: var(--color-lavender, #B8BEF0); }
.h2-light { color: #fff; }
.text-light { color: rgba(255, 255, 255, 0.7); }

/* Approach grid (4 cards) */
.case-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.case-approach-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.case-approach-card:hover {
  background: rgba(34, 51, 255, 0.08);
  border-color: rgba(34, 51, 255, 0.3);
  transform: translateY(-4px);
}
.case-approach-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.case-approach-day {
  display: inline-block;
  background: rgba(184, 190, 240, 0.12);
  color: var(--color-lavender, #B8BEF0);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.case-approach-card h3 {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.case-approach-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Testimonial big */
.case-testimonial-section { padding: 100px 0; }
.case-testimonial-big {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.case-testimonial-stars {
  color: #f59e0b;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.case-testimonial-big blockquote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--color-dark);
  margin: 0 0 36px;
  letter-spacing: -0.01em;
}
.case-testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.case-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, #5566FF 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}
.case-testimonial-meta {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-testimonial-meta strong {
  font-size: 0.95rem;
  color: var(--color-dark);
}
.case-testimonial-meta span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Gallery — 3 frames */
.case-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 48px;
}
.case-gallery-item { margin: 0; }
.case-gallery-large {
  grid-row: span 2;
}
.case-gallery-frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(13, 15, 28, 0.18), 0 0 0 1px var(--color-border);
  margin-bottom: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-gallery-item:hover .case-gallery-frame {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -25px rgba(34, 51, 255, 0.25), 0 0 0 1px var(--color-border);
}
.case-gallery-item figcaption {
  font-size: 0.85rem;
  color: var(--color-muted);
  padding: 0 4px;
}
.case-gallery-content { padding: 28px; }

/* Gallery — service page */
.case-gallery-service { background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%); }
.cg-service-hero { margin-bottom: 28px; }
.cg-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  font-weight: 500;
}
.cg-service-hero h4 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 10px 0 10px;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}
.cg-service-hero h4 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-blue);
}
.cg-service-hero p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}
.cg-buttons { display: flex; gap: 10px; }
.cg-btn-primary, .cg-btn-outline {
  font-size: 0.8rem;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 500;
}
.cg-btn-primary { background: var(--color-blue); color: #fff; }
.cg-btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}
.cg-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.cg-trust-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.cg-trust-item strong {
  font-size: 1.1rem;
  color: var(--color-blue);
  font-weight: 600;
}
.cg-trust-item span {
  font-size: 0.7rem;
  color: var(--color-muted);
}

/* Gallery — phone mockup */
.case-gallery-mobile {
  background: linear-gradient(180deg, #1a1d2e 0%, #0d0f1c 100%);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 30px 60px -25px rgba(13, 15, 28, 0.3);
}
.case-gallery-phone {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
}
.cg-phone-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 14px;
}
.cg-phone-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 18px;
}
.cg-phone-logo {
  width: 60px;
  height: 18px;
  background: linear-gradient(90deg, var(--color-blue) 0%, #5566FF 100%);
  border-radius: 4px;
}
.cg-phone-menu {
  font-size: 1.4rem;
  color: var(--color-dark);
  line-height: 1;
}
.cg-phone-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  font-weight: 500;
}
.cg-phone-hero h5 {
  font-size: 1rem;
  line-height: 1.2;
  margin: 6px 0 16px;
  color: var(--color-dark);
}
.cg-phone-hero h5 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-blue);
}
.cg-phone-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.cg-phone-service-card {
  background: #fafbfd;
  border: 1px solid var(--color-border);
  padding: 14px 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-dark);
}
.cg-phone-cta {
  background: var(--color-blue);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Gallery — reviews */
.case-gallery-reviews {
  background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
}
.cg-reviews-title {
  font-size: 1rem;
  color: var(--color-dark);
  margin: 0 0 16px;
}
.cg-review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.cg-review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.cg-review-card p {
  font-size: 0.85rem;
  color: var(--color-dark);
  margin: 0 0 6px;
  line-height: 1.45;
}
.cg-review-card span {
  font-size: 0.7rem;
  color: var(--color-muted);
}

/* Voor vs Na */
.case-vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 48px;
}
.case-vs-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  position: relative;
}
.case-vs-before {
  background: #fafbfd;
  filter: saturate(0.5);
  opacity: 0.85;
}
.case-vs-after {
  background: #fff;
  border-color: var(--color-blue);
  box-shadow: 0 20px 50px -20px rgba(34, 51, 255, 0.25);
}
.case-vs-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--color-dark);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.case-vs-after .case-vs-tag { background: var(--color-blue); }
.case-vs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-vs-card li {
  font-size: 1rem;
  color: var(--color-muted);
  padding-left: 8px;
}
.case-vs-num {
  display: inline-block;
  min-width: 80px;
  font-weight: 600;
  color: var(--color-dark);
  font-size: 1.1rem;
}
.case-vs-after .case-vs-num { color: var(--color-blue); }
.case-vs-arrow {
  font-size: 2.6rem;
  color: var(--color-blue);
  font-weight: 300;
}

/* Related cases grid */
.case-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.case-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(34, 51, 255, 0.2);
}
.case-related-image {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.case-related-body { padding: 24px; }
.case-related-body h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 10px 0;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}
.case-related-body p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0 0 14px;
}
.case-related-link {
  font-size: 0.85rem;
  color: var(--color-blue);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.case-related-footer {
  text-align: center;
  margin-top: 40px;
}

/* ============ Responsive (case detail) ============ */
@media (max-width: 1024px) {
  .case-detail-hero { padding: 60px 0 80px; }
  .case-detail-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .case-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .case-twocol { grid-template-columns: 1fr; gap: 40px; }
  .case-approach-grid { grid-template-columns: repeat(2, 1fr); }
  .case-gallery-grid { grid-template-columns: 1fr; }
  .case-gallery-large { grid-row: span 1; }
  .case-vs-grid { grid-template-columns: 1fr; }
  .case-vs-arrow { transform: rotate(90deg); justify-self: center; }
  .case-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .case-detail-hero { padding: 40px 0 60px; }
  .case-detail-hero-meta { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
  .case-stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .case-stat-big { padding: 28px 22px; }
  .case-approach-grid { grid-template-columns: 1fr; }
  .case-related-grid { grid-template-columns: 1fr; }
  .case-detail-hero-ctas { flex-direction: column; align-items: stretch; }
  .case-detail-hero-ctas .btn { width: 100%; text-align: center; }
  .mock-hero { grid-template-columns: 1fr; }
  .mock-hero-visual { grid-template-rows: 1fr; grid-template-columns: repeat(3, 1fr); }
  .cg-trust { grid-template-columns: repeat(2, 1fr); }
}

/* Case card "lees deze case" footer link */
.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-blue);
  font-weight: 500;
  text-decoration: none;
  margin-top: 14px;
  letter-spacing: -0.005em;
  transition: gap 0.2s, color 0.2s;
}
.case-card-link:hover {
  gap: 10px;
  color: #1a25cc;
}

/* ============================================================
   DESIGN PREVIEW + MODAL (case-detail)
   ============================================================ */

/* Mockup screen variant that shows an actual screenshot */
.case-mockup-screen-img {
  height: 460px;
  overflow: hidden;
  background: #fff;
}
.case-mockup-screen-img img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
/* Variant: hero-thumbnail fits naturally without crop */
.case-mockup-screen-hero {
  height: auto;
  aspect-ratio: 789 / 501;
}
.case-mockup-screen-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Preview cards (open modal) */
.design-preview-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}
.design-preview-card {
  appearance: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.design-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -25px rgba(34, 51, 255, 0.25);
  border-color: rgba(34, 51, 255, 0.3);
}
.design-preview-thumb {
  position: relative;
  overflow: hidden;
  background: #f4f5f9;
  flex: 1;
}
.design-preview-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
/* On hover: auto-scroll the image from top to bottom over a long duration */
.design-preview-card:hover .design-preview-thumb img {
  transform: translateY(calc(-100% + 130px));
  transition: transform 22s linear;
}
.design-preview-thumb-desktop {
  height: 130px;
}
.design-preview-thumb-mobile {
  height: 130px;
  background: linear-gradient(180deg, #1a1d2e 0%, #0d0f1c 100%);
  padding: 6px 60px 0;
  display: flex;
  justify-content: center;
}
.design-preview-thumb-mobile img {
  width: 130px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 14px -2px rgba(0, 0, 0, 0.45);
  margin: 0 auto;
  display: block;
}
/* Mobile thumb scroll — accounts for top padding (6px) */
.design-preview-card:hover .design-preview-thumb-mobile img {
  transform: translateY(calc(-100% + 118px));
  transition: transform 28s linear;
}

/* "Hover" pill — appears at rest, hides during scroll */
.design-preview-scroll-hint {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(13, 15, 28, 0.75);
  color: #fff;
  font-size: 0.65rem;
  padding: 4px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.25s;
  letter-spacing: 0.02em;
}
.design-preview-card:hover .design-preview-scroll-hint { opacity: 0; }

/* Fade-out gradient at bottom of thumb (hints there's more below) */
.design-preview-card {
  position: relative;
}
.design-preview-thumb-fade {
  position: absolute;
  left: 1px;
  right: 1px;
  height: 28px;
  bottom: 71px;    /* sits just above .design-preview-meta */
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  z-index: 2;
}
.design-preview-card.has-mobile .design-preview-thumb-fade {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.45) 100%);
}

.design-preview-meta {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.design-preview-device {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
}
.design-preview-icon {
  display: inline-flex;
  color: var(--color-blue);
}
.design-preview-link {
  font-size: 0.85rem;
  color: var(--color-blue);
  font-weight: 500;
  transition: transform 0.2s;
}
.design-preview-card:hover .design-preview-link {
  transform: translateX(4px);
}

/* Modal */
.design-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.design-modal.is-open {
  display: flex;
  animation: modal-fade-in 0.25s ease-out;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.design-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.design-modal-card {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 1100px;
  max-height: calc(100vh - 80px);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.5);
  animation: modal-slide-up 0.3s ease-out;
}
.design-modal-card-mobile {
  max-width: 500px;
}
@keyframes modal-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.design-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  flex-shrink: 0;
}
.design-modal-titles h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}
.design-modal-titles span {
  font-size: 0.8rem;
  color: var(--color-muted);
}
.design-modal-close {
  appearance: none;
  background: var(--color-surface, #fafbfd);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.design-modal-close:hover {
  background: var(--color-blue);
  color: #fff;
  transform: rotate(90deg);
}
.design-modal-body {
  flex: 1;
  overflow-y: auto;
  background: #fafbfd;
}
.design-modal-body img {
  width: 100%;
  height: auto;
  display: block;
}
.design-modal-body-mobile {
  background: linear-gradient(180deg, #1a1d2e 0%, #0d0f1c 100%);
  padding: 24px 40px;
}
.design-modal-body-mobile img {
  border-radius: 18px;
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

/* Custom scrollbar for modal body */
.design-modal-body::-webkit-scrollbar { width: 10px; }
.design-modal-body::-webkit-scrollbar-track { background: #f0f1f5; }
.design-modal-body::-webkit-scrollbar-thumb { background: #c0c4d0; border-radius: 5px; }
.design-modal-body::-webkit-scrollbar-thumb:hover { background: #a0a4b0; }

.design-modal-foot {
  padding: 14px 24px;
  border-top: 1px solid var(--color-border);
  background: #fff;
  flex-shrink: 0;
}
.design-modal-foot a {
  font-size: 0.875rem;
  color: var(--color-blue);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.design-modal-foot a:hover { opacity: 0.8; }

/* Body when modal is open: prevent scroll */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .design-preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .design-modal { padding: 20px 10px; }
  .design-modal-card { max-height: calc(100vh - 40px); }
  .design-modal-head { padding: 14px 18px; }
  .design-modal-body-mobile { padding: 16px 20px; }
  .case-mockup-screen-img { height: 320px; }
}

/* Mini-case with real screenshot (replaces placeholder lines) */
.laptop-screen-img {
  position: absolute;
  inset: 14px 10px 10px 10px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.laptop-screen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Mini-case as anchor (clickable) variant */
a.case-mini-real {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
a.case-mini-real:hover {
  transform: translateY(-4px);
}
a.case-mini-real:hover .laptop-mockup {
  box-shadow: 0 24px 60px -20px rgba(34, 51, 255, 0.3);
}
a.case-mini-real .case-mini-foot {
  font-weight: 500;
  color: var(--color-dark);
}

/* Live-case badge — distinguishes real customers from examples */
.case-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.95);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}
.case-live-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Position badge inside case-hero-photo */
.case-hero-photo .case-live-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  margin-bottom: 0;
}
.case-hero-photo { position: relative; }

/* Position badge above mini-case foot */
.case-mini .case-live-badge {
  margin: 8px 0 0;
}

/* Live badge in corner of mini-case laptop-mockup */
.case-mini .laptop-mockup { position: relative; }
.case-live-badge-corner {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;  /* above the 3D-transformed mockup laptop */
  margin: 0;
  font-size: 0.65rem;
  padding: 4px 9px;
  transform: translateZ(0); /* force own layer so it stays above perspective children */
}

/* ============================================================
   CINEMATIC 3D MOCKUP — laptop with perspective + concrete bg
   ============================================================ */
.mockup-cinema {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,0,0,0.18), transparent 60%),
    linear-gradient(135deg, #e2e2e6 0%, #c2c2c8 50%, #a8a8b0 100%);
  padding: 36px 26px 56px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}
/* Concrete-like soft highlights */
.mockup-cinema::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 25% 15%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(ellipse 50% 35% at 75% 85%, rgba(0,0,0,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle grain noise (SVG inline) */
.mockup-cinema::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.12 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* The 3D laptop */
.mockup-cinema-laptop {
  position: relative;
  z-index: 2;
  transform: perspective(1400px) rotateX(9deg) rotateZ(-14deg);
  transform-origin: center;
  filter: drop-shadow(0 30px 35px rgba(0,0,0,0.45)) drop-shadow(0 12px 12px rgba(0,0,0,0.3));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mockup-cinema:hover .mockup-cinema-laptop {
  transform: perspective(1400px) rotateX(5deg) rotateZ(-8deg);
}

/* Lid (screen + bezel) */
.mockup-cinema-lid {
  background: linear-gradient(180deg, #1a1a1d 0%, #0d0d10 100%);
  border-radius: 12px 12px 6px 6px;
  padding: 12px 10px 14px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/* Webcam dot */
.mockup-cinema-lid::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: #2a2a2e;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.mockup-cinema-display {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.mockup-cinema-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Base (where the keyboard would be) */
.mockup-cinema-base {
  position: relative;
  height: 9px;
  background: linear-gradient(180deg, #3a3a3e 0%, #7a7a82 35%, #d4d4da 100%);
  margin: 0 -3px;
  border-radius: 0 0 10px 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(0, 0, 0, 0.4);
}
/* Trackpad notch on front of base */
.mockup-cinema-base::after {
  content: '';
  position: absolute;
  left: 38%;
  right: 38%;
  bottom: -3px;
  height: 4px;
  background: linear-gradient(180deg, #2a2a2e 0%, #1a1a1d 100%);
  border-radius: 0 0 5px 5px;
}

/* For mini-case wrap — adjust footer styling */
.case-mini-real .mockup-cinema {
  margin-bottom: 14px;
}

/* Rich foot variant — bedrijfsnaam + URL + branche */
.case-mini-foot-rich {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.case-mini-foot-rich strong {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.case-mini-foot-rich span {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
}

/* Real photo variants for Leroy */
.mega-contact-photo {
  overflow: hidden;
  padding: 0;
}
.mega-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.about-photo-frame-real {
  padding: 0;
  background: transparent;
}
.about-photo-frame-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
}

/* ============================================================
   MOBILE RESPONSIVENESS FIX — case-detail pages
   ============================================================ */

/* Global horizontal-overflow safety net (prevents horizontal scroll
   on any page when something accidentally overflows the viewport) */
html, body {
  overflow-x: hidden;
}

@media (max-width: 640px) {
  /* Hero — typography that fits the viewport */
  .case-detail-hero { padding: 32px 0 48px; }
  .case-detail-hero-left h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    line-height: 1.12;
    margin: 14px 0 18px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .case-detail-hero-left > p {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .case-detail-hero-inner { gap: 28px; }

  /* All case-detail h2s — keep consistent compact sizing on mobile */
  .case-detail-hero ~ .section h2,
  .case-stats-section h2,
  .case-twocol-text h2,
  .case-testimonial-section h2,
  .section-head h2 {
    font-size: clamp(1.5rem, 6.5vw, 2.1rem);
    line-height: 1.15;
  }

  /* Big stat numbers — shrink so they don't overflow narrow cards */
  .case-stat-big-num {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  /* Meta strip in hero — compacter */
  .case-detail-hero-meta { padding-top: 20px; }

  /* Section padding overall */
  .section { padding: 40px 0; }
}

/* Media + image safety: never wider than parent */
img, svg, video, iframe {
  max-width: 100%;
}

/* ============================================================
   GRID OVERFLOW FIX — case-detail hero pages
   ============================================================ */

/* Grid items default min-width: auto, which prevents them from
   shrinking smaller than their content. This causes hero-left to
   inherit width from the wide browser-mockup img. Force shrinkable. */
.case-detail-hero-inner > * {
  min-width: 0;
}

/* Mockup browser image — never wider than container */
.case-mockup-browser {
  max-width: 100%;
}
.case-mockup-screen-img,
.case-mockup-screen-hero {
  width: 100%;
}
.case-mockup-screen-img img,
.case-mockup-screen-hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Glow effect should not cause overflow either */
.case-hero-glow {
  max-width: 100%;
  left: 0;
  right: 0;
  inset: 0;
}

/* Meta-strip strings (Diensten can be long: "Webdesign · WordPress · Lokale SEO · Copywriting") */
.case-detail-hero-meta strong {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* CTAs in hero — stack on mobile + full width */
@media (max-width: 640px) {
  .case-detail-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .case-detail-hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Smaller container padding on small phones for max content width */
  :root { --page-margin: 14px; }

  /* Hero h1 — fits Pro-size and SE-size phones */
  .case-detail-hero-left h1 {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
    line-height: 1.15;
  }
  .case-detail-hero-left > p {
    font-size: 0.95rem;
  }
}

/* "Voor"-screen with real screenshot — replaces the CSS-mockup */
.case-before-screen-real {
  padding: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 6px;
  filter: saturate(0.65) brightness(0.96);
  box-shadow: 0 12px 28px -10px rgba(13, 15, 28, 0.25);
}
.case-before-screen-real img {
  width: 100%;
  height: auto;
  display: block;
}
.case-before-caption {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-style: italic;
  letter-spacing: -0.005em;
  text-align: center;
}

/* Empty-state for "Voor"-card when client had no prior website */
.case-before-empty {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 320px;
  background: linear-gradient(135deg, #1a1d2e 0%, #0d0f1c 100%);
  border-radius: 14px;
  padding: 24px;
  position: relative;
}
.case-before-empty .case-before-tag {
  align-self: flex-start;
}
.case-before-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 24px;
  gap: 16px;
}
.case-before-empty-state svg {
  color: rgba(184, 190, 240, 0.6);
}
.case-before-empty-state h3 {
  font-size: 1.4rem;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}
.case-before-empty-state p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   CASES SHOWCASE CAROUSEL — 2 cards visible, swipeable
   ============================================================ */
.cases-showcase[data-carousel] {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-4);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: var(--space-5);
  /* Cancel the grid behavior at all breakpoints */
  grid-template-columns: unset;
}
.cases-showcase[data-carousel]::-webkit-scrollbar { display: none; }

.cases-showcase[data-carousel] > .case-hero {
  flex: 0 0 calc(50% - (var(--space-4) / 2));
  scroll-snap-align: start;
  min-width: 0;
}

/* On mobile/tablet, show 1 card at a time */
@media (max-width: 1024px) {
  .cases-showcase[data-carousel] > .case-hero {
    flex: 0 0 100%;
  }
}

/* On very large screens (above 1400px), keep 2 visible */
@media (min-width: 1025px) {
  .cases-showcase[data-carousel] {
    grid-template-columns: unset;
  }
}

/* ============================================================
   FORM RADIO GROUPS — for concept form (Project type / Budget)
   ============================================================ */
.form-radio-group {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-3) 0;
}
.form-radio-group legend.form-label {
  display: block;
  margin-bottom: 10px;
  padding: 0;
}
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-radio-group .form-label {
  margin-bottom: 8px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-size: 0.95rem;
  color: var(--color-dark);
}
.form-radio:hover {
  border-color: rgba(34, 51, 255, 0.4);
  background: rgba(34, 51, 255, 0.02);
}
.form-radio input[type="radio"] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-blue);
  cursor: pointer;
  flex-shrink: 0;
}
.form-radio:has(input:checked) {
  border-color: var(--color-blue);
  background: rgba(34, 51, 255, 0.06);
  font-weight: 500;
}

/* "Optional" label hint */
.form-label-optional {
  color: var(--color-muted);
  font-weight: 400;
  font-size: 0.85em;
  margin-left: 4px;
}

/* When forms have many fields (concept form), tighter spacing */
.funnel-form-card .form-field {
  margin-bottom: var(--space-3);
}
.funnel-form-card .form-radio-group .form-field {
  margin-bottom: 0;
}

/* ============================================================
   CONCEPT STEPPER — Typeform-style multi-step form
   ============================================================ */
.concept-stepper {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 460px;
}

/* Progress bar */
.stepper-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.stepper-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--color-surface, #fafbfd);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.stepper-progress-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 10%;  /* set by JS via inline style */
  background: linear-gradient(90deg, var(--color-blue), #5566FF);
  border-radius: 999px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.stepper-progress-text {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Steps — hidden by default, fade in active */
.stepper-step {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  animation: stepper-fade-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stepper-step.is-active { display: flex; }

@keyframes stepper-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.stepper-question .stepper-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  font-weight: 500;
  margin-bottom: 8px;
}
.stepper-optional {
  color: var(--color-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.stepper-question h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}
.stepper-question p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0 0 14px;
  line-height: 1.5;
}

/* Larger inputs/textareas for the typeform vibe */
.form-input-lg {
  font-size: 1.1rem;
  padding: 16px 18px;
}
.form-textarea-lg {
  font-size: 1rem;
  padding: 16px 18px;
  min-height: 140px;
}

/* Controls */
.stepper-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.stepper-controls .btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  justify-content: center;
}
.stepper-controls .stepper-submit {
  flex: 1 1 auto;
  min-width: 0;
}
.stepper-prev {
  visibility: hidden;  /* hidden on first step */
}
.stepper-prev.is-visible { visibility: visible; }
.stepper-submit { display: none; }  /* shown on last step */
.stepper-submit.is-visible { display: inline-flex; }
.stepper-next.is-hidden { display: none; }

@media (max-width: 640px) {
  .stepper-question h3 { font-size: 1.4rem; }
  .stepper-controls {
    flex-direction: column-reverse;
  }
  .stepper-controls .btn { width: 100%; justify-content: center; text-align: center; }
  .stepper-prev:not(.is-visible) { display: none; }  /* save space */
}

/* Conditional "other" textarea inside a radio group — hidden until 'anders' is chosen */
.form-radio-other {
  display: none;
  margin-top: 12px;
  padding: 14px;
  background: rgba(34, 51, 255, 0.04);
  border: 1px solid rgba(34, 51, 255, 0.15);
  border-radius: 10px;
  animation: stepper-fade-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-radio-other.is-shown {
  display: block;
}
.form-radio-other .form-label {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

/* Stepper inline error message */
.stepper-error {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #b91c1c;
  border-radius: 8px;
  font-size: 0.85rem;
  animation: stepper-fade-in 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   FIGMA-STYLE COLLABORATIVE CANVAS
   (replaces browser-skeleton in "Zie het eerst. Beslis daarna." sectie)
   ============================================================ */
.figma-canvas {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.5), transparent 50%),
    linear-gradient(135deg, #d4e89a 0%, #b8d96e 100%);
  border-radius: 20px;
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -25px rgba(13, 15, 28, 0.25);
}

/* Arrows layer */
.figma-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.figma-arrow-path {
  stroke-dasharray: 6 4;
  animation: figma-dash 4s linear infinite;
}
@keyframes figma-dash {
  to { stroke-dashoffset: -50; }
}

/* Frames — 3 mini design windows */
.figma-frame {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px -10px rgba(13, 15, 28, 0.25);
  overflow: hidden;
  z-index: 3;
}
.figma-frame-1 { top: 8%;  left: 6%;  width: 38%; transform: rotate(-2deg); }
.figma-frame-2 { top: 42%; left: 42%; width: 36%; transform: rotate(1deg); }
.figma-frame-3 { top: 14%; right: 4%; width: 28%; transform: rotate(2deg); }

.figma-frame-label {
  position: absolute;
  top: -10px;
  left: 8px;
  font-size: 0.65rem;
  color: var(--color-blue, #2233FF);
  font-weight: 500;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.95);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.figma-frame-content {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Skeleton blocks */
.figma-skel {
  background: linear-gradient(90deg, #e8eaee, #d8dbe1, #e8eaee);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: figma-shimmer 3s ease-in-out infinite;
}
@keyframes figma-shimmer {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.figma-skel-hero {
  height: 48px;
  background: linear-gradient(135deg, #2233FF 0%, #5566FF 100%);
  border-radius: 6px;
}
.figma-skel-line { height: 6px; }
.figma-skel-line.w50 { width: 50%; }
.figma-skel-line.w60 { width: 60%; }
.figma-skel-line.w70 { width: 70%; }
.figma-skel-line.w80 { width: 80%; }
.figma-skel-btn {
  height: 16px;
  width: 50%;
  background: var(--color-dark, #0d0f1c);
  border-radius: 4px;
  animation: none;
}
.figma-skel-input {
  height: 14px;
  width: 100%;
  border: 1px solid #d8dbe1;
  background: #fafbfd;
  animation: none;
}
.figma-skel-textarea {
  height: 32px;
  width: 100%;
  border: 1px solid #d8dbe1;
  background: #fafbfd;
  animation: none;
}
.figma-skel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.figma-skel-card {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8eaee, #d8dbe1);
  border-radius: 4px;
}

/* Collaborative cursors */
.figma-cursor {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  animation: figma-cursor-float 6s ease-in-out infinite;
}
.figma-cursor-klant {
  animation-delay: -3s;
}
@keyframes figma-cursor-float {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(8px, -4px); }
  50%      { transform: translate(-4px, 6px); }
  75%      { transform: translate(6px, 2px); }
}
.figma-cursor-label {
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 14px;
  margin-left: -4px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* Working indicator (bottom-left, like Figma's "Working...") */
.figma-working {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 15, 28, 0.92);
  color: #fff;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.figma-working-spinner {
  width: 8px;
  height: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: figma-spin 0.9s linear infinite;
}
@keyframes figma-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .figma-canvas {
    aspect-ratio: 4 / 3.4;
    padding: 18px;
  }
  .figma-frame-1 { width: 44%; }
  .figma-frame-2 { width: 42%; }
  .figma-frame-3 { width: 34%; }
  .figma-cursor-label { font-size: 0.6rem; padding: 2px 6px; }
  .figma-working { font-size: 0.65rem; padding: 5px 10px; }
}
