/* ===== Custom Properties ===== */
:root {
  --falcon-teal: #4A7C8F;
  --falcon-teal-hover: #3E6B7C;
  --falcon-teal-dark: #355E6D;
  --falcon-teal-light: rgba(74, 124, 143, 0.1);
  --falcon-teal-lighter: rgba(74, 124, 143, 0.05);

  --text-dark: #333333;
  --text-muted: #666666;
  --text-light: #FFFFFF;

  --success-green: #2E7D32;
  --warning-yellow: #FFC107;

  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-lighter: #F0F2F5;
  --border-light: #E0E0E0;

  --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06);

  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== Utilities ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}
.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--falcon-teal);
  color: var(--text-light);
  border-color: var(--falcon-teal);
}
.btn-primary:hover { background: var(--falcon-teal-hover); border-color: var(--falcon-teal-hover); }
.btn-outline {
  background: transparent;
  color: var(--falcon-teal);
  border-color: var(--falcon-teal);
}
.btn-outline:hover { background: var(--falcon-teal); color: var(--text-light); }
.btn-white {
  background: var(--bg-white);
  color: var(--falcon-teal);
  border-color: var(--bg-white);
}
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-outline-white {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--text-light); }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-normal);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-light);
  transition: color var(--transition-normal);
  z-index: 10;
}
.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.navbar.scrolled .nav-logo { color: var(--text-dark); }

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--falcon-teal);
  transition: width var(--transition-fast);
}
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }
.navbar:not(.scrolled) .nav-links a.active::after,
.navbar:not(.scrolled) .nav-links a:hover::after { background: var(--text-light); }
.nav-links a:hover { color: var(--text-light); }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--falcon-teal); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  z-index: 10;
}
.navbar:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: var(--text-light);
}
.navbar:not(.scrolled) .nav-cta:hover {
  background: rgba(255,255,255,0.25);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all var(--transition-normal);
  display: block;
}
.navbar.scrolled .nav-toggle span { background: var(--text-dark); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--falcon-teal) 0%, var(--falcon-teal-dark) 100%);
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-lg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-md);
  max-width: 520px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.badge {
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,0.15);
  color: var(--text-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Video */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-video {
  width: 100%;
  display: block;
  border: none;
  outline: none;
}
.hero-unmute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.hero-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ===== Features ===== */
.features {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}
.feature-card:hover {
  border-color: var(--falcon-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--falcon-teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stagger feature card reveals */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.25s; }
.features-grid .feature-card:nth-child(7) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(8) { transition-delay: 0.35s; }
.features-grid .feature-card:nth-child(9) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(10) { transition-delay: 0.45s; }
.features-grid .feature-card:nth-child(11) { transition-delay: 0.5s; }

/* ===== AI Spotlight ===== */
.ai-spotlight {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}
.ai-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--falcon-teal-light);
  color: var(--falcon-teal);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}
.ai-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.ai-content > p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}
.ai-features-list {
  list-style: none;
  margin-bottom: var(--space-md);
}
.ai-features-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.ai-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--falcon-teal);
  border-radius: 50%;
}

/* AI Spotlight Video */
.ai-spotlight-video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  border: 1px solid var(--border-light);
}

/* ===== Demo Section ===== */
.demo-section {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
}
.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.demo-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.demo-tab img {
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}
.demo-tab:hover {
  border-color: var(--falcon-teal);
  color: var(--falcon-teal);
}
.demo-tab:hover img { opacity: 0.8; }
.demo-tab.active {
  background: var(--falcon-teal);
  border-color: var(--falcon-teal);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}
.demo-tab.active img {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.demo-player {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  max-width: 960px;
  margin: 0 auto;
}
.demo-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  padding: 0 var(--space-sm);
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--falcon-teal);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--space-sm);
}
.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  height: 2px;
  border-top: 2px dashed var(--border-light);
  margin-top: 32px;
  flex-shrink: 0;
}

/* ===== Compatibility ===== */
.compatibility {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}
.version-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.version-badge {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 200px;
  transition: all var(--transition-normal);
}
.version-badge:hover {
  border-color: var(--falcon-teal);
  box-shadow: var(--shadow-md);
}
.version-icon {
  color: var(--falcon-teal);
  margin-bottom: var(--space-xs);
}
.version-year {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.version-runtime {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}
.version-check {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--success-green);
  font-weight: 600;
  font-size: 0.875rem;
}
.version-check::before {
  content: '\2713';
  font-weight: 700;
}
.compat-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== Pricing ===== */
.pricing {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--falcon-teal);
  border-width: 2px;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { box-shadow: var(--shadow-lg); }
