/* =============================================
   LEADORBIT HQ — PREMIUM DARK SAAS STYLESHEET
   ============================================= */

:root {
  --bg:          #080c14;
  --bg2:         #0d1220;
  --bg3:         #111827;
  --surface:     #161d2e;
  --surface2:    #1c2438;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);

  --accent:      #5b6af0;
  --accent2:     #8b5cf6;
  --accent3:     #06b6d4;
  --green:       #22c55e;
  --red:         #ef4444;

  --grad:        linear-gradient(135deg, #5b6af0, #8b5cf6);
  --grad-text:   linear-gradient(90deg, #818cf8, #c084fc, #67e8f9);

  --text:        #f1f5f9;
  --text2:       #94a3b8;
  --text3:       #64748b;

  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 16px 60px rgba(0,0,0,0.6);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91,106,240,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91,106,240,0.5);
}
.btn-outline {
  border: 1.5px solid var(--border2);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(91,106,240,0.08);
}
.btn-ghost {
  color: var(--text2);
  background: transparent;
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-icon { color: var(--accent); font-size: 1.3rem; }
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background: rgba(8,12,20,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 0;
  color: var(--text2);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.open { display: flex; }

/* ── SECTION BASE ── */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--bg2);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(91,106,240,0.1);
  border: 1px solid rgba(91,106,240,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 56px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,106,240,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,106,240,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 20%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,106,240,0.18), transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-60%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.14), transparent 70%);
  bottom: 0; right: -100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text2);
  max-width: 660px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.trust-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
}
.badge-icon { font-size: 1rem; }

/* DASHBOARD MOCKUP */
.dashboard-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.dashboard-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(91,106,240,0.2), transparent 70%);
  pointer-events: none;
}
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
}
.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #ffbd2e; }
.dot.g { background: #28c840; }
.dash-url {
  font-size: 0.78rem;
  color: var(--text3);
  background: var(--surface2);
  padding: 4px 14px;
  border-radius: 6px;
  margin: 0 auto;
}
.dash-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 340px;
}
.dash-sidebar {
  background: var(--bg3);
  border-right: 1px solid var(--border);
  padding: 20px 14px;
}
.dash-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 0 4px;
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav-item {
  display: block;
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text3);
  border-radius: 8px;
  transition: all 0.2s;
  text-align: left;
}
.dash-nav-item.active,
.dash-nav-item:hover {
  background: rgba(91,106,240,0.15);
  color: var(--accent);
}
.dash-main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dash-stat {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.dash-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.dash-stat-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.dash-stat-label {
  font-size: 0.7rem;
  color: var(--text3);
  margin-top: 4px;
}
.dash-stat-trend {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.dash-stat-trend.up {
  background: rgba(34,197,94,0.15);
  color: var(--green);
}
.dash-chart-area {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.dash-chart-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text3);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70px;
}
.dash-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  height: 100%;
  justify-content: flex-end;
}
.dash-bar {
  width: 100%;
  height: var(--h);
  background: rgba(91,106,240,0.35);
  border-radius: 4px 4px 0 0;
  transition: height 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.dash-bar.active { background: var(--grad); }
.dash-bar-wrap span {
  font-size: 0.6rem;
  color: var(--text3);
}
.dash-leads { display: flex; flex-direction: column; gap: 4px; }
.dash-leads-head {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text3);
  margin-bottom: 6px;
}
.dash-lead-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.dash-lead-avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.dash-lead-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.dash-lead-info strong { font-size: 0.78rem; }
.dash-lead-info span { font-size: 0.68rem; color: var(--text3); }
.dash-lead-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.dash-lead-tag.hot { background: rgba(239,68,68,0.15); color: #ef4444; }
.dash-lead-tag.warm { background: rgba(245,158,11,0.15); color: #f59e0b; }

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--text2);
  max-width: 160px;
  margin: 0 auto;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border2);
}

