/*
 * Metech Keuzehulp — styling
 * Fase 3 build. Mobile-first. Brand: Fira Sans / Open Sans, #0D93D2 + #61CE70.
 */

:root {
  --mk-blue: #0D93D2;
  --mk-blue-dark: #0a76a8;
  --mk-green: #61CE70;
  --mk-green-dark: #4aa85a;
  --mk-orange: #FFA500;
  --mk-text: #1f2a37;
  --mk-text-muted: #5b6675;
  --mk-border: #e2e6ea;
  --mk-bg: #ffffff;
  --mk-bg-soft: #f6f8fa;
  --mk-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --mk-shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.12);
  --mk-bezel: 0 0 0 1px rgba(13, 147, 210, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px -6px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  --mk-bezel-hover: 0 0 0 1px rgba(13, 147, 210, 0.12), 0 2px 4px rgba(0, 0, 0, 0.04), 0 18px 40px -8px rgba(13, 147, 210, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --mk-radius: 14px;
  --mk-radius-sm: 8px;
  --mk-focus: 0 0 0 3px rgba(13, 147, 210, 0.35);
  --mk-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mk-ease-fast: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Landingspagina wrapper ---------- */

.metech-kh-landing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Open Sans", -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--mk-text);
  line-height: 1.6;
}

.metech-kh-landing h1,
.metech-kh-landing h2,
.metech-kh-landing h3 {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-weight: 700;
  color: var(--mk-text);
  line-height: 1.2;
}

/* Hero */
.metech-kh-hero {
  padding: 72px 0 56px;
  text-align: center;
}
.metech-kh-hero h1 { font-size: 32px; margin: 0 0 16px; }
.metech-kh-hero p.subhead { font-size: 18px; color: var(--mk-text-muted); max-width: 680px; margin: 0 auto 28px; }
.metech-kh-hero .metech-kh-hero-secondary { font-size: 15px; color: var(--mk-text-muted); margin-top: 18px; }
.metech-kh-hero .metech-kh-hero-secondary a { color: var(--mk-blue); text-decoration: none; font-weight: 600; }
.metech-kh-hero .metech-kh-hero-secondary a:hover { text-decoration: underline; }

/* Trust micro-line direct onder CTA */
.metech-kh-trust-micro {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--mk-text-muted);
  font-weight: 500;
}
.metech-kh-trust-micro span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.metech-kh-trust-micro span::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(97, 206, 112, 0.18);
  background-image: radial-gradient(circle, var(--mk-green) 30%, transparent 32%);
  flex-shrink: 0;
}

/* Intro */
.metech-kh-intro { padding: 32px 0; }
.metech-kh-intro h2 { font-size: 26px; margin: 0 0 16px; }
.metech-kh-intro p { margin-bottom: 16px; color: var(--mk-text); }

/* Voordelen grid */
.metech-kh-benefits {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.metech-kh-benefit {
  background: var(--mk-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--mk-radius);
  padding: 24px;
  box-shadow: var(--mk-bezel);
  transition: transform 0.4s var(--mk-ease), box-shadow 0.4s var(--mk-ease);
}
.metech-kh-benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--mk-bezel-hover);
}
.metech-kh-benefit .icon {
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13, 147, 210, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.metech-kh-benefit h3 { font-size: 17px; margin: 0 0 8px; }
.metech-kh-benefit p { margin: 0; color: var(--mk-text-muted); font-size: 15px; }

/* Trust strip */
.metech-kh-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 24px 0;
  justify-content: center;
  font-size: 15px;
  color: var(--mk-text);
}
.metech-kh-trust span::before { content: "✅ "; }

/* Social proof */
.metech-kh-social { padding: 40px 0; text-align: center; }
.metech-kh-social h2 { font-size: 22px; margin-bottom: 20px; }
.metech-kh-social .logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  opacity: 0.75;
  margin-bottom: 24px;
  min-height: 60px;
  align-items: center;
  color: var(--mk-text-muted);
  font-style: italic;
}
.metech-kh-social blockquote {
  max-width: 680px;
  margin: 24px auto 0;
  padding: 20px 24px;
  background: var(--mk-bg-soft);
  border-left: 4px solid var(--mk-blue);
  border-radius: var(--mk-radius-sm);
  font-style: italic;
  color: var(--mk-text);
  text-align: left;
}
.metech-kh-social blockquote footer { font-style: normal; color: var(--mk-text-muted); margin-top: 8px; font-size: 14px; }

/* FAQ */
.metech-kh-faq { padding: 40px 0; }
.metech-kh-faq h2 { font-size: 24px; margin-bottom: 20px; text-align: center; }
.metech-kh-faq details {
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-sm);
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: var(--mk-shadow);
}
.metech-kh-faq summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  color: var(--mk-text);
}
.metech-kh-faq summary:hover { color: var(--mk-blue); }
.metech-kh-faq details[open] summary { margin-bottom: 12px; }
.metech-kh-faq details p { margin: 0; color: var(--mk-text-muted); line-height: 1.6; }

