/* ============================================================
   Onboarding Wizard — Artisan's Blueprint Design System
   Fonts: Manrope (headings) + Plus Jakarta Sans (body)
   Primary: #004655 | Secondary: #00696c | Surface: #f7f9ff
   ============================================================ */

/* --- Base --- */
body.onboarding-body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f9ff;
  color: #181c20;
  min-height: 100vh;
}

/* --- Header --- */
.onboarding-header {
  background: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.onboarding-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #004655;
  text-decoration: none;
}

.onboarding-logo span {
  color: #6b7280;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  margin-left: 0.75rem;
}

.onboarding-step-indicator {
  font-size: 0.85rem;
  color: #6b7280;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- Progress Bar --- */
.progress-container {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e8ee;
  transform: translateY(-50%);
  z-index: 0;
}

.progress-steps::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: #004655;
  transform: translateY(-50%);
  z-index: 0;
  width: 0%;
  transition: width 300ms ease-in-out;
}

.progress-steps.step-1::after { width: 0%; }
.progress-steps.step-2::after { width: 20%; }
.progress-steps.step-3::after { width: 40%; }
.progress-steps.step-4::after { width: 60%; }
.progress-steps.step-5::after { width: 80%; }
.progress-steps.step-6::after { width: 100%; }

.progress-step {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5e8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  z-index: 1;
  transition: all 300ms ease-in-out;
}

.progress-step.active {
  background: #004655;
  border-color: #004655;
  color: #ffffff;
}

.progress-step.completed {
  background: #004655;
  border-color: #004655;
  color: #ffffff;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.progress-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  color: #6b7280;
  text-align: center;
  width: 2.25rem;
}

.progress-label.active {
  color: #004655;
  font-weight: 600;
}

/* --- Container & Card --- */
.onboarding-container {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1.5rem 3rem;
}

.onboarding-container.wide {
  max-width: 820px;
}

.onboarding-card {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 31, 39, 0.06);
  padding: 2.5rem;
}

.onboarding-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #181c20;
  margin-bottom: 0.375rem;
}

.onboarding-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* --- Section Overlines --- */
.section-overline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00696c;
  margin-bottom: 0.5rem;
}

/* --- Forms --- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #181c20;
  margin-bottom: 0.375rem;
}

.form-label .required {
  color: #ba1a1a;
  margin-left: 2px;
}

.form-label .optional-text {
  font-weight: 400;
  color: #6b7280;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0.375rem 0.375rem 0 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #181c20;
  background: #e5e8ee;
  transition: background 300ms ease-in-out, border-color 300ms ease-in-out;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #ffffff;
  border-bottom-color: #13677b;
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-bottom-color: #ba1a1a;
  background: #fff5f5;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6b7280;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  border-radius: 0.375rem;
}

.form-hint {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.form-error {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #ba1a1a;
  margin-top: 0.25rem;
  display: none;
}

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

/* --- Password Field --- */
.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 0.95rem;
  z-index: 2;
  padding: 0.5rem;
  line-height: 1;
}

.password-toggle:hover {
  color: #004655;
}

/* --- File Upload --- */
label.file-upload-area,
.file-upload-area {
  display: block;
  border: 2px dashed rgba(191, 200, 204, 0.15);
  background: #e5e8ee;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: background 300ms ease-in-out;
}

.file-upload-area:hover {
  background: #d9dce2;
}

.file-upload-area.drag-over {
  background: #d9dce2;
}

.file-upload-area i {
  font-size: 1.5rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.file-upload-area p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
}

.file-upload-area .browse-link {
  color: #004655;
  font-weight: 500;
  cursor: pointer;
}

.file-upload-area input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.file-upload-hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.logo-preview {
  margin-top: 0.75rem;
  display: none;
}

