/* ── QTable Registratie — Styles ───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #0a0a0f;
  --paper:  #f0f2f7;
  --cream:  #e4e8f2;
  --accent: #2278e8;
  --accent2: #4c9bff;
  --muted:  #7a82a0;
  --border: #c8cfe0;
  --success: #1ea87a;
  --error:   #e03040;
  --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* ── LEFT PANEL ─────────────────────────────── */
.panel-left {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.panel-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 10% 90%, rgba(34,120,232,0.22) 0%, transparent 65%),
              radial-gradient(ellipse 60% 50% at 90% 5%, rgba(76,155,255,0.13) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 50% 50%, rgba(60,70,100,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.panel-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.brand { position: relative; z-index: 1; }

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2278e8, #4c9bff);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.brand-tagline {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 2.4rem;
}

.hero-text {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0;
}

.hero-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent2);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent2);
}

.hero-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 1.6rem;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent2);
}

.hero-body {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  max-width: 380px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius);
  background: rgba(245,240,232,0.04);
  animation: fadeSlideIn 0.6s ease both;
}

.feature-item:nth-child(1) { animation-delay: 0.7s; }
.feature-item:nth-child(2) { animation-delay: 0.85s; }
.feature-item:nth-child(3) { animation-delay: 1s; }

.feature-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

.feature-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.01em;
  margin-bottom: 0.15rem;
}

.feature-desc {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.5;
}

.left-footer {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.5rem;
}

.left-footer a {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.left-footer a:hover { color: var(--accent2); }

/* ── RIGHT PANEL ─────────────────────────────── */
.panel-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2.5rem 3rem;
  background: var(--paper);
  overflow-y: auto;
  min-height: 0;
}

.form-container {
  width: 100%;
  max-width: 420px;
  animation: fadeSlideIn 0.5s ease 0.2s both;
}

.form-header { margin-bottom: 2.4rem; }

.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
}

.step-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

.step-dot.done { background: var(--success); }

.form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.field-label .optional {
  font-weight: 300;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
  margin-left: 0.3rem;
}

.input-wrap { position: relative; }

.input-wrap .prefix,
.input-wrap .suffix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem;
  color: var(--muted);
  pointer-events: none;
  white-space: nowrap;
}

.input-wrap .prefix { left: 0.9rem; }
.input-wrap .suffix { right: 0.9rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.72rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34,120,232,0.12);
}

input.has-prefix { padding-left: 2.1rem; }
input.has-suffix { padding-right: 7rem; }

input.valid { border-color: var(--success) !important; }
input.invalid { border-color: var(--error) !important; }

.field-hint {
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.4;
}

.field-error {
  font-size: 0.73rem;
  color: var(--error);
  line-height: 1.4;
  display: none;
}

.field-error.visible { display: block; }

.availability {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.73rem;
  margin-top: 0.1rem;
  height: 1rem;
  transition: opacity 0.2s;
}

.availability .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.availability.checking .dot { background: var(--muted); animation: pulse 1s infinite; }
.availability.available .dot { background: var(--success); }
.availability.unavailable .dot { background: var(--error); }
.availability.checking span { color: var(--muted); }
.availability.available span { color: var(--success); }
.availability.unavailable span { color: var(--error); }

.password-strength {
  display: flex;
  gap: 3px;
  margin-top: 0.3rem;
}

.strength-bar {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  transition: background 0.3s;
}

.strength-bar.weak   { background: var(--error); }
.strength-bar.medium { background: #e6a817; }
.strength-bar.strong { background: var(--success); }

.strength-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.plan-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream);
  position: relative;
  user-select: none;
}

.plan-card:hover { border-color: var(--accent); }

.plan-card.selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, #0a0a0f, #152040);
  color: #fff;
}

.plan-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-name {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.plan-price {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.plan-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  opacity: 0.6;
}

.plan-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.gdpr-checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #1a62cc, #2278e8);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #155bc0, #1e6fd9);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,120,232,0.35);
}

.btn-submit:active { transform: translateY(0); }

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-arrow { transition: transform 0.2s; }

.btn-submit:hover .btn-arrow {
  transform: translateX(3px);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(245,240,232,0.3);
  border-top-color: var(--paper);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}

.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text, .btn-submit.loading .btn-arrow { display: none; }

.form-footer {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.form-footer a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  animation: fadeSlideIn 0.5s ease both;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a62cc, #2278e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34,120,232,0.35);
}

.success-title {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.success-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 340px;
}

.domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1a62cc, #2278e8);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(34,120,232,0.3);
}

.progress-steps {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--cream);
  animation: fadeSlideIn 0.4s ease both;
}

.progress-step:nth-child(1) { animation-delay: 0.1s; }
.progress-step:nth-child(2) { animation-delay: 0.3s; }
.progress-step:nth-child(3) { animation-delay: 0.5s; }
.progress-step:nth-child(4) { animation-delay: 0.7s; }

