/* This CSS is for onboarding module and created by Shashwat Uchil 02-2026
These styles will need to be replaced by Bootstrap and existing styles.css where possible
Whatever is left over will need to be merged in styles.css by 03-10-2026 */

/* Header Styles */
.signup-header {
  background-color: #ffffff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.header-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.progress-step {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}

.progress-bar {
  width: 100px;
  height: 4px;
  background-color: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #10b981;
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch.small {
  width: 36px;
  height: 20px;
}

.toggle-switch.small .toggle-slider::before {
  height: 14px;
  width: 14px;
}

.toggle-switch.small input:checked + .toggle-slider::before {
  transform: translateX(16px);
}

.assistant-tasks {
  padding: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}

.tasks-title {
  font-size: 0.65rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin: 0 0 0.75rem 0;
}

.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.task-label {
  font-size: 0.875rem;
  color: #1e293b;
}

/* Bootstrap form-switch customization */
.form-check-input:checked {
  background-color: #10b981;
  border-color: #10b981;
}

.form-check-input:focus {
  border-color: #10b981;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280,0,0,.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position .15s ease-in-out;
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255,255,255,1.0%29'/%3e%3c/svg%3e");
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #e5e7eb;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .header-progress {
    display: none;
  }
}

/* Waitlist Form Styles */
.waitlist-container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #ffffff;
}

.waitlist-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.waitlist-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.6;
}

.waitlist-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.waitlist-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #1e293b;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}

.waitlist-input:focus {
  background-color: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.waitlist-input.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.waitlist-input.error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.waitlist-input.valid {
  border-color: #10b981;
}

.waitlist-input.valid:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.waitlist-input::placeholder {
  color: #94a3b8;
}

.error-message {
  font-size: 0.875rem;
  color: #ef4444;
  margin-top: -0.25rem;
  margin-left: 0.25rem;
}

.organization-error {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.75rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #dc2626;
}

.waitlist-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #1e293b;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
}

.waitlist-submit-btn:hover {
  background-color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.waitlist-submit-btn:disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.waitlist-submit-btn:disabled:hover {
  background-color: #94a3b8;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  /* Landing page responsive */
  .landing-nav {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .btn-sign-up,
  .btn-view-demo {
    width: 100%;
  }

  .features-section {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  /* Signup form responsive */
  .signup-page {
    padding: 1rem;
  }

  .signup-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .hire-options {
    flex-direction: column;
    gap: 2rem;
  }

  .avatar-container {
    width: 120px;
    height: 120px;
  }

  .avatar-name {
    font-size: 1.5rem;
  }

  .fte-input {
    width: 160px;
  }

  .organization-title {
    font-size: 1.25rem;
  }

  .organization-input {
    font-size: 0.95rem;
  }
}

/* Provider Suggestions Styles */
.name-input-container {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.email-input-container {
  position: relative;
  width: 100%;
}

.provider-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 4px;
}

.provider-suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.provider-suggestion-item:hover {
  background-color: #f8fafc;
}

.provider-suggestion-item:last-child {
  border-bottom: none;
}

.provider-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.provider-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

.provider-email {
  font-size: 0.85rem;
  color: #6b7280;
}

.provider-loading {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}

.no-providers-found {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
  font-style: italic;
}

/* Product Info */
.product-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.product-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.product-details {
  flex: 1;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px 0;
}

.product-plan {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 4px 0;
}

.product-features {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Payment Method Icons */
.payment-method-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.card-icon {
  font-size: 24px;
  opacity: 0.6;
}



/* Stripe Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
* {
  box-sizing: border-box;
}


/* Secondary Navigation */
.dashboard-secondary-nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
}

.secondary-nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  padding: 1rem 0;
}

/* DISABLED - Conflicts with Bootstrap .nav-tabs */
/*
.nav-tabs {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-tab {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  display: inline-block;
}

.nav-tab:hover {
  color: #3b82f6;
}

/* Dashboard Loading State */
.dashboard-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 2rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.dashboard-loading p {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

/* Dashboard Error State */
.dashboard-error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 2rem;
}

.error-content {
  text-align: center;
  max-width: 400px;
}

.error-content h3 {
  color: #dc2626;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.error-content p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.error-content button {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.error-content button:hover {
  background-color: #2563eb;
}



@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

    /* Onboarding Layout Styles */
.onboarding-layout {
  min-height: 100vh;
  background-color: #f8fafc;
}

.onboarding-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.onboarding-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.onboarding-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.onboarding-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
}

.onboarding-navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.onboarding-user-avatar {
  cursor: pointer;
}

/* Navigation Tabs in Main Navbar */
.onboarding-nav-tabs {
  display: flex;
  gap: 0;
  align-items: center;
  margin-left: 3rem;
}

.onboarding-nav-tab {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  display: inline-block;
}

.onboarding-nav-tab:hover {
  color: #3b82f6;
}

.onboarding-nav-tab.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

.onboarding-main-content {
  padding: 0;
  max-width: 100%;
  margin: 0;
}

/* Secondary Navigation - For Dashboard */
.dashboard-secondary-nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
}

.secondary-nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  padding: 1rem 0;
}

/* DISABLED - Conflicts with Bootstrap .nav-tabs */
/*
.nav-tabs {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-tab {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  display: inline-block;
}

.nav-tab:hover {
  color: #3b82f6;
}

.nav-tab.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}
*/

/* Step Indicator Styles (shared across onboarding) */
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f1f5f9;
  color: #64748b;
  border: 2px solid #e2e8f0;
}