/* Bottom CTA */
.metech-kh-bottom-cta {
  background: linear-gradient(135deg, rgba(13, 147, 210, 0.08), rgba(97, 206, 112, 0.08));
  padding: 48px 24px;
  text-align: center;
  border-radius: var(--mk-radius);
  margin: 40px 0;
}
.metech-kh-bottom-cta h2 { font-size: 26px; margin: 0 0 12px; }
.metech-kh-bottom-cta p { font-size: 17px; color: var(--mk-text-muted); max-width: 560px; margin: 0 auto 24px; }

/* ---------- Wizard container ---------- */

.metech-kh-wrapper {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 20px;
  font-family: "Open Sans", -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--mk-text);
}

#metech-keuzehulp-root {
  scroll-margin-top: 24px;
}

/* Intro-card (voordat wizard start) */
.metech-kh-intro-card {
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--mk-shadow);
  margin: 32px 0;
}
.metech-kh-intro-title {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--mk-text);
  margin: 0 0 12px;
  line-height: 1.2;
}
.metech-kh-intro-text { font-size: 17px; margin: 0 0 24px; color: var(--mk-text-muted); line-height: 1.6; }
.metech-kh-intro-trust {
  font-size: 13px;
  color: var(--mk-text-muted);
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}

/* ---------- Wizard ---------- */

.metech-kh-wizard {
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  padding: 24px;
  box-shadow: var(--mk-shadow);
}

.metech-kh-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.metech-kh-progress { flex: 1; }
.metech-kh-progress-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mk-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.metech-kh-progress-bar {
  height: 8px;
  background: var(--mk-bg-soft);
  border-radius: 99px;
  overflow: hidden;
}
.metech-kh-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mk-blue), var(--mk-green));
  transition: width 0.6s var(--mk-ease);
}
.metech-kh-close {
  background: transparent;
  border: 1px solid var(--mk-border);
  color: var(--mk-text-muted);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.25s var(--mk-ease-fast), color 0.25s var(--mk-ease-fast), border-color 0.25s var(--mk-ease-fast);
}
.metech-kh-close:hover { background: var(--mk-bg-soft); color: var(--mk-text); }

.metech-kh-step-heading {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--mk-text);
}
.metech-kh-step-sub {
  font-size: 15px;
  color: var(--mk-text-muted);
  margin: 0 0 24px;
}

.metech-kh-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.metech-kh-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px;
  background: var(--mk-bg);
  border: 2px solid var(--mk-border);
  border-radius: var(--mk-radius);
  cursor: pointer;
  transition: transform 0.3s var(--mk-ease), box-shadow 0.3s var(--mk-ease), border-color 0.25s var(--mk-ease-fast), background-color 0.25s var(--mk-ease-fast);
  text-align: left;
  font-family: inherit;
}
.metech-kh-option:hover {
  border-color: var(--mk-blue);
  transform: translateY(-2px);
  box-shadow: var(--mk-bezel);
}
.metech-kh-option.is-selected {
  border-color: var(--mk-blue);
  background: rgba(13, 147, 210, 0.05);
  box-shadow: var(--mk-shadow);
}
.metech-kh-option:focus-visible {
  outline: none;
  box-shadow: var(--mk-focus);
}
.metech-kh-option-icon { font-size: 28px; margin-bottom: 6px; }
.metech-kh-option-title {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--mk-text);
}
.metech-kh-option-subtitle {
  font-size: 13px;
  color: var(--mk-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.metech-kh-option-desc {
  font-size: 14px;
  color: var(--mk-text-muted);
  margin-top: 4px;
}

.metech-kh-tooltip {
  background: var(--mk-bg-soft);
  border-radius: var(--mk-radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
}
.metech-kh-tooltip summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--mk-blue);
}
.metech-kh-tooltip p { margin: 12px 0 0; color: var(--mk-text-muted); line-height: 1.6; }

.metech-kh-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--mk-border);
}

/* ---------- Buttons ---------- */

.metech-kh-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 99px;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s var(--mk-ease), box-shadow 0.25s var(--mk-ease), background-color 0.25s var(--mk-ease-fast), border-color 0.25s var(--mk-ease-fast), color 0.25s var(--mk-ease-fast);
  line-height: 1.2;
  will-change: transform;
}
.metech-kh-btn:hover:not(:disabled) { transform: translateY(-1px); }
.metech-kh-btn:active:not(:disabled) { transform: translateY(0); }
.metech-kh-btn:focus-visible { outline: none; box-shadow: var(--mk-focus); }
.metech-kh-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.metech-kh-btn-primary {
  background: var(--mk-green);
  border-color: var(--mk-green);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 8px 20px -6px rgba(74, 168, 90, 0.45);
}
.metech-kh-btn-primary:hover:not(:disabled) {
  background: var(--mk-green-dark);
  border-color: var(--mk-green-dark);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 14px 28px -6px rgba(74, 168, 90, 0.55);
}

