/* QuickMail Finder — Premium Website Design System */

:root {
  --bg-dark: #070b14;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-active: rgba(99, 102, 241, 0.5);

  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #3b82f6 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* AMBIENT BACKGROUND GLOWS */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}

.glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: 20%;
  background: rgba(99, 102, 241, 0.22);
}

.glow-2 {
  width: 600px;
  height: 600px;
  top: 600px;
  right: -100px;
  background: rgba(168, 85, 247, 0.15);
}

/* TYPOGRAPHY HELPERS */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(99, 102, 241, 0.6);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* NAVBAR */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 11, 20, 0.75);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px 60px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}

.stars-group {
  color: var(--accent-amber);
  letter-spacing: 2px;
  font-size: 16px;
}

/* HERO VIDEO DEMO PLAYER STYLING */
.hero-mockup-wrapper {
  margin-top: 45px;
  position: relative;
  z-index: 2;
}

.video-player-header-bar {
  max-width: 960px;
  margin: 0 auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}

.video-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.recording-pulse {
  width: 9px;
  height: 9px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #ef4444;
  animation: recPulse 1.6s infinite ease-in-out;
}

@keyframes recPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}

.video-label {
  color: #f87171;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
}

.video-title-desc {
  color: var(--text-secondary);
  font-size: 12px;
}

.video-meta-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.zoom-tag {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
}

.quality-tag {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.loop-tag {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #c4b5fd;
}

.sound-tag,
.replay-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #c7d2fe;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  line-height: 1.2;
}

.sound-tag:hover,
.replay-tag:hover {
  background: rgba(99, 102, 241, 0.35);
  color: #ffffff;
  border-color: #818cf8;
}

.sound-tag.unmuted {
  background: rgba(16, 185, 129, 0.22);
  border-color: rgba(16, 185, 129, 0.5);
  color: #6ee7b7;
}

.youtube-link-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.youtube-link-tag:hover {
  background: rgba(239, 68, 68, 0.28);
  color: #ffffff;
  border-color: #ef4444;
}

.youtube-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-features-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 18px;
  background: #0d1527;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-secondary);
}

.video-features-footer .feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.video-features-footer .feature-dot {
  font-size: 14px;
}

/* CINEMATIC THEATER FRAME (CLEAN SINGLE FRAME, NO DOUBLE BROWSER BARS) */
.cinematic-theater-frame {
  max-width: 980px;
  margin: 0 auto;
  background: #090e1a;
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: 16px;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.75), 0 0 35px rgba(99, 102, 241, 0.2);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cinematic-theater-frame:hover {
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 28px 70px -12px rgba(0, 0, 0, 0.85), 0 0 45px rgba(99, 102, 241, 0.32);
}

