/* ═══════════════════════════════════════════════════════════════
   ShiftWizard Landing Page
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1E1050;
  --bg-card: #281868;
  --bg-subtle: #2F1E72;
  --bg-dark: #160C40;
  --bg-dark-card: #221460;
  --border: #3D2D80;
  --border-strong: #5040A0;
  --text: #F0ECF9;
  --text-secondary: #B8B0D0;
  --text-muted: #7068A0;
  --text-on-dark: #F0ECF9;
  --accent: #8B5CF6;
  --accent-light: #1E1548;
  --accent-dark: #A78BFA;
  --accent-glow: rgba(139, 92, 246, 0.4);
  --pink: #EC4899;
  --orange: #F97316;
  --cyan: #06B6D4;
  --gradient: linear-gradient(135deg, #8B5CF6, #EC4899);
  --gradient-warm: linear-gradient(135deg, #EC4899, #F97316);
  --gradient-cool: linear-gradient(135deg, #3B82F6, #06B6D4);
  --gradient-full: linear-gradient(135deg, #8B5CF6, #EC4899, #F97316);
  --gold: #FBBF24;
  --gold-glow: rgba(251, 191, 36, 0.3);
  --success: #10B981;
  --success-light: #0C2518;
  --danger: #EF4444;
  --danger-light: #2A0E0E;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.4);
  --shadow: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.7);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══ LIGHT MODE OVERRIDE ═══ */