.logo-preview.visible {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-preview img {
  max-width: 120px;
  max-height: 80px;
  border-radius: 0.375rem;
}

.logo-preview .remove-logo {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #ba1a1a;
  cursor: pointer;
  vertical-align: middle;
}

.existing-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.existing-logo img {
  max-width: 80px;
  max-height: 60px;
  border-radius: 0.375rem;
}

.existing-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #6b7280;
}

/* --- Buttons --- */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.form-actions.between {
  justify-content: space-between;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.75rem;
  border-radius: 0.375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}

.btn-primary {
  background: #004655;
  color: #ffffff;
}

.btn-primary:hover {
  background: #00313d;
}

.btn-primary-lg {
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn-secondary {
  background: #e5e8ee;
  color: #181c20;
}

.btn-secondary:hover {
  background: #d9dce2;
}

.btn-outline {
  background: #ffffff;
  color: #004655;
  border: 2px solid #004655;
}

.btn-outline:hover {
  background: #f7f9ff;
}

/* --- Design Grid (Step 2) --- */
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.design-card {
  background: #f7f9ff;
  border-radius: 0.5rem;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  position: relative;
}

.design-card:hover {
  background: #e5e8ee;
}

.design-card.selected {
  background: #e5e8ee;
  box-shadow: inset 0 0 0 2px #004655;
}

.design-card.selected::after {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: #004655;
  font-size: 1.1rem;
}

.design-card input[type="radio"] {
  display: none;
}

.design-card-icon {
  width: 100%;
  height: 50px;
  border-radius: 0.375rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.design-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #181c20;
  margin-bottom: 0.25rem;
}

.design-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Design style visual hints */
.style-minimal .design-card-icon { background: linear-gradient(135deg, #f7f9ff, #e5e8ee); }
.style-minimal .design-card-icon::after { content: ''; width: 60%; height: 2px; background: #181c20; }
.style-bold .design-card-icon { background: linear-gradient(135deg, #181c20, #004655); }
.style-bold .design-card-icon::after { content: ''; width: 24px; height: 24px; background: #f59e0b; border-radius: 4px; }
.style-elegant .design-card-icon { background: linear-gradient(135deg, #f5f0eb, #d4c5b5); }
.style-elegant .design-card-icon::after { content: ''; width: 40px; height: 1px; background: #78716c; }
.style-playful .design-card-icon { background: linear-gradient(135deg, #fef3c7, #fecaca, #ddd6fe); }
.style-playful .design-card-icon::after { content: ''; width: 18px; height: 18px; background: #ec4899; border-radius: 50%; }
.style-corporate .design-card-icon { background: linear-gradient(135deg, #00313d, #004655); }
.style-corporate .design-card-icon::after { content: ''; width: 30px; height: 20px; border: 2px solid #fff; border-radius: 2px; }

/* --- Colour Section (Step 2) --- */
.colour-section {
  margin-top: 2rem;
}

.colour-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #181c20;
  margin-bottom: 0.25rem;
}

.colour-section-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.colour-pickers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.colour-picker-group {
  text-align: center;
}

.colour-picker-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #181c20;
  margin-bottom: 0.5rem;
}

.colour-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.colour-swatch {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.colour-swatch input[type="color"] {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 56px;
  height: 56px;
  border: none;
  cursor: pointer;
  background: none;
}

.colour-hex-input {
  width: 90px;
  padding: 0.45rem 0.6rem;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0.375rem 0.375rem 0 0;
  background: #e5e8ee;
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  outline: none;
  transition: background 300ms ease-in-out, border-color 300ms ease-in-out;
}

.colour-hex-input:focus {
  background: #ffffff;
  border-bottom-color: #13677b;
}

.ai-suggest-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1.25rem;
  background: #004655;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.ai-suggest-btn:hover {
  background: #00313d;
}

.ai-suggest-btn i {
  font-size: 0.9rem;
}

.colour-preview {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background: #f7f9ff;
}

.colour-preview-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.colour-preview-bar {
  display: flex;
  height: 40px;
  border-radius: 0.375rem;
  overflow: hidden;
}

.colour-preview-bar div {
  flex: 1;
}

/* --- Services (Step 3) --- */
.services-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.services-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #181c20;
  margin-bottom: 0.25rem;
}

.services-section-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
}

.service-count {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #6b7280;
  margin-left: 0.5rem;
}

.service-item {
  background: #f7f9ff;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  transition: background 300ms ease-in-out;
}

.service-item:hover {
  background: #e5e8ee;
}

.service-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.service-item-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: #226150;
  padding: 0.2rem 0.6rem;
  border-radius: 0.75rem;
}

.service-remove {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.25rem;
  transition: color 300ms ease-in-out;
}

.service-remove:hover {
  color: #ba1a1a;
}

.service-fields {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.75rem;
}

.service-fields .form-input {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
}

.add-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border: 2px dashed rgba(0, 70, 85, 0.3);
  border-radius: 0.5rem;
  background: #f7f9ff;
  color: #004655;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  margin-top: 0.25rem;
}

.add-service-btn:hover {
  background: #e5e8ee;
}

.add-service-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #f7f9ff;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #004655;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #181c20;
}

.checkbox-label-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.125rem;
}

/* --- Social Media Inputs (Step 4) --- */
.section-divider {
  margin: 2rem 0 1.5rem;
  padding-top: 1.5rem;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #181c20;
  margin-bottom: 0.25rem;
}

.section-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.social-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}

.social-icon-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  background: #d9dce2;
  border-radius: 0.375rem 0 0 0.375rem;
  color: #6b7280;
  font-size: 1rem;
  flex-shrink: 0;
}

.social-icon-prefix.facebook { color: #1877F2; }
.social-icon-prefix.instagram { color: #E4405F; }
.social-icon-prefix.twitter { color: #1DA1F2; }
.social-icon-prefix.linkedin { color: #0A66C2; }
.social-icon-prefix.tiktok { color: #000; }

.social-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 0.375rem 0 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #181c20;
  background: #e5e8ee;
  outline: none;
  transition: background 300ms ease-in-out, border-color 300ms ease-in-out;
}

.social-input:focus {
  background: #ffffff;
  border-bottom-color: #13677b;
}

.social-input::placeholder {
  color: #6b7280;
}

.social-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #181c20;
  margin-bottom: 0.375rem;
  display: block;
}

/* --- SEO Toggle (Step 5) --- */
.seo-info-box {
  background: #f7f9ff;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.seo-info-box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #004655;
  margin-bottom: 0.5rem;
}

.seo-info-box-title i {
  font-size: 1rem;
}

.seo-info-box p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #181c20;
  line-height: 1.6;
  opacity: 0.85;
}

.seo-info-box ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #181c20;
  line-height: 1.8;
  opacity: 0.85;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f7f9ff;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  margin-bottom: 1.5rem;
}

.toggle-switch:hover {
  background: #e5e8ee;
}

.toggle-switch.active {
  background: #e5e8ee;
}

.toggle-track {
  width: 48px;
  height: 26px;
  background: #bfc8cc;
  border-radius: 13px;
  position: relative;
  transition: background 300ms ease-in-out;
  flex-shrink: 0;
}

.toggle-switch.active .toggle-track {
  background: #004655;
}

.toggle-thumb {
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 20px 40px rgba(0, 31, 39, 0.06);
  transition: transform 300ms ease-in-out;
}

.toggle-switch.active .toggle-thumb {
  transform: translateX(22px);
}

.toggle-label-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #181c20;
}

.toggle-label-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.125rem;
}

.toggle-switch input[type="checkbox"] {
  display: none;
}

.seo-fields {
  display: none;
  animation: slideDown 300ms ease-in-out;
}

.seo-fields.visible {
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Review Page --- */
.review-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.review-section:last-of-type {
  padding-bottom: 0;
}

.review-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #181c20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-section-title i {
  color: #004655;
  font-size: 0.9rem;
}

.review-edit-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #004655;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review-edit-link:hover {
  text-decoration: underline;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
}

.review-item-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #00696c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.review-item-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #181c20;
  word-break: break-word;
}

.review-item-value.empty {
  color: #bfc8cc;
  font-style: italic;
}

.review-item.full {
  grid-column: 1 / -1;
}

/* Colour Swatches in Review */
.colour-swatches {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.colour-swatch-preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.colour-dot {
  width: 28px;
  height: 28px;
  border-radius: 0.375rem;
}

.colour-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #6b7280;
}

.colour-hex {
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 0.8rem;
  color: #181c20;
  font-weight: 500;
}

.design-style-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: #226150;
  border-radius: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 500;
}

.services-list {
  list-style: none;
}

.services-list li {
  padding: 0.6rem 0;
  display: flex;
  gap: 0.5rem;
}

.service-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #181c20;
  min-width: 140px;
}

.service-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
}

