/* ===== FONTS & TOKENS ===== */
:root {
  --bg: #0D1B2A;
  --bg-2: #081018;
  --bg-card: #0F2137;
  --fg: #F0F4F8;
  --fg-muted: #8BA3C4;
  --accent: #FFB627;
  --accent-dim: rgba(255, 182, 39, 0.12);
  --border: rgba(255, 182, 39, 0.15);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}
*, *::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: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--bg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); }

/* ===== HERO ===== */
.hero { padding: 80px 32px 60px; background: var(--bg); overflow: hidden; }
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-proof { display: flex; align-items: center; gap: 28px; }
.proof-item { display: flex; flex-direction: column; gap: 4px; }
.proof-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.proof-label { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.4; }
.proof-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== PHONE FRAME ===== */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.phone-frame {
  width: 270px;
  background: #111827;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(255,182,39,0.07);
  position: relative;
}
.phone-notch {
  width: 100px;
  height: 28px;
  background: #111827;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  background: #1a2436;
  border-radius: 24px;
  overflow: hidden;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  height: 450px;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-name-row { display: flex; flex-direction: column; gap: 2px; }
.wa-name { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: var(--fg); }
.wa-online { font-size: 0.63rem; color: #4ade80; font-weight: 500; }
.wa-chat {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-right: 4px;
}
.wa-chat::-webkit-scrollbar { width: 3px; }
.wa-chat::-webkit-scrollbar-thumb { background: rgba(255,182,39,0.3); border-radius: 2px; }
.wa-bubble { padding: 8px 12px; border-radius: 14px; font-size: 0.78rem; line-height: 1.45; max-width: 86%; }
.wa-user { background: rgba(255,182,39,0.15); color: var(--fg); align-self: flex-end; border-bottom-right-radius: 4px; }
.wa-bot { background: rgba(255,255,255,0.06); color: var(--fg-muted); align-self: flex-start; border-bottom-left-radius: 4px; }
.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  padding: 8px 12px;
  margin-top: 8px;
}
.wa-input-field { flex: 1; font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.wa-send {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visual-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
}

/* ===== STATS ROW ===== */
.stats-row {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item { padding: 0 40px; }
.stat-item:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.5; }
.stat-divider { width: 1px; background: var(--border); margin: 0 40px; }

/* ===== SECTION SHARED ===== */
.section-inner { max-width: 1160px; margin: 0 auto; padding: 96px 32px; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-desc { font-size: 1rem; color: var(--fg-muted); max-width: 560px; line-height: 1.7; margin-bottom: 48px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}
.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
}
.step-icon { margin-bottom: 16px; }
.step-title { font-family: var(--font-head); font-size: 0.92rem; font-weight: 600; color: var(--fg); margin-bottom: 10px; line-height: 1.3; }
.step-desc { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== INDUSTRIES ===== */
.industries { background: var(--bg-2); }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s;
}
.industry-card:hover { border-color: rgba(255,182,39,0.35); }
.industry-icon { margin-bottom: 4px; }
.industry-name { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; color: var(--fg); }
.industry-use { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.services-list { display: flex; flex-direction: column; }
.service-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.service-item:first-child { border-top: 1px solid var(--border); }
.service-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-name { font-family: var(--font-head); font-size: 0.88rem; font-weight: 600; color: var(--fg); margin-bottom: 3px; }
.service-desc { font-size: 0.8rem; color: var(--fg-muted); }
.comparison-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 14px; }
.comparison-header {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.with-tag { display: flex; align-items: center; gap: 10px; }
.tag {
  font-size: 0.62rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; padding: 8px 0; }
.bad { color: #6b7280; }
.good { color: #4ade80; }
.highlight { border-color: rgba(74,222,128,0.25); }

/* ===== PRICING ===== */
.pricing { background: var(--bg-2); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 780px; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.pricing-card.featured {
  border-color: rgba(255,182,39,0.4);
  background: linear-gradient(135deg, rgba(255,182,39,0.06) 0%, var(--bg-card) 60%);
}
.pricing-tier { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px; }
.pricing-range { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--fg); margin-bottom: 10px; }
.pricing-desc { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 22px; line-height: 1.6; }
.pricing-includes { display: flex; flex-direction: column; gap: 10px; }
.pricing-include { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--fg); }
.pricing-note {
  margin-top: 20px;
  padding: 10px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.pricing-note strong { color: var(--accent); }

/* ===== CLOSING ===== */
.closing { background: var(--bg); border-top: 1px solid var(--border); padding: 96px 32px; }
.closing-inner { max-width: 1160px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub { font-size: 1rem; color: var(--fg-muted); max-width: 540px; margin: 0 auto 48px; line-height: 1.7; }
.closing-stats { display: flex; justify-content: center; gap: 64px; margin-bottom: 40px; }
.closing-stat { text-align: center; }
.closing-val { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.closing-lbl { font-size: 0.8rem; color: var(--fg-muted); max-width: 170px; line-height: 1.5; }
.closing-note { font-size: 0.82rem; color: var(--fg-muted); opacity: 0.65; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 28px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--fg); }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-meta { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--fg-muted); margin-left: auto; }
.footer-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-muted); opacity: 0.4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-proof { gap: 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .stat-item:nth-child(odd) { padding-right: 24px; }
  .stat-item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--border); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .services-split { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-stats { gap: 32px; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 14px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 1.9rem; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-divider { display: none; }
  .section-inner { padding: 64px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 20px; }
  .closing-val { font-size: 1.8rem; }
  .footer-inner { flex-direction: column; gap: 10px; }
  .footer-meta { margin-left: 0; }
}