/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0e0e0e;
  --surface: #141414;
  --surface2: rgba(255, 255, 255, 0.03);
  --accent: #ffffff;
  --accent-glow: #ffffff;
  --accent-soft: #a0a0a0;
  --text: #ffffff;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: var(--mono);
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: auto;
  pointer-events: none;
  /* Let clicks pass through the outer nav area */
}

.nav-inner {
  pointer-events: auto;
  /* Re-enable clicks for the toolbar itself */
  background: rgba(11, 13, 18, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 10px 32px 10px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
}

.nav.scrolled .nav-inner {
  background: rgba(11, 13, 18, 0.95);
  transform: translateY(-4px) scale(0.98);
}

.logo-img {
  height: 24px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
  opacity: 0.65;
}

.nav-links a:hover {
  opacity: 1;
}

.footer-logo {
  height: 24px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero-line-1 {
  font-size: clamp(72px, 12vw, 128px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.hero-line-2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.6;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.wake-word {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

.wake-text {
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.cursor {
  display: inline-block;
  animation: blink 1.1s step-end infinite;
  color: var(--accent);
  margin-left: 2px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}

.hero-social-proof {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeSlideUp 0.8s 0.75s ease both;
}

.hero-social-proof strong {
  color: var(--text);
  font-weight: 600;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 8px;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-ghost svg {
  opacity: 0.7;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  color: var(--text);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
  width: 100%;
  justify-content: center;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3
  }

  50% {
    opacity: 1
  }
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
  padding: 40px 0;
}

.strip-grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 24px;
}

.strip-divider {
  width: px;
  background: var(--border);
  flex-shrink: 0;
}

.strip-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.strip-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.strip-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.strip-text span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.how-it-works {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
}

.step-item {
  flex: 1;
  padding: 0 40px;
}

.step-item:first-child {
  padding-left: 0;
}

.step-item:last-child {
  padding-right: 0;
}

.step-connector {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--border-strong), transparent);
  flex-shrink: 0;
  margin-top: 24px;
}

.step-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.step-code {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: #4ecb6e;
  display: inline-block;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    gap: 0;
  }

  .step-connector {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-strong), transparent);
    margin: 24px 0;
  }

  .step-item {
    padding: 0;
  }
}

/* ===== FEATURE SECTIONS ===== */
.features-deep {
  padding: 0;
}

.feature-block {
  padding: 120px 0;
}

.feature-block.alt {
  /* No longer alternating background */
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-tag {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.feature-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.feature-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== MOCKUPS ===== */
.mockup-screen {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

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

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #febc2e;
}

.dot.green {
  background: #28c840;
}

.mockup-title {
  font-size: 11px;
  color: var(--muted);
  margin-left: 8px;
}

.mockup-body {
  padding: 24px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

/* HUD overlay mockup */
.overlay-hud {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hud-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.hud-active {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.hud-label {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  min-width: 60px;
}

.hud-val {
  font-size: 13px;
  color: var(--text);
}

.blink-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: auto;
  animation: blink 1s step-end infinite;
}

.screen-scan-line {
  display: none;
}

/* Flow mockup */
.flow-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 32px;
}

.flow-node {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.flow-node.trigger {
  border-color: rgba(255, 255, 255, 0.3);
}

.flow-node.action {
  border-color: var(--border-strong);
}

.flow-node span:first-child {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.flow-node span:last-child {
  font-size: 13px;
  color: var(--text);
}

.flow-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

/* Terminal mockup */
.terminal-body {
  /* background inherited from mockup-screen */
}

.term-line {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  margin-bottom: 8px;
  font-family: var(--mono);
}

.term-prompt {
  color: var(--accent);
}

.term-cmd {
  color: var(--text);
}

.term-out {
  color: #4ecb6e;
  padding-left: 4px;
}

.cursor-sm {
  display: inline-block;
  color: var(--text);
  animation: blink 1.1s step-end infinite;
}

/* Gesture mockup */
.gesture-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.gesture-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.hand-outline {
  opacity: 0.85;
  animation: handPulse 2.5s ease-in-out infinite;
}

@keyframes handPulse {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.gesture-label {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-family: var(--mono);
}

.gesture-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.gesture-scan {
  display: none;
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table thead tr {
  border-bottom: 1px solid var(--border-strong);
}

.compare-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.compare-table th.col-lo {
  color: var(--accent);
}

.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td.col-lo {
  font-size: 18px;
}

.compare-table td.check {
  color: var(--accent);
  font-size: 18px;
}

.compare-table td.cross {
  color: #444;
  font-size: 16px;
}

.compare-table td.partial {
  color: #555;
  font-size: 16px;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.badge-new {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  background: rgba(74, 158, 255, 0.2);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  margin-left: 8px;
  vertical-align: middle;
  font-family: var(--font);
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.price-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--text);
  color: var(--bg);
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.pricing-email-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  width: 100%;
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-color: transparent;
}

.ajax-form.revealed .pricing-email-input {
  max-height: 50px;
  opacity: 1;
  padding: 13px 16px;
  margin-bottom: 12px;
  border-color: var(--border-strong);
}

.pricing-email-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.pricing-email-input::placeholder {
  color: var(--muted);
}

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

.price-tier {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-num {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}

.price-period {
  font-size: 16px;
  color: var(--muted);
}

.price-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-ico {
  color: var(--accent);
  font-size: 15px;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: -16px;
  margin-bottom: 24px;
  opacity: 0.8;
}

/* Pay as you go */
.pay-as-you-go {
  margin-top: 60px;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pay-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.pay-content p {
  color: var(--muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 24px;
}

.credits-box {
  background: var(--surface2);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.credits-label {
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.credits-deal {
  font-size: 18px;
  color: var(--text);
}

.credits-deal strong {
  color: var(--accent);
  font-size: 24px;
}

.pay-notes {
  font-size: 13px !important;
  opacity: 0.7;
}

.custom-note {
  margin-top: 24px;
  font-size: 14px !important;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.custom-note a {
  color: var(--text);
  text-decoration: underline;
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
}

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

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-top: 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.form-success {
  padding: 16px;
  background: rgba(78, 203, 110, 0.1);
  border: 1px solid rgba(78, 203, 110, 0.3);
  border-radius: 8px;
  color: #4ecb6e;
  font-size: 14px;
  text-align: center;
  animation: fadeSlideUp 0.4s ease both;
}

.form-content {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta-section {
  padding: 60px 0;
}

.cta-box {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 32px 80px rgba(0, 0, 0, 0.5);
}

.cta-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 12px;
}

.cta-form .form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.cta-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-color: transparent;
}

.ajax-form.revealed .cta-input {
  max-height: 50px;
  opacity: 1;
  padding: 14px 16px;
  border-color: var(--border-strong);
}

.cta-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-input::placeholder {
  color: var(--muted);
}

.cta-submit {
  border-radius: 8px;
  white-space: nowrap;
  padding: 14px 24px;
}

.cta-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  opacity: 0.6;
}

@media (max-width: 640px) {
  .cta-box {
    padding: 48px 24px;
  }

  .cta-form {
    flex-direction: column;
  }
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
}

.footer-right {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 48px;
  }

  .strip-grid {
    flex-direction: column;
  }

  .strip-divider {
    width: 100%;
    height: 1px;
  }

  .strip-item {
    padding: 28px 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .nav {
    top: 12px;
    width: 92%;
  }

  .nav-inner {
    padding: 6px 16px;
    gap: 16px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .feature-block {
    padding: 80px 0;
  }

  .comparison,
  .pricing,
  .faq {
    padding: 80px 0;
  }

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