.metech-kh-btn-next {
  background: var(--mk-blue);
  border-color: var(--mk-blue);
  color: #fff;
}
.metech-kh-btn-next:hover:not(:disabled) {
  background: var(--mk-blue-dark);
  border-color: var(--mk-blue-dark);
  color: #fff;
}

.metech-kh-btn-ghost {
  background: transparent;
  color: var(--mk-text-muted);
  border-color: var(--mk-border);
}
.metech-kh-btn-ghost:hover { background: var(--mk-bg-soft); color: var(--mk-text); }

.metech-kh-btn-outline {
  background: #fff;
  color: var(--mk-blue);
  border-color: var(--mk-blue);
}
.metech-kh-btn-outline:hover { background: rgba(13, 147, 210, 0.08); }

.metech-kh-btn-danger {
  background: #fff;
  color: #b4241a;
  border-color: #e2e6ea;
}
.metech-kh-btn-danger:hover { background: #fef2f1; border-color: #b4241a; }

.metech-kh-btn-link {
  background: transparent;
  border: none;
  color: var(--mk-blue);
  padding: 8px 0;
  text-decoration: underline;
}

.metech-kh-btn-large { padding: 16px 32px; font-size: 17px; }

/* ---------- Loading ---------- */

.metech-kh-loading {
  text-align: center;
  padding: 60px 20px;
}
.metech-kh-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border: 4px solid var(--mk-bg-soft);
  border-top-color: var(--mk-blue);
  border-radius: 50%;
  animation: metech-kh-spin 0.9s linear infinite;
}
@keyframes metech-kh-spin { to { transform: rotate(360deg); } }
.metech-kh-loading-title {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--mk-text);
}
.metech-kh-loading-msg { color: var(--mk-text-muted); font-size: 15px; }

/* ---------- Results ---------- */

.metech-kh-results { padding-top: 8px; }
.metech-kh-results-title {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-size: 28px;
  margin: 0 0 8px;
}
.metech-kh-results-sub {
  font-size: 16px;
  color: var(--mk-text-muted);
  margin: 0 0 28px;
  max-width: 680px;
}
.metech-kh-category-heading {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-size: 19px;
  margin: 32px 0 16px;
  color: var(--mk-text);
}

.metech-kh-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.metech-kh-card {
  background: var(--mk-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--mk-radius);
  overflow: hidden;
  box-shadow: var(--mk-bezel);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--mk-ease), box-shadow 0.4s var(--mk-ease), border-color 0.3s var(--mk-ease-fast);
  will-change: transform;
}
.metech-kh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mk-bezel-hover);
}
.metech-kh-card.is-meijer { border-color: var(--mk-blue); }
.metech-kh-card.is-warning { border-color: var(--mk-orange); }

.metech-kh-card-media {
  position: relative;
  background: #ffffff;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.metech-kh-card-image-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.metech-kh-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 24px 8px 8px;
  box-sizing: border-box;
}
.metech-kh-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 147, 210, 0.15), rgba(13, 147, 210, 0.05));
  color: var(--mk-blue);
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
}
.metech-kh-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}
.metech-kh-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}
.metech-kh-badge-meijer { background: var(--mk-blue); }
.metech-kh-badge-nieuw { background: var(--mk-green); }
.metech-kh-badge-occasion { background: var(--mk-orange); }

.metech-kh-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--mk-blue);
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: var(--mk-radius-sm);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  z-index: 2;
}

.metech-kh-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.metech-kh-card-title {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-size: 18px;
  margin: 0;
  color: var(--mk-text);
  line-height: 1.3;
}
.metech-kh-card-sub {
  font-size: 13px;
  color: var(--mk-text-muted);
  margin: -8px 0 0;
}