.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--falcon-teal);
  color: var(--text-light);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 0 var(--radius) var(--radius);
}
.pricing-header {
  padding: var(--space-md);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.pricing-amount {
  margin-bottom: var(--space-xs);
}
.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-features {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-features li {
  font-size: 0.9375rem;
  padding-left: 1.75rem;
  position: relative;
}
.pricing-features li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.pricing-features li.included { color: var(--text-dark); }
.pricing-features li.included::before { content: '\2713'; color: var(--success-green); }
.pricing-features li.excluded { color: var(--text-muted); opacity: 0.5; }
.pricing-features li.excluded::before { content: '\2717'; color: var(--text-muted); }
.pricing-card .btn {
  margin: 0 var(--space-md) var(--space-md);
  width: calc(100% - var(--space-md) * 2);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-normal);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars {
  color: var(--warning-yellow);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--falcon-teal-light);
  color: var(--falcon-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
}
.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
}
.faq-list {
  max-width: 768px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-item[open] { border-color: var(--falcon-teal); }
.faq-item summary {
  padding: 1.25rem 3rem 1.25rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color var(--transition-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item summary:hover { color: var(--falcon-teal); }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--falcon-teal) 0%, var(--falcon-teal-dark) 100%);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}
.final-cta p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-md);
}

/* ===== Footer ===== */
.footer {
  padding: var(--space-lg) 0 var(--space-md);
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.footer-brand img { height: 28px; width: auto; object-fit: contain; border-radius: 4px; display: inline-block; vertical-align: middle; }
.footer-brand-name { font-size: 1.125rem; font-weight: 700; color: var(--text-light); margin-left: 0.5rem; display: inline-block; vertical-align: middle; }
.footer-brand p { font-size: 0.875rem; max-width: 280px; line-height: 1.6; margin-top: var(--space-sm); }
.footer-links h4 {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--text-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.footer-bottom p { font-size: 0.8125rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .pricing-card.featured { transform: scale(1.02); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
  }
  .nav-links.active { opacity: 1; pointer-events: all; }
  .nav-links a { color: var(--text-light) !important; font-size: 1.25rem; }
  .nav-cta { display: none; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-height) + var(--space-md)); }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-video-wrapper { max-width: 100%; }

  /* AI Spotlight */
  .ai-spotlight-grid { grid-template-columns: 1fr; }

  /* Demo section */
  .demo-tabs { gap: 0.375rem; }
  .demo-tab { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
  .demo-tab span { display: none; }
  .demo-tab img { opacity: 0.7; }
  .demo-tab.active img { opacity: 1; }

  /* Steps */
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; border-top: none; border-left: 2px dashed var(--border-light); margin: 0; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl);
}
.legal-content h1 {
  font-size: 2rem;
  color: var(--falcon-teal);
  margin-bottom: var(--space-xs);
}
.legal-content .legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}
.legal-content h2 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}
.legal-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.legal-content ul, .legal-content ol {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}
.legal-content li { margin-bottom: 0.35rem; }
.legal-content a { color: var(--falcon-teal); text-decoration: underline; }
.legal-content a:hover { opacity: 0.8; }
/* Force scrolled nav appearance on legal pages (white background, no hero) */
body:has(.legal-content) .navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
body:has(.legal-content) .nav-logo { color: var(--text-dark); }
.legal-nav { display: flex; align-items: center; gap: var(--space-sm); }
.legal-nav .back-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.legal-nav .back-link:hover { color: var(--falcon-teal); }

/* ===== Documentation Page ===== */
body:has(.docs-layout) .navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
body:has(.docs-layout) .nav-logo { color: var(--text-dark); }

.docs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: var(--nav-height);
  min-height: 100vh;
}

.docs-sidebar {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  border-right: 1px solid var(--border-light);
  background: var(--bg-light);
  padding: var(--space-md) 0;
}
.docs-sidebar-inner { padding: 0 var(--space-md); }
.docs-sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--falcon-teal);
  margin-bottom: var(--space-md);
}

.docs-toc-group {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}
.docs-toc-group:first-of-type { margin-top: 0; }

.docs-toc ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 0;
}
.docs-toc-link {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
}
.docs-toc-link:hover {
  color: var(--falcon-teal);
  background: var(--falcon-teal-lighter);
}
.docs-toc-link.active {
  color: var(--falcon-teal);
  background: var(--falcon-teal-light);
  border-left-color: var(--falcon-teal);
  font-weight: 600;
}

