    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
      min-height: 100vh;
      color: #fff;
    }
    
    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    
    .header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .header h1 {
      font-size: 2.5rem;
      background: linear-gradient(135deg, #00d4ff, #00ff88);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    }
    
    .header p { color: #888; font-size: 1.1rem; }
    
    .launch-badge {
      display: inline-block;
      background: linear-gradient(135deg, #ff6b6b, #ffa500);
      color: #000;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 0.85rem;
      margin-bottom: 15px;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    
    .progress-bar {
      display: flex;
      justify-content: space-between;
      margin-bottom: 40px;
      position: relative;
    }
    
    .progress-bar::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background: #333;
      transform: translateY(-50%);
      z-index: 0;
    }
    
    .progress-step {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #1a1a2e;
      border: 2px solid #333;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 0.85rem;
      z-index: 1;
      transition: all 0.3s ease;
    }
    
    .progress-step.active {
      border-color: #00d4ff;
      background: linear-gradient(135deg, #00d4ff22, #00ff8822);
      color: #00d4ff;
    }
    
    .progress-step.completed {
      border-color: #00ff88;
      background: #00ff88;
      color: #000;
    }
    
    .form-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 40px;
      backdrop-filter: blur(10px);
    }
    
    .step { display: none; }
    .step.active { display: block; }
    
    .step-title {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #00d4ff;
    }
    
    .step-subtitle {
      color: #666;
      margin-bottom: 30px;
    }
    
    .form-group { margin-bottom: 25px; }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    label {
      display: block;
      margin-bottom: 8px;
      color: #aaa;
      font-size: 0.9rem;
    }
    
    input, select, textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid #333;
      border-radius: 10px;
      background: rgba(0,0,0,0.3);
      color: #fff;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: #00d4ff;
      box-shadow: 0 0 20px rgba(0,212,255,0.2);
    }
    
    textarea { min-height: 100px; resize: vertical; }
    select option { background: #1a1a2e; }
    
    .business-types {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
      margin-bottom: 20px;
    }
    
    .business-type {
      padding: 18px 10px;
      border: 2px solid #333;
      border-radius: 15px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .business-type:hover {
      border-color: #00d4ff;
      background: rgba(0,212,255,0.1);
    }
    
    .business-type.selected {
      border-color: #00ff88;
      background: rgba(0,255,136,0.15);
    }
    
    .business-type .icon { font-size: 1.8rem; margin-bottom: 8px; }
    .business-type .name { font-size: 0.85rem; }
    
    /* Logo Upload */
    .logo-upload-area {
      border: 2px dashed #333;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }
    
    .logo-upload-area:hover {
      border-color: #00d4ff;
      background: rgba(0,212,255,0.05);
    }
    
    .logo-upload-area.has-file {
      border-color: #00ff88;
      background: rgba(0,255,136,0.1);
    }
    
    .logo-upload-area input { display: none; }
    .logo-upload-area .icon { font-size: 3rem; margin-bottom: 10px; }
    .logo-upload-area .text { color: #888; }
    .logo-upload-area .filename { color: #00ff88; margin-top: 10px; font-weight: bold; }
    
    .logo-preview {
      max-width: 200px;
      max-height: 100px;
      margin: 15px auto;
      display: none;
    }
    
    .logo-preview.visible { display: block; }
    
    /* Color Picker */
    .color-section {
      background: rgba(0,0,0,0.2);
      border-radius: 15px;
      padding: 20px;
      margin-bottom: 20px;
    }
    
    .color-section h4 {
      color: #00d4ff;
      margin-bottom: 15px;
      font-size: 0.9rem;
    }
    
    .extracted-colors {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 15px;
    }
    
    .color-swatch {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .color-swatch:hover, .color-swatch.selected {
      border-color: #fff;
      transform: scale(1.1);
    }
    
    .color-presets {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
    }
    
    .color-preset {
      aspect-ratio: 1;
      border-radius: 8px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.2s ease;
    }
    
    .color-preset:hover, .color-preset.selected {
      border-color: #fff;
      transform: scale(1.1);
    }
    
    /* Mode Selection */
    .mode-selection {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .mode-option {
      padding: 25px;
      border: 2px solid #333;
      border-radius: 15px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .mode-option:hover { border-color: #00d4ff; }
    
    .mode-option.selected {
      border-color: #00ff88;
      background: rgba(0,255,136,0.1);
    }
    
    .mode-option.disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .mode-option .preview {
      width: 100%;
      height: 60px;
      border-radius: 8px;
      margin-bottom: 10px;
    }
    
    .mode-option.light .preview {
      background: linear-gradient(135deg, #fff, #f0f0f0);
      border: 1px solid #ddd;
    }
    
    .mode-option.dark .preview {
      background: linear-gradient(135deg, #1a1a2e, #0a0a0f);
      border: 1px solid #333;
    }
    
    .mode-note {
      background: rgba(255,200,0,0.1);
      border: 1px solid rgba(255,200,0,0.3);
      border-radius: 10px;
      padding: 12px;
      margin-top: 15px;
      font-size: 0.85rem;
      color: #ffc800;
      display: none;
    }
    
    .mode-note.visible { display: block; }
    
    /* Photo Section */
    .photo-options {
      display: grid;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .photo-option {
      padding: 20px;
      border: 2px solid #333;
      border-radius: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .photo-option:hover { border-color: #00d4ff; }
    
    .photo-option.selected {
      border-color: #00ff88;
      background: rgba(0,255,136,0.1);
    }
    
    .photo-option h4 { margin-bottom: 5px; }
    .photo-option p { color: #666; font-size: 0.85rem; }
    .photo-option .price { color: #00ff88; font-weight: bold; margin-top: 8px; }
    
    .photo-upload-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 15px;
    }
    
    .photo-upload-slot {
      aspect-ratio: 1;
      border: 2px dashed #333;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      overflow: hidden;
      position: relative;
    }
    
    .photo-upload-slot:hover { border-color: #00d4ff; }
    
    .photo-upload-slot.has-image {
      border-style: solid;
      border-color: #00ff88;
    }
    
    .photo-upload-slot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .photo-upload-slot .placeholder {
      color: #555;
      font-size: 2rem;
    }
    
    /* Packages */
    .packages { display: grid; gap: 15px; margin-bottom: 20px; }
    
    .package {
      padding: 20px;
      border: 2px solid #333;
      border-radius: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .package:hover { border-color: #00d4ff; }
    
    .package.selected {
      border-color: #00ff88;
      background: rgba(0,255,136,0.1);
    }
    
    .package.recommended { position: relative; }
    
    .package.recommended::before {
      content: '★ RECOMMENDED';
      position: absolute;
      top: -10px;
      left: 20px;
      background: linear-gradient(135deg, #00d4ff, #00ff88);
      color: #000;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.65rem;
      font-weight: bold;
    }
    
    .package-info h3 { margin-bottom: 5px; font-size: 1.1rem; }
    .package-info p { color: #666; font-size: 0.8rem; }
    
    .package-price {
      text-align: right;
    }
    
    .package-price .launch {
      font-size: 1.4rem;
      font-weight: bold;
      color: #00ff88;
    }
    
    .package-price .regular {
      font-size: 0.8rem;
      color: #666;
      text-decoration: line-through;
    }
    
    /* Addons */
    .checkbox-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .checkbox-item {
      padding: 10px 16px;
      border: 1px solid #333;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.85rem;
    }
    
    .checkbox-item:hover { border-color: #00d4ff; }
    
    .checkbox-item.selected {
      border-color: #00ff88;
      background: rgba(0,255,136,0.15);
    }
    
    /* Buttons */
    .buttons {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    .btn {
      flex: 1;
      padding: 15px 30px;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-back {
      background: transparent;
      border: 1px solid #333;
      color: #888;
    }
    
    .btn-back:hover {
      border-color: #666;
      color: #fff;
    }
    
    .btn-next {
      background: linear-gradient(135deg, #00d4ff, #00ff88);
      color: #000;
    }
    
    .btn-next:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0,212,255,0.3);
    }
    
    .btn-next:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }
    
    /* Summary */
    .summary-section {
      background: rgba(0,0,0,0.2);
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
    }
    
    .summary-section h4 {
      color: #00d4ff;
      margin-bottom: 15px;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .summary-item {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid #222;
      font-size: 0.9rem;
    }
    
    .summary-item:last-child { border-bottom: none; }
    .summary-item .label { color: #666; }
    
    .summary-total {
      display: flex;
      justify-content: space-between;
      padding: 20px;
      background: linear-gradient(135deg, #00d4ff22, #00ff8822);
      border-radius: 10px;
      font-size: 1.2rem;
      font-weight: bold;
    }
    
    .summary-total .amount { color: #00ff88; }
    
    .monthly-note {
      background: rgba(0,212,255,0.1);
      border: 1px solid rgba(0,212,255,0.3);
      border-radius: 10px;
      padding: 15px;
      margin-top: 15px;
      font-size: 0.85rem;
    }
    
    .monthly-note strong { color: #00d4ff; }
    
    /* Success */
    .success-message {
      text-align: center;
      padding: 60px 20px;
    }
    
    .success-icon { font-size: 4rem; margin-bottom: 20px; }
    .success-message h2 { color: #00ff88; margin-bottom: 15px; }
    
    @media (max-width: 600px) {
      .header h1 { font-size: 1.8rem; }
      .form-card { padding: 25px; }
      .business-types { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .mode-selection { grid-template-columns: 1fr; }
      .buttons { flex-direction: column; }
      .photo-upload-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .domain-option {
      padding: 15px;
      margin-bottom: 10px;
      background: rgba(255,255,255,0.03);
      border: 1px solid #333;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .domain-option:hover:not(.unavailable) {
      border-color: #00d4ff;
      background: rgba(0,212,255,0.1);
    }
    .domain-option.selected {
      border-color: #00ff88;
      background: rgba(0,255,136,0.1);
    }
    .domain-option.unavailable {
      opacity: 0.5;
      cursor: not-allowed;
    }

/* ============ MODULAR INTAKE ADDITIONS ============ */

/* Pricing Summary */
.pricing-summary {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 20px;
}

.pricing-section {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.pricing-section h4 {
  color: #00d4ff;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.pricing-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-section li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-section li:last-child {
  border-bottom: none;
}

.section-total {
  text-align: right;
  color: #888;
  font-size: 0.9rem;
  margin-top: 10px;
}

.grand-total {
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,255,136,0.1));
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  font-weight: bold;
}

.total-row span:last-child {
  color: #00ff88;
}

.total-note {
  color: #888;
  font-size: 0.8rem;
  margin-top: 5px;
  text-align: right;
}

.required-badge {
  background: #ffa500;
  color: #000;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 5px;
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.package-card {
  background: rgba(255,255,255,0.03);
  border: 2px solid #333;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.package-card:hover {
  border-color: #00d4ff;
  background: rgba(0,212,255,0.05);
}

.package-card.selected {
  border-color: #00ff88;
  background: rgba(0,255,136,0.1);
}

.package-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.package-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff88;
}

/* Hosting Grid */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.hosting-option {
  background: rgba(255,255,255,0.03);
  border: 2px solid #333;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.hosting-option:hover {
  border-color: #00d4ff;
}

.hosting-option.selected {
  border-color: #00ff88;
  background: rgba(0,255,136,0.1);
}

.hosting-name {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.hosting-price {
  color: #00ff88;
  font-weight: bold;
}

/* Addon Items */
.addon-group {
  margin-bottom: 20px;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 5px;
  margin-bottom: 5px;
  cursor: pointer;
}

.addon-item:hover {
  background: rgba(255,255,255,0.05);
}

.addon-item input {
  width: auto;
}

.addon-item span:last-child {
  margin-left: auto;
  color: #00d4ff;
}

/* Logo Options */
.logo-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.logo-option {
  background: rgba(255,255,255,0.03);
  border: 2px solid #333;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.logo-option:hover {
  border-color: #00d4ff;
}

.logo-option.selected {
  border-color: #00ff88;
  background: rgba(0,255,136,0.1);
}

.logo-option .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Photo Options */
.photo-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.photo-option {
  background: rgba(255,255,255,0.03);
  border: 2px solid #333;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.photo-option:hover {
  border-color: #00d4ff;
}

.photo-option.selected {
  border-color: #00ff88;
  background: rgba(0,255,136,0.1);
}

.photo-option .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.photo-option .desc {
  color: #888;
  font-size: 0.8rem;
}

/* Review Section */
.review-section {
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
}

.review-section h4 {
  color: #00d4ff;
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

/* Loading State */
.loading {
  color: #888;
  text-align: center;
  padding: 20px;
}

/* Mode Selection */
.mode-selection {
  display: flex;
  gap: 15px;
}

.mode-option {
  flex: 1;
  padding: 15px;
  border: 2px solid #333;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.mode-option:hover {
  border-color: #00d4ff;
}

.mode-option.selected {
  border-color: #00ff88;
  background: rgba(0,255,136,0.1);
}

/* Domain suggestions grid */
.domain-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.domain-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: rgba(255,255,255,0.03);
  border: 2px solid #333;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.domain-option.available:hover {
  border-color: #00d4ff;
}

.domain-option.available.selected {
  border-color: #00ff88;
  background: rgba(0,255,136,0.1);
}

.domain-option.unavailable {
  opacity: 0.5;
  cursor: not-allowed;
}

.domain-name {
  font-weight: bold;
}

.domain-price {
  color: #00ff88;
}

.domain-status {
  color: #ff6b6b;
}

/* ============ STEP VISIBILITY FIX ============ */
.step {
  display: none !important;
}

.step.active {
  display: block !important;
}

/* Color Presets Grid - 4 columns */
.color-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 300px;
}

.color-preset {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s;
}

.color-preset:hover {
  transform: scale(1.1);
  border-color: rgba(255,255,255,0.3);
}

.color-preset.selected {
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
  transform: scale(1.1);
}

/* Logo upload area */
.logo-upload-area {
  border: 2px dashed #444;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.logo-upload-area:hover {
  border-color: #00d4ff;
  background: rgba(0,212,255,0.05);
}

.logo-upload-area .icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.logo-upload-area .text {
  color: #888;
}
