/* ==========================================================================
   BBB NETWORKING — EXECUTIVE PROFILE COLLECTION SYSTEM
   Mobile-First & Desktop 2-Column Responsive Design Architecture
   ========================================================================== */

:root {
  /* Core Brand Colors */
  --navy-950: #060e1a;
  --navy-900: #0b1c38;
  --navy-850: #102547;
  --navy-800: #14294b;
  --navy-700: #1f3b68;
  --navy-600: #294d85;

  /* Accent & Gold Colors */
  --gold-500: #d98a2b;
  --gold-400: #e59a3c;
  --gold-300: #f0ad48;
  --gold-200: #fcd289;
  --gold-100: #fff4e0;
  --gold-glow: rgba(217, 138, 43, 0.22);

  /* Neutrals & Slate */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  /* Feedback Colors */
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --rose-600:    #e11d48;
  --rose-500:    #f43f5e;
  --rose-100:    #ffe4e6;
  --amber-500:   #f59e0b;

  /* Typography */
  --font-main: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Outfit", "Plus Jakarta Sans", sans-serif;
  --font-mono: "DM Mono", "SF Mono", monospace;

  /* Shadows & Elevation */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 6px -1px rgba(15, 23, 42, 0.08), 0 1px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 18px -2px rgba(15, 23, 42, 0.08), 0 3px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 36px -4px rgba(15, 23, 42, 0.12), 0 6px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 24px 60px -8px rgba(11, 28, 56, 0.18), 0 12px 24px -6px rgba(11, 28, 56, 0.08);
  --shadow-card: 0 10px 30px rgba(11, 28, 56, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s var(--ease-smooth);
  --transition-slow: 0.4s var(--ease-smooth);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ==========================================================================
   CSS Reset & Base Rules (Zero Horizontal Overflow Guaranteed)
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

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

body.app-body {
  font-family: var(--font-main);
  background-color: #f2f5f9;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(20, 41, 75, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(217, 138, 43, 0.04) 0%, transparent 40%);
  color: var(--slate-900);
  line-height: 1.5;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.app-body::selection {
  background: var(--gold-300);
  color: var(--navy-950);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 8px 16px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transform: translateY(-180%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ==========================================================================
   Header App Bar
   ========================================================================== */

.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 28, 56, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 0;
  width: 100%;
}

.header-inner {
  width: min(1380px, 100%);
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  flex-shrink: 0;
}

.brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.brand-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Draft Autosave Indicator */
.draft-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--slate-300);
  white-space: nowrap;
}

.draft-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulseDot 2.4s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.completion-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 130px;
}

.completion-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-300);
}

.completion-val {
  color: var(--gold-300);
  font-weight: 700;
}

.completion-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.completion-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  border-radius: var(--radius-full);
  transition: width 0.4s var(--ease-smooth);
}

/* Mobile Preview Button */
.mobile-preview-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(217, 138, 43, 0.3);
  white-space: nowrap;
}

.preview-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-950);
  animation: pulseDot 1.8s infinite;
}

.preview-icon {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   2-Column Layout Grid
   ========================================================================== */

.app-main {
  flex: 1;
  padding: 24px 0 40px;
  width: 100%;
}

.app-layout {
  width: min(1380px, 100%);
  padding: 0 16px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: start;
}

/* ==========================================================================
   LEFT COLUMN: Interactive Form Wizard
   ========================================================================== */

.form-column {
  min-width: 0;
  width: 100%;
}

.wizard-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 28px;
  width: 100%;
  position: relative;
  overflow: visible;
}

/* Stepper Navigation Bar */
.stepper-nav {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-100);
  width: 100%;
}

.stepper-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--slate-300) transparent;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.stepper-scroll::-webkit-scrollbar {
  height: 4px;
}

.stepper-scroll::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: var(--radius-full);
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--radius-full);
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.step-pill .step-num {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--slate-200);
  color: var(--slate-700);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.step-pill:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.step-pill.active {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-pill.active .step-num {
  background: var(--gold-400);
  color: var(--navy-950);
}

.step-pill.completed {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-600);
}

.step-pill.completed .step-num {
  background: var(--emerald-500);
  color: var(--white);
}

/* Step Header */
.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.step-meta {
  flex: 1;
  min-width: 0;
}

.step-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-950);
  line-height: 1.2;
  margin-bottom: 4px;
  word-break: break-word;
}

.step-desc {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.45;
}

.step-counter-box {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-mono);
  padding: 5px 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.step-active-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-900);
}