.theater-glow-fx {
  position: absolute;
  top: -20%;
  left: 10%;
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.25) 0%, rgba(239, 68, 68, 0.12) 50%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* INTERACTIVE CHAPTERS BAR */
.video-chapters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 18px;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.chapters-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chapter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chapter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.chapter-chip:hover {
  background: rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.chapter-chip.active {
  background: rgba(99, 102, 241, 0.35);
  border-color: #6366f1;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.45);
}

.chip-time {
  background: rgba(0, 0, 0, 0.4);
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 10px;
  color: #93c5fd;
  font-variant-numeric: tabular-nums;
}

/* BROWSER FRAME CONTAINER */
.browser-frame {
  max-width: 960px;
  margin: 0 auto;
  background: #0b1120;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
  position: relative;
}

.browser-header {
  background: #141c2e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  gap: 14px;
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-green {
  background: #10b981;
}

.browser-tabs-preview {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.browser-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #090e1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  padding: 4px 12px;
  border-radius: 6px 6px 0 0;
  font-size: 11px;
  color: #cbd5e1;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-url-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #080d18;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--text-secondary);
  flex: 1;
  max-width: 440px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.browser-extension-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  padding: 4px 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.browser-extension-badge.pulse {
  background: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
  transform: scale(1.05);
}

.qmf-ext-icon {
  font-size: 13px;
}

.qmf-badge-count {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
}

/* CINEMATIC VIEWPORT & ZOOM STAGE */
.browser-viewport {
  padding: 24px 30px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 40% 40%, #151e36 0%, #080c16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-stage {
  width: 100%;
  position: relative;
  transform-origin: 32% 50%;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.simulated-page {
  display: flex;
  gap: 25px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

/* JOB CARD STYLING */
.job-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: left;
  flex: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

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

.recruiter-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.recruiter-meta {
  display: flex;
  flex-direction: column;
}

.job-company {
  font-size: 11px;
  color: #a5b4fc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 2px 0 0 0;
}

.job-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.email-highlight-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(99, 102, 241, 0.12);
  border: 1.5px solid rgba(99, 102, 241, 0.35);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.35s ease;
}

.email-highlight-box.highlight-active {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.25);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.45);
}

.email-text-wrap {
  display: flex;
  flex-direction: column;
}

.email-label-sub {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.email-target {
  font-family: monospace;
  font-size: 13px;
  color: #e0e7ff;
  font-weight: 600;
}

.inpage-button-preview {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.inpage-button-preview.btn-pressed {
  transform: scale(0.92);
  box-shadow: 0 0 16px #10b981;
}

/* FLOATING DRAFT CARD */
.floating-draft-card {
  width: 370px;
  background: rgba(18, 25, 42, 0.96);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  pointer-events: none;
}

.floating-draft-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  border-color: rgba(99, 102, 241, 0.6);
}

.draft-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.draft-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.draft-badge {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  transition: all 0.3s ease;
}

.draft-field {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.draft-field label {
  color: var(--text-muted);
  margin-right: 4px;
  font-weight: 600;
}

.draft-field span {
  color: #fff;
  font-weight: 500;
}

.draft-field-body {
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #cbd5e1;
  font-style: italic;
  margin: 10px 0;
  line-height: 1.45;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.draft-card-footer {
  display: flex;
  gap: 8px;
}

.btn-demo-action {
  flex: 1;
  padding: 8px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-demo-action.active {
  background: #ea4335;
  color: #fff;
  border-color: #ea4335;
}

.btn-demo-action.btn-pressed {
  transform: scale(0.92);
  box-shadow: 0 0 16px rgba(234, 67, 53, 0.7);
}

/* SUCCESS TOAST */
.video-success-toast {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(16, 185, 129, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
  backdrop-filter: blur(8px);
}

.video-success-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-check {
  background: #fff;
  color: #10b981;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

/* ANIMATED VIRTUAL CURSOR & RIPPLE */
.demo-virtual-cursor {
  position: absolute;
  top: 80%;
  left: 78%;
  z-index: 100;
  pointer-events: none;
  transform: translate(0, 0);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.65));
  transition: top 0.45s cubic-bezier(0.25, 1, 0.5, 1), left 0.45s cubic-bezier(0.25, 1, 0.5, 1), transform 0.15s ease;
}

.demo-virtual-cursor.clicking {
  transform: scale(0.85);
}

.cursor-tooltip {
  position: absolute;
  left: 22px;
  top: 14px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(99, 102, 241, 0.5);
  color: #c7d2fe;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 0.25s ease;
}

.demo-click-ripple {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 95;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.demo-click-ripple.animate {
  animation: clickRippleExpand 0.65s cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes clickRippleExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    border: 3px solid #6366f1;
  }

  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
    border: 1.5px solid #10b981;
  }
}

/* VIDEO STEP CAPTION OVERLAY */
.video-caption-overlay {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 11, 20, 0.88);
  border: 1px solid var(--border-subtle);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 12px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  z-index: 40;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.caption-icon {
  font-size: 13px;
  flex-shrink: 0;
}

/* VIDEO PLAYER BOTTOM CONTROLS BAR */
.video-controls-bar {
  background: #090e1a;
  border-top: 1px solid var(--border-subtle);
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-transport-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-transport {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-transport:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

.btn-transport-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-transport-text:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.video-timeline {
  flex: 1;
  cursor: pointer;
  padding: 6px 0;
}

.timeline-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  position: relative;
  transition: height 0.15s ease;
}

.video-timeline:hover .timeline-track {
  height: 8px;
}

.timeline-progress {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #10b981);
  border-radius: 3px;
  width: 0%;
  transition: width 0.08s linear;
}

.timeline-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.video-timeline:hover .timeline-handle {
  opacity: 1;
}

.video-time-display {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* VIDEO STEPS ROW */
.video-steps-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
}

.step-bookmark {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.step-bookmark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.step-bookmark.active {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.55);
  color: #c7d2fe;
}

.step-num {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.step-bookmark.active .step-num {
  background: var(--primary);
  color: #fff;
}

.zoom-mode-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  margin-left: auto;
}

.zoom-mode-toggle:hover {
  color: #fff;
  border-color: rgba(99, 102, 241, 0.4);
}

.toggle-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64748b;
  transition: all 0.2s ease;
}

.toggle-dot.active {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

/* RESPONSIVE VIDEO ADJUSTMENTS */
@media (max-width: 768px) {
  .simulated-page {
    flex-direction: column;
    gap: 16px;
  }

  .floating-draft-card {
    width: 100%;
  }

  .camera-stage {
    transform-origin: 50% 50% !important;
  }

  .video-caption-overlay {
    font-size: 11px;
    padding: 4px 10px;
  }

  .video-steps-row {
    justify-content: center;
  }

  .zoom-mode-toggle {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* TRUST BAR */
.trust-bar {
  padding: 50px 24px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  font-size: 32px;
}

.trust-item h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* SECTION HEADERS */
.section {
  padding: 90px 24px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
}

/* WORKFLOW COMPARISON GRID */
.workflow-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.workflow-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.workflow-card.new-way {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, rgba(20, 27, 45, 0.4) 100%);
  border-color: var(--border-active);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.card-status-badge {
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 24px;
}

.card-status-badge.old {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.card-status-badge.new {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.workflow-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.workflow-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.workflow-card.new-way .workflow-steps li {
  color: #f1f5f9;
}

.workflow-steps li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.workflow-card.new-way .workflow-steps li span {
  background: var(--primary);
}

.workflow-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
}

.workflow-footer.old {
  color: #f87171;
}

.workflow-footer.new {
  color: #34d399;
}

/* INTERACTIVE DEMO */
.demo-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.demo-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.6);
}

.demo-tab {
  flex: 1;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.demo-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.demo-tab.active {
  color: #fff;
  border-bottom-color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
}

.demo-content-panel {
  display: none;
  padding: 40px;
  gap: 40px;
  align-items: center;
}

.demo-content-panel.active {
  display: flex;
}

.demo-text {
  flex: 1;
}

.demo-text h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.demo-text p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.demo-visual {
  flex: 1;
}

.preview-box {
  background: #090e1a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-name {
  font-size: 13px;
  font-weight: 600;
}

.p-email {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: monospace;
}

.p-btn {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.token-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.chip {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
  border: 1px solid rgba(99, 102, 241, 0.4);
}

.token-tip {
  font-size: 13px;
  color: var(--accent-amber);
}

.template-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.template-card h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #c7d2fe;
}

.template-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* SPREADSHEET (EXCEL & GOOGLE SHEETS) DEMO */
.sheet-preview-box {
  background: #0b1120;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65), 0 0 25px rgba(16, 185, 129, 0.12);
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.sheet-toolbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #0c1a16;
  border-bottom: 1px solid rgba(16, 185, 129, 0.25);
  flex-wrap: wrap;
  gap: 8px;
}

.sheet-app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sheet-app-icon {
  font-size: 16px;
}

.sheet-file-name {
  font-size: 12px;
  font-weight: 700;
  color: #ecfdf5;
  font-family: 'JetBrains Mono', monospace, sans-serif;
}

.sheet-badge-compat {
  font-size: 10px;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 2px 7px;
  border-radius: 10px;
}

.sheet-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.sheet-copy-btn:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: #10b981;
  color: #ffffff;
  transform: translateY(-1px);
}

.sheet-copy-btn.copied {
  background: #10b981;
  border-color: #10b981;
  color: #064e3b;
  font-weight: 700;
}

.sheet-formula-bar {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: #0d1527;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  gap: 10px;
}

.sheet-cell-ref {
  font-family: monospace;
  font-weight: 700;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.sheet-fx {
  font-style: italic;
  font-family: serif;
  font-weight: bold;
  color: #64748b;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 10px;
}

.sheet-formula-val {
  font-family: 'JetBrains Mono', monospace;
  color: #cbd5e1;
}

.sheet-grid-wrapper {
  overflow-x: auto;
  background: #080c16;
}

.sheet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.sheet-col-corner {
  background: #111827;
  width: 32px;
  text-align: center;
  color: #64748b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px;
}

.sheet-col-header {
  background: #111827;
  text-align: left;
  padding: 7px 12px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.col-letter {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 10px;
  color: #38bdf8;
  margin-right: 4px;
}

.sheet-row-num {
  background: #111827;
  text-align: center;
  color: #64748b;
  font-family: monospace;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 4px;
}

.sheet-row td {
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  font-family: 'JetBrains Mono', monospace, sans-serif;
  color: #cbd5e1;
  transition: background 0.15s ease;
}

.sheet-row:hover {
  background: rgba(16, 185, 129, 0.06);
}

.sheet-row:hover td {
  border-color: rgba(16, 185, 129, 0.2);
}

.sheet-cell-email {
  color: #93c5fd !important;
}

.sheet-bottom-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #090e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: #64748b;
}

.sheet-tab-pill .sheet-tab-active {
  background: #0c1a16;
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-bottom: none;
  padding: 3px 10px;
  border-radius: 4px 4px 0 0;
  font-weight: 600;
  font-size: 10.5px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.calculator-card {
  background: linear-gradient(135deg, rgba(20, 27, 45, 0.9) 0%, rgba(10, 15, 29, 0.9) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-glow);
}

.calc-header {
  text-align: center;
  margin-bottom: 36px;
}

.calc-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.calc-header p {
  color: var(--text-secondary);
}

.calc-slider-wrapper {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.slider-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.slider-val {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-left: 8px;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  accent-color: var(--primary);
  cursor: pointer;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.calc-result-box.highlight {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
}

.result-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.calc-result-box.highlight .result-number {
  color: var(--accent-emerald);
}

.result-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* COMPARISON TABLE */
.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  font-family: var(--font-display);
  font-size: 16px;
  background: rgba(15, 23, 42, 0.7);
  color: #cbd5e1;
}

.col-highlight {
  background: rgba(99, 102, 241, 0.12);
  border-left: 1px solid var(--border-active);
  border-right: 1px solid var(--border-active);
}

.text-green {
  color: #34d399;
}

/* PERSONA GRID */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.2s ease;
}

.persona-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.persona-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.persona-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.persona-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.persona-quote {
  font-size: 13px;
  color: #a5b4fc;
  font-style: italic;
  border-left: 2px solid var(--primary);
  padding-left: 12px;
}

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* FINAL CTA */
.final-cta-section {
  padding: 80px 24px;
}

.final-cta-card {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
}

.final-cta-card h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}

.final-cta-card p {
  font-size: 18px;
  color: #e0e7ff;
  max-width: 600px;
  margin: 0 auto 32px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.final-cta-card .btn-primary {
  background: #ffffff;
  color: #4f46e5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.final-cta-card .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.final-cta-subtext {
  font-size: 13px;
  color: #c7d2fe;
}

/* FOOTER */
.footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-left: 8px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 8px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col h5 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer-links-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-pills {
  display: flex;
  gap: 8px;
}

.footer-pills .pill {
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .workflow-comparison-grid {
    grid-template-columns: 1fr;
  }

  .simulated-page {
    flex-direction: column;
  }

  .floating-draft-card {
    width: 100%;
  }

  .demo-content-panel {
    flex-direction: column;
  }

  .calc-results-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .video-features-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    font-size: 12px;
  }

  .video-chapters-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .chapter-chips {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  .chapter-chip {
    flex-shrink: 0;
  }
}