/* ============================================================
   NEK Web Design — Onboarding Wizard
   app.css v1.0
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --nek-forest:  #003024;
  --nek-leaf:    #6CBF6F;
  --nek-cream:   #F7F7F7;
  --nek-ink:     #1A1A1A;
  --nek-mist:    #F1F1F0;
  --nek-border:  #DDD9D2;
  --nek-error:   #C0392B;
  --nek-warn:    #E07B00;
  --nek-success: #27AE60;

  --nek-radius:      14px;
  --nek-radius-sm:   8px;
  --nek-radius-pill: 999px;

  --font-sans: 'Manrope', system-ui, sans-serif;

  --step-max-width: 680px;
  --shell-max-width: 780px;

  --shadow-card: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-focus: 0 0 0 3px rgba(95,190,95,0.30);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--nek-ink);
  background: var(--nek-cream);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--nek-leaf); }
a:hover { text-decoration: underline; }

/* --- Layout Shell --- */
.wizard-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- Header --- */
.wizard-header {
  background: var(--nek-forest);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.wizard-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wizard-header .logo-favicon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}

.wizard-header .logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wizard-header .logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--nek-leaf);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.wizard-header .logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.save-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.save-badge.saved { color: var(--nek-leaf); }
.save-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* --- Progress Bar --- */
.progress-bar-wrap {
  background: var(--nek-forest);
  padding: 0 24px 16px;
}

.progress-track {
  max-width: var(--shell-max-width);
  margin: 0 auto;
}

.progress-steps {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.progress-pip {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.18);
  transition: background 0.3s ease;
}

.progress-pip.active  { background: var(--nek-leaf); }
.progress-pip.done    { background: rgba(95,190,95,0.55); }

.progress-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Main Content Area --- */
.wizard-main {
  flex: 1;
  padding: 48px 24px 80px;
}

/* --- Step Panels --- */
.step-panel {
  display: none;
  max-width: var(--step-max-width);
  margin: 0 auto;
}

.step-panel.active { display: block; }

/* Step header */
.step-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nek-leaf);
  margin-bottom: 8px;
}

.step-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--nek-forest);
  line-height: 1.15;
  margin-bottom: 10px;
}

.step-title em {
  font-style: normal;
  color: var(--nek-leaf);
}

.step-subtitle {
  font-size: 1.0rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 10px;
  max-width: 560px;
}

/* Center elements inside the welcome hero block */
.welcome-hero .step-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Card / Field Groups --- */
.field-card {
  background: #fff;
  border: 1px solid var(--nek-border);
  border-radius: var(--nek-radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}

.field-card-title {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--nek-forest);
  margin-bottom: 16px;
}

.field-group {
  margin-bottom: 22px;
}

.field-group:last-child { margin-bottom: 0; }

/* --- Labels --- */
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--nek-ink);
  margin-bottom: 6px;
}

label .req {
  color: var(--nek-leaf);
  margin-left: 2px;
}

label .hint {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: #888;
  margin-top: 2px;
}

/* --- Inputs --- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--nek-ink);
  background: #fff;
  border: 1.5px solid var(--nek-border);
  border-radius: var(--nek-radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--nek-leaf);
  box-shadow: var(--shadow-focus);
}

input.error, textarea.error, select.error {
  border-color: var(--nek-error);
}

textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.55;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Two-column row */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

/* --- Field Error / Hint Messages --- */
.field-error {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--nek-error);
  margin-top: 5px;
  display: none;
}

.field-error.visible { display: block; }

.field-weak {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--nek-warn);
  margin-top: 5px;
  display: none;
}

.field-weak.visible { display: flex; align-items: flex-start; gap: 5px; }

.field-weak::before { content: '⚠'; flex-shrink: 0; }

/* --- Character Counter --- */
.char-counter {
  font-size: 0.73rem;
  color: #aaa;
  text-align: right;
  margin-top: 4px;
}

.char-counter.warn { color: var(--nek-warn); }

/* --- Radio / Checkbox Groups --- */
.radio-group, .check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option, .check-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--nek-border);
  border-radius: var(--nek-radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
}

.radio-option:hover, .check-option:hover {
  border-color: var(--nek-leaf);
  background: rgba(95,190,95,0.04);
}

.radio-option.selected, .check-option.selected {
  border-color: var(--nek-leaf);
  background: rgba(95,190,95,0.06);
}

.radio-option input, .check-option input { display: none; }

.radio-control, .check-control {
  width: 20px; height: 20px;
  border: 2px solid var(--nek-border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.check-control { border-radius: 5px; }

.radio-option.selected .radio-control,
.check-option.selected .check-control {
  border-color: var(--nek-leaf);
  background: var(--nek-leaf);
}

.radio-option.selected .radio-control::after {
  content: '';
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
}

.check-option.selected .check-control::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.option-label {
  flex: 1;
}

.option-label strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nek-ink);
  margin-bottom: 2px;
}