.step-slash {
  font-size: 12px;
  color: var(--slate-400);
}

.step-total-num {
  font-size: 12px;
  color: var(--slate-500);
}

/* Step Panels */
.step-panel {
  display: none;
  animation: fadeInStep 0.3s var(--ease-smooth);
  width: 100%;
}

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

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Fields & Form Groups */
.fields-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  width: 100%;
}

.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-800);
}

.field-sublabel {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: -2px;
  margin-bottom: 2px;
  line-height: 1.4;
}

.opt-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  background: var(--slate-100);
  color: var(--slate-500);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.field-icon {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  color: var(--slate-400);
  pointer-events: none;
  z-index: 2;
}

.text-input,
.styled-textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--slate-900);
  min-height: 46px;
  transition: all var(--transition-fast);
}

.text-input:hover,
.styled-textarea:hover {
  background: var(--white);
  border-color: var(--slate-300);
}

.text-input:focus,
.styled-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(20, 41, 75, 0.12);
}

.text-input:focus + .field-icon,
.input-wrap:focus-within .field-icon {
  color: var(--navy-800);
}

.text-input-sm {
  padding: 9px 12px;
  font-size: 13px;
  min-height: 40px;
}

.field-hint {
  font-size: 11px;
  color: var(--slate-500);
  line-height: 1.4;
}

/* ==========================================================================
   Custom Downward Comboboxes (Company, Designation & Services)
   ========================================================================== */

.custom-combobox {
  position: relative;
  width: 100%;
}

.combobox-toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--slate-500);
  z-index: 3;
}

.combobox-toggle-btn:hover {
  background: var(--slate-200);
  color: var(--navy-900);
}

.combobox-toggle-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.custom-combobox.is-open .combobox-toggle-btn svg {
  transform: rotate(180deg);
}

.combobox-spinner {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(20, 41, 75, 0.2);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  z-index: 3;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.combobox-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(11, 28, 56, 0.15), 0 1px 4px rgba(0, 0, 0, 0.06);
  z-index: 200;
  overflow: hidden;
  animation: popDown 0.18s var(--ease-smooth);
}

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

.combobox-options-list {
  max-height: 260px;
  overflow-y: auto;
  padding: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--slate-300) transparent;
}

.combobox-options-list::-webkit-scrollbar {
  width: 5px;
}

.combobox-options-list::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: var(--radius-full);
}

.combobox-category-header {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  padding: 6px 10px 2px;
  text-transform: uppercase;
  background: var(--slate-50);
}

.combobox-option-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--slate-800);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.combobox-option-item:hover,
.combobox-option-item.is-selected {
  background: var(--gold-100);
  color: var(--navy-950);
}

.combobox-option-item.is-selected {
  font-weight: 700;
}

.combobox-option-title {
  font-weight: 600;
  line-height: 1.3;
}

.combobox-option-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.combobox-option-badge {
  background: var(--slate-200);
  color: var(--slate-700);
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 9px;
}

.combobox-empty-state {
  padding: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--slate-500);
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.country-code-select-wrap {
  flex: 0 0 130px;
}

.country-code-select {
  width: 100%;
  padding: 12px 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-800);
  min-height: 46px;
  cursor: pointer;
}

.phone-number-wrap {
  flex: 1;
  min-width: 0;
}

/* Profile Photo Uploader */
.photo-upload-zone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--slate-50);
  border: 2px dashed var(--slate-200);
  border-radius: var(--radius-lg);
  width: 100%;
}

.photo-upload-zone.is-dragging {
  border-color: var(--gold-500);
  background: var(--gold-100);
}

.photo-preview-slot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--slate-200);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.photo-preview-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-empty-placeholder svg {
  width: 26px;
  height: 26px;
  color: var(--slate-400);
}

.photo-upload-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.photo-upload-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-950);
}

.photo-upload-sub {
  font-size: 12px;
  color: var(--slate-500);
  word-break: break-word;
}

.photo-upload-specs {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.photo-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Social Grid */
.section-sub-divider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
  margin-top: 4px;
  width: 100%;
}

.divider-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--slate-700);
}

.divider-note {
  font-size: 11px;
  color: var(--slate-400);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.social-field-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.social-field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-700);
}

.social-icon-badge {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  color: var(--white);
  flex-shrink: 0;
}

.social-icon-badge svg {
  width: 11px;
  height: 11px;
}