.docs-toc-toggle { display: none; }

.docs-main {
  padding: var(--space-lg) var(--space-md) var(--space-xl) var(--space-lg);
  max-width: 860px;
}
.docs-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}
.docs-header h1 {
  font-size: 2rem;
  color: var(--falcon-teal);
  margin-bottom: var(--space-xs);
}
.docs-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.docs-tool {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-light);
  scroll-margin-top: calc(var(--nav-height) + var(--space-md));
}
.docs-tool:last-child { border-bottom: none; }

.docs-tool-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.docs-tool-icon {
  width: 48px;
  height: 48px;
  background: var(--falcon-teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.docs-tool-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.125rem;
}
.docs-tool-tier {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--falcon-teal);
  background: var(--falcon-teal-light);
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
}

.docs-tool-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}
.docs-tool-body p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.docs-tool-body ul,
.docs-tool-body ol {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}
.docs-tool-body ul { list-style: disc; }
.docs-tool-body ol { list-style: decimal; }
.docs-tool-body li { margin-bottom: 0.35rem; }
.docs-tool-body strong { color: var(--text-dark); }
.docs-tool-body code {
  background: var(--bg-lighter);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .docs-layout {
    grid-template-columns: 1fr;
    position: relative;
  }
  .docs-sidebar {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    z-index: 500;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    box-shadow: none;
  }
  .docs-sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }
  .docs-toc-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 499;
    background: var(--falcon-teal);
    color: var(--text-light);
    border: none;
    border-radius: 100px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: background var(--transition-fast);
  }
  .docs-toc-toggle:hover { background: var(--falcon-teal-hover); }
  .docs-main { padding: var(--space-md) var(--space-md) var(--space-xl); }
}