.option-label span {
  font-size: 0.82rem;
  color: #888;
}

/* --- Chip Selects --- */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--nek-border);
  border-radius: var(--nek-radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: #666;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: all 0.18s;
}

.chip:hover {
  border-color: var(--nek-leaf);
  color: var(--nek-forest);
}

.chip.selected {
  border-color: var(--nek-leaf);
  background: var(--nek-leaf);
  color: #fff;
}

/* --- File Upload Zone --- */
.upload-zone {
  border: 2px dashed var(--nek-border);
  border-radius: var(--nek-radius);
  padding: 32px 24px;
  text-align: center;
  background: var(--nek-mist);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--nek-leaf);
  background: rgba(95,190,95,0.05);
}

.upload-zone input[type="file"] { display: none; }

.upload-icon {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.upload-zone p {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 6px;
}

.upload-zone .upload-cta {
  font-weight: 700;
  color: var(--nek-leaf);
  text-decoration: underline;
  cursor: pointer;
}

.upload-zone .upload-limit {
  font-size: 0.75rem;
  color: #aaa;
}

/* File list */
.file-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--nek-border);
  border-radius: var(--nek-radius-sm);
  font-size: 0.84rem;
}

.file-item .file-name {
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-item .file-size { color: #aaa; font-size: 0.78rem; }

.file-remove {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.15s;
}

.file-remove:hover { color: var(--nek-error); }

/* --- Color Picker Row --- */
.color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.color-swatch-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.color-swatch {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--nek-border);
  cursor: pointer;
  overflow: hidden;
}

.color-swatch input[type="color"] {
  width: 150%;
  height: 150%;
  margin: -25%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}

.color-hex-input {
  width: 100px;
  font-size: 0.84rem;
  font-family: monospace;
  padding: 8px 10px;
}

.color-remove {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1rem;
  cursor: pointer;
  padding: 2px;
}

.color-remove:hover { color: var(--nek-error); }

.add-color-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--nek-leaf);
  background: none;
  border: 1.5px dashed var(--nek-leaf);
  border-radius: var(--nek-radius-pill);
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.add-color-btn:hover { background: rgba(95,190,95,0.08); }

/* --- Service Repeater --- */
.service-block {
  background: #fff;
  border: 1.5px solid var(--nek-border);
  border-radius: var(--nek-radius);
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.service-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-block-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nek-forest);
  letter-spacing: 0.02em;
}

.service-remove-btn {
  background: none;
  border: none;
  color: #bbb;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.service-remove-btn:hover {
  color: var(--nek-error);
  background: rgba(192,57,43,0.07);
}

.add-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nek-leaf);
  background: rgba(95,190,95,0.08);
  border: 2px dashed var(--nek-leaf);
  border-radius: var(--nek-radius);
  padding: 14px 20px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.add-service-btn:hover { background: rgba(95,190,95,0.14); }

/* --- Repeating text row (competitors, locations etc.) --- */
.repeat-row-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.repeat-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.repeat-row input { flex: 1; }

.repeat-row .row-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.15rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
  transition: color 0.15s;
}

.repeat-row .row-remove:hover { color: var(--nek-error); }

/* ── Social Media Repeater ──────────────────── */

.social-block {
  border: 1px solid var(--nek-border);
  border-radius: var(--nek-radius-sm);
  padding: 14px 16px 12px;
  margin-bottom: 10px;
  background: #fff;
}

.social-block-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.social-platform-group {
  flex: 0 0 180px;
  margin-bottom: 0;
}

.social-url-group {
  flex: 1;
  margin-bottom: 0;
}

.social-remove-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 6px 4px;
  line-height: 1;
  align-self: flex-end;
  transition: color 0.15s;
  margin-bottom: 2px;
}
.social-remove-btn:hover { color: var(--nek-error); }

.social-permissions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--nek-border);
}

.social-perm-label {
  font-size: 0.78rem;
  color: #888;
  font-weight: 500;
}

.social-perm-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--nek-ink);
  cursor: pointer;
  user-select: none;
}

.social-perm-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--nek-leaf);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── / Social Media Repeater ────────────────── */

.add-row-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nek-leaf);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.add-row-btn:hover { text-decoration: underline; }

/* --- Step 1: Welcome --- */
.welcome-hero {
  text-align: center;
  padding: 24px 0 16px;
}


.steps-overview {
  list-style: none;
  padding: 0;
  margin: 8px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.steps-overview li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 400;
}

.steps-overview .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(108, 191, 111, 0.14);
  color: var(--nek-leaf);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.time-note {
  font-size: 0.84rem;
  color: #888;
  text-align: center;
  margin-bottom: 36px;
}

/* --- Branding Radio (Step 2 bottom) --- */
.branding-question {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1.5px solid var(--nek-border);
}

.branding-question-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nek-forest);
  margin-bottom: 14px;
  display: block;
}

