/* Getting Started Component Styles */
.getting-started-section {
  padding: 60px 0;
  background: var(--bg);
}

.section-header {
  text-align: center !important;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-header h2 {
  font-size: 32px;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--text);
  text-align: center !important;
  width: 100%;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  text-align: center !important;
  width: 100%;
  max-width: 600px;
}

/* Installation Selector */
.installation-selector {
  margin-bottom: 50px;
}

.selector-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.tab-btn:hover {
  background: var(--surface-light);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.tab-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.tab-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.tab-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.tab-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.tab-badge {
  background: var(--accent);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn.active .tab-badge {
  background: rgba(0, 0, 0, 0.2);
  color: var(--bg);
}

/* Installation Methods */
.installation-method {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.installation-method.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


/* Auto Install Section */
.auto-install-section {
  margin-bottom: 40px;
}

.auto-install-card {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.auto-install-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.auto-install-header h4 {
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--bg);
}

.auto-install-header p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  margin: 0 0 24px;
  line-height: 1.5;
}

.auto-install-actions {
  position: relative;
  z-index: 1;
}

.auto-install-btn {
  background: var(--bg);
  color: var(--primary);
  border: none;
  border-radius: 16px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.auto-install-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.auto-install-btn:active {
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 20px;
}

.install-note {
  margin-top: 16px;
}

.install-note small {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-style: italic;
}

.method-header {
  text-align: center;
  margin-bottom: 40px;
}

.method-header h3 {
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--text);
}

.method-header p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}



/* Quick Start Checklist */
.quick-start-checklist {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.quick-start-checklist h3 {
  font-size: 24px;
  margin: 0 0 30px;
  font-weight: 600;
  color: var(--text);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.checklist-category h4 {
  font-size: 18px;
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  color: var(--text-muted);
  font-size: 14px;
  padding: 8px 0;
  text-align: left;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.checklist-item:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 1024px) {
  .getting-started-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .selector-tabs {
    max-width: 100%;
    width: 100%;
  }
  
  .tab-btn {
    padding: 12px 16px;
    min-height: 60px;
  }
}

@media (max-width: 768px) {
  .getting-started-section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .step-item {
    padding: 24px 20px;
  }

  .quick-start-checklist {
    padding: 30px 20px;
  }

  .selector-tabs {
    max-width: 100%;
    width: 100%;
    padding: 6px;
  }
  
  .tab-btn {
    padding: 12px 8px;
    min-height: 60px;
  }
  
  .tab-content {
    gap: 8px;
  }
  
  .tab-icon {
    font-size: 20px;
  }
  
  .tab-title {
    font-size: 14px;
  }
  
  .tab-badge {
    font-size: 10px;
    padding: 1px 6px;
  }
}