/* Email-specific styles - only unique overrides */

.step-indicator.active {
  background: #168aad;
  color: white;
}

.step-indicator.completed {
  background: #52b69a;
  color: white;
}

.step-indicator.upcoming {
  background: #d1d5db;
  color: #6b7280;
}

.step-indicator:hover {
  box-shadow: 0 4px 8px rgba(22, 138, 173, 0.3);
}

.step-indicator.completed:hover {
  background: #168aad;
}

.wizard-card {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.step-content {
  padding: 3rem;
  min-height: 500px;
}


.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.option-card:hover {
  border-color: #168aad;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 138, 173, 0.15);
}

.option-card.selected {
  border-color: #168aad;
  background: #d9ed92;
}

.option-emoji {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.option-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  display: inline;
}

.option-description {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.form-input:focus {
  outline: none;
  border-color: #168aad;
}

.form-textarea:focus {
  outline: none;
  border-color: #168aad;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.checkbox-item:hover {
  border-color: #168aad;
  background: #d9ed92;
}

.checkbox-item.selected {
  border-color: #168aad;
  background: #d9ed92;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #168aad;
}

/* Email-specific primary colors for nav-button.primary */
:root {
  --primary: #168aad;
  --primary-hover: #1e6091;
  --primary-foreground: white;
}

.step-indicator:focus {
  outline: 2px solid #168aad;
  outline-offset: 2px;
}

.success-card {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #d9ed92 0%, #b5e48c 100%);
  border-radius: 16px;
  margin: 2rem 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #168aad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.platform-card:hover {
  border-color: #168aad;
  box-shadow: 0 4px 12px rgba(22, 138, 173, 0.1);
}

.platform-features li::before {
  content: "•";
  color: #168aad;
  margin-right: 0.5rem;
}

.platform-button {
  background: #168aad;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.platform-button:hover {
  background: #1e6091;
}

/* Summary grid styling */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.summary-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
}

.summary-section h3 {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.4;
  min-height: 1.5rem;
}

@media (max-width: 768px) {
  .wizard-container {
    padding: 1rem 0;
  }

  .wizard-title {
    font-size: 2rem;
  }

  .step-content {
    padding: 2rem 1.5rem;
  }


  .step-progress {
    gap: 0.5rem;
  }

  .step-indicator {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .step-connector {
    width: 20px;
  }

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

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

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