/* --- Review Step (Step 10) --- */
.review-section {
  background: #fff;
  border: 1px solid var(--nek-border);
  border-radius: var(--nek-radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.review-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--nek-mist);
  border-bottom: 1px solid var(--nek-border);
}

.review-section-header h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nek-forest);
}

.review-edit-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--nek-leaf);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}

.review-edit-btn:hover { background: rgba(95,190,95,0.12); }

.review-section-body {
  padding: 16px 20px;
}

.review-row {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--nek-mist);
  font-size: 0.875rem;
}

.review-row:last-child { border-bottom: none; }

.review-row .rr-label {
  font-weight: 600;
  color: #888;
  min-width: 130px;
  flex-shrink: 0;
}

.review-row .rr-value {
  color: var(--nek-ink);
  flex: 1;
}

.review-row .rr-value.empty {
  color: #ccc;
  font-style: italic;
}

.weak-flag-list {
  background: rgba(224,123,0,0.06);
  border: 1px solid rgba(224,123,0,0.25);
  border-radius: var(--nek-radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
}

.weak-flag-list h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--nek-warn);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.weak-flag-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.weak-flag-list li {
  font-size: 0.82rem;
  color: var(--nek-ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.weak-flag-list li::before {
  content: '→';
  color: var(--nek-warn);
  flex-shrink: 0;
}

/* --- Pricing Note (Step 9) --- */
.pricing-note {
  display: flex;
  gap: 14px;
  background: rgba(108,191,111,0.07);
  border: 1.5px solid rgba(108,191,111,0.30);
  border-radius: var(--nek-radius);
  padding: 18px 20px;
  margin-bottom: 20px;
}

.pricing-note-icon {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nek-leaf);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--nek-leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing-note-body {
  flex: 1;
}

.pricing-note-body strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nek-forest);
  display: block;
  margin-bottom: 6px;
}

.pricing-note-body p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* --- Navigation Bar --- */
.wizard-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--nek-border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.07);
}

.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--nek-radius-pill);
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--nek-leaf);
  color: #fff;
}

.btn-primary:hover {
  background: #4CAF4C;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(95,190,95,0.35);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: none;
  color: #888;
  padding: 12px 16px;
}

.btn-ghost:hover { color: var(--nek-ink); background: var(--nek-mist); }

.btn-outline {
  background: none;
  border: 1.5px solid var(--nek-border);
  color: var(--nek-ink);
}

.btn-outline:hover { border-color: var(--nek-ink); }

.btn-submit {
  background: var(--nek-forest);
  color: #fff;
  font-size: 1rem;
  padding: 14px 32px;
}

.btn-submit:hover {
  background: #0c3226;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14,59,46,0.35);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Step counter in nav */
.step-counter {
  font-size: 0.78rem;
  font-weight: 600;
  color: #aaa;
}

/* --- Confirmation Screen --- */
#confirmation-screen {
  display: none;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 24px;
}

.confirm-mark {
  display: block;
  margin: 0 auto 20px;
  width: 56px;
  height: 56px;
}

#confirmation-screen h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--nek-forest);
  margin-bottom: 12px;
}

#confirmation-screen h1 em {
  font-style: normal;
  color: var(--nek-leaf);
}

#confirmation-screen p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

#confirmation-screen .confirm-details {
  background: var(--nek-mist);
  border: 1px solid var(--nek-border);
  border-radius: var(--nek-radius);
  padding: 20px;
  margin: 28px 0;
  text-align: left;
  font-size: 0.875rem;
}

#confirmation-screen .confirm-details strong { color: var(--nek-forest); }

/* --- Utility / Helpers --- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.divider {
  border: none;
  border-top: 1.5px solid var(--nek-border);
  margin: 24px 0;
}

.helper-text {
  font-size: 0.82rem;
  color: #aaa;
  margin-top: 8px;
  font-style: italic;
}

.inline-link {
  color: var(--nek-leaf);
  font-weight: 600;
  text-decoration: none;
}

.inline-link:hover { text-decoration: underline; }

/* --- Responsive --- */
@media (max-width: 640px) {
  .wizard-main { padding: 32px 16px 80px; }
  .step-title { font-size: 1.6rem; }
  .field-card { padding: 20px 16px; }
  .service-block { padding: 18px 14px; }
  .wizard-nav { padding: 12px 16px; }
  .btn { padding: 11px 18px; font-size: 0.875rem; }
  .btn-submit { padding: 12px 22px; }
  .progress-bar-wrap { padding: 0 16px 14px; }
  .wizard-header { padding: 14px 16px; }
}

@media (max-width: 420px) {
  .step-title { font-size: 1.4rem; }
  .nav-left .step-counter { display: none; }
}

/* --- Animations --- */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-panel.active {
  animation: fadeSlideIn 0.25s ease;
}

/* Loading state */
.btn-submitting {
  position: relative;
  color: transparent !important;
}

.btn-submitting::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