.step-number.active {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.step-content h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.progress-label span:first-child {
  color: #64748b;
}

.progress-percentage {
  color: #2563eb;
  font-weight: 500;
}

.progress-bar {
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #2563eb;
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* survey-js checklist look */
.survey-container .sv-question--checkbox .sv-checkbox {
  margin-right: 0.75rem;              /* gap box ↔ label   */
}

.survey-container .sv-question--checkbox .sv-item {
  display: flex;                      /* keep box + label on same row */
  align-items: flex-start;
  padding: 0;                         /* match card padding */
  border: none;                       /* remove default borders */
}

.survey-container .sv-question--checkbox .sv-item__label {
  font-weight: 600;                   /* bold label (title) */
  font-size: 15px;
  line-height: 24px;
  margin-top: 0px;
}

.survey-container .sv-question--checkbox .sv-question__description {
  color: #6c757d;                     /* grey subtitle */
  margin-left: 2.4rem;                /* indent under label */
  margin-top: -4px;
  font-size: 14px;
}

.survey-container .sv-question--checkbox {
  border: 1px solid #dfe3e8;          /* rounded card */
  border-radius: 8px;
  padding: 18px 24px;
  margin-bottom: 16px;
}

.survey-container .sd-question--title-top {
  display: flex;
}

.survey-container .sd-question__header--location-top {
  margin-left: 40px;
}

.survey-container .sd-question__content {
  position: absolute;
}

.survey-container .sd-root-modern .sd-container-modern__title{
  display: none;
}

/* Save Features Error */
.save-features-error {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #dc2626;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.save-features-error p {
  margin: 0;
}

.save-features-error button {
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
}

.save-features-error button:hover {
  background-color: #b91c1c;
}

.survey-container .sd-body.sd-body--static {
  padding-top: 0 !important;
}

.phone-setup-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 32px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: #f8f9fc;
  min-height: 100vh;
}

/* Header */
.phone-setup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.header-left h1 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px 0;
}

.progress-bar {
  width: 400px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #818cf8);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.xp-badge {
  color: #f59e0b;
  font-size: 13px;
  font-weight: 500;
}

.step-indicator {
  color: #9ca3af;
  font-size: 12px;
}

/* Quick Start Banner */
.quick-start-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.banner-icon {
  font-size: 20px;
  background: #10b981;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 2px 0;
}

.banner-content p {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
}

.banner-content .highlight {
  color: #10b981;
  font-weight: 600;
}

/* Setup Options Section */
.setup-options-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.setup-options-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px 0;
}

.section-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 20px 0;
}

.options-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Option Cards */
.option-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.option-card.selected {
  border-color: #bfdbfe;
  background: #f0f6fe;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.option-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.option-icon.ankr-icon {
  background: #3b82f6;
  color: white;
}

.option-icon.existing-icon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.option-title h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 2px 0;
}

.option-title p {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

/* Feature Items */
.option-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-check {
  color: #10b981;
  font-weight: 600;
  font-size: 13px;
  min-width: 18px;
}

.feature-star {
  color: #f59e0b;
  font-size: 13px;
  min-width: 18px;
}

.feature-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1px;
}

.feature-item p {
  font-size: 11px;
  color: #9ca3af;
  margin: 0;
}

/* Sample Number */
.sample-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.sample-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sample-label {
  font-size: 12px;
  font-weight: 500;
  color: #4b5563;
}

.sample-location {
  font-size: 11px;
  color: #9ca3af;
}

.sample-phone {
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
}

/* Setup Process */
.setup-process {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.process-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 8px;
}

.process-icon {
  font-size: 14px;
}

.process-steps {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: #7c3aed;
  line-height: 1.6;
}

.process-steps li {
  margin-bottom: 2px;
}

/* Option Buttons */
.option-button {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.option-button.primary {
  background: #3b82f6;
  color: white;
}

.option-button.primary:hover:not(:disabled) {
  background: #2563eb;
}

.option-button.secondary {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.option-button.secondary:hover:not(:disabled) {
  background: linear-gradient(135deg, #059669, #10b981);
}

.option-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Phone Tree Section */
.phone-tree-section {
  margin-bottom: 28px;
}

.phone-tree-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.phone-tree-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px 0;
}

.phone-tree-container {
  margin-top: 16px;
  background: #f8f9fc;
  border-radius: 12px;
  padding: 20px;
}

.incoming-call {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.call-icon {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.call-info strong {
  display: block;
  font-size: 14px;
  color: #1a1a2e;
  margin-bottom: 1px;
}

.call-info p {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

.tree-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  border-left: 2px solid #e5e7eb;
  margin-left: 20px;
}

.tree-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  background: transparent;
}

.item-number {
  width: 28px;
  height: 28px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.item-number.emergency {
  background: #ef4444;
}

.tree-item.emergency {
  background: transparent;
}

.item-content strong {
  display: block;
  font-size: 13px;
  color: #1a1a2e;
  margin-bottom: 1px;
}

.item-content p {
  font-size: 11px;
  color: #9ca3af;
  margin: 0;
}

/* Benefits Footer */
.benefits-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 13px;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.benefit-item p {
  font-size: 11px;
  color: #9ca3af;
  margin: 0;
}

/* Navigation Footer */
.navigation-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.nav-button {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
}

.nav-button.previous {
  color: #4b5563;
}

.nav-button.previous:hover {
  color: #1a1a2e;
  background: #f3f4f6;
}

.nav-button.skip {
  color: #6366f1;
  font-weight: 600;
}

.nav-button.skip:hover {
  background: #eef2ff;
}

/* Responsive */
@media (max-width: 768px) {
  .options-container {
    grid-template-columns: 1fr;
  }

  .benefits-footer {
    grid-template-columns: 1fr;
  }

  .progress-bar {
    width: 100%;
  }

  .phone-setup-header {
    flex-direction: column;
    gap: 16px;
  }

  .header-right {
    align-items: flex-start;
  }
}


  
  