[data-theme="light"] {
  --bg: #F5F3FA;
  --bg-card: #FFFFFF;
  --bg-subtle: #EDEBF6;
  --bg-dark: #0F0A2A;
  --bg-dark-card: #151234;
  --border: #DDD8EB;
  --border-strong: #C4BDD8;
  --text: #1A1535;
  --text-secondary: #5C5680;
  --text-muted: #908AAE;
  --text-on-dark: #F0ECF9;
  --accent: #8B5CF6;
  --accent-light: #EDE5FF;
  --accent-dark: #7C3AED;
  --accent-glow: rgba(139, 92, 246, 0.3);
  --gold: #F59E0B;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --success: #10B981;
  --success-light: #D1FAE5;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --shadow-sm: 0 1px 3px rgba(14,12,26,0.06), 0 1px 2px rgba(14,12,26,0.04);
  --shadow: 0 4px 16px rgba(14,12,26,0.08), 0 2px 4px rgba(14,12,26,0.04);
  --shadow-lg: 0 16px 48px rgba(14,12,26,0.12), 0 4px 12px rgba(14,12,26,0.06);
  --shadow-xl: 0 24px 64px rgba(14,12,26,0.16), 0 8px 20px rgba(14,12,26,0.08);
  color-scheme: light;
}
[data-theme="light"] .shift-opener {
  background: #D1FAE5; color: #065F46; border-left-color: #10B981;
}
[data-theme="light"] .shift-mid {
  background: #EDE9FE; color: #5B21B6; border-left-color: #8B5CF6;
}
[data-theme="light"] .shift-closer {
  background: #DBEAFE; color: #1E40AF; border-left-color: #3B82F6;
}
[data-theme="light"] .navbar {
  background: rgba(245, 243, 250, 0.85);
}
[data-theme="light"] .features {
  background: var(--bg-dark);
}
[data-theme="light"] .footer {
  background: var(--bg-dark);
}
[data-theme="light"] .hero-mockup {
  border-color: var(--border);
  box-shadow: var(--shadow-xl);
}
[data-theme="light"] .compare-them {
  background: #fff;
}
[data-theme="light"] .compare-us {
  background: linear-gradient(to bottom, #fff, #EDE9FE);
}
[data-theme="light"] .btn-ghost {
  background: rgba(139,92,246,0.05);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: background-color 0.4s ease, color 0.4s ease;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ═══ ANIMATIONS ═══ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4), 0 0 40px rgba(236,72,153,0.15);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7C3AED, #DB2777);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(139,92,246,0.5), 0 0 60px rgba(236,72,153,0.2);
  transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-ghost {
  background: rgba(139,92,246,0.08);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(139,92,246,0.15);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-full { width: 100%; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 16, 80, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(139,92,246,0.3));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(139,92,246,0.4);
}
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(139,92,246,0.5) !important;
  transform: translateY(-1px);
}
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 60px;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(60px);
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: #8B5CF6;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: #EC4899;
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px;
  height: 200px;
  background: #F97316;
  top: 40%;
  left: 50%;
  animation: float 15s ease-in-out infinite 5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Sparkle particles */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #A78BFA;
  box-shadow: 0 0 8px #A78BFA, 0 0 20px rgba(167,139,250,0.4);
  pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
}
.sparkle:nth-child(5) { background: #EC4899; box-shadow: 0 0 8px #EC4899, 0 0 20px rgba(236,72,153,0.4); }
.sparkle:nth-child(7) { background: #F97316; box-shadow: 0 0 8px #F97316, 0 0 20px rgba(249,115,22,0.4); }
.sparkle:nth-child(9) { background: #06B6D4; box-shadow: 0 0 8px #06B6D4, 0 0 20px rgba(6,182,212,0.4); }
.sparkle:nth-child(4) { top: 15%; left: 20%; animation-delay: 0s; width: 3px; height: 3px; }
.sparkle:nth-child(5) { top: 25%; right: 30%; animation-delay: 0.8s; width: 5px; height: 5px; }
.sparkle:nth-child(6) { top: 60%; left: 40%; animation-delay: 1.6s; }
.sparkle:nth-child(7) { top: 35%; right: 15%; animation-delay: 2.2s; width: 3px; height: 3px; }
.sparkle:nth-child(8) { top: 75%; left: 25%; animation-delay: 0.4s; width: 5px; height: 5px; }
.sparkle:nth-child(9) { top: 45%; right: 45%; animation-delay: 1.2s; }
.sparkle:nth-child(10) { top: 80%; right: 20%; animation-delay: 2.0s; width: 3px; height: 3px; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* Gradient glow removed — handled by btn-primary::before now */
.hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(139,92,246,0.15);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(139,92,246,0.25);
}
.hero-wizard {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 16px 40px rgba(139,92,246,0.35));
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-proof { display: flex; }
.hero-score {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow);
}
.score-ring {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-bg {
  fill: none;
  stroke: var(--bg-subtle);
  stroke-width: 8;
}
.score-fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.score-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.score-label strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}
.score-label span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══ HERO MOCKUP ═══ */
.hero-visual { perspective: 1200px; }
.hero-mockup {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139,92,246,0.15);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(139,92,246,0.08);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.hero-mockup:hover {
  transform: rotateY(0) rotateX(0);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #e5534b; }
.mockup-dots span:nth-child(2) { background: #d4a148; }
.mockup-dots span:nth-child(3) { background: #57ab5a; }
.mockup-title {
  font-size: 0.78rem;
  opacity: 0.6;
}
.mockup-body { padding: 16px; }
.mockup-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mockup-week {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.mockup-generate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(139,92,246,0.3);
}
.mockup-generate:hover { box-shadow: 0 4px 16px rgba(139,92,246,0.5); }
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.mockup-day-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mockup-shifts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 90px;
}
.mockup-shift {
  font-size: 0.62rem;
  padding: 6px 6px;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  animation: shiftAppear 0.4s forwards;
}
.mockup-shift .shift-name { display: block; font-weight: 700; }
.mockup-shift .shift-time { display: block; font-weight: 400; opacity: 0.75; font-size: 0.58rem; }
.shift-opener { background: rgba(16,185,129,0.12); color: #34D399; border-left: 3px solid #10B981; }
.shift-mid { background: rgba(139,92,246,0.12); color: #A78BFA; border-left: 3px solid #8B5CF6; }
.shift-closer { background: rgba(59,130,246,0.12); color: #60A5FA; border-left: 3px solid #3B82F6; }
@keyframes shiftAppear {
  to { opacity: 1; transform: translateY(0); }
}
.mockup-score {
  margin-top: 12px;
  padding: 10px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}
.mockup-score.show { opacity: 1; }

/* ═══ SECTIONS ═══ */
.section {
  padding: 120px 32px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(139,92,246,0.12);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(139,92,246,0.2);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ═══ HOW IT WORKS ═══ */
.how-it-works { background: var(--bg); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  text-align: center;
  max-width: 280px;
  padding: 0 16px;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}
.step-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-dark);
  transition: all var(--transition);
}
.step:hover .step-icon {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(139,92,246,0.3), 0 8px 24px rgba(0,0,0,0.3);
}
.step-icon svg { width: 40px; height: 40px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--border-strong);
  flex-shrink: 0;
}
.step-connector svg { width: 60px; height: 20px; }

/* ═══ FEATURES ═══ */
.features {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.features .section-tag {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent);
}
.features .section-header p {
  color: rgba(237, 232, 227, 0.6);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.feature-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition);
  filter: blur(15px);
}
.feature-card:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139,92,246,0.15);
}
.feature-card:hover::before {
  opacity: 0.25;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-on-dark);
}
.feature-card p {
  font-size: 0.88rem;
  color: rgba(232, 228, 240, 0.55);
  line-height: 1.6;
}
.features-more {
  text-align: center;
}
.features-more p {
  font-size: 0.9rem;
  color: rgba(232, 228, 240, 0.4);
  font-style: italic;
}

/* ═══ WHY SHIFTWISE ═══ */
.why { background: var(--bg); }
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.compare-col {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-align: center;
}
.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.compare-col li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-them {
  border-color: rgba(239,68,68,0.2);
  background: var(--bg-card);
}
.compare-them h3 { color: var(--danger); }
.compare-us {
  border-color: rgba(139,92,246,0.25);
  background: linear-gradient(to bottom, var(--bg-card), rgba(139,92,246,0.08));
}
.compare-us h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-muted);
}

/* ═══ TESTIMONIAL ═══ */
.testimonial {
  background: var(--bg-subtle);
  padding: 100px 32px;
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: -20px;
}
blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══ DEMO ═══ */
.demo {
  background: var(--bg);
  padding: 120px 32px;
}
.demo-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.demo-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
}
.demo-content > p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 36px;
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.demo-form input,
.demo-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}
.demo-form input::placeholder,
.demo-form select { color: var(--text-muted); }
.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.25), 0 0 20px rgba(139,92,246,0.1);
}
.demo-form button {
  margin-top: 8px;
}
.demo-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-dark);
  color: rgba(237, 232, 227, 0.5);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-on-dark);
}
.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.8rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-wizard { width: 340px; height: 340px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-mockup {
    transform: none;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-mockup:hover { transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { padding-top: 0; transform: rotate(90deg); }
  .comparison { grid-template-columns: 1fr; gap: 16px; }
  .compare-vs { padding: 8px 0; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 80px 20px; }
  .hero { padding: 100px 20px 60px; }
  .nav-links { display: none; }
  .nav-mobile-right { display: flex; align-items: center; gap: 8px; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .feature-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .demo-card { padding: 36px 24px; }
  .mockup-grid { grid-template-columns: repeat(3, 1fr); }
  .mockup-day:nth-child(4),
  .mockup-day:nth-child(5) { display: none; }
}