/* ===== Docs: Dialog Mockups & Rich Content ===== */
.docs-tool-body .docs-section-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--falcon-teal);
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.docs-tool-body .docs-dialog {
  background: var(--bg-white);
  border: 2px solid #B4B4B4;
  margin: 1rem 0;
  font-size: 0.8125rem;
  max-width: 480px;
}
.docs-tool-body .docs-dialog--wide { max-width: 560px; }
.docs-tool-body .docs-dialog-header {
  background: linear-gradient(135deg, var(--falcon-teal), #39606f);
  color: var(--text-light);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.docs-tool-body .docs-dialog-logo { height: 24px; width: auto; object-fit: contain; }
.docs-tool-body .docs-dialog-title { font-weight: 600; font-size: 0.875rem; }
.docs-tool-body .docs-dialog-close { margin-left: auto; font-size: 0.875rem; opacity: 0.7; }
.docs-tool-body .docs-dialog-body { padding: 16px 20px; }
.docs-tool-body .docs-dialog-buttons {
  padding: 12px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.docs-tool-body .docs-dialog-warning {
  background: #FFF3CD;
  border-left: 4px solid #FFC107;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--text-dark);
}
.docs-tool-body .docs-dialog-info {
  background: var(--bg-light);
  border-left: 4px solid var(--falcon-teal);
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--text-dark);
}
.docs-tool-body .docs-dialog-field { margin-bottom: 10px; }
.docs-tool-body .docs-dialog-field label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.docs-tool-body .docs-input-mock {
  border: 1px solid #ccc;
  padding: 4px 8px;
  font-size: 0.75rem;
  color: var(--text-dark);
  background: var(--bg-white);
  display: inline-block;
  min-width: 80px;
}
.docs-tool-body .docs-combo-mock {
  border: 1px solid #ccc;
  padding: 4px 8px;
  font-size: 0.75rem;
  color: var(--text-dark);
  background: var(--bg-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}
.docs-tool-body .docs-combo-mock::after {
  content: "\25BC";
  font-size: 8px;
  color: #999;
  margin-left: auto;
}
.docs-tool-body .docs-checkbox {
  font-size: 0.75rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.docs-tool-body .docs-checkbox-box {
  width: 14px;
  height: 14px;
  border: 1px solid #999;
  display: inline-block;
  flex-shrink: 0;
}
.docs-tool-body .docs-checkbox-box.checked {
  background: var(--falcon-teal);
  border-color: var(--falcon-teal);
  position: relative;
}
.docs-tool-body .docs-checkbox-box.checked::after {
  content: "\2713";
  color: white;
  font-size: 10px;
  position: absolute;
  top: -1px;
  left: 2px;
}
.docs-tool-body .docs-btn-primary {
  background: var(--falcon-teal);
  color: var(--text-light);
  border: none;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.docs-tool-body .docs-btn-secondary {
  background: #E0E0E0;
  color: var(--text-dark);
  border: none;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.docs-tool-body .docs-btn-success {
  background: var(--success-green);
  color: var(--text-light);
  border: none;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.docs-tool-body .docs-callout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #E74C3C;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 4px;
}
.docs-tool-body .docs-fields {
  list-style: none;
  margin: 0.5rem 0 1rem;
  padding: 0;
}
.docs-tool-body .docs-fields li {
  font-size: 0.8125rem;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  gap: 8px;
}
.docs-tool-body .docs-fields li:last-child { border-bottom: none; }
.docs-tool-body .docs-field-name {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  min-width: 180px;
}
.docs-tool-body .docs-field-desc { color: var(--text-muted); }
.docs-tool-body .docs-steps {
  list-style: none;
  counter-reset: docs-step;
  margin: 0.5rem 0 1rem;
  padding: 0;
}
.docs-tool-body .docs-steps li {
  font-size: 0.8125rem;
  padding: 6px 0 6px 32px;
  position: relative;
  counter-increment: docs-step;
  color: var(--text-muted);
}
.docs-tool-body .docs-steps li::before {
  content: counter(docs-step);
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  background: var(--falcon-teal);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 22px;
}
.docs-tool-body .docs-tip {
  background: rgba(74, 124, 143, 0.08);
  border-left: 4px solid var(--falcon-teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  margin: 1rem 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.docs-tool-body .docs-tip strong { color: var(--falcon-teal); }
.docs-tool-body .docs-warning {
  background: #FFF3CD;
  border-left: 4px solid #FFC107;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  margin: 1rem 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.docs-tool-body .docs-warning strong { color: #856404; }
.docs-tool-body .docs-pro-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #b8860b;
  background: #fdf6e3;
  border: 1px solid #e6d5a8;
  border-radius: 3px;
  padding: 1px 5px;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.docs-tool-body kbd {
  display: inline-block;
  padding: 2px 6px;
  font-family: var(--font-family);
  font-size: 0.75rem;
  color: var(--text-dark);
  background: var(--bg-lighter);
  border: 1px solid #ccc;
  border-radius: 3px;
}
.docs-tool-body .docs-dialog-tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
}
.docs-tool-body .docs-dialog-tab {
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: default;
}
.docs-tool-body .docs-dialog-tab.active {
  color: var(--falcon-teal);
  border-bottom-color: var(--falcon-teal);
}
.docs-tool-body .docs-dialog-list {
  border: 1px solid #e0e0e0;
  max-height: 120px;
  overflow-y: auto;
  margin-bottom: 8px;
}
.docs-tool-body .docs-dialog-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.docs-tool-body .docs-dialog-list-item:last-child { border-bottom: none; }
.docs-tool-body .docs-dialog-counter {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.docs-tool-body .docs-dialog-chat {
  border: 1px solid #e0e0e0;
  background: var(--bg-light);
  min-height: 80px;
  padding: 8px 12px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}
.docs-tool-body .docs-dialog-input-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.docs-tool-body .docs-dialog-input-row .docs-input-mock {
  flex: 1;
}
.docs-tool-body .docs-license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}
.docs-tool-body .docs-license-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.docs-tool-body .docs-license-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.docs-tool-body .docs-license-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.docs-tool-body .docs-license-card li {
  font-size: 0.8125rem;
  padding: 3px 0;
  color: var(--text-muted);
}
.docs-tool-body .docs-license-card li::before {
  content: "\2713 ";
  color: var(--success-green);
  font-weight: 700;
}
.docs-tool-body .docs-license-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}
@media (max-width: 768px) {
  .docs-tool-body .docs-fields li {
    flex-direction: column;
    gap: 2px;
  }
  .docs-tool-body .docs-field-name { min-width: auto; }
  .docs-tool-body .docs-dialog,
  .docs-tool-body .docs-dialog--wide { max-width: 100%; }
  .docs-tool-body .docs-license-grid { grid-template-columns: 1fr; }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--text-light);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  z-index: 9999;
  font-size: 0.875rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; opacity: 0.9; }
.cookie-banner a { color: var(--text-light); text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: var(--space-xs); flex-shrink: 0; }
.cookie-banner .btn-cookie {
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}
.cookie-banner .btn-cookie:hover { opacity: 0.85; }
.cookie-banner .btn-accept {
  background: var(--falcon-teal);
  color: var(--text-light);
}
.cookie-banner .btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; gap: var(--space-xs); padding: var(--space-sm); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .version-badges { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
