/* ═══════════════════════════════════════════════════════════
   Puhu Creative — Onboarding Flow
   Modern dark/light theme toggle · Fluid animations
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Dark Theme (Default) */
  --bg-base:       #0d0f10;
  --bg-panel:      #131618;
  --bg-card:       #1a1d20;
  --bg-hover:      #21252a;
  --bg-input:      #171a1d;

  --border:        #2a2e33;
  --border-hover:  #3d4449;

  --teal-600:      #e5c335;
  --teal-500:      #e5c335;
  --teal-400:      #e5c335;
  --teal-dim:      rgba(229,195,53,.15);
  --teal-glow:     rgba(229,195,53,.35);

  --amber-500:     #f59e0b;
  --amber-400:     #fbbf24;
  --amber-dim:     rgba(245,158,11,.12);

  --emerald-500:   #e5c335;
  --emerald-dim:   rgba(16,185,129,.15);

  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:    #475569;

  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     14px;
  --radius-xl:     20px;

  --sidebar-w:     240px;

  --shadow-card:   0 2px 12px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.3);
  --shadow-glow:   0 0 0 2px var(--teal-600), 0 0 20px var(--teal-glow);

  --transition:    200ms cubic-bezier(.4,0,.2,1);
}

/* Light Theme */
[data-theme="light"] {
  --bg-base:       #f8fafc;
  --bg-panel:      #ffffff;
  --bg-card:       #f1f5f9;
  --bg-hover:      #e2e8f0;
  --bg-input:      #ffffff;

  --border:        #e2e8f0;
  --border-hover:  #cbd5e1;

  --teal-dim:      rgba(229,195,53,.08);
  --amber-dim:     rgba(245,158,11,.08);
  --emerald-dim:   rgba(16,185,129,.08);

  --text-primary:  #0f172a;
  --text-secondary:#475569;
  --text-muted:    #94a3b8;

  --shadow-card:   0 2px 8px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  --shadow-glow:   0 0 0 2px var(--teal-600), 0 0 16px rgba(229,195,53,.2);
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background 300ms ease, color 300ms ease;
}

body {
  display: flex;
  flex-direction: row;
}

svg {
  flex-shrink: 0;
}

button { cursor: pointer; border: none; background: none; color: inherit; font: inherit; }
select { font: inherit; }
input { font: inherit; }
textarea { font: inherit; }
a { text-decoration: none; color: inherit; }

/* ─────────────── SIDEBAR ─────────────── */

.sidebar {
  background: var(--bg-panel);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  height: 100%;
  z-index: 40;
  overflow-y: auto;
  flex-shrink: 0;
  transition: background 300ms ease, border-color 300ms ease;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: border-color 300ms ease;
}

.logo-image {
  height: 34px;
  width: auto;
  max-width: calc(100% - 72px);
  object-fit: contain;
  display: block;
}


.logo-mark {
  width: 36px; 
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-600), #e5c335);
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 4px 12px rgba(229,195,53,.3);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: white;
  stroke: none;
}

.logo-text {
  font-size: 18px; 
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--teal-400), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex: 1;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: absolute;
  right: 20px;
  top: 24px;
}

.theme-toggle:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.theme-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.nav-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-item:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.nav-item.active {
  background: var(--teal-dim);
  color: var(--teal-400);
  font-weight: 600;
}

.nav-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
  transition: background 300ms ease;
}

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 300ms ease;
}

.package-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition);
}

.package-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.package-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-badge {
  font-size: 11px;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.5px;
}

.package-notice {
  font-size: 12px;
  color: var(--text-muted);
}

.package-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: linear-gradient(135deg, var(--teal-600), #e5c335);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 12px rgba(229,195,53,.25);
}

.package-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.logout-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.logout-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* ─────────────── MAIN CONTENT ─────────────── */

.main-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: background 300ms ease;
}