.progress-step .step-icon {
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.step-status {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
}

.progress-step.pending { opacity: 0.5; }
.progress-step.running { border-color: var(--accent); background: rgba(34,120,232,0.06); }
.progress-step.done    { border-color: var(--success); }
.progress-step.done .step-status { color: var(--success); }
.progress-step.running .step-status { color: var(--accent); }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.field-group {
  animation: fadeSlideIn 0.5s ease both;
}

.field-group:nth-child(1) { animation-delay: 0.3s; }
.field-group:nth-child(2) { animation-delay: 0.35s; }
.field-group:nth-child(3) { animation-delay: 0.4s; }
.field-group:nth-child(4) { animation-delay: 0.45s; }
.field-group:nth-child(5) { animation-delay: 0.5s; }
.field-group:nth-child(6) { animation-delay: 0.55s; }
.field-group:nth-child(7) { animation-delay: 0.6s; }
.field-group:nth-child(8) { animation-delay: 0.65s; }
.field-group:nth-child(9) { animation-delay: 0.7s; }
.field-group:nth-child(10) { animation-delay: 0.75s; }
.field-group:nth-child(11) { animation-delay: 0.8s; }

@media (max-width: 780px) {
  body {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    overflow: auto;
    height: auto;
    min-height: 100vh;
  }

  .panel-left {
    padding: 2rem;
    min-height: auto;
  }

  .hero-text { padding: 2rem 0; }

  .features { display: none; }

  .panel-right {
    padding: 2rem 1.5rem;
    align-items: stretch;
  }

  .form-container { max-width: 100%; }
}

/* ── Compare link & modal ──────────────────────────────────────────────────── */
.compare-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
.compare-link:hover { opacity: 0.7; }

.plan-tagline {
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.3;
}
.plan-card.selected .plan-tagline { color: rgba(240,242,247,0.5); }

.plan-preview {
  margin-top: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  min-height: 2.4rem;
  transition: all 0.25s;
}
.pp-chip {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--ink);
  font-weight: 400;
}
.pp-chip svg { flex-shrink: 0; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--paper);
  border-radius: 6px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(10,10,15,0.4);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.8rem 2rem 1.2rem;
  position: sticky;
  top: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  z-index: 2;
}

.modal-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.modal-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.modal-close {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }

.modal-plans-header {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 0;
  padding: 1.5rem 2rem 0;
  align-items: end;
}

.mph-label { }

.mph-plan {
  padding: 1.2rem 1rem 1.2rem;
  text-align: center;
  border-radius: 4px 4px 0 0;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-bottom: none;
  margin: 0 3px;
  position: relative;
}

.mph-highlighted {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  margin-top: -0.5rem;
  padding-top: 1.4rem;
}

.mph-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.mph-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  color: inherit;
}
.mph-highlighted .mph-name { color: rgba(240,242,247,0.7); }

.mph-price {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: inherit;
}
.mph-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  opacity: 0.6;
}

.mph-desc {
  font-size: 0.72rem;
  line-height: 1.4;
  margin: 0.4rem 0 0.9rem;
  opacity: 0.55;
}

.mph-btn {
  width: 100%;
  padding: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink);
}
.mph-btn:hover { border-color: var(--ink); }
.mph-btn-primary {
  background: linear-gradient(135deg, #1a62cc, #2278e8);
  border-color: transparent;
  color: #fff;
}
.mph-btn-primary:hover {
  background: linear-gradient(135deg, #155bc0, #1e6fd9);
  box-shadow: 0 4px 12px rgba(34,120,232,0.3);
}

.compare-table {
  padding: 0 2rem 2rem;
}

.ct-section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 1.2rem 0 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.ct-section-header:first-child { border-top: none; margin-top: 0; }

.ct-row {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(200,207,224,0.5);
}
.ct-row:last-child { border-bottom: none; }

.ct-label {
  font-size: 0.8rem;
  color: var(--ink);
  padding: 0.65rem 0;
  line-height: 1.3;
}

.ct-val {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-left: 1.5px solid var(--border);
  background: var(--cream);
}

.ct-row .ct-val:nth-child(3) {
  background: rgba(34,120,232,0.05);
  border-left-color: rgba(34,120,232,0.2);
}

.ct-val.ct-yes { color: var(--success); }
.ct-val.ct-no  { color: var(--border); }
.ct-val.ct-hl  { color: var(--accent); font-weight: 600; }

@media (max-width: 640px) {
  .modal-plans-header,
  .ct-row {
    grid-template-columns: 120px repeat(3, 1fr);
  }
  .ct-label { font-size: 0.72rem; }
  .ct-val   { font-size: 0.7rem; padding: 0.5rem 0.25rem; }
  .modal-box { max-height: 95vh; }
}
