/* Opiekunka Quiz — wszystkie style prefiksowane .oq- żeby nie kolidowały z motywem */
.oq-root {
  --oq-primary: #0c2340;
  --oq-primary-glow: #1a3a5c;
  --oq-gold: #c9a84c;
  --oq-gold-soft: #fdf6e3;
  --oq-accent: #c9a84c;
  --oq-accent-deep: #8b7424;
  --oq-fg: #1a1a1a;
  --oq-muted: #6b7280;
  --oq-card: #ffffff;
  --oq-border: #e5e7eb;
  --oq-bg: #fafaf7;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--oq-fg);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}
.oq-root *,
.oq-root *::before,
.oq-root *::after { box-sizing: border-box; }
.oq-hidden { display: none !important; }
.oq-muted { color: var(--oq-muted); font-weight: normal; }

.oq-card {
  background: var(--oq-card);
  border: 1px solid var(--oq-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
}

.oq-progress-wrap { padding: 20px 24px 0; }
.oq-progress-labels {
  display: flex; justify-content: space-between;
  font-size: 12px; font-weight: 600; color: var(--oq-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.oq-progress-labels span:last-child { color: var(--oq-accent-deep); }
.oq-progress-track { height: 6px; background: #f3f4f6; border-radius: 9999px; overflow: hidden; }
.oq-progress-bar { height: 100%; background: var(--oq-gold); width: 0%; transition: width 0.5s ease; border-radius: 9999px; }

.oq-body { padding: 24px; }
@media (min-width: 640px) { .oq-body { padding: 32px; } }

.oq-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px; border-radius: 9999px;
  background: var(--oq-gold-soft); color: var(--oq-accent-deep);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.oq-q-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; line-height: 1.25;
  color: var(--oq-fg); margin: 0 0 8px;
}
@media (min-width: 640px) { .oq-q-title { font-size: 26px; } }
.oq-q-hint { font-size: 14px; color: var(--oq-muted); margin: 0 0 16px; }

.oq-options { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.oq-option {
  width: 100%; text-align: left; cursor: pointer;
  padding: 14px 16px; border-radius: 12px;
  border: 2px solid var(--oq-border); background: var(--oq-card);
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--oq-fg); font-family: inherit;
  transition: all 0.15s ease;
}
.oq-option:hover { border-color: rgba(201, 168, 76, 0.5); background: rgba(253, 246, 227, 0.4); }
.oq-option.oq-selected { border-color: var(--oq-accent); background: var(--oq-gold-soft); }
.oq-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid #d1d5db; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.oq-option.oq-selected .oq-radio { border-color: var(--oq-accent); background: var(--oq-accent); }
.oq-option.oq-selected .oq-radio::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: white;
}

.oq-back {
  margin-top: 20px; background: none; border: none; cursor: pointer;
  color: var(--oq-muted); font-size: 14px; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px; padding: 0;
}
.oq-back:hover { color: var(--oq-primary); }

/* RESULT */
.oq-tier-box {
  border-radius: 16px; border: 2px solid var(--oq-border);
  padding: 20px; margin-bottom: 20px; background: var(--oq-bg);
}
.oq-tier-box.oq-vip { background: var(--oq-gold-soft); border-color: var(--oq-accent); }
.oq-tier-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.oq-tier-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--oq-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--oq-gold);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.oq-tier-score { font-size: 11px; font-weight: 700; color: var(--oq-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.oq-tier-label { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--oq-gold); }
.oq-tier-box.oq-vip .oq-tier-label { color: var(--oq-gold); }
.oq-tier-headline { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin: 0 0 8px; line-height: 1.25; }
.oq-tier-summary { font-size: 15px; color: var(--oq-muted); margin: 0; }

.oq-mail-intro { font-size: 14px; font-weight: 600; color: var(--oq-primary); margin: 0 0 12px; }
.oq-mail-list { list-style: none; padding: 0; margin: 0 0 20px; }
.oq-mail-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; padding: 4px 0; color: var(--oq-fg);
}
.oq-mail-list li::before { content: '✓'; color: var(--oq-accent-deep); font-weight: bold; flex-shrink: 0; }

.oq-form { display: flex; flex-direction: column; gap: 12px; }
.oq-field { display: flex; flex-direction: column; gap: 6px; }
.oq-field label { font-size: 14px; font-weight: 600; color: var(--oq-fg); }
.oq-field input {
  height: 44px; padding: 0 14px; font-size: 15px;
  border: 1px solid var(--oq-border); border-radius: 8px;
  background: var(--oq-card); color: var(--oq-fg); font-family: inherit;
  width: 100%;
}
.oq-field input:focus { outline: none; border-color: var(--oq-accent); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2); }
.oq-error { font-size: 12px; color: #dc2626; margin: 0; min-height: 14px; }

.oq-btn-gold {
  margin-top: 8px; height: 56px; padding: 0 24px;
  border: none; border-radius: 12px; cursor: pointer;
  background: var(--oq-gold); color: var(--oq-primary);
  font-family: inherit; font-weight: 700; font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
  transition: transform 0.15s ease;
}
.oq-btn-gold:hover { transform: scale(1.02); }
.oq-btn-gold:active { transform: scale(0.99); }
.oq-btn-gold:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.oq-disclaimer { font-size: 11px; color: var(--oq-muted); text-align: center; margin: 0; }

.oq-thanks { text-align: center; padding: 24px 0; }
.oq-check-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--oq-gold);
  color: var(--oq-primary); font-size: 32px; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}
.oq-thanks h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin: 0 0 12px; }
.oq-thanks p { color: var(--oq-muted); margin: 0; }
