/* ============================================
   Landing Page - Conversion-First Design
   ============================================ */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #10b981;
  --text: #111827;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --border: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

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

html {
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  min-height: var(--viewport-height, 100vh);
}

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: max(1rem, env(safe-area-inset-top)) 0 1rem;
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(1.5rem, env(safe-area-inset-left)) 0 max(1.5rem, env(safe-area-inset-right));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand {
  height: 6.5rem;
  max-height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo {
  height: 10.5rem;
  max-height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.nav-link:hover {
  color: var(--primary);
}

.nav-btn {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.nav-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.nav-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
  cursor: pointer;
  font: inherit;
}

.nav-btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ============================================
   1️⃣ Hero Section
   ============================================ */

.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  margin-top: 60px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  padding: 1rem 2rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.hero-trust {
  color: var(--text-light);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Product Preview */
.hero-visual {
  position: relative;
}

.product-preview {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.preview-header {
  background: var(--bg-light);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.preview-dots {
  display: flex;
  gap: 0.5rem;
}

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.preview-dots span:nth-child(1) { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:nth-child(3) { background: #10b981; }

.preview-title {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.preview-table {
  padding: 1rem;
}

.preview-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.preview-table th {
  text-align: left;
  padding: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
}

.preview-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.score-high {
  color: var(--success);
  font-weight: 700;
}

.score-med {
  color: var(--warning);
  font-weight: 700;
}

.skill-ok {
  color: var(--success);
  font-size: 0.875rem;
}

.skill-low {
  color: var(--warning);
  font-size: 0.875rem;
}

/* ============================================
   2️⃣ How It Works
   ============================================ */

/* Scroll targets for anchor links (clear of fixed navbar) */
#how-it-works,
#see-it-in-action,
#features,
#faq {
  scroll-margin-top: 5rem;
}

.how-it-works {
  padding: 6rem 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text);
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

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

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.step-arrow {
  color: var(--text-light);
  font-size: 1.5rem;
}

/* ============================================
   3️⃣ Live Preview
   ============================================ */

.live-preview {
  padding: 6rem 0;
  background: var(--bg-light);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* See It In Action – same product-preview look and typography as hero */
.product-preview--live {
  max-width: 900px;
  margin: 0 auto;
}

/* Use exact same fonts and sizes as .preview-table */
.product-preview--live .preview-table {
  overflow-x: auto;
}

.product-preview--live .live-preview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 680px;
}

/* Same as .preview-table th */
.product-preview--live .live-preview-table thead th {
  text-align: left;
  padding: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
  font-size: 0.875rem;
}

.product-preview--live .live-preview-table thead th .filter-icon {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-left: 0.25rem;
}

.product-preview--live .live-preview-table thead th .th-sublabel {
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--text-light);
  display: block;
  margin-top: 0.125rem;
}

/* Same as .preview-table td */
.product-preview--live .live-preview-table tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* Column alignment */
.product-preview--live .live-preview-table .th-rank,
.product-preview--live .live-preview-table .td-rank {
  width: 4rem;
  text-align: center;
}

.product-preview--live .live-preview-table .th-score {
  text-align: center;
}

.product-preview--live .live-preview-table .th-details,
.product-preview--live .live-preview-table .details-cell {
  text-align: center;
  width: 4.5rem;
}

.product-preview--live .live-preview-table .preview-row:hover {
  background: var(--bg-light);
}

/* Rank badge – same as hero .rank-badge (inherits 28px, 0.875rem, font-weight 700) */
.product-preview--live .live-preview-table .rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Score – same font-weight as .score-high / .score-med, 0.875rem */
.product-preview--live .live-preview-table .score-pill--high {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--success);
}

.product-preview--live .live-preview-table .score-pill--med {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--warning);
}

.product-preview--live .live-preview-table .score-pill {
  display: inline-block;
  min-width: 2.5rem;
}

/* Details icon – same scale as table, subtle circle */
.product-preview--live .live-preview-table .details-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.875rem;
}

/* ============================================
   4️⃣ Problem → Solution
   ============================================ */

.problem-solution {
  padding: 6rem 0;
  background: white;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ps-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s;
}

.ps-card.pain {
  background: #fef2f2;
  border: 2px solid #fecaca;
}

.ps-card.solution {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
}

.ps-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ps-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ps-card.pain .ps-icon {
  color: var(--error);
}

.ps-card.solution .ps-icon {
  color: var(--success);
}

.ps-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ps-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.ps-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
}

/* ============================================
   5️⃣ Features
   ============================================ */

.features {
  padding: 6rem 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   5b. For Managers & Teams
   ============================================ */

.managers-section {
  padding: 6rem 0;
  background: white;
}

.managers-block {
  margin-bottom: 4rem;
}

.managers-block:last-child {
  margin-bottom: 0;
}

.managers-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.managers-block-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.reports-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.reports-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
  padding: 0.875rem 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.reports-list li i {
  color: var(--primary);
  width: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.sample-reports-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sample-report-card {
  max-width: 380px;
}

.sample-chart-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.sample-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 120px;
}

.sample-bar-chart .sample-bar {
  flex: 1;
  min-width: 0;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.25rem;
  font-size: 0.7rem;
  color: white;
  font-weight: 600;
}

.sample-bar-chart--purple .sample-bar {
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
}

.sample-line-chart {
  height: 80px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 0.5rem;
}

.sample-line-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.product-preview--chatbot .chatbot-mock {
  padding: 1rem;
}

.chat-msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.chat-msg--user {
  margin-left: auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.chat-msg--bot {
  background: var(--bg-light);
  color: var(--text);
  border: 1px solid var(--border);
}

.sample-report-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.sample-mini-table table {
  font-size: 0.8125rem;
}

.product-preview--insights .preview-header {
  background: linear-gradient(90deg, #f5f3ff, #ede9fe);
}

/* ============================================
   6️⃣ Trust
   ============================================ */

.trust {
  padding: 6rem 0;
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge {
  text-align: center;
  padding: 2rem;
}

.trust-badge i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.trust-badge h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.trust-badge p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  padding: 6rem 0;
  background: var(--bg-light);
}

.testimonials .section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1.25rem 0;
  font-style: italic;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: none;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
}

.testimonial-name {
  font-size: 1.0625rem;
  color: var(--text);
}

.testimonial-title {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.testimonial-company {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ============================================
   7️⃣ Try Section
   ============================================ */

.try-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.try-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.try-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.try-card > p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.try-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.try-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

.try-section .btn-primary {
  background: white;
  color: var(--primary);
}

.try-section .btn-primary:hover {
  background: var(--bg-light);
}

.try-section .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.try-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   8️⃣ Pricing
   ============================================ */

.pricing {
  padding: 6rem 0;
  background: var(--bg-light);
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.pricing-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.price-desc {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.pricing-features li i {
  color: var(--success);
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

/* ============================================
   9️⃣ FAQ
   ============================================ */

.faq {
  padding: 6rem 0;
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--text-light);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   🔟 Sticky CTA
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sticky-text {
  font-size: 1rem;
  color: var(--text);
}

.sticky-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

/* ============================================
   Upload Modal
   ============================================ */

.upload-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}

.upload-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease-out;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--bg-light);
  color: var(--text);
}

.modal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text);
}

.request-demo-modal-content {
  max-width: 480px;
}

.request-demo-row {
  margin-bottom: 1rem;
}

.request-demo-row label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

.request-demo-row input,
.request-demo-row select,
.request-demo-row textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}

.request-demo-row input:focus,
.request-demo-row select:focus,
.request-demo-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.upload-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.upload-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;
  background: var(--bg-light);
}

.upload-box:hover {
  border-color: var(--primary);
  background: white;
}

.upload-box i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.upload-box h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.upload-box p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.upload-box input[type="file"] {
  display: none;
}

.upload-label {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.upload-label:hover {
  background: var(--primary-dark);
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.modal-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subheadline {
    font-size: 1.125rem;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

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

  .ps-arrow {
    transform: rotate(90deg);
  }

  .sticky-content {
    flex-direction: column;
    text-align: center;
  }

  .upload-zone {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ============================================
   Skill Matches Modal (same as app)
   ============================================ */

.landing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.landing-overlay.active {
  display: flex !important;
}

.landing-skill-modal {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: landingModalSlideUp 0.3s ease-out;
}

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

.landing-skill-modal h3 {
  margin: 0 0 1.25rem 0;
  color: var(--text);
  font-size: 1.5rem;
  padding-right: 2.5rem;
}

.landing-skill-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.landing-skill-modal-close:hover {
  background: var(--bg-light);
  color: var(--text);
}

.landing-skill-content {
  max-height: 60vh;
  overflow-y: auto;
  font-size: 0.875rem;
}

.landing-skill-content h4 {
  margin: 1rem 0 0.5rem 0;
  font-size: 1rem;
  color: #0369a1;
  font-weight: 700;
}

.landing-skill-content h4:first-child {
  margin-top: 0;
}

.landing-skill-content .skill-badges {
  margin-bottom: 1rem;
}

.landing-skill-content .badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem 0.25rem 0 0;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

