/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease;
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-subtle);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 150ms;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: var(--accent-glow);
}
.nav-cta:hover { filter: brightness(1.1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-secondary);
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}
.nav-mobile-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 56px 0 0;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-left { padding: 80px 0; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
}
.status-badge-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-tertiary);
}

.hero-headline {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.trust-line {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}

/* ===== PHONE MOCKUP ===== */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.phone-frame {
  width: 260px;
  height: 520px;
  background: #0A0A0A;
  border: 2px solid #2A2A2A;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}
.phone-bezel {
  position: absolute;
  inset: 8px;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #0A0A0A;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.phone-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 16px 16px;
  opacity: 0;
  transition: opacity 400ms ease;
}
.phone-scene.active { opacity: 1; }

/* Scene 1 — Missed Call */
.scene-missed {
  background: #1C1C1C;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.missed-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 68, 68, 0.2);
  border: 1px solid rgba(255, 68, 68, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.missed-icon svg { transform: rotate(135deg); }
.missed-title { font-size: 16px; font-weight: 600; color: #fff; }
.missed-number { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--text-secondary); }
.missed-time { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-tertiary); }
.missed-footer {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  text-align: center;
  font-size: 11px;
  color: var(--text-tertiary);
  font-style: italic;
}

/* Scene 2 & 3 — Messages */
.scene-messages { background: #000; padding: 24px 0 0; }
.msg-header {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.msg-list {
  flex: 1;
  overflow: hidden;
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.msg-bubble {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.4;
  word-wrap: break-word;
}
.msg-bubble.outbound {
  align-self: flex-end;
  background: #00E676;
  color: #000;
  border-radius: 16px 16px 4px 16px;
}
.msg-bubble.inbound {
  align-self: flex-start;
  background: #1C1C1C;
  color: #fff;
  border-radius: 16px 16px 16px 4px;
}
.msg-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-tertiary);
  margin-top: 3px;
}
.msg-meta.right { text-align: right; }

.scene-footer {
  padding: 6px 12px;
  display: flex;
  justify-content: center;
}
.scene-footer-badge {
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 20px;
  font-size: 9px;
  padding: 3px 8px;
  font-family: 'JetBrains Mono', monospace;
}

.phone-stat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  height: 48px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 13px;
  color: var(--text-tertiary);
  padding: 0 24px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== NUMBERS ===== */
.numbers-section {
  padding: 128px 0;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--border-subtle);
}
.number-block {
  padding: 64px 48px;
  border-right: 1px solid var(--border-subtle);
}
.number-block:last-child { border-right: none; }
.number-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 72px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.number-label {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 180px;
  line-height: 1.4;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  position: relative;
  height: 500vh;
}
.how-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 45fr 55fr;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}
.how-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
}
.how-step { display: none; }
.how-step.active { display: block; }
.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  display: block;
}
.step-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.step-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.how-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.how-phone {
  width: 320px;
  height: 640px;
  background: #0A0A0A;
  border: 2px solid #2A2A2A;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.how-phone .phone-bezel {
  inset: 8px;
  border-radius: 32px;
}
.how-phone .phone-notch {
  width: 90px;
  height: 26px;
}
.step-progress {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background 300ms;
}
.progress-dot.active { background: var(--accent); }

/* ===== DASHBOARD PREVIEW ===== */
.preview-section {
  padding: 128px 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.preview-heading { margin-bottom: 12px; }
.preview-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 64px; }

.browser-mockup {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  text-align: left;
}
.browser-toolbar {
  height: 44px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.browser-url {
  flex: 0 0 240px;
  margin: 0 auto;
  height: 24px;
  background: var(--bg-overlay);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browser-url span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
}
.browser-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: 480px;
}
.preview-sidebar {
  background: var(--bg-surface);
  border-right: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.preview-logo {
  padding: 0 16px 20px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 12px;
}
.preview-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 8px;
  border-radius: 6px;
}
.preview-nav-item.active {
  background: var(--accent-dim);
  color: var(--accent);
}
.preview-nav-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  flex-shrink: 0;
}
.preview-nav-item.active .preview-nav-dot { background: var(--accent); }
.preview-main {
  background: var(--bg-base);
  padding: 20px 24px;
  overflow: hidden;
}
.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.preview-topbar h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}
.preview-filters { display: flex; gap: 8px; }
.preview-filter {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  background: var(--bg-elevated);
}
.preview-filter.active {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: rgba(0, 230, 118, 0.3);
}
.preview-call-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.preview-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.preview-call-info { flex: 1; min-width: 0; }
.preview-call-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.preview-call-preview { font-size: 12px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.preview-call-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.preview-time { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-tertiary); }

/* ===== PRICING ===== */
.pricing-section {
  padding: 128px 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-heading { margin-bottom: 12px; }
.pricing-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 64px; }
.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 40px;
  text-align: left;
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 500;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
}
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-main {
  font-family: 'JetBrains Mono', monospace;
  font-size: 64px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-period { font-size: 18px; color: var(--text-secondary); }
.price-vat { font-size: 12px; color: var(--text-tertiary); margin-bottom: 32px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.feature-check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.pricing-cta { width: 100%; margin-bottom: 12px; justify-content: center; font-size: 15px; padding: 14px 24px; }
.pricing-note { font-size: 12px; color: var(--text-tertiary); text-align: center; }

/* ===== OBJECTIONS ===== */
.objections-section {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.objections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.objection-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  border-radius: 10px;
}
.objection-q { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.objection-a { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 128px 32px;
  text-align: center;
}
.final-headline {
  font-size: 52px;
  font-weight: 700;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.final-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; }
.final-cta .btn-primary { font-size: 16px; padding: 16px 32px; }
.final-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  letter-spacing: 0;
}
.footer-col p {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
  max-width: 240px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.footer-bottom span { font-size: 13px; color: var(--text-tertiary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  h1, .hero-headline { font-size: 42px; }
  h2 { font-size: 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .how-sticky { grid-template-columns: 1fr; }
  .how-right { display: none; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-block { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .number-block:last-child { border-bottom: none; }
  .objections-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .preview-section { display: none; }
  .browser-content { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-inner, .numbers-section, .pricing-section, .final-cta, .objections-section, .preview-section { padding-left: 20px; padding-right: 20px; }
  .how-left { padding: 0 24px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .phone-frame { width: 220px; height: 440px; }
  .final-headline { font-size: 36px; }
}
