/**
 * 2LZ Website - Section Styles
 * Enterprise-grade, clean layout
 * v2
 */

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.2s;
}

.nav-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 48px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: #64748b;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.15s;
}

.nav-link:hover {
  color: #193259;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: auto;
  background: linear-gradient(135deg, #0f172a 0%, #193259 50%, #264a7a 100%);
  padding: 7rem 0 4rem;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.hero-content {
  color: #fff;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.text-primary-light {
  color: #fff;
}

.hero-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background: #000;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn-text small {
  font-size: 0.625rem;
  opacity: 0.8;
}

.store-btn-text span {
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   BROWSER WINDOW MOCKUP (Dashboard)
   ============================================ */
.hero-preview {
  display: block;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-preview {
    margin-top: 0;
  }
}

.browser-window {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.browser-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #64748b;
}

.browser-content {
  display: flex;
  height: 360px;
}

.browser-screenshot {
  width: 100%;
  display: block;
  border-radius: 0 0 12px 12px;
}

.desktop-screenshot {
  width: 100%;
  display: block;
  border-radius: 0 0 8px 8px;
}

/* Mock Sidebar */
.mock-sidebar {
  width: 180px;
  background: #fff;
  border-right: 1px solid #e2e8f0;
  padding: 16px 12px;
  flex-shrink: 0;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.mock-logo-icon {
  width: 28px;
  height: 28px;
  background: #193259;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.mock-logo span {
  font-weight: 600;
  font-size: 13px;
  color: #1e293b;
}

.mock-search {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 10px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.mock-kbd {
  background: #e2e8f0;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 9px;
}

.mock-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #64748b;
  transition: background 0.15s;
}

.mock-nav-item.active {
  background: #eff6ff;
  color: #193259;
  font-weight: 500;
}

/* Mock Main Content */
.mock-main {
  flex: 1;
  background: #f8fafc;
  padding: 20px;
  overflow: hidden;
}

.mock-header {
  margin-bottom: 20px;
}

.mock-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.mock-header p {
  font-size: 11px;
  color: #64748b;
  margin: 0;
}

.mock-widgets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mock-widget {
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.mock-widget-lg {
  /* Default is 1 column, spans naturally */
}

.mock-widget-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.mock-capacity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mock-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-ring span {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
}

.mock-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  color: #64748b;
}

.mock-stats div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.dot-sm.dot-red { background: #ef4444; }
.dot-sm.dot-blue { background: #264a7a; }
.dot-sm.dot-green { background: #10b981; }

.mock-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 10px;
}

.mock-action-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.mock-action-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #193259;
}

.mock-action-btns {
  display: flex;
  gap: 4px;
}

.mock-btn-approve,
.mock-btn-reject,
.mock-btn-view {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: none;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-btn-approve { background: #dcfce7; color: #16a34a; }
.mock-btn-reject { background: #fee2e2; color: #dc2626; }
.mock-btn-view { background: #f1f5f9; color: #64748b; }

.mock-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-list-item {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding: 4px 0;
  border-bottom: 1px solid #f1f5f9;
}

.mock-list-item:last-child {
  border-bottom: none;
}

.text-success { color: #10b981; font-weight: 500; }
.text-warning { color: #f59e0b; font-weight: 500; }

.mock-birthday {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: #193259;
}

.mock-name {
  font-size: 11px;
  font-weight: 500;
  color: #1e293b;
}

.mock-date {
  font-size: 9px;
  color: #94a3b8;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

/* ============================================
   FEATURE CARDS - "Eindelijk een tool..."
   ============================================ */
.feature-cards {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-red { background: #fee2e2; color: #dc2626; }
.feature-icon-green { background: #dcfce7; color: #16a34a; }
.feature-icon-blue { background: #dbeafe; color: #193259; }
.feature-icon-amber { background: #fef3c7; color: #d97706; }

.feature-list li strong {
  display: block;
  font-size: 0.9375rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.feature-list li p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #374151;
}

.check-list-dark li {
  color: #475569;
}

/* ============================================
   TWO WORLDS SECTION (Kantoor & Buitendienst)
   ============================================ */
.two-worlds {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .two-worlds {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
}

.world-item {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.world-item .phone-wrapper,
.world-item .desktop-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.world-label {
  margin-bottom: 1.5rem;
  min-height: 100px;
}

.world-label h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0.75rem 0 0.5rem;
}

.world-label p {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.world-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.world-badge-blue {
  background: #dbeafe;
  color: #193259;
}

.world-badge-green {
  background: #dcfce7;
  color: #166534;
}

/* Desktop Mockup */
.desktop-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.desktop-device {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.desktop-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.desktop-dots {
  display: flex;
  gap: 5px;
}

.desktop-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.desktop-dots span:nth-child(1) { background: #ef4444; }
.desktop-dots span:nth-child(2) { background: #eab308; }
.desktop-dots span:nth-child(3) { background: #22c55e; }

.desktop-url {
  flex: 1;
  text-align: center;
  font-size: 10px;
  color: #64748b;
}

.desktop-screen {
  display: flex;
  height: 360px;
}

.mini-sidebar {
  width: 90px;
  background: #fff;
  border-right: 1px solid #f1f5f9;
  padding: 12px 8px;
}

.mini-logo {
  font-size: 12px;
  font-weight: 700;
  color: #193259;
  margin-bottom: 12px;
  padding-left: 4px;
}

.mini-nav-item {
  padding: 6px 8px;
  font-size: 9px;
  color: #64748b;
  border-radius: 4px;
  margin-bottom: 2px;
}

.mini-nav-item.active {
  background: #eff6ff;
  color: #193259;
  font-weight: 500;
}

.mini-main {
  flex: 1;
  background: #f8fafc;
  padding: 12px;
}

.mini-header {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.mini-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-stat {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  border: 1px solid #f1f5f9;
}

.mini-stat-val {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.mini-stat-label {
  font-size: 8px;
  color: #64748b;
}

.mini-table {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  font-size: 9px;
  border-bottom: 1px solid #f1f5f9;
}

.mini-row:last-child {
  border-bottom: none;
}

.mini-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 500;
}

.mini-badge.green { background: #dcfce7; color: #166534; }
.mini-badge.blue { background: #dbeafe; color: #193259; }

/* Sync Indicator */
.sync-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

@media (min-width: 1024px) {
  .sync-indicator {
    flex-direction: column;
  }
}

.sync-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, transparent, #10b981, transparent);
}

@media (max-width: 1023px) {
  .sync-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
  }
  .sync-indicator {
    flex-direction: row;
  }
}

.sync-icon {
  width: 48px;
  height: 48px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}

.sync-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Phone Small Variant */
.phone-wrapper-small .phone-device {
  width: 200px;
}

.phone-wrapper-small .phone-screen {
  height: 380px;
}

.phone-task-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.phone-task-title {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.phone-task-client {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 8px;
}

.phone-task-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #16a34a;
  font-weight: 500;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-dot.green { background: #16a34a; }

.phone-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-action-btn {
  padding: 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  background: #f1f5f9;
  color: #475569;
}

.phone-action-btn.primary {
  background: #193259;
  color: #fff;
}

/* ============================================
   MOBILE APP SECTION
   ============================================ */
.app-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .app-section {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
}

.phone-wrapper {
  display: flex;
  justify-content: center;
}

.phone-device {
  width: 260px;
  background: #0f172a;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.phone-screen {
  background: #f5f6fa;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
}

.phone-statusbar-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1e293b;
}

.phone-header {
  text-align: center;
  padding: 8px 16px 12px;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.phone-body {
  padding: 16px;
}

.phone-welcome {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 14px;
  padding: 14px;
  color: #fff;
  margin-bottom: 16px;
}

.phone-welcome-logo {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #193259;
}

.phone-welcome-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.phone-welcome-text small {
  font-size: 11px;
  opacity: 0.8;
}

.phone-welcome-text strong {
  font-size: 14px;
}

.phone-welcome-text span {
  font-size: 10px;
  opacity: 0.7;
}

.phone-section-title {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.phone-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.phone-module {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.08);
}

.phone-module-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-module span {
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
}

.phone-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
}

.phone-dot.active {
  width: 20px;
  border-radius: 3px;
  background: #1e3a5f;
}

.app-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1rem 0;
}

.app-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.store-buttons-dark {
  margin-top: 2rem;
}

.store-btn-dark {
  background: #1e293b;
}

/* ============================================
   MODULES GRID
   ============================================ */
.modules-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

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

.module-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.module-badge-unique {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #193259, #264a7a);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.module-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.module-card p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.module-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #193259;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}

.module-card:hover .module-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   VCA SECTION
   ============================================ */
.section-vca {
  background: linear-gradient(135deg, #193259 0%, #0f2240 50%, #193259 100%);
  background-size: 200% 200%;
  animation: vcaGradient 8s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.section-vca::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes vcaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.vca-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .vca-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.badge-white {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
}

/* VCA Badge - Green with white text and VCA icon */
.badge-vca {
  background: #16a34a;
  color: #fff;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  letter-spacing: 0.02em;
}

.vca-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 1rem 0;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .vca-content h2 {
    font-size: 3rem;
  }
}

.vca-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.vca-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vca-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vca-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #86efac;
}

.vca-features li strong {
  display: block;
  margin-bottom: 0.25rem;
}

.vca-features li span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.vca-preview {
  display: flex;
  justify-content: center;
}

.vca-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 420px;
  color: #0f172a;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3), 0 0 80px rgba(59, 130, 246, 0.1);
}

.vca-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.vca-card-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #193259;
}

.badge-success-solid {
  background: #10b981;
  color: #fff;
}

.vca-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.vca-stat {
  text-align: center;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
}

.vca-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.vca-stat-label {
  font-size: 0.75rem;
  color: #64748b;
}

.vca-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.vca-table th {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  font-weight: 600;
  color: #64748b;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.vca-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  color: #64748b;
  font-weight: 500;
  flex-wrap: wrap;
}

.pricing-toggle-label {
  transition: color 0.2s;
}

.pricing-toggle-label--active {
  color: var(--color-slate-900, #0f172a);
  font-weight: 600;
}

.pricing-save-badge {
  font-size: 0.875rem;
  padding: 0.375rem 0.875rem;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: #e2e8f0;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-switch.active {
  background: #193259;
}

.toggle-ball {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.toggle-switch.active .toggle-ball {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

/* Pricing Calculator */
.pricing-calculator {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-calc-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  transition: box-shadow 0.2s;
}

.pricing-calc-card:hover {
  box-shadow: 0 12px 32px rgba(25, 50, 89, 0.1);
}

.pricing-calc-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .pricing-calc-top {
    flex-direction: row;
    align-items: flex-start;
  }

  .pricing-calc-slider-section {
    flex: 1;
  }

  .pricing-calc-result {
    flex-shrink: 0;
    text-align: right;
    min-width: 180px;
  }
}

.pricing-calc-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.pricing-calc-slider-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.pricing-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #193259 var(--fill, 0%), #e2e8f0 var(--fill, 0%));
  outline: none;
  cursor: pointer;
}

.pricing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #193259;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(25, 50, 89, 0.3);
  cursor: pointer;
  transition: transform 0.15s;
}

.pricing-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.pricing-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #193259;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(25, 50, 89, 0.3);
  cursor: pointer;
}

.pricing-slider::-moz-range-track {
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
}

.pricing-calc-user-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.pricing-calc-user-count span {
  font-size: 2rem;
  font-weight: 800;
  color: #193259;
  line-height: 1;
}

.pricing-calc-user-count small {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.pricing-calc-result {
  text-align: center;
}

.pricing-calc-total {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .pricing-calc-total {
    justify-content: flex-end;
  }
  .pricing-calc-result {
    text-align: right;
  }
}

.pricing-calc-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.pricing-calc-period {
  font-size: 1.125rem;
  color: #64748b;
}

.pricing-calc-yearly-note {
  font-size: 0.85rem;
  color: #6B7280;
  margin-top: 0.25rem;
}

.pricing-calc-per-user {
  font-size: 0.875rem;
  color: #10B981;
  font-weight: 500;
  margin-top: 0.25rem;
}

.pricing-calc-breakdown {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #374151;
}

.breakdown-row + .breakdown-row {
  border-top: 1px solid #e2e8f0;
}

.breakdown-row:last-child {
  font-weight: 600;
  color: #0f172a;
}

.pricing-calc-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.pricing-calc-includes span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #374151;
}

/* Staffel grid */
.pricing-staffel {
  margin-top: 1.5rem;
}

.pricing-staffel h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  margin-bottom: 1rem;
}

.staffel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 639px) {
  .staffel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.staffel-item {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.staffel-range {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.staffel-rate {
  font-size: 1.125rem;
  font-weight: 700;
  color: #193259;
}

.staffel-rate small {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.staffel-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}

.pricing-card:hover {
  border-color: #193259;
  box-shadow: 0 12px 32px rgba(25, 50, 89, 0.15);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: #193259;
  box-shadow: 0 12px 24px rgba(25, 50, 89, 0.15);
}

.pricing-card-contact {
  border-color: #e2e8f0;
  border-style: dashed;
  display: flex;
  flex-direction: column;
}

.pricing-card-contact .pricing-header {
  flex: 0;
}

.pricing-contact-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}

.pricing-contact-body p {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.price-amount-contact {
  font-size: 1.5rem;
  font-weight: 700;
  color: #64748b;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #193259;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #193259;
  margin-bottom: 0.25rem;
}

.pricing-header p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 0 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
}

.price-period {
  font-size: 1rem;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #374151;
}

.btn-block {
  width: 100%;
}

.pricing-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  color: #64748b;
  font-size: 0.9375rem;
}

.pricing-footer span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-highlight {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 16px;
  border: 1px solid #bbf7d0;
  display: grid;
  gap: 1.5rem;
}

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

.pricing-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-highlight-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-highlight-item div {
  flex: 1;
}

.pricing-highlight-item strong {
  font-size: 1rem;
  color: #14532d;
  display: block;
  margin-bottom: 0.25rem;
}

.pricing-highlight-item p {
  font-size: 0.875rem;
  color: #166534;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   TRIAL SECTION
   ============================================ */
.section-trial {
  background: linear-gradient(135deg, #eff6ff 0%, #fff 50%);
  position: relative;
}

.trial-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .trial-layout {
    grid-template-columns: 1fr 480px;
    gap: 4rem;
  }
}

.trial-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .trial-content h2 {
    font-size: 3rem;
  }
}

.text-primary {
  color: #193259;
}

.trial-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.trial-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .trial-steps {
    flex-direction: row;
    gap: 2rem;
  }
}

.trial-step {
  display: flex;
  gap: 1rem;
  flex: 1;
}

.trial-step-num {
  width: 36px;
  height: 36px;
  background: #193259;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.trial-step strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.trial-step p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.trial-guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.trial-guarantees div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

/* Trial Form Card */
.trial-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.trial-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.trial-form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.trial-form-header p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.trial-price {
  margin-top: 1rem;
}

.trial-price-free {
  font-size: 2.5rem;
  font-weight: 800;
  color: #193259;
}

.trial-price-after {
  display: block;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.trial-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #193259;
  box-shadow: 0 0 0 3px rgba(25, 50, 89, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-checkbox input {
  margin-top: 2px;
}

.form-checkbox label {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
}

.form-checkbox a {
  color: #193259;
}

.trial-form-note {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.footer-logo {
  height: 40px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  color: #64748b;
  font-size: 0.875rem;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color 0.15s;
}

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

/* ============================================
   MODULE PREVIEW MODAL
   ============================================ */
.module-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.module-modal-overlay.active {
  display: flex;
}

.module-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  margin: auto 0;
  animation: modalSlideIn 0.25s ease-out;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.module-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1;
  line-height: 1;
}

.module-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.module-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.module-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.module-modal-header p {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
}

.module-modal-body {
  padding: 1.5rem 2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.module-modal-intro {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.module-modal-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.module-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.module-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-feature strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.375rem;
}

.module-feature p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.module-modal-highlight {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #eff6ff;
  border-radius: 10px;
  border-left: 4px solid #193259;
  font-size: 0.875rem;
  color: #193259;
  line-height: 1.6;
}

.module-modal-highlight strong {
  color: #0f2240;
}

/* Module Preview Mockup - Mini Dashboard */
.module-preview-mockup {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.preview-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.preview-dots {
  display: flex;
  gap: 4px;
}

.preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.preview-dots span:nth-child(1) { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #eab308; }
.preview-dots span:nth-child(3) { background: #22c55e; }

.preview-url {
  flex: 1;
  text-align: center;
  font-size: 10px;
  color: #64748b;
}

.preview-content {
  display: flex;
  background: #fff;
  height: 200px;
  overflow: hidden;
}

.preview-sidebar {
  width: 100px;
  background: #fff;
  border-right: 1px solid #f1f5f9;
  padding: 10px 8px;
  flex-shrink: 0;
}

.preview-sidebar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border-radius: 4px;
  font-size: 8px;
  color: #64748b;
  margin-bottom: 2px;
}

.preview-sidebar-item.active {
  background: #eff6ff;
  color: #193259;
  font-weight: 500;
}

.preview-sidebar-item svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.preview-main {
  flex: 1;
  background: #f8fafc;
  padding: 12px;
  overflow: hidden;
}

.preview-header {
  margin-bottom: 10px;
}

.preview-header h4 {
  font-size: 11px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.preview-header span {
  font-size: 8px;
  color: #64748b;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.preview-stat {
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  border: 1px solid #f1f5f9;
}

.preview-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.preview-stat-label {
  font-size: 7px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.preview-stat.stat-green .preview-stat-value { color: #10b981; }
.preview-stat.stat-blue .preview-stat-value { color: #193259; }
.preview-stat.stat-amber .preview-stat-value { color: #f59e0b; }
.preview-stat.stat-red .preview-stat-value { color: #dc2626; }

.preview-table {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  font-size: 8px;
}

.preview-table-header {
  display: grid;
  padding: 6px 8px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 600;
  color: #64748b;
}

.preview-table-row {
  display: grid;
  padding: 5px 8px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.preview-table-row:last-child {
  border-bottom: none;
}

.preview-table-3 .preview-table-header,
.preview-table-3 .preview-table-row {
  grid-template-columns: 1fr 80px 60px;
}

.preview-badge {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 7px;
  font-weight: 500;
}

.preview-badge-green { background: #dcfce7; color: #16a34a; }
.preview-badge-amber { background: #fef3c7; color: #d97706; }
.preview-badge-red { background: #fee2e2; color: #dc2626; }
.preview-badge-blue { background: #dbeafe; color: #193259; }

.preview-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.preview-card {
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  border: 1px solid #f1f5f9;
}

.preview-card-title {
  font-size: 8px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.preview-card-content {
  font-size: 9px;
  color: #475569;
}

.preview-chart {
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.preview-bar {
  flex: 1;
  background: linear-gradient(180deg, #264a7a, #193259);
  border-radius: 2px 2px 0 0;
  min-height: 8px;
}

@media (max-width: 640px) {
  .preview-content {
    height: 160px;
  }
  .preview-sidebar {
    width: 80px;
    padding: 8px 4px;
  }
  .preview-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .preview-stat:nth-child(3) {
    display: none;
  }
}

.module-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .module-modal-header {
    padding: 1.5rem 1.25rem 1rem;
  }
  .module-modal-body {
    padding: 1rem 1.25rem;
  }
  .module-modal-footer {
    padding: 1rem 1.25rem;
  }
  .module-modal-header h2 {
    font-size: 1.25rem;
  }
}

/* ============================================
   HAMBURGER MENU & MOBILE RESPONSIVE
   ============================================ */
.nav-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 100;
}

.nav-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-menu-btn {
    display: none;
  }
}

/* Mobile nav overlay */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-link {
    font-size: 1.25rem;
  }
}

/* Mobile form row */
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.75rem !important;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.scroll-fade-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-fade-children.visible > *:nth-child(1) { transition-delay: 0s; }
.scroll-fade-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.scroll-fade-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.scroll-fade-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.scroll-fade-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.scroll-fade-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.scroll-fade-children.visible > *:nth-child(7) { transition-delay: 0.6s; }
.scroll-fade-children.visible > *:nth-child(8) { transition-delay: 0.7s; }

.scroll-fade-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Scale up animation */
.scroll-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.scroll-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.scroll-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-outline.btn-loading::after {
  border-color: rgba(25, 50, 89, 0.3);
  border-top-color: #193259;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.btn-success-state {
  background: #10b981 !important;
  border-color: #10b981 !important;
}

.btn-success-state::before {
  content: '✓';
  margin-right: 0.5rem;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .scroll-fade,
  .scroll-fade-children > *,
  .scroll-scale,
  .scroll-slide-left,
  .scroll-slide-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-loading::after {
    animation: none;
  }
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-section {
  padding: 3rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.trust-header {
  text-align: center;
  margin-bottom: 2rem;
}

.trust-header h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-badges {
    gap: 1.5rem;
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  min-width: 120px;
  transition: box-shadow 0.2s;
}

.trust-badge:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.trust-badge-icon.green { background: #dcfce7; color: #16a34a; }
.trust-badge-icon.blue { background: #dbeafe; color: #193259; }
.trust-badge-icon.purple { background: #f3e8ff; color: #9333ea; }
.trust-badge-icon.amber { background: #fef3c7; color: #d97706; }

.trust-badge span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.3;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.nav-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 0.5rem;
}

.nav-lang:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

[data-theme="dark"] .nav-lang {
  border-color: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .nav-lang:hover {
  background: #334155;
  color: #f1f5f9;
}

/* ============================================
   DARK MODE
   ============================================ */
.dark-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
  margin-left: 0.5rem;
}

.dark-mode-toggle:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.dark-mode-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.dark-mode-toggle:hover svg {
  transform: rotate(15deg);
}

/* Dark mode icon states */
.dark-mode-toggle .icon-sun { display: none; }
.dark-mode-toggle .icon-moon { display: block; }

[data-theme="dark"] .dark-mode-toggle .icon-sun { display: block; }
[data-theme="dark"] .dark-mode-toggle .icon-moon { display: none; }

/* Dark mode styles */
[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --border-color: #334155;
}

[data-theme="dark"] body {
  background: #0f172a;
  color: #f1f5f9;
}

[data-theme="dark"] .nav {
  background: rgba(15, 23, 42, 0.95);
  border-color: #334155;
}

[data-theme="dark"] .nav-link {
  color: #94a3b8;
}

[data-theme="dark"] .nav-link:hover {
  color: #60a5fa;
}

[data-theme="dark"] .dark-mode-toggle {
  border-color: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .dark-mode-toggle:hover {
  background: #334155;
  color: #f1f5f9;
}

[data-theme="dark"] .section {
  background: #0f172a;
}

[data-theme="dark"] .section-alt {
  background: #1e293b;
}

[data-theme="dark"] .section-title {
  color: #f1f5f9;
}

[data-theme="dark"] .section-subtitle {
  color: #94a3b8;
}

[data-theme="dark"] .feature-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .feature-card h3 {
  color: #f1f5f9;
}

[data-theme="dark"] .feature-list li strong {
  color: #f1f5f9;
}

[data-theme="dark"] .feature-list li p {
  color: #94a3b8;
}

[data-theme="dark"] .check-list li {
  color: #cbd5e1;
}

[data-theme="dark"] .module-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .module-card h3 {
  color: #f1f5f9;
}

[data-theme="dark"] .module-card p {
  color: #94a3b8;
}

[data-theme="dark"] .pricing-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .pricing-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 12px 32px rgba(96, 165, 250, 0.15);
}

[data-theme="dark"] .pricing-card-featured {
  border-color: #264a7a;
}

[data-theme="dark"] .pricing-header h3 {
  color: #60a5fa;
}

[data-theme="dark"] .pricing-header p {
  color: #94a3b8;
}

[data-theme="dark"] .price-amount {
  color: #f1f5f9;
}

[data-theme="dark"] .pricing-features li {
  color: #cbd5e1;
}

/* Dark mode: Pricing Calculator */
[data-theme="dark"] .pricing-calc-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .pricing-calc-card:hover {
  box-shadow: 0 12px 32px rgba(96, 165, 250, 0.1);
}

[data-theme="dark"] .pricing-calc-label {
  color: #e2e8f0;
}

[data-theme="dark"] .pricing-calc-amount {
  color: #f1f5f9;
}

[data-theme="dark"] .pricing-calc-user-count span {
  color: #60a5fa;
}

[data-theme="dark"] .pricing-calc-breakdown {
  background: #0f172a;
  border-color: #334155;
}

[data-theme="dark"] .breakdown-row {
  color: #cbd5e1;
}

[data-theme="dark"] .breakdown-row + .breakdown-row {
  border-color: #334155;
}

[data-theme="dark"] .breakdown-row:last-child {
  color: #f1f5f9;
}

[data-theme="dark"] .pricing-calc-includes span {
  color: #cbd5e1;
}

[data-theme="dark"] .pricing-calc-includes {
  border-color: #334155;
}

[data-theme="dark"] .staffel-item {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .staffel-rate {
  color: #60a5fa;
}

[data-theme="dark"] .pricing-staffel h4 {
  color: #cbd5e1;
}

[data-theme="dark"] .pricing-slider {
  background: linear-gradient(to right, #264a7a var(--fill, 0%), #334155 var(--fill, 0%));
}

[data-theme="dark"] .pricing-slider::-webkit-slider-thumb {
  background: #1e3a5f;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

[data-theme="dark"] .pricing-slider::-moz-range-thumb {
  background: #1e3a5f;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

[data-theme="dark"] .pricing-highlight {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-color: #334155;
}

[data-theme="dark"] .pricing-highlight-item strong {
  color: #86efac;
}

[data-theme="dark"] .pricing-highlight-item p {
  color: #94a3b8;
}

[data-theme="dark"] .section-trial {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%);
}

[data-theme="dark"] .trial-content h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .trial-description {
  color: #94a3b8;
}

[data-theme="dark"] .trial-step strong {
  color: #f1f5f9;
}

[data-theme="dark"] .trial-step p {
  color: #94a3b8;
}

[data-theme="dark"] .trial-guarantees {
  border-color: #334155;
}

[data-theme="dark"] .trial-guarantees div {
  color: #cbd5e1;
}

[data-theme="dark"] .trial-form-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .trial-form-header h3 {
  color: #f1f5f9;
}

[data-theme="dark"] .trial-form-header p {
  color: #94a3b8;
}

[data-theme="dark"] .form-group label {
  color: #cbd5e1;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select {
  background: #0f172a;
  border-color: #334155;
  color: #f1f5f9;
}

[data-theme="dark"] .form-group input::placeholder {
  color: #64748b;
}

[data-theme="dark"] .form-checkbox label {
  color: #94a3b8;
}

[data-theme="dark"] .trust-section {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .trust-header h3 {
  color: #94a3b8;
}

[data-theme="dark"] .trust-badge {
  background: #0f172a;
  border-color: #334155;
}

[data-theme="dark"] .trust-badge span {
  color: #f1f5f9;
}

[data-theme="dark"] .world-label h3 {
  color: #f1f5f9;
}

[data-theme="dark"] .world-label p {
  color: #94a3b8;
}

[data-theme="dark"] .app-content h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .app-description {
  color: #94a3b8;
}

/* Dark mode transition */
body,
.nav,
.section,
.section-alt,
.feature-card,
.module-card,
.pricing-card,
.trial-form-card,
.trust-section,
.trust-badge {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* =============================================
   PROBLEM/SOLUTION LISTS (Herken jij dit?)
   ============================================= */

.feature-card-problem h3,
.feature-card-solution h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem-list,
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem-list li,
.solution-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.problem-list li:last-child,
.solution-list li:last-child {
  border-bottom: none;
}

.problem-list li {
  color: #64748b;
}

.solution-list li {
  color: #0f172a;
  font-weight: 500;
}

.feature-card-problem {
  border-color: #fecaca;
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.feature-card-solution {
  border-color: #bbf7d0;
  background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

[data-theme="dark"] .feature-card-problem {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(135deg, #1e293b 0%, rgba(239, 68, 68, 0.05) 100%);
}

[data-theme="dark"] .feature-card-solution {
  border-color: rgba(34, 197, 94, 0.2);
  background: linear-gradient(135deg, #1e293b 0%, rgba(34, 197, 94, 0.05) 100%);
}

[data-theme="dark"] .problem-list li {
  color: #94a3b8;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .solution-list li {
  color: #e2e8f0;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* =============================================
   SWEET SPOT TABLE
   ============================================= */

.sweet-spot-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
}

.sweet-spot-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.sweet-spot-table thead th {
  background: #f8fafc;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #475569;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #e2e8f0;
}

.sweet-spot-table thead th:first-child {
  width: 28%;
}

.sweet-spot-table tbody td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.sweet-spot-table tbody tr:last-child td {
  border-bottom: none;
}

.sweet-spot-label {
  font-weight: 600;
  color: #0f172a;
}

.sweet-spot-highlight {
  background: rgba(25, 50, 89, 0.04);
  color: #193259;
  font-weight: 600;
}

.sweet-spot-table thead th.sweet-spot-highlight {
  background: #193259;
  color: #fff;
}

[data-theme="dark"] .sweet-spot-table {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .sweet-spot-table thead th {
  background: #0f172a;
  color: #94a3b8;
  border-bottom-color: #334155;
}

[data-theme="dark"] .sweet-spot-table thead th.sweet-spot-highlight {
  background: #193259;
  color: #fff;
}

[data-theme="dark"] .sweet-spot-table tbody td {
  color: #cbd5e1;
  border-bottom-color: #1e293b;
}

[data-theme="dark"] .sweet-spot-label {
  color: #e2e8f0;
}

[data-theme="dark"] .sweet-spot-highlight {
  background: rgba(25, 50, 89, 0.15);
  color: #93c5fd;
}

/* =============================================
   BEYOND ERP GRID (Meer dan ERP)
   ============================================= */

.beyond-erp-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .beyond-erp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .beyond-erp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.beyond-erp-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.beyond-erp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.beyond-erp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.beyond-erp-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.beyond-erp-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.beyond-erp-card .module-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #193259;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}

.beyond-erp-card:hover .module-card-link {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="dark"] .beyond-erp-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .beyond-erp-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .beyond-erp-card h3 {
  color: #e2e8f0;
}

[data-theme="dark"] .beyond-erp-card p {
  color: #94a3b8;
}

[data-theme="dark"] .beyond-erp-card .module-card-link {
  color: #93c5fd;
}

/* =============================================
   CUSTOMIZE GRID (Jij Bepaalt)
   ============================================= */

.customize-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.customize-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.customize-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.customize-icon {
  width: 48px;
  height: 48px;
  background: rgba(25, 50, 89, 0.08);
  color: #193259;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.customize-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.customize-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

[data-theme="dark"] .customize-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .customize-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .customize-icon {
  background: rgba(25, 50, 89, 0.3);
  color: #93c5fd;
}

[data-theme="dark"] .customize-card h3 {
  color: #e2e8f0;
}

[data-theme="dark"] .customize-card p {
  color: #94a3b8;
}

/* ============================================
   DARK MODE — COMPREHENSIVE CONTRAST FIXES
   ============================================ */

/* --- Hamburger menu lines --- */
[data-theme="dark"] .nav-menu-btn span {
  background: #cbd5e1;
}

/* --- Mobile nav overlay --- */
@media (max-width: 767px) {
  [data-theme="dark"] .nav-links {
    background: rgba(15, 23, 42, 0.98);
  }
}

/* --- Badges (on light-bg sections) --- */
[data-theme="dark"] .badge-primary {
  background: rgba(25, 50, 89, 0.4);
  color: #93c5fd;
}

[data-theme="dark"] .badge-success {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

/* --- Buttons on dark backgrounds --- */
[data-theme="dark"] .btn-primary {
  background: #264a7a;
  color: #fff;
}

[data-theme="dark"] .btn-primary:hover {
  background: #1e3a5f;
}

[data-theme="dark"] .btn-outline {
  color: #93c5fd;
  border-color: #93c5fd;
}

[data-theme="dark"] .btn-outline:hover {
  background: #93c5fd;
  color: #0f172a;
}

/* --- Two Worlds: badges, labels, devices --- */
[data-theme="dark"] .world-badge-blue {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

[data-theme="dark"] .world-badge-green {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

[data-theme="dark"] .desktop-device {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .desktop-top {
  background: #0f172a;
  border-bottom-color: #334155;
}

[data-theme="dark"] .desktop-url {
  color: #64748b;
}

[data-theme="dark"] .desktop-screen {
  background: #1e293b;
}

[data-theme="dark"] .mini-sidebar {
  background: #1e293b;
  border-right-color: #334155;
}

[data-theme="dark"] .mini-logo {
  color: #93c5fd;
}

[data-theme="dark"] .mini-nav-item {
  color: #64748b;
}

[data-theme="dark"] .mini-nav-item.active {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

[data-theme="dark"] .mini-main {
  background: #0f172a;
}

[data-theme="dark"] .mini-header {
  color: #e2e8f0;
}

[data-theme="dark"] .mini-stat {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .mini-stat-val {
  color: #f1f5f9;
}

[data-theme="dark"] .mini-stat-label {
  color: #64748b;
}

[data-theme="dark"] .mini-table {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .mini-row {
  border-bottom-color: #334155;
  color: #cbd5e1;
}

[data-theme="dark"] .mini-badge.green {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

[data-theme="dark"] .mini-badge.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

/* --- Sync indicator --- */
[data-theme="dark"] .sync-icon {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

[data-theme="dark"] .sync-text {
  color: #86efac;
}

/* --- Phone mockup (buitendienst) --- */
[data-theme="dark"] .phone-screen {
  background: #1e293b;
}

[data-theme="dark"] .phone-statusbar {
  color: #cbd5e1;
}

[data-theme="dark"] .phone-statusbar-icons {
  color: #cbd5e1;
}

[data-theme="dark"] .phone-header {
  background: #0f172a;
  color: #f1f5f9;
  border-bottom-color: #334155;
}

[data-theme="dark"] .phone-body {
  background: #1e293b;
}

[data-theme="dark"] .phone-task-card {
  background: #0f172a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .phone-task-title {
  color: #f1f5f9;
}

[data-theme="dark"] .phone-task-client {
  color: #94a3b8;
}

[data-theme="dark"] .phone-action-btn {
  background: #334155;
  color: #cbd5e1;
}

[data-theme="dark"] .phone-action-btn.primary {
  background: #264a7a;
  color: #fff;
}

[data-theme="dark"] .phone-module {
  background: #0f172a;
  border-color: #334155;
  box-shadow: none;
}

[data-theme="dark"] .phone-module span {
  color: #cbd5e1;
}

[data-theme="dark"] .phone-section-title {
  color: #64748b;
}

[data-theme="dark"] .phone-dot {
  background: #334155;
}

[data-theme="dark"] .phone-dot.active {
  background: #1e3a5f;
}

/* --- Module card link (hover text) --- */
[data-theme="dark"] .module-card-link {
  color: #93c5fd;
}

/* --- Pricing section --- */
[data-theme="dark"] .pricing-toggle {
  color: #94a3b8;
}

[data-theme="dark"] .pricing-toggle-label--active {
  color: #f1f5f9;
}

[data-theme="dark"] .toggle-switch {
  background: #334155;
}

[data-theme="dark"] .toggle-switch.active {
  background: #264a7a;
}

[data-theme="dark"] .pricing-header {
  border-bottom-color: #334155;
}

[data-theme="dark"] .pricing-contact-body p {
  color: #94a3b8;
}

[data-theme="dark"] .price-amount-contact {
  color: #94a3b8;
}

[data-theme="dark"] .price-period {
  color: #64748b;
}

[data-theme="dark"] .pricing-card-contact {
  border-color: #334155;
}

[data-theme="dark"] .pricing-footer {
  color: #64748b;
}

[data-theme="dark"] .pricing-badge {
  background: #264a7a;
}

/* --- Check-list items --- */
[data-theme="dark"] .check-list li {
  color: #cbd5e1;
}

[data-theme="dark"] .check-list-dark li {
  color: #94a3b8;
}

/* --- Stat boxes (components) --- */
[data-theme="dark"] .stat-box {
  background: #1e293b;
}

[data-theme="dark"] .stat-value {
  color: #f1f5f9;
}

[data-theme="dark"] .stat-label {
  color: #94a3b8;
}

/* --- Form elements (components) --- */
[data-theme="dark"] .form-label {
  color: #cbd5e1;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea {
  background: #0f172a;
  border-color: #334155;
  color: #f1f5f9;
}

[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder {
  color: #64748b;
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus {
  border-color: #264a7a;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* --- Module preview modal --- */
[data-theme="dark"] .module-modal {
  background: #1e293b;
}

[data-theme="dark"] .module-modal-close {
  background: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .module-modal-close:hover {
  background: #475569;
  color: #f1f5f9;
}

[data-theme="dark"] .module-modal-header {
  border-bottom-color: #334155;
}

[data-theme="dark"] .module-modal-header h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .module-modal-header p {
  color: #94a3b8;
}

[data-theme="dark"] .module-modal-intro {
  color: #cbd5e1;
}

[data-theme="dark"] .module-feature strong {
  color: #f1f5f9;
}

[data-theme="dark"] .module-feature p {
  color: #94a3b8;
}

[data-theme="dark"] .module-modal-highlight {
  background: rgba(59, 130, 246, 0.1);
  border-left-color: #264a7a;
  color: #93c5fd;
}

[data-theme="dark"] .module-modal-highlight strong {
  color: #bfdbfe;
}

[data-theme="dark"] .module-modal-footer {
  border-top-color: #334155;
}

/* --- Module preview mockup (inside modal) --- */
[data-theme="dark"] .module-preview-mockup {
  border-color: #334155;
}

[data-theme="dark"] .preview-browser-bar {
  background: #0f172a;
  border-bottom-color: #334155;
}

[data-theme="dark"] .preview-url {
  color: #64748b;
}

[data-theme="dark"] .preview-content {
  background: #1e293b;
}

[data-theme="dark"] .preview-sidebar {
  background: #1e293b;
  border-right-color: #334155;
}

[data-theme="dark"] .preview-sidebar-item {
  color: #64748b;
}

[data-theme="dark"] .preview-sidebar-item.active {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

[data-theme="dark"] .preview-main {
  background: #0f172a;
}

[data-theme="dark"] .preview-header h4 {
  color: #e2e8f0;
}

[data-theme="dark"] .preview-header span {
  color: #64748b;
}

[data-theme="dark"] .preview-stat {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .preview-stat-value {
  color: #f1f5f9;
}

[data-theme="dark"] .preview-stat-label {
  color: #64748b;
}

[data-theme="dark"] .preview-table {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .preview-table-header {
  background: #0f172a;
  border-bottom-color: #334155;
  color: #64748b;
}

[data-theme="dark"] .preview-table-row {
  border-bottom-color: #334155;
  color: #cbd5e1;
}

[data-theme="dark"] .preview-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .preview-card-title {
  color: #64748b;
}

[data-theme="dark"] .preview-card-content {
  color: #cbd5e1;
}

[data-theme="dark"] .preview-chart {
  background: #1e293b;
  border-color: #334155;
}

/* --- Hero browser mockup (in dark hero, but still white) --- */
[data-theme="dark"] .browser-window {
  background: #1e293b;
}

[data-theme="dark"] .browser-header {
  background: #0f172a;
  border-bottom-color: #334155;
}

[data-theme="dark"] .browser-url {
  color: #64748b;
}

[data-theme="dark"] .mock-sidebar {
  background: #1e293b;
  border-right-color: #334155;
}

[data-theme="dark"] .mock-logo span {
  color: #e2e8f0;
}

[data-theme="dark"] .mock-search {
  background: #0f172a;
  border-color: #334155;
  color: #64748b;
}

[data-theme="dark"] .mock-kbd {
  background: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .mock-nav-item {
  color: #64748b;
}

[data-theme="dark"] .mock-nav-item.active {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

[data-theme="dark"] .mock-main {
  background: #0f172a;
}

[data-theme="dark"] .mock-header h3 {
  color: #e2e8f0;
}

[data-theme="dark"] .mock-header p {
  color: #64748b;
}

[data-theme="dark"] .mock-widget {
  background: #1e293b;
  border-color: #334155;
  box-shadow: none;
}

[data-theme="dark"] .mock-widget-header {
  color: #64748b;
}

[data-theme="dark"] .mock-stats {
  color: #94a3b8;
}

[data-theme="dark"] .mock-action-warning {
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(234, 179, 8, 0.3);
  color: #fbbf24;
}

[data-theme="dark"] .mock-action-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

[data-theme="dark"] .mock-btn-approve { background: rgba(34, 197, 94, 0.2); color: #86efac; }
[data-theme="dark"] .mock-btn-reject { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
[data-theme="dark"] .mock-btn-view { background: #334155; color: #94a3b8; }

[data-theme="dark"] .mock-list-item {
  color: #cbd5e1;
  border-bottom-color: #334155;
}

[data-theme="dark"] .mock-name {
  color: #e2e8f0;
}

[data-theme="dark"] .mock-avatar {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

/* --- Trust badges section (dark mode icon backgrounds) --- */
[data-theme="dark"] .trust-badge-icon.green { background: rgba(34, 197, 94, 0.15); }
[data-theme="dark"] .trust-badge-icon.blue { background: rgba(59, 130, 246, 0.15); }
[data-theme="dark"] .trust-badge-icon.purple { background: rgba(147, 51, 234, 0.15); }
[data-theme="dark"] .trust-badge-icon.amber { background: rgba(217, 119, 6, 0.15); }

/* --- Pricing highlight (green box) --- */
[data-theme="dark"] .pricing-highlight-item strong {
  color: #86efac;
}

[data-theme="dark"] .pricing-highlight-item p {
  color: #94a3b8;
}

/* --- Inline icon backgrounds (beyond-erp + module icons) --- */
[data-theme="dark"] .beyond-erp-icon,
[data-theme="dark"] .module-icon,
[data-theme="dark"] .module-feature-icon {
  opacity: 0.85;
}

/* --- VCA card (white card inside blue section) --- */
[data-theme="dark"] .vca-card {
  background: #1e293b;
  color: #f1f5f9;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2), 0 0 80px rgba(59, 130, 246, 0.05);
}

[data-theme="dark"] .vca-card-header {
  border-bottom-color: #334155;
}

[data-theme="dark"] .vca-card-header h3 {
  color: #93c5fd;
}

[data-theme="dark"] .vca-stat {
  background: #0f172a;
}

[data-theme="dark"] .vca-stat-value {
  color: #f1f5f9;
}

[data-theme="dark"] .vca-stat-label {
  color: #64748b;
}

[data-theme="dark"] .vca-table th {
  color: #64748b;
  border-bottom-color: #334155;
}

[data-theme="dark"] .vca-table td {
  color: #cbd5e1;
  border-bottom-color: #1e293b;
}

/* --- Pricing features list --- */
[data-theme="dark"] .pricing-features li {
  color: #cbd5e1;
}

/* --- Trial form link color --- */
[data-theme="dark"] .form-checkbox a {
  color: #93c5fd;
}

[data-theme="dark"] .trial-price-free {
  color: #93c5fd;
}

[data-theme="dark"] .trial-price-after {
  color: #64748b;
}

[data-theme="dark"] .trial-form-note {
  color: #64748b;
}

/* --- Links on dark backgrounds --- */
[data-theme="dark"] a {
  color: #93c5fd;
}

[data-theme="dark"] a:hover {
  color: #bfdbfe;
}

/* --- Headings --- */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #f1f5f9;
}

/* ============================================
   SECURITY & PRIVACY GRID (shared: techniek + office)
   ============================================ */

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.security-item {
  background: var(--bg-primary, #fff);
  border: 1px solid var(--color-slate-200, #e2e8f0);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.security-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.security-icon.si-blue { background: #dbeafe; color: #193259; }
.security-icon.si-green { background: #dcfce7; color: #16a34a; }
.security-icon.si-purple { background: #f3e8ff; color: #9333ea; }
.security-icon.si-amber { background: #fef3c7; color: #d97706; }

.security-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  color: var(--color-slate-900, #0f172a);
}

.security-item p {
  font-size: 0.8125rem;
  color: var(--color-slate-500, #64748b);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}

[data-theme="dark"] .security-item {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .security-item h4 {
  color: #f1f5f9;
}

[data-theme="dark"] .security-item p {
  color: #94a3b8;
}


/* ============================================
   KOPPELINGEN COLUMNS (shared: techniek + office)
   ============================================ */

.integrations-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.integrations-col {
  background: var(--bg-primary, #fff);
  border: 1px solid var(--color-slate-200, #e2e8f0);
  border-radius: 12px;
  padding: 2rem;
}

.integrations-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-left: 0.875rem;
  color: var(--color-slate-900, #0f172a);
}

.integrations-col.intcol-available h3 {
  border-left: 3px solid #22c55e;
}

.integrations-col.intcol-roadmap h3 {
  border-left: 3px solid #eab308;
}

.integrations-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.integrations-col ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-slate-100, #f1f5f9);
  font-size: 0.9375rem;
  color: var(--color-slate-700, #334155);
}

.integrations-col ul li:last-child {
  border-bottom: none;
}

.integrations-col ul li svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .integrations-columns {
    grid-template-columns: 1fr;
  }
}

[data-theme="dark"] .integrations-col {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .integrations-col h3 {
  color: #f1f5f9;
}

[data-theme="dark"] .integrations-col ul li {
  color: #cbd5e1;
  border-bottom-color: #334155;
}


/* --- Transition smoothing for new elements --- */
.world-badge,
.sync-icon,
.phone-screen,
.phone-task-card,
.phone-action-btn,
.phone-module,
.module-modal,
.module-modal-close,
.preview-content,
.preview-sidebar,
.preview-main,
.preview-stat,
.preview-table,
.preview-card,
.vca-card,
.vca-stat,
.desktop-device,
.mini-sidebar,
.mini-main,
.mini-stat,
.mini-table {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
