/* CF CRM Landing Page - Guide-compliant design system */
/* Typography: Barlow Condensed (headlines), Source Sans 3 (body), DM Mono (labels/prices), DM Serif Display (emphasis) */
/* Palette: Slate #1E293B, Amber #D97706, Steel Blue #60A5FA, Page BG #F8FAFC */

/* ---- Color + typography variables ---- */
.landing-page {
  /* Guide palette */
  --l-slate: #1E293B;
  --l-amber: #D97706;
  --l-amber-hover: #F59E0B;
  --l-blue: #60A5FA;
  --l-page-bg: #F8FAFC;
  --l-dark: #0F172A;
  --l-body-text: #374151;
  --l-light-text: #94A3B8;
  --l-success: #22C55E;

  /* Derived */
  --l-amber-glow: rgba(217, 119, 6, 0.3);
  --l-amber-bg: rgba(217, 119, 6, 0.08);
  --l-amber-border: rgba(217, 119, 6, 0.2);
  --l-border-light: #CBD5E1;
  --l-card-light: #FFFFFF;

  /* Typography */
  --l-font-display: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
  --l-font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --l-font-mono: 'DM Mono', 'SF Mono', monospace;
  --l-font-serif: 'DM Serif Display', Georgia, serif;
}

/* ---- Reset ---- */
.app:has(.landing-page) {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.landing-page {
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--l-font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--l-body-text);
  background: var(--l-page-bg);
  -webkit-font-smoothing: antialiased;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  font-family: var(--l-font-display);
  color: var(--l-slate);
}

/* ---- Sticky Nav (always dark) ---- */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
  font-family: var(--l-font-body);
}