/* ─────────────── TOPBAR ─────────────── */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  min-height: 64px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
  z-index: 30;
  flex-shrink: 0;
  transition: all 300ms ease;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.user-email {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.user-role {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(139,92,246,.3);
}

/* ─────────────── ONBOARDING CONTAINER ─────────────── */

.onboarding-container {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Progress Header */
.progress-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.progress-info {
  flex: 1;
}

.progress-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.progress-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.progress-count {
  font-size: 28px;
  font-weight: 800;
  color: var(--amber-500);
  padding: 12px 20px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-lg);
  min-width: 100px;
  text-align: center;
}

/* Progress Bar */
.progress-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 300ms ease;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: var(--bg-hover);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400), var(--amber-500));
  border-radius: 999px;
  width: 25%;
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.progress-step.active,
.progress-step.done {
  opacity: 1;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-hover);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
}

.progress-step.active .step-circle {
  background: linear-gradient(135deg, var(--teal-600), #e5c335);
  border-color: var(--teal-400);
  color: white;
  box-shadow: 0 0 20px var(--teal-glow);
}

.progress-step.done .step-circle {
  background: var(--emerald-dim);
  border-color: var(--emerald-500);
  color: var(--emerald-500);
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.progress-step.active .step-label {
  color: var(--text-primary);
}

/* Step Status */
.step-status {
  padding: 14px 20px;
  background: var(--emerald-dim);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--emerald-500);
  display: none;
}

.step-status.visible {
  display: block;
  animation: slideDown 300ms ease;
}

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

/* Step Content */
.step-content {
  position: relative;
  min-height: 400px;
}

.step-panel {
  display: none;
  animation: fadeIn 300ms ease;
}

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

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

.panel-header {
  margin-bottom: 24px;
}

.panel-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.panel-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.panel-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 300ms ease;
}

/* Form Elements */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-primary);
  transition: all var(--transition);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px var(--teal-dim);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.input-prefix {
  position: relative;
  display: flex;
  align-items: center;
}

.prefix {
  position: absolute;
  left: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  pointer-events: none;
}

.form-input.with-prefix {
  padding-left: 32px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.color-input {
  font-family: 'Monaco', 'Courier New', monospace;
}

/* File Upload */
.file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-upload-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
  flex-shrink: 0;
}

.file-upload-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.file-upload-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.file-name {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal-600);
  cursor: pointer;
}

.checkbox-label {
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkbox-label svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

/* Slider */
.slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--bg-hover);
  outline: none;
  transition: background var(--transition);
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), #e5c335);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(229,195,53,.4);
  transition: transform var(--transition);
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), #e5c335);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(229,195,53,.4);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.slider-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.slider-label span {
  color: var(--teal-400);
}

/* Info Box */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.info-icon {
  width: 20px;
  height: 20px;
  stroke: #3b82f6;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Connection Grid */
.connection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.connection-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.connection-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.connection-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.connection-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connection-icon.google {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.connection-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.connection-icon.facebook {
  background: #1877f2;
}

.connection-icon.tiktok {
  background: linear-gradient(135deg, #000000, #69C9D0, #EE1D52);
}

.connection-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: white;
}

.connection-info {
  flex: 1;
}

.connection-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.connection-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.connection-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  align-self: flex-start;
}

.connection-status.disconnected {
  background: rgba(239,68,68,.12);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,.2);
}

.connection-status.connected {
  background: var(--emerald-dim);
  color: var(--emerald-500);
  border: 1px solid rgba(16,185,129,.2);
}

.connection-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
}

.connection-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 500;
}

.stat-value {
  color: var(--text-primary);
  font-weight: 600;
}

.connection-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.connection-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.connection-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.connection-btn.primary {
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.connection-btn.primary:hover {
  background: var(--bg-hover);
  border-color: var(--border-hover);
}

.connection-btn.instagram-btn {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: white;
  border: none;
}

.connection-btn.facebook-btn {
  background: #1877f2;
  color: white;
  border: none;
}

.connection-btn.tiktok-btn {
  background: linear-gradient(135deg, #000000, #69C9D0);
  color: white;
  border: none;
}

.connection-btn.secondary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.connection-btn.secondary:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* Step Footer */
.step-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.btn-secondary,
.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-secondary svg,
.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-600), #e5c335);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(229,195,53,.25);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(229,195,53,.35);
}

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

/* Responsive */
@media (max-width: 968px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .progress-header {
    flex-direction: column;
  }

  .progress-count {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .topbar {
    padding: 0 20px;
  }

  .onboarding-container {
    padding: 20px;
  }

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