.metech-kh-card-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--mk-border);
  border-bottom: 1px solid var(--mk-border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metech-kh-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.metech-kh-spec-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.metech-kh-spec-label { flex: 1; color: var(--mk-text-muted); }
.metech-kh-spec-value { font-weight: 700; color: var(--mk-text); }

.metech-kh-why {
  font-size: 14px;
  color: var(--mk-text);
  line-height: 1.5;
  background: var(--mk-bg-soft);
  padding: 10px 14px;
  border-radius: var(--mk-radius-sm);
}


.metech-kh-card-warning {
  font-size: 13px;
  color: #b56a00;
  background: #fff7e6;
  padding: 8px 12px;
  border-radius: var(--mk-radius-sm);
  margin: 0;
}

.metech-kh-card-cta {
  margin-top: auto;
  display: block;
  text-align: center;
}

/* Results: below-cards blocks */
.metech-kh-limited-block,
.metech-kh-nopositive-block,
.metech-kh-footer-block {
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  padding: 28px;
  margin-top: 24px;
  box-shadow: var(--mk-shadow);
}
.metech-kh-limited-block h3,
.metech-kh-nopositive-block h3,
.metech-kh-footer-block h3 {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-size: 20px;
  margin: 0 0 12px;
}
.metech-kh-limited-block p,
.metech-kh-nopositive-block p,
.metech-kh-footer-block p {
  margin: 0 0 20px;
  color: var(--mk-text-muted);
  line-height: 1.6;
}
.metech-kh-limited-block { border-left: 4px solid var(--mk-orange); }
.metech-kh-nopositive-block { border-left: 4px solid var(--mk-orange); }
.metech-kh-footer-block {
  background: linear-gradient(135deg, rgba(13, 147, 210, 0.05), rgba(97, 206, 112, 0.05));
  display: flex;
  align-items: flex-end;
  gap: 28px;
}
.metech-kh-footer-photo {
  width: 180px;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: flex-end;
  display: block;
}
.metech-kh-footer-content {
  flex: 1;
  min-width: 0;
}
.metech-kh-footer-block h3 { margin-top: 0; }
.metech-kh-footer-block p:last-of-type { margin-bottom: 0; }

.metech-kh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.metech-kh-phone-line {
  font-size: 14px;
  color: var(--mk-text-muted);
  margin-top: 16px !important;
}
.metech-kh-phone-link { color: var(--mk-blue); font-weight: 700; text-decoration: none; }
.metech-kh-phone-link:hover { text-decoration: underline; }
.metech-kh-restart { display: block; margin-top: 20px; }

@media (max-width: 640px) {
  .metech-kh-footer-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .metech-kh-footer-photo {
    width: 140px;
    max-height: 200px;
    align-self: center;
  }
  .metech-kh-footer-content .metech-kh-actions {
    justify-content: center;
  }
}

/* ---------- Fallback states ---------- */

.metech-kh-fallback {
  padding: 56px 32px;
  text-align: center;
  background: var(--mk-bg);
  border-radius: var(--mk-radius);
}
.metech-kh-fallback h3 {
  font-family: "Fira Sans", "Open Sans", Arial, sans-serif;
  font-size: 24px;
  margin: 0 0 12px;
}
.metech-kh-fallback p {
  color: var(--mk-text-muted);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.metech-kh-fallback .metech-kh-actions { justify-content: center; }
.metech-kh-hours {
  font-size: 13px !important;
  margin-top: 20px !important;
  color: var(--mk-text-muted) !important;
}
.metech-kh-note {
  font-size: 13px !important;
  color: var(--mk-text-muted) !important;
  margin-top: 20px !important;
}
.metech-kh-fallback-error h3 { color: #b4241a; }

/* ---------- Modal ---------- */

.metech-kh-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.metech-kh-modal {
  background: var(--mk-bg);
  border-radius: var(--mk-radius);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--mk-shadow-lg);
}
.metech-kh-modal h3 { font-family: "Fira Sans", "Open Sans", Arial, sans-serif; font-size: 20px; margin: 0 0 12px; }
.metech-kh-modal p { color: var(--mk-text-muted); margin: 0 0 24px; line-height: 1.6; }
.metech-kh-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .metech-kh-options { grid-template-columns: repeat(3, 1fr); }
  .metech-kh-benefits { grid-template-columns: repeat(2, 1fr); }
  .metech-kh-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .metech-kh-hero { padding: 112px 0 80px; }
  .metech-kh-hero h1 { font-size: 48px; letter-spacing: -0.02em; }
  .metech-kh-hero p.subhead { font-size: 20px; }
  .metech-kh-intro { padding: 64px 0; }
  .metech-kh-intro h2 { font-size: 34px; letter-spacing: -0.01em; }
  .metech-kh-benefits { padding: 64px 0; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .metech-kh-social { padding: 72px 0; }
  .metech-kh-faq { padding: 72px 0; }
  .metech-kh-wizard { padding: 48px; }
  .metech-kh-step-heading { font-size: 28px; }
  .metech-kh-card-grid { grid-template-columns: repeat(3, 1fr); }
  .metech-kh-results-title { font-size: 32px; }
  .metech-kh-bottom-cta { padding: 88px 48px; margin: 64px 0; }
  .metech-kh-bottom-cta h2 { font-size: 34px; letter-spacing: -0.01em; }
}