.social-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: #e5e8ee;
  border-radius: 0.375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #181c20;
  text-decoration: none;
}

.social-link-badge i {
  font-size: 0.85rem;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.seo-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: #226150;
  border-radius: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #ffffff;
}

.seo-enabled {
  color: #2e7d5b;
  font-weight: 500;
}

.review-speciality {
  margin-top: 1rem;
}

.review-social-media {
  margin-top: 1rem;
}

/* Pricing Cards */
.pricing-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.pricing-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #181c20;
  margin-bottom: 0.25rem;
  text-align: center;
}

.pricing-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: #f7f9ff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  background: #e5e8ee;
}

.pricing-card.selected {
  background: #e5e8ee;
  box-shadow: inset 0 0 0 2px #004655;
}

.pricing-card.selected::after {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: #004655;
  font-size: 1.1rem;
}

.pricing-card input[type="radio"] {
  display: none;
}

.pricing-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pricing-badge.monthly {
  background: #e5e8ee;
  color: #6b7280;
}

.pricing-badge.annual {
  background: #226150;
  color: #ffffff;
}

.pricing-amount {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #181c20;
}

.pricing-amount span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
}

.pricing-period {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.pricing-save {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #2e7d5b;
  font-weight: 600;
  margin-top: 0.5rem;
}

.pricing-vat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* --- Success Page --- */
.success-container {
  max-width: 640px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e7d5b, #226150);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: scaleIn 0.5s ease;
}

.success-icon i {
  font-size: 2rem;
  color: #ffffff;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #181c20;
  margin-bottom: 0.5rem;
}

.success-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.success-card {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 31, 39, 0.06);
  padding: 2rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.build-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.build-status-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2e7d5b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.build-status-icon i {
  color: #ffffff;
  font-size: 1rem;
}

.build-status-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #166534;
}

.build-status-subtext {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #15803d;
  margin-top: 0.125rem;
}

.success-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #181c20;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.success-section-title i {
  color: #004655;
  font-size: 0.9rem;
}

.domain-info {
  background: #f7f9ff;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.domain-info p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #181c20;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.domain-info p:last-child {
  margin-bottom: 0;
}

.domain-record {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border-radius: 0.375rem;
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.domain-record-type {
  font-weight: 600;
  color: #004655;
  min-width: 60px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.domain-record-value {
  color: #181c20;
  word-break: break-all;
}

.domain-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.5rem;
  font-style: italic;
}

.next-steps {
  list-style: none;
}

.next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #181c20;
}

.next-step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #226150;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 1px;
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Confetti */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  animation: confettiFall 3s ease-out forwards;
  opacity: 0;
}

@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .onboarding-header {
    padding: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .onboarding-card {
    padding: 1.5rem;
  }

  .success-card {
    padding: 1.5rem;
  }

  .progress-label {
    font-size: 0.6rem;
  }

  .design-grid {
    grid-template-columns: 1fr;
  }

  .colour-pickers {
    grid-template-columns: 1fr;
  }

  .service-fields {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .success-container {
    margin: 2rem auto;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