.landing-nav.scrolled {
  background: rgba(30, 41, 59, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.landing-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--l-font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--l-amber);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.landing-nav-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.landing-nav-links a {
  color: var(--l-light-text);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.landing-nav-links a:hover {
  color: #F8FAFC;
  background: rgba(255, 255, 255, 0.06);
}

.landing-nav-cta {
  background: var(--l-amber) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
}

.landing-nav-cta:hover {
  background: var(--l-amber-hover) !important;
}

.landing-nav-signin {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.landing-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #F8FAFC;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

/* ---- Section Layout ---- */
/* Light sections (default) */
.landing-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-section .landing-section-title {
  color: var(--l-slate);
}

.landing-section .landing-section-subtitle {
  color: var(--l-body-text);
}

/* Dark sections */
.landing-section-dark {
  background: var(--l-dark);
  max-width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-section-dark .landing-section-title {
  color: #F8FAFC;
}

.landing-section-dark .landing-section-subtitle {
  color: var(--l-light-text);
}

.landing-section-dark > .landing-section-header,
.landing-section-dark > .landing-pain-grid,
.landing-section-dark > .landing-pricing-toggle,
.landing-section-dark > .landing-pricing-grid,
.landing-section-dark > .landing-pricing-trust,
.landing-section-dark > .landing-comparison,
.landing-section-dark > .landing-features-grid,
.landing-section-dark > .landing-agitation-close {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.landing-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.landing-section-label {
  display: inline-block;
  font-family: var(--l-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--l-amber);
  background: var(--l-amber-bg);
  border: 1px solid var(--l-amber-border);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.landing-section-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.landing-section-subtitle {
  font-family: var(--l-font-body);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Buttons ---- */
.btn-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-family: var(--l-font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  min-height: 48px;
}

.btn-landing-primary {
  background: var(--l-amber);
  color: #fff;
  box-shadow: 0 4px 15px var(--l-amber-glow);
}

.btn-landing-primary:hover {
  background: var(--l-amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

/* Outline on dark backgrounds */
.landing-hero .btn-landing-outline,
.landing-section-dark .btn-landing-outline,
.landing-final-cta .btn-landing-outline {
  background: transparent;
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.landing-hero .btn-landing-outline:hover,
.landing-section-dark .btn-landing-outline:hover,
.landing-final-cta .btn-landing-outline:hover {
  border-color: var(--l-amber);
  color: var(--l-amber);
}

/* Outline on light backgrounds */
.btn-landing-outline {
  background: transparent;
  color: var(--l-slate);
  border: 1px solid var(--l-border-light);
}

.btn-landing-outline:hover {
  border-color: var(--l-amber);
  color: var(--l-amber);
}

.btn-landing-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 14px;
  min-height: 56px;
}

/* ---- SECTION 1: Hero (dark) ---- */
.landing-hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--l-dark);
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.landing-hero > * {
  position: relative;
  z-index: 1;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--l-amber-bg);
  border: 1px solid var(--l-amber-border);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-family: var(--l-font-mono);
  font-size: 0.8rem;
  color: var(--l-amber);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.6s ease;
}

.landing-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #F8FAFC;
  max-width: 900px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.landing-hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--l-amber) 0%, var(--l-amber-hover) 50%, var(--l-amber) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.landing-hero-sub {
  font-family: var(--l-font-body);
  font-size: 1.2rem;
  color: var(--l-light-text);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.landing-hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.landing-hero-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--l-light-text);
  font-family: var(--l-font-body);
  font-size: 0.85rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.landing-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.landing-hero-trust-check {
  color: var(--l-success);
  font-weight: 700;
  font-size: 1rem;
}

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

/* ---- SECTION 2: Stats Strip (dark slate) ---- */
.landing-stats-strip {
  background: var(--l-slate);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.landing-stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  flex-wrap: wrap;
}

.landing-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--l-amber);
  opacity: 0.7;
}

.landing-stat-icon svg {
  width: 20px;
  height: 20px;
}

.landing-stat-item > div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.landing-stat-number {
  font-family: var(--l-font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

.landing-stat-label {
  font-family: var(--l-font-mono);
  font-size: 0.7rem;
  color: var(--l-light-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.landing-stats-trades {
  font-family: var(--l-font-body);
  font-size: 0.9rem;
  color: var(--l-light-text);
  margin: 0;
  font-weight: 400;
}

/* ---- SECTION 3: Problem Agitation (dark) ---- */
.landing-section-dark .landing-pain-card {
  background: var(--l-slate);
  border-color: rgba(255, 255, 255, 0.08);
}

.landing-section-dark .landing-pain-card:hover {
  border-color: var(--l-amber);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.landing-section-dark .landing-pain-card h3 {
  color: #F8FAFC;
}

.landing-section-dark .landing-pain-card p {
  color: var(--l-light-text);
}

.landing-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.landing-pain-card {
  background: var(--l-card-light);
  border: 1px solid var(--l-border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.landing-pain-card:hover {
  border-color: var(--l-amber);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.landing-pain-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.landing-pain-icon svg {
  width: 24px;
  height: 24px;
}

.landing-icon-calendar {
  background: rgba(96, 165, 250, 0.12);
  color: var(--l-blue);
}

.landing-icon-dollar {
  background: rgba(34, 197, 94, 0.12);
  color: var(--l-success);
}

.landing-icon-eye {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.landing-pain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--l-slate);
  line-height: 1.3;
}

.landing-pain-card p {
  font-size: 0.9rem;
  color: var(--l-body-text);
  line-height: 1.6;
}

.landing-agitation-close {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--l-font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--l-amber);
  letter-spacing: 0.01em;
}

/* ---- SECTION 4: Product Demo (light) ---- */
.landing-demo-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.landing-demo-frame {
  background: var(--l-slate);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.landing-demo-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-demo-dots {
  display: flex;
  gap: 6px;
}

.landing-demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.landing-demo-dots span:nth-child(1) { background: #ef4444; }
.landing-demo-dots span:nth-child(2) { background: #f59e0b; }
.landing-demo-dots span:nth-child(3) { background: #22c55e; }

.landing-demo-url {
  font-family: var(--l-font-mono);
  font-size: 0.75rem;
  color: var(--l-light-text);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  flex: 1;
  max-width: 200px;
}

.landing-demo-content {
  padding: 1.5rem;
}

.landing-demo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.landing-demo-stat {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-demo-stat-val {
  font-family: var(--l-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.landing-demo-stat-lbl {
  font-family: var(--l-font-mono);
  font-size: 0.65rem;
  color: var(--l-light-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-demo-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.landing-demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.landing-demo-row-title {
  font-family: var(--l-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #F8FAFC;
}

.landing-demo-row-sub {
  font-family: var(--l-font-mono);
  font-size: 0.7rem;
  color: var(--l-light-text);
  margin-top: 0.15rem;
}

.landing-demo-badge {
  font-family: var(--l-font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge-progress {
  background: rgba(96, 165, 250, 0.15);
  color: var(--l-blue);
}

.badge-scheduled {
  background: rgba(217, 119, 6, 0.15);
  color: var(--l-amber-hover);
}

.badge-done {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

/* ---- SECTION 5: Features (dark) ---- */
.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Light section features */
.landing-feature {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--l-card-light);
  border: 1px solid var(--l-border-light);
  border-radius: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.landing-feature:hover {
  border-color: var(--l-amber-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.landing-feature h3 {
  font-family: var(--l-font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--l-slate);
  line-height: 1.3;
}

.landing-feature p {
  font-size: 0.85rem;
  color: var(--l-body-text);
  line-height: 1.5;
}

/* Dark section features override */
.landing-section-dark .landing-feature {
  background: var(--l-slate);
  border-color: rgba(255, 255, 255, 0.08);
}

.landing-section-dark .landing-feature:hover {
  border-color: var(--l-amber);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.landing-section-dark .landing-feature h3 {
  color: #F8FAFC;
}

.landing-section-dark .landing-feature p {
  color: var(--l-light-text);
}

.landing-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--l-amber-bg);
  border-radius: 12px;
  color: var(--l-amber);
}

.landing-feature-icon svg {
  width: 22px;
  height: 22px;
}

/* ---- SECTION 6: Testimonials (light) ---- */
.landing-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.landing-testimonial {
  background: var(--l-card-light);
  border: 1px solid var(--l-border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.landing-testimonial:hover {
  border-color: var(--l-amber-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.landing-testimonial-stars {
  color: var(--l-amber-hover);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.landing-testimonial-text {
  font-family: var(--l-font-serif);
  font-size: 0.95rem;
  color: var(--l-body-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.landing-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--l-amber-bg);
  border: 1px solid var(--l-amber-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--l-font-display);
  font-weight: 700;
  color: var(--l-amber);
  font-size: 0.85rem;
}

.landing-testimonial-name {
  font-family: var(--l-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--l-slate);
}

.landing-testimonial-role {
  font-family: var(--l-font-mono);
  font-size: 0.75rem;
  color: var(--l-light-text);
}

/* ---- SECTION 7: Pricing (dark) ---- */
.landing-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.landing-pricing-toggle-label {
  font-family: var(--l-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--l-light-text);
  cursor: pointer;
  transition: color 0.2s;
}

.landing-pricing-toggle-label.active {
  color: #F8FAFC;
  font-weight: 600;
}

.landing-pricing-save-inline {
  font-family: var(--l-font-mono);
  font-size: 0.75rem;
  color: var(--l-success);
  font-weight: 500;
}

.landing-pricing-toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--l-slate);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}

.landing-pricing-toggle-switch.annual {
  background: var(--l-amber);
  border-color: var(--l-amber);
}

.landing-pricing-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.landing-pricing-toggle-switch.annual::after {
  transform: translateX(24px);
}

.landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.landing-pricing-card {
  background: var(--l-slate);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}

.landing-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.landing-pricing-card.popular {
  border-color: var(--l-amber);
  background: linear-gradient(180deg, var(--l-amber-bg) 0%, var(--l-slate) 100%);
  box-shadow: 0 0 0 1px var(--l-amber), 0 8px 30px var(--l-amber-glow);
  transform: scale(1.03);
  z-index: 2;
}

.landing-pricing-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.landing-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--l-amber);
  color: #fff;
  font-family: var(--l-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  white-space: nowrap;
}

.landing-pricing-tier {
  font-family: var(--l-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 0.25rem;
}

.landing-pricing-desc-short {
  font-family: var(--l-font-body);
  font-size: 0.85rem;
  color: var(--l-light-text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.landing-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}

.landing-pricing-currency {
  font-family: var(--l-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #F8FAFC;
}

.landing-pricing-amount {
  font-family: var(--l-font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: #F8FAFC;
  letter-spacing: -0.03em;
}

.landing-pricing-period {
  font-family: var(--l-font-mono);
  font-size: 0.9rem;
  color: var(--l-light-text);
  font-weight: 400;
  margin-left: 0.15rem;
}

.landing-pricing-annual-note {
  font-family: var(--l-font-mono);
  font-size: 0.78rem;
  color: var(--l-light-text);
  margin-bottom: 1.5rem;
  min-height: 1.2em;
}

.landing-pricing-strikethrough {
  text-decoration: line-through;
  color: var(--l-light-text);
  opacity: 0.6;
  margin-right: 0.5rem;
}

.landing-pricing-savings {
  color: var(--l-success);
  font-weight: 500;
}

.landing-pricing-switch-hint {
  color: var(--l-amber);
  opacity: 0.8;
}

.landing-pricing-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.landing-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--l-font-body);
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.4;
}

.landing-pricing-features li .check {
  color: var(--l-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.landing-pricing-features li.disabled {
  color: var(--l-light-text);
  opacity: 0.5;
}

.landing-pricing-features li.disabled .check {
  color: var(--l-light-text);
}

.landing-pricing-cta {
  width: 100%;
  padding: 0.85rem;
  border-radius: 12px;
  font-family: var(--l-font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
  border: none;
  min-height: 48px;
}

.landing-pricing-cta-primary {
  background: var(--l-amber);
  color: #fff;
  box-shadow: 0 4px 15px var(--l-amber-glow);
}

.landing-pricing-cta-primary:hover {
  background: var(--l-amber-hover);
  transform: translateY(-1px);
}

.landing-pricing-cta-outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-pricing-cta-outline:hover {
  border-color: var(--l-amber);
  color: var(--l-amber);
}

/* Pricing trust strip */
.landing-pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  font-family: var(--l-font-body);
  font-size: 0.85rem;
  color: var(--l-light-text);
  flex-wrap: wrap;
}

.landing-pricing-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---- Comparison Table (dark) ---- */
.landing-section-dark .landing-comparison {
  background: var(--l-slate);
  border-color: rgba(255, 255, 255, 0.08);
}

.landing-comparison {
  background: var(--l-card-light);
  border: 1px solid var(--l-border-light);
  border-radius: 16px;
  overflow-x: auto;
  margin-top: 2rem;
}

.landing-comparison table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--l-font-body);
  font-size: 0.88rem;
  min-width: 700px;
}

.landing-comparison thead th {
  padding: 1.25rem 1rem;
  text-align: center;
  font-family: var(--l-font-display);
  font-weight: 700;
  color: #F8FAFC;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(217, 119, 6, 0.03);
}

.landing-comparison thead th:first-child {
  text-align: left;
}

.landing-comparison thead th.popular-col {
  color: var(--l-amber);
}

.landing-comparison tbody td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
}

.landing-comparison tbody td:first-child {
  text-align: left;
  font-weight: 500;
}

.landing-comparison tbody tr:last-child td {
  border-bottom: none;
}

.landing-comparison tbody tr:hover {
  background: rgba(217, 119, 6, 0.03);
}

.landing-comparison .yes {
  color: var(--l-success);
  font-weight: 700;
}

.landing-comparison .no {
  color: var(--l-light-text);
  opacity: 0.4;
}

.landing-comparison .limit {
  color: var(--l-amber-hover);
  font-weight: 500;
}

.landing-comparison .popular-col {
  color: var(--l-amber);
}

/* ---- SECTION 8: FAQ (light) ---- */
.landing-faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.landing-faq-item {
  background: var(--l-card-light);
  border: 1px solid var(--l-border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.landing-faq-item.open {
  border-color: var(--l-amber-border);
}

.landing-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--l-font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--l-slate);
  user-select: none;
  -webkit-user-select: none;
  gap: 1rem;
  min-height: 56px;
}

.landing-faq-q:hover {
  color: var(--l-amber);
}

.landing-faq-arrow {
  font-size: 1.2rem;
  color: var(--l-light-text);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.landing-faq-item.open .landing-faq-arrow {
  transform: rotate(180deg);
}

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

.landing-faq-item.open .landing-faq-a {
  max-height: 500px;
}

.landing-faq-a-inner {
  padding: 0 1.5rem 1.5rem;
  font-family: var(--l-font-body);
  font-size: 0.9rem;
  color: var(--l-body-text);
  line-height: 1.7;
}

.landing-faq-footer {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--l-font-body);
  font-size: 0.95rem;
  color: var(--l-light-text);
}

.landing-faq-footer a {
  color: var(--l-amber);
  font-weight: 600;
  text-decoration: none;
}

.landing-faq-footer a:hover {
  text-decoration: underline;
}

/* ---- SECTION 9: Final CTA (dark) ---- */
.landing-final-cta {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--l-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-final-cta::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.landing-final-cta > * {
  position: relative;
}

.landing-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #F8FAFC;
  line-height: 1.1;
}

.text-gradient-final {
  background: linear-gradient(135deg, var(--l-amber) 0%, var(--l-amber-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-final-cta-testimonial {
  font-family: var(--l-font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.landing-final-cta-testimonial span {
  font-family: var(--l-font-mono);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--l-light-text);
}

/* Final CTA trust items on dark bg */
.landing-final-cta .landing-hero-trust {
  color: var(--l-light-text);
}

/* ---- Footer (dark slate) ---- */
.landing-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--l-slate);
}

.landing-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.landing-footer-copy {
  font-family: var(--l-font-body);
  font-size: 0.85rem;
  color: var(--l-light-text);
}

.landing-footer-tagline {
  font-family: var(--l-font-serif);
  font-style: italic;
  font-size: 0.8rem;
  color: #475569;
}

.landing-footer-links {
  display: flex;
  gap: 1.5rem;
}

.landing-footer-links a {
  font-family: var(--l-font-body);
  font-size: 0.85rem;
  color: var(--l-light-text);
  text-decoration: none;
  transition: color 0.2s;
}

.landing-footer-links a:hover {
  color: var(--l-amber);
}

/* ---- Sticky Mobile CTA ---- */
.landing-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--l-amber-border);
  z-index: 199;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.landing-sticky-cta .btn-landing {
  min-height: 52px;
  font-size: 0.95rem;
}

/* ---- Scroll Animations ---- */
.landing-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.landing-animate-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.landing-animate-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.landing-animate-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.landing-animate-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.landing-animate-stagger.visible > *:nth-child(5) { transition-delay: 0.35s; }
.landing-animate-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.landing-animate-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive: Tablet (960px) ---- */
@media (max-width: 960px) {
  .landing-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-pricing-card.popular {
    transform: none;
    order: -1;
  }

  .landing-pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .landing-pain-grid {
    grid-template-columns: 1fr;
  }

  .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .landing-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }

  .landing-stats-inner {
    gap: 2rem;
  }

  .landing-demo-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Responsive: Mobile (640px) ---- */
@media (max-width: 640px) {
  .landing-nav {
    padding: 0.75rem 1rem;
  }

  .landing-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--l-slate);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }

  .landing-nav-links.open {
    display: flex;
  }

  .landing-nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .landing-mobile-toggle {
    display: block;
  }

  .landing-hero {
    padding: 6rem 1.25rem 3rem;
    min-height: auto;
  }

  .landing-hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .landing-hero-sub {
    font-size: 1rem;
  }

  .landing-hero-trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .landing-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .landing-hero-actions .btn-landing {
    width: 100%;
  }

  .landing-section {
    padding: 4rem 1.25rem;
  }

  .landing-section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .landing-section-subtitle {
    font-size: 1rem;
  }

  .landing-stats-inner {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    padding-left: 1rem;
  }

  .landing-demo-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .landing-demo-stat-val {
    font-size: 1.1rem;
  }

  .landing-demo-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .landing-pricing-amount {
    font-size: 2.75rem;
  }

  .landing-pricing-trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .landing-final-cta {
    padding: 4rem 1.25rem;
  }

  .landing-final-cta h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .landing-footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .landing-footer-brand {
    align-items: center;
  }

  .landing-footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .landing-comparison table {
    font-size: 0.8rem;
  }

  /* Show sticky CTA on mobile */
  .landing-sticky-cta {
    display: block;
  }

  /* Bottom padding for sticky CTA */
  .landing-footer {
    padding-bottom: 5rem;
  }
}
