/* === TOKENS === */
:root {
  --bg: #0d1117;
  --bg-2: #161b22;
  --bg-3: #21262d;
  --fg: #f0f6fc;
  --fg-2: #8b949e;
  --fg-3: #484f58;
  --accent: #c8f135;
  --accent-dim: rgba(200, 241, 53, 0.12);
  --accent-glow: rgba(200, 241, 53, 0.25);
  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.12);
  --green: #c8f135;
  --border: rgba(240, 246, 252, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === NAV === */
.site-nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-2);
  font-weight: 500;
}

/* === SHARED SECTION STYLES === */
.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  max-width: 580px;
  margin-bottom: 48px;
}

/* === HERO === */
.hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 6px rgba(200, 241, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 241, 53, 0); }
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 820px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-2);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-proof {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 760px;
}
.proof-item {
  flex: 1;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-right: none;
}
.proof-item:last-child { border-right: 1px solid var(--border); }
.proof-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.proof-item:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.proof-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--fg-2);
  line-height: 1.4;
}
.proof-divider { display: none; }

/* === LIVE WIDGET === */
.live-widget-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.live-widget-section .section-label { text-align: center; }
.live-widget-section .section-title { text-align: center; margin-bottom: 40px; }

.call-widget {
  max-width: 600px;
  margin: 0 auto 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(200, 241, 53, 0.06), 0 20px 60px rgba(0,0,0,0.4);
}
.widget-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.widget-status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.active-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 1.8s ease-out infinite;
}
.status-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.widget-time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--fg-3);
}
.widget-caller {
  display: flex;
  align-items: center;
  gap: 14px;
}
.caller-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.caller-info { flex: 1; }
.caller-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
}
.caller-sub { font-size: 0.8rem; color: var(--fg-2); }
.caller-badge {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}
.caller-badge.urgent {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.conversation-area {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: msg-in 0.3s ease-out;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-msg-incoming { }
.ai-msg-outgoing { flex-direction: row-reverse; }
.msg-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ai-msg-outgoing .msg-icon { display: none; }
.msg-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--fg);
  background: var(--bg-3);
  border: 1px solid var(--border);
}
.msg-caller {
  background: rgba(200, 241, 53, 0.08);
  border-color: rgba(200, 241, 53, 0.15);
  color: var(--fg);
}
.ai-msg-highlight .msg-bubble {
  background: var(--accent-dim);
  border-color: var(--accent-glow);
}

.widget-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}
.action-card {
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.action-card:last-child { border-right: none; }
.action-card svg { flex-shrink: 0; }
.action-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--fg);
}
.action-sub {
  font-size: 0.7rem;
  color: var(--fg-2);
  margin-top: 1px;
}

.widget-note {
  font-size: 0.9rem;
  color: var(--fg-3);
  max-width: 420px;
  margin: 0 auto;
}

/* === FEATURES === */
.features-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.features-section .section-label,
.features-section .section-title,
.features-section .section-sub {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.features-section .section-label { padding: 0 24px; }
.features-section .section-title { padding: 0 24px; }
.features-section .section-sub { padding: 0 24px; }
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  padding: 32px 28px;
  background: var(--bg);
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-2); }
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* === STATS === */
.stats-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-block {
  padding: 0 48px;
  border-right: 1px solid var(--border);
}
.stat-block:last-of-type { border-right: none; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.stat-desc {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.5;
  max-width: 220px;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}
.stats-source {
  text-align: center;
  font-size: 0.72rem;
  color: var(--fg-3);
  margin-top: 24px;
}

/* === BEFORE/AFTER === */
.beforeafter-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.beforeafter-section .section-label,
.beforeafter-section .section-title {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.compare-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 48px;
}
.compare-col {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid;
}
.compare-old {
  background: var(--red-dim);
  border-color: rgba(239, 68, 68, 0.2);
}
.compare-new {
  background: rgba(200, 241, 53, 0.04);
  border-color: rgba(200, 241, 53, 0.2);
}
.compare-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 28px;
}
.old-header { color: #f87171; }
.new-header { color: var(--accent); }
.compare-divider-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.compare-arrow { opacity: 0.6; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.old-list li { color: var(--fg-2); }
.new-list li { color: var(--fg); }
.compare-x, .compare-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.compare-x {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.compare-x::after {
  content: '';
  display: block;
  width: 8px;
  height: 2px;
  background: #f87171;
  border-radius: 1px;
}
.compare-check {
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
}
.compare-check::after {
  content: '';
  display: block;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) translateY(-1px);
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.testimonials-section .section-label,
.testimonials-section .section-title {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  padding: 28px 28px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card-featured {
  border-color: rgba(200, 241, 53, 0.25);
  background: linear-gradient(135deg, rgba(200, 241, 53, 0.04), var(--bg-2));
}
.testimonial-quote {
  font-size: 0.92rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
}
.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  font-style: normal;
  line-height: 0;
  vertical-align: -0.4em;
  opacity: 0.5;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.attr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--fg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.attr-avatar-lime {
  background: var(--accent-dim);
  color: var(--accent);
}
.attr-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg);
}
.attr-role {
  font-size: 0.75rem;
  color: var(--fg-2);
  margin-top: 2px;
}

/* === CLOSING === */
.closing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.closing-statement {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-2);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-3);
  margin-top: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  .stat-block { border-right: none; padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stat-block:last-of-type { border-bottom: none; }
  .stat-divider { display: none; }
  .compare-grid { grid-template-columns: 1fr; gap: 20px; }
  .compare-divider-col { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; }
  .proof-item { border-right: 1px solid var(--border); border-bottom: none; }
  .proof-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .proof-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .widget-actions { grid-template-columns: 1fr; }
  .action-card { border-right: none; border-bottom: 1px solid var(--border); }
  .action-card:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
}