.linkedin-badge { background: #0077b5; }
.whatsapp-badge { background: #25d366; }
.facebook-badge { background: #1877f2; }
.instagram-badge { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ==========================================================================
   Products & Services Manager (Searchable 130+ Professions)
   ========================================================================== */

.service-manager-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.service-add-row {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: flex-start;
}

.service-combobox-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

.service-quick-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.quick-tags-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-400);
}

.quick-tag-chip {
  padding: 4px 10px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-700);
  transition: all var(--transition-fast);
}

.quick-tag-chip:hover {
  background: var(--gold-100);
  border-color: var(--gold-300);
  color: var(--gold-500);
}

.service-empty-card {
  padding: 24px 16px;
  text-align: center;
  background: var(--slate-50);
  border: 1px dashed var(--slate-200);
  border-radius: var(--radius-lg);
  width: 100%;
}

.empty-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--slate-300);
  margin: 0 auto 8px;
}

.empty-text-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 2px;
}

.empty-text-sub {
  font-size: 11px;
  color: var(--slate-500);
}

.service-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--slate-100);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-900);
}

.service-chip-del {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--slate-200);
  color: var(--slate-600);
  font-size: 11px;
  font-weight: 700;
}

.service-chip-del:hover {
  background: var(--rose-500);
  color: var(--white);
}

/* ==========================================================================
   BBB Business Facilitated Section
   ========================================================================== */

.no-biz-toggle-card {
  padding: 12px 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  width: 100%;
}

.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  width: 100%;
}

.custom-checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox-mark {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

.custom-checkbox-mark svg {
  width: 12px;
  height: 12px;
  color: var(--white);
  opacity: 0;
}

.custom-checkbox-input:checked + .custom-checkbox-mark {
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.custom-checkbox-input:checked + .custom-checkbox-mark svg {
  opacity: 1;
}

.checkbox-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.checkbox-text-group strong {
  font-size: 13px;
  color: var(--slate-800);
}

.checkbox-text-group small {
  font-size: 11px;
  color: var(--slate-500);
}

.business-section-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.business-section-wrap.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.referral-cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.referral-item-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  position: relative;
  width: 100%;
}

.referral-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.referral-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-500);
  text-transform: uppercase;
}

.referral-del-btn {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--slate-400);
}

.referral-del-btn:hover {
  background: var(--rose-100);
  color: var(--rose-600);
}

.referral-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.currency-val-row {
  display: flex;
  gap: 6px;
  width: 100%;
}

.currency-select {
  flex: 0 0 74px;
  padding: 9px 4px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-700);
  min-height: 40px;
}

.running-total-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.running-total-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-300);
}

.running-total-label svg {
  width: 14px;
  height: 14px;
  color: var(--gold-400);
}

.running-total-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-300);
}

/* ==========================================================================
   Additional Information & Media (Photos & Video with Direct Camera Capture)
   ========================================================================== */

.textarea-wrap {
  position: relative;
  width: 100%;
}

.styled-textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.textarea-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.char-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-400);
}

/* Media Drop Zones */
.media-drop-zone,
.video-drop-zone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--slate-50);
  border: 2px dashed var(--slate-200);
  border-radius: var(--radius-lg);
  width: 100%;
}

.media-drop-zone.is-dragging,
.video-drop-zone.is-dragging {
  background: var(--gold-100);
  border-color: var(--gold-400);
}

.drop-zone-icon svg {
  width: 28px;
  height: 28px;
  color: var(--slate-400);
  flex-shrink: 0;
}

.drop-zone-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drop-zone-text strong {
  font-size: 12px;
  color: var(--slate-800);
}

.drop-zone-text small {
  font-size: 10px;
  color: var(--slate-500);
}

.media-action-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.gallery-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

.gallery-thumb-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-del {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 11px;
}

.gallery-thumb-del:hover {
  background: var(--rose-600);
}

.video-upload-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.or-separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--slate-400);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  width: 100%;
}

.or-separator::before,
.or-separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--slate-200);
}

.or-separator span {
  padding: 0 8px;
}

.video-preview-card {
  background: var(--slate-900);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}

.video-preview-card video {
  width: 100%;
  max-height: 220px;
  display: block;
}

.video-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--slate-800);
  color: var(--white);
}

.video-meta-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-300);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Review & Submit Screen
   ========================================================================== */

.review-dossier {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  width: 100%;
}

.review-row-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  width: 100%;
}

.review-row-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-row-category {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-500);
  text-transform: uppercase;
}

.review-row-summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-950);
  word-break: break-word;
}

