/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(30, 41, 59, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-blue: #4285f4;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --accent-green: #34d399;
  --accent-amber: #fbbf24;
  --accent-red: #f87171;
  --gradient-gemini: linear-gradient(135deg, #4285f4, #a855f7, #ec4899);
  --gradient-card: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(168, 85, 247, 0.05));
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(66, 133, 244, 0.15);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --sidebar-width: 320px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: rgba(66, 133, 244, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== LAYOUT ===== */
.app-layout {
  display: flex;
  min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-glass);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform 0.3s ease;
}

.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-glass);
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.08), transparent);
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gemini);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.logo-text {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.logo-text span {
  background: var(--gradient-gemini);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.session-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-blue);
}

.session-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Progress bar */
.progress-container {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-glass);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-gemini);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Timer */
.timer-container {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-icon {
  font-size: 18px;
}

.timer-display {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--accent-blue);
  font-weight: 500;
}

.timer-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* Nav */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
  position: relative;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.nav-item.active {
  background: rgba(66, 133, 244, 0.08);
  border-left-color: var(--accent-blue);
}

.nav-item.completed .nav-number {
  background: var(--accent-green);
  color: #fff;
}

.nav-number {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-item.active .nav-number {
  background: var(--accent-blue);
  color: #fff;
}

.nav-info {
  flex: 1;
  min-width: 0;
}

.nav-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-item.active .nav-title {
  color: var(--text-primary);
}

.nav-time {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-check {
  color: var(--accent-green);
  font-size: 14px;
  display: none;
}

.nav-item.completed .nav-check {
  display: block;
}

/* Sidebar footer */
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-glass);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  min-height: 100vh;
}

/* Hero */
.hero {
  padding: 80px 60px 60px;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.06) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Google Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 700px;
}

.hero h1 .gradient-text {
  background: var(--gradient-gemini);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.meta-item .icon {
  font-size: 16px;
}

/* Section / Step */
.step-section {
  padding: 48px 40px 60px;
  border-top: 1px solid var(--border-glass);
  max-width: 860px;
  margin: 0 auto;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-gemini);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}

.step-title-group {
  flex: 1;
}

.step-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.step-duration {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--accent-amber);
  margin-top: 4px;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(66, 133, 244, 0.2);
  box-shadow: var(--shadow-glow);
}

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

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.card-icon.blue {
  background: rgba(66, 133, 244, 0.15);
}

.card-icon.purple {
  background: rgba(168, 85, 247, 0.15);
}

.card-icon.pink {
  background: rgba(236, 72, 153, 0.15);
}

.card-icon.green {
  background: rgba(52, 211, 153, 0.15);
}

.card-icon.amber {
  background: rgba(251, 191, 36, 0.15);
}

.card-title {
  font-size: 16px;
  font-weight: 600;
}

.card-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Objectives */
.objectives {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.06), rgba(168, 85, 247, 0.04));
  border: 1px solid rgba(66, 133, 244, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}

.objectives h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.objectives ul {
  list-style: none;
}

.objectives li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.objectives li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
}

/* Prompt block */
.prompt-block {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  margin: 16px 0;
  overflow: hidden;
}

.prompt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.prompt-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-purple);
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.copy-btn:hover {
  background: rgba(66, 133, 244, 0.2);
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

.copy-btn.copied {
  background: rgba(52, 211, 153, 0.2);
  color: var(--accent-green);
  border-color: var(--accent-green);
}

.prompt-body {
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Tip / Info boxes */
.tip-box {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  margin: 16px 0;
  font-size: 14px;
}

.tip-box.pro {
  background: rgba(66, 133, 244, 0.06);
  border: 1px solid rgba(66, 133, 244, 0.15);
}

.tip-box.warning {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.tip-box.success {
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.tip-box .tip-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.tip-box .tip-content {
  color: var(--text-secondary);
  line-height: 1.6;
}

.tip-box .tip-content strong {
  color: var(--text-primary);
}

/* Instruction steps */
.instruction-list {
  counter-reset: step;
  margin: 16px 0;
}

.instruction-step {
  counter-increment: step;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.instruction-step:last-child {
  border-bottom: none;
}

.instruction-step::before {
  content: counter(step);
  width: 32px;
  height: 32px;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.instruction-content {
  flex: 1;
}

.instruction-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.instruction-content p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Collapsible */
.collapsible {
  margin: 16px 0;
}

.collapsible-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.collapsible-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

.collapsible-toggle .arrow {
  transition: transform 0.3s ease;
}

.collapsible-toggle.open .arrow {
  transform: rotate(90deg);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
}

.collapsible-content.open {
  max-height: 2000px;
  padding: 16px;
}

/* Navigation buttons */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.nav-btn.prev {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}

.nav-btn.prev:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.nav-btn.next {
  background: var(--accent-blue);
  color: #fff;
}

.nav-btn.next:hover {
  background: #5a95f5;
  transform: translateX(2px);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn.complete {
  background: var(--accent-green);
}

/* Checkbox tasks */
.task-checklist {
  margin: 16px 0;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.task-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: transparent;
  font-size: 12px;
}

.task-checkbox.checked {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
}

.task-label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 20px;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
}

/* Instructor card */
.instructor-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.06), rgba(168, 85, 247, 0.04));
  border: 1px solid rgba(66, 133, 244, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}

.instructor-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(66, 133, 244, 0.3);
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.2);
  flex-shrink: 0;
}

.instructor-info {
  flex: 1;
}

.instructor-info h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.instructor-role {
  font-size: 13px;
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 10px;
}

.instructor-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.instructor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge-pill.google {
  background: rgba(66, 133, 244, 0.12);
  color: #7aabf7;
  border: 1px solid rgba(66, 133, 244, 0.2);
}

.badge-pill.microsoft {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.badge-pill.cloud {
  background: rgba(52, 211, 153, 0.1);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.instructor-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.instructor-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.instructor-links a:hover {
  color: var(--accent-blue);
  border-color: rgba(66, 133, 244, 0.3);
  background: rgba(66, 133, 244, 0.06);
}

/* Feature grid (Google Workspace inspired) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  border-color: rgba(66, 133, 244, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.feature-card .feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.feature-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Download button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  margin: 16px 0;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(66, 133, 244, 0.4);
}

.download-btn .dl-icon {
  font-size: 18px;
}

/* CRM integration banner */
.crm-banner {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(168, 85, 247, 0.06), rgba(236, 72, 153, 0.04));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 20px 0;
}

.crm-banner h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--gradient-gemini);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.crm-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.crm-option {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
}

.crm-option h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.crm-option p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.crm-option ul {
  list-style: none;
  margin-top: 8px;
}

.crm-option ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.crm-option ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
}

/* Inline link */
a.inline-link {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(66, 133, 244, 0.3);
  transition: var(--transition);
}

a.inline-link:hover {
  border-bottom-color: var(--accent-blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .overlay.visible {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .hero {
    padding: 80px 24px 40px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .step-section {
    padding: 32px 24px 48px;
  }

  .crm-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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