/* ══════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover {
  border-color: rgba(239,68,68,0.3);
  transform: translateY(-4px);
}
.problem-icon { font-size: 2rem; margin-bottom: 14px; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem-card p { font-size: 0.9rem; color: var(--text2); }

/* BEFORE VS AFTER */
.bva-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 20px;
}
.bva-col { }
.bva-head {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.bva-col.before .bva-head { color: var(--red); }
.bva-col.after .bva-head { color: var(--green); }
.bva-col ul { display: flex; flex-direction: column; gap: 10px; }
.bva-col li {
  font-size: 0.88rem;
  color: var(--text2);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.bva-col li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text3);
}
.bva-col.after li::before { content: '→'; color: var(--green); }
.bva-arrow {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(91,106,240,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: inline-block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p { font-size: 0.9rem; color: var(--text2); }

/* ══════════════════════════════════════════
   DEMO / PHONE
══════════════════════════════════════════ */
.demo-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.phone-frame {
  width: 320px;
  flex-shrink: 0;
  background: #0d0d0d;
  border-radius: 40px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 120px; height: 28px;
  background: #0d0d0d;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 1px solid #1a1a1a;
  border-top: none;
}
.phone-screen {
  background: #111b21;
  display: flex;
  flex-direction: column;
  height: 560px;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #202c33;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wa-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.wa-header-info strong { display: block; font-size: 0.88rem; }
.wa-header-info span { font-size: 0.7rem; color: #8696a0; }
.wa-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='400' height='400' fill='%23111b21'/%3E%3C/svg%3E");
}
.wa-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  animation: msgIn 0.3s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.wa-msg.user {
  background: #005c4b;
  color: #e9edef;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.wa-msg.ai {
  background: #202c33;
  color: #e9edef;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.wa-msg .msg-time {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-align: right;
}
.wa-msg.ai .msg-time { text-align: left; }
.wa-property-card {
  background: #2a3942;
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.8rem;
  margin-top: 6px;
}
.wa-property-img {
  height: 80px;
  background: linear-gradient(135deg, #1a2940 0%, #0d1f35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.wa-property-info { padding: 10px 12px; }
.wa-property-info strong { display: block; margin-bottom: 2px; }
.wa-property-info span { color: #8696a0; font-size: 0.72rem; }
.wa-property-cta {
  display: block;
  background: #005c4b;
  color: #e9edef;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  font-size: 0.78rem;
}
.wa-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: #202c33;
  border-radius: 12px;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  width: 60px;
}
.wa-typing span {
  width: 6px; height: 6px;
  background: #8696a0;
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #202c33;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wa-input-fake {
  flex: 1;
  background: #2a3942;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: #8696a0;
}
.wa-send {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.demo-controls { }
.demo-controls h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.demo-controls p { color: var(--text2); margin-bottom: 24px; }
.demo-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.demo-checklist li { font-size: 0.92rem; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.steps-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(91,106,240,0.12);
  border: 1px solid rgba(91,106,240,0.25);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step-icon { font-size: 2.4rem; margin-bottom: 14px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p { font-size: 0.85rem; color: var(--text2); }
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin-top: 52px;
  opacity: 0.3;
}

/* ══════════════════════════════════════════
   RESULTS
══════════════════════════════════════════ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}
.result-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}
.result-icon { font-size: 2rem; margin-bottom: 12px; }
.result-metric {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.result-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.result-card p { font-size: 0.88rem; color: var(--text2); }

/* ══════════════════════════════════════════
   ROI CALCULATOR
══════════════════════════════════════════ */
.roi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.roi-inputs h3, .roi-results h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.roi-field { margin-bottom: 28px; }
.roi-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 10px;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--surface2);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(91,106,240,0.5);
}
.roi-range-val {
  font-size: 0.82rem;
  color: var(--accent);
  margin-top: 8px;
  font-weight: 600;
}
.roi-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.roi-result-row span { color: var(--text2); }
.roi-result-row strong { font-weight: 700; }
.roi-result-row.highlight {
  background: rgba(91,106,240,0.08);
  border-radius: 8px;
  padding: 14px 12px;
  border: 1px solid rgba(91,106,240,0.2);
  border-bottom: 1px solid rgba(91,106,240,0.2);
  margin: 8px 0;
}
.roi-result-row strong.green { color: var(--green); }

/* ══════════════════════════════════════════
   VOICE SECTION
══════════════════════════════════════════ */
.voice-section { background: var(--bg); }
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.voice-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.voice-orb {
  position: relative;
  width: 140px; height: 140px;
  margin-bottom: 10px;
}
.voice-wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(91,106,240,0.3);
  animation: voiceWave 3s infinite ease-out;
}
.voice-wave.w1 { inset: 0; }
.voice-wave.w2 { inset: -20px; animation-delay: 0.8s; }
.voice-wave.w3 { inset: -40px; animation-delay: 1.6s; }
@keyframes voiceWave {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.voice-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--surface);
  border-radius: 50%;
  border: 2px solid rgba(91,106,240,0.3);
}
.voice-transcript {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vt-msg { display: flex; }
.vt-msg span {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 90%;
}
.vt-msg.ai span {
  background: var(--bg3);
  color: var(--text2);
  border-bottom-left-radius: 4px;
}
.vt-msg.user {
  justify-content: flex-end;
}
.vt-msg.user span {
  background: rgba(91,106,240,0.2);
  color: var(--text);
  border-bottom-right-radius: 4px;
}
.voice-features { display: flex; flex-direction: column; gap: 28px; }
.vf-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.vf-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vf-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.vf-item p { font-size: 0.87rem; color: var(--text2); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}
.testi-stars { color: #f59e0b; font-size: 0.9rem; }
.testi-quote {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; }
.testi-author span { font-size: 0.75rem; color: var(--text3); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border2); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text3);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-benefits li { font-size: 0.9rem; }
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.ct-item strong { font-size: 0.9rem; margin-right: auto; }
.ct-item span { font-size: 0.78rem; color: var(--text3); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
}
.form-group input,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,106,240,0.15);
}
.form-note {
  font-size: 0.75rem;
  color: var(--text3);
  text-align: center;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text3);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  font-size: 1.2rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-socials a:hover {
  border-color: var(--accent);
  background: rgba(91,106,240,0.1);
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 16px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text3); }
.footer-tag { color: var(--text3) !important; }

/* ══════════════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text2);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { transform: translateY(-2px); color: var(--text); }

/* ══════════════════════════════════════════
   FORM SUCCESS
══════════════════════════════════════════ */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.form-success p { color: var(--text2); font-size: 0.9rem; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .dash-stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps-track { flex-wrap: wrap; justify-content: center; }
  .step-connector { display: none; }
  .step { min-width: 160px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .demo-wrap { grid-template-columns: 1fr; }
  .phone-frame { width: 100%; max-width: 320px; margin: 0 auto; }
  .voice-grid { grid-template-columns: 1fr; }
  .roi-wrap { grid-template-columns: 1fr; padding: 28px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-stats-row { grid-template-columns: repeat(2, 1fr); }
  .bva-wrap { grid-template-columns: 1fr; }
  .bva-arrow { display: none; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 40px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 1.75rem; }
  .hero-title { font-size: 1.9rem; }
  .trust-badges { gap: 8px; }
  .badge { font-size: 0.78rem; padding: 6px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Client Portal Button */
.btn-portal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: #A78BFA;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-portal:hover {
  background: rgba(124, 58, 237, 0.3);
  border-color: #8B5CF6;
  color: #C4B5FD;
  transform: translateY(-1px);
}

/* ============================================================
   NEW SECTIONS: Systems We Build + Flagship Demo
   ============================================================ */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.system-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .25s ease, border-color .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 94, 245, 0.35);
}
.system-icon {
  font-size: 34px;
  margin-bottom: 14px;
}
.system-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #F3F4FF;
}
.system-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #9AA0C8;
  flex: 1;
}
.system-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}
.system-tag.flagship {
  background: linear-gradient(135deg, rgba(255,176,32,0.18), rgba(255,176,32,0.05));
  color: #FFB020;
  border: 1px solid rgba(255,176,32,0.35);
}
.system-card-cta {
  background: linear-gradient(155deg, rgba(109,94,245,0.14), rgba(109,94,245,0.03));
  border-color: rgba(109,94,245,0.3);
}

.flagship-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================================
   ADDITIONAL MOBILE RESPONSIVE HARDENING
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 1024px) {
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .systems-grid { grid-template-columns: 1fr; gap: 16px; }
  .system-card { padding: 24px 20px; }

  /* Hero CTA buttons stack cleanly on mobile */
  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Flagship demo CTAs stack */
  .flagship-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .flagship-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Prevent hero sub break tag from causing layout issues */
  .hero-sub br.d-none-sm { display: none; }

  /* Container edge padding tightening */
  .container { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; line-height: 1.2; }
  .hero-sub { font-size: 0.95rem; }
  .section-title { font-size: 1.55rem; }
  .section-sub { font-size: 0.92rem; }
  .system-card h3 { font-size: 1.05rem; }
  .system-icon { font-size: 30px; }
  .trust-badges { justify-content: center; }
}
