/* === ZELFCHECK MODAL === */
.zc-overlay {
  position: fixed; inset: 0;
  background: rgba(12, 22, 44, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: zcFade 0.25s ease;
}
.zc-overlay.open { display: flex; }
@keyframes zcFade { from {opacity:0;} to {opacity:1;} }

.zc-modal {
  background: white;
  border-radius: var(--radius, 16px);
  max-width: 680px; width: 100%;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: zcSlide 0.35s cubic-bezier(.2,.8,.2,1);
}
@keyframes zcSlide { from {transform: translateY(20px); opacity:0;} to {transform:none; opacity:1;} }

.zc-head {
  padding: 24px 32px 20px;
  border-bottom: 1px solid var(--line, #e9e9e4);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
}
.zc-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 500;
  color: var(--navy, #0c162c);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.zc-head .zc-eyebrow {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-magenta, #d4428d); font-weight: 500; margin-bottom: 8px; display:block;
}
.zc-close {
  background: transparent; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 22px; color: var(--ink-soft, #6b6b66);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.zc-close:hover { background: var(--bg-alt, #f7f5f0); }

.zc-progress {
  height: 4px; background: var(--bg-alt, #f7f5f0); overflow: hidden;
}
.zc-progress-bar {
  height: 100%; background: var(--c-magenta, #d4428d);
  transition: width 0.4s cubic-bezier(.2,.8,.2,1);
  border-radius: 0 2px 2px 0;
}

.zc-body {
  padding: 32px; overflow-y: auto; flex: 1;
}
.zc-step-count {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft, #6b6b66); font-weight: 500; margin-bottom: 16px;
}
.zc-question {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 500;
  color: var(--navy, #0c162c);
  line-height: 1.3; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.zc-sub {
  color: var(--ink-soft, #6b6b66); font-size: 15px; line-height: 1.55;
  margin-bottom: 26px;
}

.zc-options { display: grid; gap: 10px; }
.zc-opt {
  text-align: left;
  padding: 18px 20px;
  border: 1px solid var(--line, #e9e9e4);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit; font-size: 15px;
  color: var(--ink, #222);
  line-height: 1.45;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.15s;
}
.zc-opt:hover {
  border-color: var(--c-magenta, #d4428d);
  background: #fffafd;
  transform: translateX(2px);
}
.zc-opt.selected {
  border-color: var(--c-magenta, #d4428d);
  background: #fff2f7;
  box-shadow: inset 0 0 0 1px var(--c-magenta, #d4428d);
}
.zc-opt-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line, #d6d6cd);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: white;
  transition: all 0.15s;
}
.zc-opt.selected .zc-opt-check {
  background: var(--c-magenta, #d4428d);
  border-color: var(--c-magenta, #d4428d);
}
.zc-opt.selected .zc-opt-check::before { content: '✓'; }

.zc-foot {
  padding: 20px 32px;
  border-top: 1px solid var(--line, #e9e9e4);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--bg-alt, #f7f5f0);
}
.zc-btn {
  padding: 12px 22px; border-radius: 100px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; border: none;
  transition: all 0.15s;
}
.zc-btn-back {
  background: transparent; color: var(--ink-soft, #6b6b66);
}
.zc-btn-back:hover:not(:disabled) { color: var(--navy, #0c162c); }
.zc-btn-back:disabled { opacity: 0.3; cursor: default; }
.zc-btn-next {
  background: var(--navy, #0c162c); color: white;
}
.zc-btn-next:hover:not(:disabled) { transform: translateY(-1px); }
.zc-btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* RESULT SCREEN */
.zc-result-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white; margin-bottom: 20px;
  font-family: 'Fraunces', serif;
}
.zc-result-icon.fit { background: var(--c-green, #4ea84a); }
.zc-result-icon.maybe { background: var(--c-orange, #e8834a); }
.zc-result-icon.nofit { background: var(--navy, #0c162c); }
.zc-result-title {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 500; line-height: 1.15;
  color: var(--navy, #0c162c); margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.zc-result-body p {
  color: var(--ink-soft, #6b6b66); font-size: 15px; line-height: 1.7;
  margin-bottom: 14px;
}
.zc-next-steps {
  background: var(--bg-alt, #f7f5f0);
  border-radius: 12px; padding: 20px 22px;
  margin-top: 20px;
}
.zc-next-steps h4 {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy, #0c162c); font-weight: 500; margin-bottom: 12px;
}
.zc-next-steps ol {
  padding-left: 20px; color: var(--ink, #222); font-size: 14px; line-height: 1.7;
}
.zc-result-actions {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px;
}
.zc-result-actions a, .zc-result-actions button {
  padding: 12px 20px; border-radius: 100px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
}
.zc-result-actions .primary {
  background: var(--c-magenta, #d4428d); color: white;
}
.zc-result-actions .ghost {
  background: white; color: var(--navy, #0c162c);
  border: 1px solid var(--line, #e9e9e4);
}

/* TRIGGER BANNER */
.zc-trigger {
  background: linear-gradient(135deg, var(--navy, #0c162c) 0%, #1a2a50 100%);
  color: white;
  border-radius: var(--radius, 16px);
  padding: 40px 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  margin: 40px 0;
}
.zc-trigger .eyebrow {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-yellow, #f5d35c); margin-bottom: 10px; display: block;
}
.zc-trigger h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 500; letter-spacing: -0.01em;
  margin-bottom: 10px; line-height: 1.2;
}
.zc-trigger p {
  color: rgba(255,255,255,0.95);
  line-height: 1.6; font-size: 16px; max-width: 560px;
  font-weight: 400;
}
.zc-trigger button {
  background: var(--c-magenta, #d4428d); color: white; border: none;
  padding: 16px 28px; border-radius: 100px;
  font-family: inherit; font-size: 15px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
}
.zc-trigger button:hover { transform: translateY(-1px); }

@media (max-width: 720px) {
  .zc-trigger { grid-template-columns: 1fr; padding: 28px; }
  .zc-modal { max-height: calc(100vh - 20px); }
  .zc-body { padding: 24px; }
  .zc-head { padding: 20px 24px 16px; }
  .zc-foot { padding: 16px 24px; }
}
