/* /compute/ — page-specific styles extending quantum.css
   Language-neutral: used by both /compute/ (NL) and /en/compute/ (EN). */

/* Section padding rhythm — consistent with homepage */
.compute-section {
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .compute-section { padding: 7rem 2rem; }
}

/* Sector / feature cards used in proof + pain sections */
.compute-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,216,232,0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.compute-card:hover {
  border-color: rgba(8,145,178,0.35);
  transform: translateY(-2px);
}
.compute-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(8,145,178,0.12);
  color: #06D6A0;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

/* Pricing tier cards */
.pricing-tier {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,216,232,0.10);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  min-height: 100%;
}
.pricing-tier--featured {
  border-color: #0891B2;
  box-shadow: 0 0 0 2px rgba(8,145,178,0.28), 0 30px 60px -30px rgba(8,145,178,0.35);
  transform: translateY(-4px);
}
.pricing-tier__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.25rem;
  color: #fff;
  margin: 0.5rem 0;
}
.pricing-tier__price small {
  font-size: 1rem; color: rgba(200,216,232,0.5);
}
.pricing-tier ul { list-style: none; padding: 0; margin: 1.25rem 0; }
.pricing-tier li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  color: rgba(200,216,232,0.75);
  font-size: 0.92rem;
  padding: 0.4rem 0;
}
.pricing-tier li svg { color: #06D6A0; flex-shrink: 0; margin-top: 3px; }

/* Wizard */
.wizard-shell {
  max-width: 760px; margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,216,232,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .wizard-shell { padding: 2.5rem; }
}
.wizard-progress {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.12em;
  color: rgba(200,216,232,0.55);
  margin-bottom: 1.75rem;
}
.wizard-progress__bar {
  flex: 1; height: 3px; background: rgba(200,216,232,0.08);
  border-radius: 2px; overflow: hidden;
}
.wizard-progress__fill {
  height: 100%; background: linear-gradient(90deg, #0891B2, #06D6A0);
  transition: width 0.35s ease;
}
.wizard-step {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wizard-step.leaving { opacity: 0; transform: translateY(-8px); }
.wizard-step.entering { opacity: 0; transform: translateY(8px); }

.wizard-options {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .wizard-options { grid-template-columns: 1fr 1fr; }
}
.wizard-option {
  display: flex; gap: 0.8rem; align-items: center;
  padding: 1rem 1.1rem;
  min-height: 56px;
  background: rgba(200,216,232,0.03);
  border: 1px solid rgba(200,216,232,0.10);
  border-radius: 10px;
  color: #C8D8E8;
  text-align: left;
  font-family: inherit; font-size: 0.96rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  width: 100%;
}
.wizard-option:hover,
.wizard-option:focus-visible {
  border-color: rgba(8,145,178,0.55);
  background: rgba(8,145,178,0.08);
  outline: none;
}
.wizard-option[aria-pressed="true"] {
  border-color: #0891B2;
  background: rgba(8,145,178,0.14);
  color: #fff;
}
.wizard-option__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #06D6A0;
}

.wizard-actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; margin-top: 1.5rem;
}

.wizard-result {
  background: rgba(8,145,178,0.06);
  border: 1px solid rgba(8,145,178,0.25);
  border-radius: 12px;
  padding: 1.75rem;
  color: #C8D8E8;
}
.wizard-result__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,216,232,0.55);
  margin-bottom: 0.35rem;
}
.wizard-result__value {
  color: #fff; font-weight: 600; margin-bottom: 1rem;
}
.wizard-result__cost {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem; color: #06D6A0;
}

/* Result intro — "Op basis van je antwoorden:" */
.wizard-result__intro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.25rem 0;
}

/* Result table — uses dt/dd inside .wizard-result__row for label/value pairs */
.wizard-result__table {
  margin: 0 0 1.25rem 0;
}
.wizard-result__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(200,216,232,0.08);
}
.wizard-result__row:last-child {
  border-bottom: 0;
}
.wizard-result__row dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,216,232,0.6);
  margin: 0;
}
.wizard-result__row dd {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}
/* Highlight the cost row value (the one with the € range) */
.wizard-result__row:last-child dd {
  color: #06D6A0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.35rem;
}

/* Model description paragraph */
.wizard-result__model-desc {
  color: rgba(200,216,232,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

/* Expectation line — italic, slightly softer */
.wizard-result__expectation {
  color: rgba(200,216,232,0.7);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0 0 0.75rem 0;
}

/* Optional disclaimer paragraph */
.wizard-result__disclaimer {
  color: rgba(200,216,232,0.7);
  font-size: 0.875rem;
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}

/* Success screen — shown after a successful lead submit */
.wizard-success {
  text-align: center;
}
.wizard-success__card {
  background: rgba(8,145,178,0.08);
  border: 1px solid rgba(8,145,178,0.3);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  color: #C8D8E8;
}
.wizard-success__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #06D6A0;
  margin: 0 0 0.5rem 0;
}
.wizard-success__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}
.wizard-success__body {
  color: rgba(200,216,232,0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}
.wizard-success__sub {
  color: rgba(200,216,232,0.65);
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}

/* Option-step heading + help text (visible on dark wizard bg) */
.wizard-step__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}
.wizard-step__help {
  color: rgba(200,216,232,0.7);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1rem 0;
}

/* Wizard action buttons (Next / Back / Change answer) */
.wizard-next {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  background: #0891B2;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.wizard-next:hover { background: #06D6A0; }
.wizard-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.wizard-back {
  padding: 0.75rem 0.5rem;
  background: transparent;
  color: rgba(200,216,232,0.75);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.wizard-back:hover { color: #fff; }

.lead-form {
  margin-top: 1.75rem;
  display: grid; gap: 0.9rem;
}
.lead-form input {
  padding: 0.85rem 1rem;
  background: rgba(7,15,28,0.55);
  border: 1px solid rgba(200,216,232,0.14);
  border-radius: 8px;
  color: #fff;
  font-family: inherit; font-size: 0.95rem;
  width: 100%;
}
.lead-form input:focus {
  border-color: #0891B2; outline: none;
  box-shadow: 0 0 0 3px rgba(8,145,178,0.18);
}
.lead-form label {
  display: block;
  color: rgba(200,216,232,0.75);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.lead-form__honeypot {
  position: absolute; left: -9999px; top: -9999px;
  height: 0; width: 0; opacity: 0;
}

/* Trust pillars */
.trust-pillar {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,216,232,0.08);
  border-radius: 12px;
}
.trust-pillar__icon {
  width: 40px; height: 40px;
  color: #06D6A0;
}
