:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-accent: #0ea5e9;
  --color-dark: #0f172a;
  --color-text: #334155;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-bg: #f8fafc;
  --color-white: #ffffff;
  --color-success: #059669;
  --color-orange: #ea580c;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-dark);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.25rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--color-border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: white;
}

.btn-outline {
  background: white;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.1), transparent 35%),
    var(--color-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: var(--color-dark);
  margin: 0 0 1rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin: 0 0 1.75rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-card-title {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero-card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-card-dot.red { background: #ef4444; }
.hero-card-dot.yellow { background: #eab308; }
.hero-card-dot.green { background: #22c55e; }

.hero-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-module {
  padding: 0.85rem;
  border-radius: 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
}

.hero-module span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-dark);
  margin: 0 0 0.75rem;
}

.section-header p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-alt {
  background: white;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-icon.blue { background: #dbeafe; }
.feature-icon.green { background: #d1fae5; }
.feature-icon.orange { background: #ffedd5; }
.feature-icon.purple { background: #ede9fe; }
.feature-icon.cyan { background: #cffafe; }
.feature-icon.pink { background: #fce7f3; }

.feature-card h3 {
  margin: 0 0 0.5rem;
  color: var(--color-dark);
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.feature-card a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-item span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 100%;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  margin: 0 0 0.5rem;
  color: var(--color-dark);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 1rem 0 0.25rem;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-muted);
}

.pricing-card .desc {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.pricing-card > .btn {
  margin-top: auto;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text);
}

.pricing-features li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Page hero (subpages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: white;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-dark);
}

.page-hero p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 640px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

/* Content layout */
.content-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.sidebar h3 {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar nav a {
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 0.925rem;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.prose {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
}

.prose h2 {
  color: var(--color-dark);
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  color: var(--color-dark);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.prose p,
.prose li {
  color: var(--color-text);
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.tip-box {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.tip-box strong {
  color: var(--color-primary-dark);
}

/* Handleiding screenshots uit de CRM-app */
.guide-screenshot {
  margin: 1.5rem 0 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8fafc;
  box-shadow: var(--shadow-sm);
}

.guide-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--color-border);
}

.guide-screenshot figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  text-align: center;
}

.guide-screenshot-missing {
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.guide-screenshot-missing code {
  font-size: 0.85em;
}

/* Guide cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.guide-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.guide-card h3 {
  margin: 0 0 0.5rem;
  color: var(--color-dark);
}

.guide-card p {
  margin: 0;
  color: var(--color-muted);
  flex: 1;
  font-size: 0.95rem;
}

.guide-card .btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-values {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg);
  border-radius: var(--radius);
}

.value-item strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}

.value-item p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--color-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.contact-item strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  color: var(--color-muted);
}

.contact-form {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-section-title {
  margin: 1.75rem 0 1rem;
  font-size: 1.05rem;
  color: var(--color-dark);
}

.form-section-title:first-child {
  margin-top: 0;
}

.form-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.trial-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .form-row-two {
    grid-template-columns: 1fr;
  }
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.cta-banner p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--color-primary);
}

.cta-banner .btn-primary:hover {
  background: var(--color-bg);
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: #94a3b8;
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.925rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: white;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #94a3b8;
  font-size: 0.925rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar {
    position: static;
  }

  .saas-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-module-grid {
    grid-template-columns: 1fr;
  }

  .saas-product-grid {
    grid-template-columns: 1fr;
  }
}

/* SaaS product portfolio */
.saas-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.saas-product-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 0;
}

button.saas-product-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

button.saas-product-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.saas-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.saas-product-card.coming-soon {
  opacity: 0.85;
  border-style: dashed;
}

.saas-product-card.coming-soon:hover {
  transform: none;
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.status-live {
  background: #d1fae5;
  color: #065f46;
}

.status-soon {
  background: #f1f5f9;
  color: #64748b;
}

.status-dev {
  background: #fef3c7;
  color: #92400e;
}

.saas-product-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.saas-product-icon.blue { background: #dbeafe; }
.saas-product-icon.purple { background: #ede9fe; }
.saas-product-icon.green { background: #d1fae5; }

.saas-product-card h3 {
  margin: 0 0 0.35rem;
  color: var(--color-dark);
  font-size: 1.1rem;
}

.saas-product-card .product-tagline {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  flex: 1;
}

.saas-product-card .product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.saas-product-card .product-features li {
  padding: 0.2rem 0;
  font-size: 0.8rem;
  color: var(--color-text);
}

.saas-product-card .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.saas-product-card .btn {
  font-size: 0.85rem;
  padding: 0.5rem 0.85rem;
}

.saas-product-card .product-features li::before {
  content: "•";
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 0.5rem;
}

.product-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.pricing-product-block {
  margin-bottom: 3.5rem;
}

.pricing-product-block:last-child {
  margin-bottom: 0;
}

.pricing-product-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-product-header h2 {
  margin: 0;
  color: var(--color-dark);
  font-size: 1.5rem;
}

.hero-product-list {
  display: grid;
  gap: 0.75rem;
}

.hero-product-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.hero-product-link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-product-link:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hero-product-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.hero-product-item-muted {
  opacity: 0.85;
}

.hero-product-icon {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  margin: 0;
  flex-shrink: 0;
}

.hero-product-item strong {
  display: block;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.hero-product-item span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Handleidingen: app selectie */
.guide-app-select {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.guide-app-select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.guide-list-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.guide-list-panel[hidden] {
  display: none !important;
}

#guide-app-picker.is-hidden,
#pricing-product-picker.is-hidden {
  display: none;
}