.review-edit-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-700);
  text-decoration: underline;
  padding: 2px 4px;
  flex-shrink: 0;
}

.consent-box {
  padding: 14px 16px;
  background: #fdfaf6;
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-md);
  width: 100%;
}

.inline-link {
  color: var(--navy-800);
  text-decoration: underline;
  font-weight: 600;
}

/* ==========================================================================
   Buttons & Action Styles
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 44px;
  transition: all var(--transition-base);
  user-select: none;
  white-space: nowrap;
}

.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 7px 12px;
  font-size: 11px;
  min-height: 34px;
  border-radius: var(--radius-sm);
}

.btn-sm svg {
  width: 13px;
  height: 13px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 3px 10px var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  box-shadow: 0 4px 14px rgba(217, 138, 43, 0.35);
}

.btn-secondary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--navy-800);
}

.btn-tertiary {
  background: var(--slate-100);
  color: var(--slate-700);
}

.btn-tertiary:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-600);
}

.btn-ghost:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}

.btn-danger-ghost {
  background: transparent;
  color: var(--rose-600);
}

.btn-danger-ghost:hover {
  background: var(--rose-100);
}

/* Wizard Navigation Bar */
.wizard-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-100);
  width: 100%;
}

.nav-middle-actions {
  display: flex;
  align-items: center;
}

/* Status / Alert Message */
.form-feedback-msg {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  margin-top: 14px;
  width: 100%;
}

.form-feedback-msg.error {
  background: var(--rose-100);
  color: var(--rose-600);
  border: 1px solid rgba(225, 29, 72, 0.2);
}

.form-feedback-msg.success {
  background: var(--emerald-100);
  color: var(--emerald-600);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

/* ==========================================================================
   RIGHT COLUMN: Executive Profile Live Preview Card
   ========================================================================== */

.preview-column {
  min-width: 0;
  width: 100%;
}

.preview-sticky-wrap {
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.preview-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}

.preview-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy-900);
  text-transform: uppercase;
}

.live-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulseDot 2s infinite;
}

.preview-sync-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-400);
}

.executive-profile-card {
  background: var(--white);
  border: 1px solid rgba(16, 37, 71, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 28, 56, 0.12), 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  width: 100%;
}

.card-hero-banner {
  height: 84px;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.card-chip-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-300);
}

.chip-star {
  color: var(--gold-400);
  font-size: 9px;
}

.card-id-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.card-body {
  padding: 0 20px 20px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.card-identity-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.card-avatar-frame {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.card-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initials {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-300);
}

.card-identity-text {
  flex: 1;
  padding-top: 36px;
  min-width: 0;
}

.card-member-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-950);
  line-height: 1.2;
  word-break: break-word;
}

.card-calling-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 11px;
  color: var(--slate-600);
  background: var(--slate-100);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
}

.card-calling-badge strong {
  color: var(--gold-500);
}

.card-designation-company {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-700);
  margin-top: 2px;
  line-height: 1.35;
  word-break: break-word;
}

.card-location-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--slate-400);
  margin-top: 3px;
}

.card-location-row svg {
  width: 11px;
  height: 11px;
}

.card-connect-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  width: 100%;
}

.connect-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.connect-pill svg {
  width: 11px;
  height: 11px;
}

.pill-whatsapp { background: #25d366; color: var(--white); }
.pill-email { background: var(--navy-800); color: var(--white); }
.pill-site { background: var(--slate-200); color: var(--slate-800); }

.card-social-icons-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.social-preview-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
}

.social-preview-icon svg {
  width: 11px;
  height: 11px;
}

.preview-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.preview-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-section-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  text-transform: uppercase;
}

.preview-services-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}

.preview-service-tag {
  display: inline-block;
  padding: 3px 8px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-900);
}

.empty-preview-item {
  font-size: 11px;
  color: var(--slate-400);
  font-style: italic;
}

.preview-biz-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  color: var(--gold-500);
  background: var(--gold-100);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.preview-projects-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.preview-project-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  width: 100%;
}

.preview-proj-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.preview-proj-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-950);
}

.preview-proj-cust {
  font-size: 10px;
  color: var(--slate-500);
}

.preview-proj-val {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-500);
  flex-shrink: 0;
}

.preview-quote-box {
  padding: 12px 14px;
  background: #fffbf5;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  width: 100%;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--gold-300);
  line-height: 1;
  position: absolute;
  top: 6px;
  left: 8px;
  opacity: 0.6;
}

