/* ============================================================
   styles.css — TheGoalIsClear Intake Quiz
   Premium clinical UI
   ============================================================ */

/* ── Reset + Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: var(--bg, #f7f8f9);
  color: var(--neutral-text, #494949);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Screen system ── */
.screen { display: none; }
.screen.active { display: block; }

/* ── Container ── */
.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 24px 88px;
}

/* ── Landing ── */
.landing-headline {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--neutral-heading, #1a1a1a);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.landing-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--neutral-muted, #6b7788);
  margin-bottom: 44px;
  line-height: 1.6;
}

/* ── Gender / path cards (landing) ── */
.gender-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.gender-card {
  background: #fff;
  border: 1.5px solid rgba(15, 23, 42, 0.09);
  border-radius: 16px;
  padding: 36px 28px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.gender-card:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

.bruh-card:hover { border-color: var(--brand-bruh, #00249C); }
.gurl-card:hover { border-color: var(--brand-gurl, #8F3F99); }

.brand-mark {
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

.bruh-mark { color: var(--brand-bruh, #00249C); }
.gurl-mark { color: var(--brand-gurl, #8F3F99); }

.card-tagline {
  font-size: 13px;
  color: var(--neutral-muted, #6b7788);
  font-weight: 400;
  margin: 0;
}

.card-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  align-self: flex-start;
}

.bruh-cta {
  background: var(--brand-bruh, #00249C);
  box-shadow: 0 4px 14px rgba(0, 36, 156, 0.22);
}
.gurl-cta {
  background: var(--brand-gurl, #8F3F99);
  box-shadow: 0 4px 14px rgba(143, 63, 153, 0.22);
}

/* ── Quiz nav (brand header) ── */
.quiz-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--accent, #00249C);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.quiz-nav-brand {
  font-family: var(--font-headline, 'Voltaire Frangela', sans-serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.quiz-nav-parent {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.02em;
}

/* ── Quiz chrome (progress + back) ── */
.quiz-chrome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 36px;
}

.back-btn {
  background: #fff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  color: var(--neutral-muted, #6b7788);
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.back-btn:hover {
  background: #f4f5f7;
  border-color: rgba(15, 23, 42, 0.20);
  transform: translateY(-1px);
}

.quiz-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.quiz-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral-muted2, #8a94a3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.step-counter {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent, #00249C);
  letter-spacing: 0.04em;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent, #00249C);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.quiz-progress-sub {
  font-size: 11px;
  color: var(--neutral-muted2, #8a94a3);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ── Steps ── */
.step { display: none; }
.step.active { display: block; }

.q {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 700;
  color: var(--neutral-heading, #1a1a1a);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.q-hint {
  font-size: 14px;
  color: var(--neutral-muted, #6b7788);
  margin-bottom: 26px;
  line-height: 1.6;
}

/* ── Option buttons ── */
.opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.opt {
  background: #fff;
  border: 2px solid rgba(15, 23, 42, 0.09);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--neutral-heading, #1a1a1a);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
  min-height: 52px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.opt:hover {
  border-color: rgba(15, 23, 42, 0.20);
  background: #fafbfc;
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}

.opt.selected {
  border-color: var(--accent, #00249C);
  background: var(--accent-light, #e6eaf5);
  color: var(--accent, #00249C);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.opt-sm {
  padding: 12px 16px;
  font-size: 14px;
  min-height: 44px;
}

/* ── Severity cards ── */
.severity-opts { gap: 12px; }

.severity-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
}

.severity-card strong {
  font-size: 15px;
  font-weight: 600;
}

.sev-desc {
  font-size: 13px;
  color: var(--neutral-muted, #6b7788);
  font-weight: 400;
}

/* ── Multi-hint ── */
.multi-hint { margin-top: 20px; }
.hint-light { color: var(--neutral-muted2, #8a94a3); }

/* ── Secondary concerns ── */
.secondary-opts {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Checklist ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.check-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 2px solid rgba(15, 23, 42, 0.09);
  border-radius: 10px;
  padding: 15px 16px;
  padding-right: 44px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-heading, #1a1a1a);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
  line-height: 1.5;
  min-height: 52px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.check-item:hover {
  border-color: rgba(15, 23, 42, 0.20);
  background: #fafbfc;
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}

.check-item input[type="checkbox"] {
  display: none;
}

.check-item.checked {
  border-color: var(--accent, #00249C);
  background: var(--accent-light, #e6eaf5);
  color: var(--accent, #00249C);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.check-item.checked::after {
  content: '✓';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent, #00249C);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

/* ── State dropdown ── */
.select-input {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  color: var(--neutral-heading, #1a1a1a);
  background: #fff;
  margin-bottom: 16px;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.select-input:focus {
  outline: none;
  border-color: var(--accent, #00249C);
  box-shadow: var(--focus-ring, 0 0 0 3px rgba(0, 36, 156, 0.18));
}

/* ── Next / submit buttons ── */
.next-btn {
  background: var(--accent, #00249C);
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: var(--radius-btn, 8px);
  color: #fff;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  margin-top: 8px;
  box-shadow: var(--btn-shadow, 0 4px 16px rgba(0, 36, 156, 0.22));
  letter-spacing: 0.01em;
}

.next-btn:hover {
  background: var(--accent-hover, #001e84);
  box-shadow: var(--btn-shadow-hover, 0 8px 28px rgba(0, 36, 156, 0.30));
  transform: translateY(-1px);
}
.next-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.skip-link {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--neutral-muted2, #8a94a3);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-body, 'Poppins', sans-serif);
  transition: color 0.15s;
}
.skip-link:hover { color: var(--neutral-muted, #6b7788); }

/* ── Notice cards ── */
.notice-card {
  border-radius: var(--radius-card, 12px);
  padding: 24px;
  margin-bottom: 24px;
}

.notice-card.warn {
  background: #fffbf0;
  border: 1.5px solid #f0d080;
}

.notice-card.block {
  background: #fff5f5;
  border: 1.5px solid #f0b0b0;
}

.notice-card h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--neutral-heading, #1a1a1a);
}

.notice-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ── Acknowledgement checkbox ── */
.ack-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1.5px solid rgba(15, 23, 42, 0.10);
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  transition: border-color 0.15s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.ack-check input { flex-shrink: 0; margin-top: 3px; }
.ack-check.checked { border-color: var(--accent, #00249C); }

/* ── Photo upload ── */
.photo-tips {
  background: #f8f9fa;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.photo-tips h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--neutral-muted, #6b7788);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.photo-tips ul {
  padding-left: 18px;
  font-size: 13px;
  color: var(--neutral-muted, #6b7788);
  line-height: 1.8;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.photo-slot {
  position: relative;
  aspect-ratio: 1;
  border: 2px dashed rgba(15, 23, 42, 0.15);
  border-radius: 10px;
  overflow: hidden;
  background: #fafbfc;
  transition: border-color 0.2s;
}

.photo-slot:hover { border-color: rgba(15, 23, 42, 0.30); }
.photo-slot.has-photo { border-style: solid; border-color: #4caf50; }

.photo-slot input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.photo-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 6px;
  cursor: pointer;
  padding: 12px;
}

.photo-icon { font-size: 28px; }

.photo-angle {
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-muted, #6b7788);
  text-align: center;
}

.photo-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 1;
}

.has-photo .photo-preview { display: block; }
.has-photo .photo-label { display: none; }

.photo-error {
  color: #e53935;
  font-size: 13px;
  margin-bottom: 8px;
  min-height: 18px;
}

/* ── Account form ── */
.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--neutral-muted, #6b7788);
  margin-bottom: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  color: var(--neutral-heading, #1a1a1a);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.field input:focus {
  outline: none;
  border-color: var(--accent, #00249C);
  box-shadow: var(--focus-ring, 0 0 0 3px rgba(0, 36, 156, 0.18));
}

.optional {
  font-weight: 400;
  color: var(--neutral-muted2, #8a94a3);
  text-transform: none;
  letter-spacing: 0;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  cursor: pointer;
}

.consent-check input { flex-shrink: 0; margin-top: 4px; }

.consent-text {
  font-size: 12px;
  color: var(--neutral-muted, #6b7788);
  line-height: 1.6;
}

/* ── Minor / guardian ── */
.opt-stack { display: flex; flex-direction: column; gap: 10px; }

.field-group { display: flex; flex-direction: column; }
.field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--neutral-muted, #6b7788);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.field-input {
  padding: 14px 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  color: var(--neutral-heading, #1a1a1a);
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field-input:focus {
  outline: none;
  border-color: var(--accent, #00249C);
  box-shadow: var(--focus-ring, 0 0 0 3px rgba(0, 36, 156, 0.18));
}

.btn-primary {
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: var(--radius-btn, 8px);
  background: var(--neutral-heading, #1a1a1a);
  color: #fff;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(26,26,26,0.18);
}
.btn-primary:hover {
  background: #111;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,26,26,0.24);
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ── Thank you screen ── */
.ty-container { text-align: center; padding-top: 64px; }

.check-icon {
  width: 68px;
  height: 68px;
  background: #e8f5e9;
  color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 28px;
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.20);
}

.ty-headline {
  font-family: var(--font-headline);
  font-size: 38px;
  font-weight: 700;
  color: var(--neutral-heading, #1a1a1a);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ty-sub {
  font-size: 16px;
  color: var(--neutral-muted, #6b7788);
  margin-bottom: 32px;
  line-height: 1.6;
}

.next-steps {
  text-align: left;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-card, 12px);
  padding: 24px 28px;
  margin-bottom: 32px;
  list-style: none;
  counter-reset: steps;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.next-steps li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  padding: 12px 0;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.next-steps li:last-child { border-bottom: none; }

.next-steps li::before {
  content: counter(steps);
  background: var(--accent, #00249C);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Status card ── */
.status-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-card, 12px);
  padding: 26px;
  margin-bottom: 24px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.status-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.status-icon { font-size: 36px; }

.status-current-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral-muted2, #8a94a3);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.status-current {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-heading, #1a1a1a);
}

.status-eta {
  font-size: 12px;
  color: var(--neutral-muted, #6b7788);
  margin-top: 2px;
}

/* ── Tracker ── */
.status-tracker {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.tracker-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tracker-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
}

.tracker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  flex-shrink: 0;
  z-index: 1;
}

.tracker-dot.done  { background: #4caf50; border-color: #4caf50; }
.tracker-dot.active { background: var(--neutral-heading, #1a1a1a); border-color: var(--neutral-heading, #1a1a1a); }

.tracker-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: rgba(15, 23, 42, 0.08);
  margin: 2px 0;
}

.tracker-line.done { background: #4caf50; }

.tracker-text {
  padding-bottom: 20px;
  padding-top: 0;
}

.tracker-text-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-muted, #6b7788);
  line-height: 1.4;
  margin-top: -1px;
}

.tracker-item.is-active .tracker-text-label { color: var(--neutral-heading, #1a1a1a); font-weight: 600; }
.tracker-item.is-done .tracker-text-label { color: #4caf50; }

/* ── Status action box ── */
.status-action-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.status-action-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral-muted2, #8a94a3);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 4px;
}

.status-action-value {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* ── Countdown ── */
.status-countdown {
  background: #fff8e1;
  border: 1.5px solid #ffe082;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}

.status-countdown-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral-muted2, #8a94a3);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 4px;
}

.status-countdown-value {
  font-size: 22px;
  font-weight: 700;
  color: #e65100;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

/* ── iPLEDGE note ── */
.ipledge-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-heading, #1a1a1a);
  line-height: 1.6;
  margin-top: 24px;
  padding: 18px 20px 18px 52px;
  background: var(--accent-light, #e6eaf5);
  border-radius: 10px;
  border: 1.5px solid var(--accent, #00249C);
  position: relative;
}
.ipledge-note::before {
  content: 'ℹ';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--accent, #00249C);
  font-style: normal;
}

/* ── iPLEDGE card (legacy) ── */
.ipledge-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 4px solid #f4a328;
  border-radius: var(--radius-card, 12px);
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.ipledge-card h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--neutral-heading, #1a1a1a);
  margin-bottom: 12px;
}

.ipledge-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.ipledge-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-btn, 8px);
  color: #fff;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.15s;
  background: var(--accent, #00249C);
  box-shadow: var(--btn-shadow, 0 4px 14px rgba(0, 36, 156, 0.22));
}

.ipledge-cta:hover {
  opacity: 0.90;
  transform: translateY(-1px);
}

/* ── Submit error ── */
#submit-error {
  color: #e53935;
  font-size: 13px;
  margin-bottom: 8px;
  min-height: 18px;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .landing-headline  { font-size: 38px; }
  .gender-cards      { grid-template-columns: 1fr; }
  .q                 { font-size: 24px; }
  .photo-grid        { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .container         { padding: 28px 16px 64px; }
  .opt               { min-height: 56px; }
  .check-item        { min-height: 56px; }
}