.quote-text {
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
  color: var(--slate-800);
  line-height: 1.45;
  padding-left: 12px;
  word-break: break-word;
}

.preview-media-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px dashed var(--slate-200);
  width: 100%;
}

.media-count-badge,
.video-attached-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--slate-600);
  background: var(--slate-100);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.media-count-badge svg,
.video-attached-badge svg {
  width: 10px;
  height: 10px;
}

.card-footer-strip {
  background: var(--navy-950);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-mini-logo {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-slogan {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.preview-disclaimer {
  text-align: center;
  font-size: 10px;
  color: var(--slate-400);
}

/* ==========================================================================
   Mobile Live Preview Bottom Sheet / Modal Drawer
   ========================================================================== */

.mobile-preview-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.mobile-preview-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 26, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-preview-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: relative;
  z-index: 2;
  background: #f8fafc;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.32s var(--ease-smooth);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.mobile-preview-drawer.is-open .drawer-panel {
  transform: translateY(0);
}

.drawer-handle-bar {
  padding: 10px 0 4px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.drawer-handle {
  width: 38px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--slate-300);
}

.drawer-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 12px;
  border-bottom: 1px solid var(--slate-200);
  width: 100%;
}

.drawer-close-btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--slate-200);
  color: var(--slate-700);
}

.drawer-content-scroll {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.drawer-footer-actions {
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  width: 100%;
}

/* ==========================================================================
   Success Modal Overlay
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(10px);
}

.modal-card {
  width: min(480px, 100%);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.success-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 138, 43, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.success-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.success-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.success-meta-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--emerald-600);
  margin-bottom: 4px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-950);
  line-height: 1.15;
  margin-bottom: 10px;
}

.success-title em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--gold-500);
}

.success-desc {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 20px;
}

.success-ref-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.ref-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.ref-code {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}

.success-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.success-actions .btn {
  flex: 1;
}

/* ==========================================================================
   Responsive Adaptations (Tablet & Mobile Perfection)
   ========================================================================== */

/* Tablet Optimization (768px - 1080px) */
@media (max-width: 1080px) {
  .app-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .preview-column {
    display: none;
  }

  .mobile-preview-btn {
    display: inline-flex;
  }
}

/* Mobile & Small Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .app-main {
    padding: 12px 0 32px;
  }

  .app-layout {
    padding: 0 12px;
  }

  .wizard-card {
    padding: 18px 14px;
    border-radius: var(--radius-lg);
  }

  .header-inner {
    padding: 0 12px;
  }

  .brand-tagline {
    display: none;
  }

  .brand-divider {
    display: none;
  }

  .completion-wrap {
    display: none;
  }

  .step-title {
    font-size: 20px;
  }

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

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

  .gallery-thumbs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-upload-zone {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 14px 10px;
  }

  .photo-btn-row {
    width: 100%;
    justify-content: center;
  }

  .photo-btn-row .btn {
    flex: 1 1 120px;
  }

  .media-drop-zone,
  .video-drop-zone {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .media-action-btns {
    width: 100%;
    justify-content: center;
  }

  .media-action-btns .btn {
    flex: 1 1 130px;
  }

  .service-add-row {
    flex-direction: column;
  }

  .service-add-row .btn {
    width: 100%;
  }

  .wizard-nav-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .wizard-nav-bar #backStepBtn {
    flex: 0 0 auto;
    padding: 10px 14px;
  }

  .wizard-nav-bar #nextStepBtn {
    flex: 1 1 auto;
    padding: 10px 16px;
  }

  .nav-middle-actions {
    display: none;
  }

  .success-actions {
    flex-direction: column;
  }
}

/* Small Smartphone (max-width: 480px) */
@media (max-width: 480px) {
  .app-layout {
    padding: 0 8px;
  }

  .wizard-card {
    padding: 16px 10px;
  }

  .brand-logo {
    height: 28px;
  }

  .brand-title {
    font-size: 11px;
  }

  .draft-indicator {
    padding: 2px 6px;
    font-size: 9px;
  }

  .mobile-preview-btn {
    padding: 6px 10px;
    font-size: 10px;
  }

  .mobile-btn-text {
    display: none;
  }

  .phone-input-group {
    flex-direction: column;
  }

  .country-code-select-wrap {
    flex: 1 1 100%;
    width: 100%;
  }

  .gallery-thumbs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-header {
    flex-direction: column;
    gap: 6px;
  }

  .step-counter-box {
    align-self: flex-start;
  }

  .step-title {
    font-size: 18px;
  }
}
