/* =============================================
   McGuire Management v7 — Outcome-Focused
   "Get the lead. Manage the job. One app."
   ============================================= */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --border: #222222;
  --border-hover: #333333;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --green: #2ecc40;
  --green-glow: rgba(46, 204, 64, 0.12);
  --green-border: rgba(46, 204, 64, 0.25);
  --blue: #1a8cff;
  --blue-glow: rgba(26, 140, 255, 0.12);
  --blue-border: rgba(26, 140, 255, 0.25);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1100px;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; }
p { color: var(--text-secondary); line-height: 1.7; }

.text-gradient {
  background: linear-gradient(135deg, var(--green), var(--blue), var(--green));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.text-green { color: var(--green) !important; }
.text-blue { color: var(--blue) !important; }

.overline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-header { max-width: 600px; margin-bottom: 48px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 0.95rem; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.3s ease; background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-inner {
  max-width: var(--max-width); 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: var(--font-heading); font-weight: 700; font-size: 0.95rem;
}

.logo-mark {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 7px; font-weight: 800; font-size: 0.7rem; color: #000;
}

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: var(--text-primary) !important; color: var(--bg-primary) !important;
  padding: 7px 18px !important; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.78rem !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

.nav-login {
  color: var(--accent-green) !important;
  font-weight: 600 !important; font-size: 0.78rem !important;
  border: 1px solid var(--accent-green) !important;
  padding: 6px 16px !important; border-radius: 6px;
  transition: all 0.2s !important;
}
.nav-login:hover { background: var(--accent-green) !important; color: var(--bg-primary) !important; }

.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.4rem; cursor: pointer; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 60px; position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; top: -15%; right: -10%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(46, 204, 64, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.05); }
}

.hero::after {
  content: ''; position: absolute; bottom: 0; left: -5%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(26, 140, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-content { max-width: 680px; position: relative; z-index: 1; }

/* Hero split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

/* ---------- PHONE MOCKUP ---------- */
.hero-mockup {
  position: relative;
  z-index: 1;
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: #161616;
  border: 1px solid #222222;
  border-radius: 36px;
  padding: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}

.phone-screen {
  height: calc(100% - 36px);
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border-radius: 20px;
  overflow: hidden;
}

/* -- Mini Dashboard (phone mockup) -- */
.mock-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 8px;
  border-bottom: 1px solid #222222;
}

.mock-dash-brand {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: -0.01em;
}

.mock-dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.55rem;
  font-weight: 600;
  color: #2ecc40;
}

.mock-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc40;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 204, 64, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(46, 204, 64, 0); }
}

.mock-dash-body {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.mock-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mock-kpi-card {
  background: #161616;
  border: 1px solid #222222;
  border-radius: 10px;
  padding: 8px 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background 0.2s;
}

.mock-kpi-card:hover {
  background: #1a1a1a;
}

.mock-kpi-label {
  font-size: 0.5rem;
  font-weight: 600;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-kpi-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1.1;
}

.mock-kpi-change {
  font-size: 0.48rem;
  font-weight: 700;
}

.mock-kpi-change.up { color: #2ecc40; }
.mock-kpi-change.down { color: #ff4444; }

.mock-pipeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-pipeline-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.mock-pipeline-bar {
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(46, 204, 64, 0.25), rgba(26, 140, 255, 0.25));
  border: 1px solid rgba(46, 204, 64, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 0.5rem;
  font-weight: 600;
  color: #f5f5f5;
  transition: background 0.2s;
}

.mock-pipeline-bar:hover {
  background: linear-gradient(135deg, rgba(46, 204, 64, 0.35), rgba(26, 140, 255, 0.35));
}

.mock-chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 0;
}

.mock-chart-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 4px 0;
}

.mock-chart-bar {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #2ecc40, #1a8cff);
  min-height: 8px;
  transition: opacity 0.2s;
}

.mock-chart-bar:hover {
  opacity: 0.8;
}

.mock-chart-months {
  display: flex;
  justify-content: space-around;
  font-size: 0.45rem;
  color: #666666;
  font-weight: 600;
}

.mock-nav-bar {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid #222222;
  background: #161616;
}

.mock-nav-item {
  font-size: 1rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.mock-nav-item.active {
  opacity: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border: 1px solid var(--green-border); border-radius: 100px;
  font-size: 0.73rem; font-weight: 500; color: var(--green); margin-bottom: 24px;
}

.dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 .line { display: block; }
.subtitle { font-size: 1.05rem; max-width: 560px; margin: 20px 0 28px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.hero-proof-item { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* ---------- HERO PROOF BAR ---------- */
.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.hero-proof-bar span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-proof-bar .proof-dot {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem;
  transition: all 0.25s ease; cursor: pointer; border: none;
}

.btn-primary { background: linear-gradient(135deg, var(--green), #28b83a); color: #000; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--green-glow); }

.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

/* ---------- LOSS AVERSION SECTION ---------- */
.loss-aversion {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.loss-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.loss-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 36px;
}

.loss-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.loss-stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.loss-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.loss-stat-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.loss-bottom-text {
  font-size: 0.95rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ---------- THREE-STEP SOLUTION ---------- */
.three-step { padding: 100px 0; }

.three-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.three-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}

.three-step-card:hover {
  border-color: var(--green-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46, 204, 64, 0.06);
}

.three-step-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.three-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.three-step-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---------- BEFORE / AFTER ---------- */
.before-after {
  padding: 60px 0;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.ba-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.ba-before {
  border-color: rgba(255, 68, 68, 0.2);
}

.ba-before .ba-label {
  color: #ff4444;
  border-bottom-color: rgba(255, 68, 68, 0.15);
}

.ba-after {
  border-color: var(--green-border);
  background: linear-gradient(180deg, var(--green-glow) 0%, var(--bg-card) 40%);
}

.ba-after .ba-label {
  color: var(--green);
  border-bottom-color: var(--green-border);
}

.ba-list {
  list-style: none;
}

.ba-list li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  padding: 6px 0;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}

.ba-before .ba-list li {
  color: var(--text-muted);
}

/* ---------- GLOW LINE ---------- */
.glow-line {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--blue), transparent);
  margin: 0;
  opacity: 0.5;
}

/* ---------- INDUSTRIES ---------- */
.industries {
  padding: 60px 0;
}

.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.industry-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}

.industry-tag:hover {
  border-color: var(--green-border);
  color: var(--text-secondary);
}

.industries-note {
  text-align: center;
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
}

/* ---------- MARKETING SECTION ---------- */
.marketing-section { padding: 100px 0; }

.marketing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.marketing-left h2 { margin-bottom: 16px; }
.marketing-left > p { font-size: 0.95rem; margin-bottom: 24px; }

.marketing-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.flow-icon { font-size: 1rem; }

.flow-arrow {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.marketing-note-text {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  line-height: 1.6;
  margin-top: 20px;
}

.marketing-right { display: flex; flex-direction: column; gap: 14px; }

.marketing-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.3s ease;
}

.marketing-stat-card:hover { border-color: var(--border-hover); transform: translateX(4px); }
.marketing-stat-icon { font-size: 1.3rem; margin-bottom: 10px; }
.marketing-stat-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.marketing-stat-card p { font-size: 0.82rem; line-height: 1.6; }

/* ---------- AGENCY COMPARISON TABLE ---------- */
.agency-compare {
  margin-bottom: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  overflow-x: auto;
}

.agency-compare-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.agency-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.agency-compare-table thead th {
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  text-align: left;
}

.agency-compare-table thead th.agency-ours {
  color: var(--green);
}

.agency-compare-table tbody td {
  padding: 10px 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(34, 34, 34, 0.4);
  vertical-align: top;
}

.agency-compare-table tbody td.agency-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.agency-compare-table tbody td.agency-ours {
  color: var(--green);
  font-weight: 500;
}

.agency-compare-table tbody tr:hover {
  background: rgba(46, 204, 64, 0.03);
}

/* ---------- PLATFORM SECTION (CONSOLIDATED) ---------- */
.platform-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.platform-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}

.platform-block:hover {
  border-color: var(--border-hover);
}

.platform-block-wide {
  grid-column: 1 / -1;
}

.platform-block h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.platform-block > p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Channels row inside platform */
.channels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.channel-pill:hover {
  border-color: var(--green-border);
  color: var(--text-primary);
}

/* Payment steps compact (inside platform) */
.payment-steps-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.payment-step-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.payment-step-mini span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.step-num {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  color: #000;
  flex-shrink: 0;
}

/* ---------- DASHBOARD PREVIEW (inside platform) ---------- */
.laptop-frame {
  max-width: 900px;
  margin: 16px auto 0;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--blue-glow);
}

.laptop-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.laptop-dots {
  display: flex;
  gap: 6px;
}

.laptop-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.laptop-dots span:nth-child(1) { background: #ff5f57; }
.laptop-dots span:nth-child(2) { background: #febc2e; }
.laptop-dots span:nth-child(3) { background: #28c840; }

.laptop-url {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-primary);
  padding: 4px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.laptop-screen {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 300px;
}

.dash-sidebar {
  background: var(--bg-primary);
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-sidebar-item {
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: default;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.dash-sidebar-item.active {
  color: var(--text-primary);
  background: var(--bg-card-hover);
  border-left-color: var(--green);
}

.dash-main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dash-metric {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}

.dash-metric-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.dash-metric-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.dash-conversations {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-convo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.dash-convo-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  flex-shrink: 0;
}

.dash-convo-avatar.blue {
  background: linear-gradient(135deg, var(--blue), #0066cc);
}

.dash-convo-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-convo-badge {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  padding: 2px 8px;
  border-radius: 100px;
}

.dash-convo-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ---------- CRM CONTACT RECORD DEMO ---------- */
.platform-hero {
  padding: 100px 0 60px;
}

.crm-demo {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  border: 1px solid #222222;
  border-radius: 12px;
  overflow: hidden;
  background: #161616;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 960px;
  margin: 0 auto;
}

.crm-panel-left {
  background: #0a0a0a;
  border-right: 1px solid #222222;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crm-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2ecc40;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #0a0a0a;
  margin-bottom: 4px;
}

.crm-contact-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #f5f5f5;
  margin-bottom: 8px;
}

.crm-field {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 0.78rem;
  color: #a0a0a0;
  padding: 4px 0;
}

.crm-field-label {
  font-size: 0.62rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.crm-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.crm-tag {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: #222222;
  border: 1px solid #333333;
  color: #a0a0a0;
  transition: color 0.2s, border-color 0.2s;
}

.crm-tag:hover {
  color: #f5f5f5;
  border-color: #444;
}

.crm-actions-bar {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.crm-action-btn {
  flex: 1;
  padding: 6px 4px;
  font-size: 0.65rem;
  font-weight: 600;
  background: #161616;
  border: 1px solid #222222;
  border-radius: 8px;
  color: #a0a0a0;
  cursor: default;
  text-align: center;
  transition: all 0.2s;
}

.crm-action-btn:hover {
  background: linear-gradient(135deg, rgba(46, 204, 64, 0.15), rgba(26, 140, 255, 0.15));
  border-color: rgba(46, 204, 64, 0.3);
  color: #f5f5f5;
}

.crm-panel-center {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #222222;
  background: #161616;
}

.crm-convo-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #222222;
  padding: 0;
}

.crm-convo-tab {
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #666666;
  cursor: default;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.crm-convo-tab:hover {
  color: #a0a0a0;
}

.crm-convo-tab.active {
  color: #2ecc40;
  border-bottom-color: #2ecc40;
}

.crm-convo-feed {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
}

.crm-msg {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #0a0a0a;
  border: 1px solid #222222;
  transition: background 0.2s;
}

.crm-msg:hover {
  background: #111111;
}

.crm-msg-ai {
  background: rgba(46, 204, 64, 0.06);
  border-color: rgba(46, 204, 64, 0.18);
}

.crm-msg-ai:hover {
  background: rgba(46, 204, 64, 0.1);
}

.crm-msg-system {
  background: rgba(26, 140, 255, 0.06);
  border-color: rgba(26, 140, 255, 0.18);
}

.crm-msg-system:hover {
  background: rgba(26, 140, 255, 0.1);
}

.crm-msg-channel {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.channel-fb { background: #1877f2; color: #fff; }
.channel-sms { background: #22c55e; color: #000; }
.channel-ai { background: #2ecc40; color: #0a0a0a; }
.channel-system { background: #a0a0a0; color: #0a0a0a; font-size: 0.75rem; }

.crm-msg-body {
  flex: 1;
  font-size: 0.8rem;
  color: #a0a0a0;
  line-height: 1.5;
}

.crm-msg-ai .crm-msg-body {
  color: #f5f5f5;
}

.crm-msg-time {
  font-size: 0.6rem;
  color: #666666;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.crm-panel-right {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0a0a0a;
  max-height: 460px;
  overflow-y: auto;
}

.crm-right-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crm-right-title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666666;
  padding-bottom: 4px;
  border-bottom: 1px solid #222222;
}

.crm-right-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #161616;
  border: 1px solid #222222;
  transition: background 0.2s;
}

.crm-right-item:hover {
  background: #1a1a1a;
}

.crm-right-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.crm-right-main {
  font-size: 0.78rem;
  color: #f5f5f5;
  font-weight: 500;
}

.crm-right-sub {
  font-size: 0.65rem;
  color: #666666;
  margin-top: 1px;
}

/* ---------- ACTION PILLS ---------- */
.action-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.action-pill:hover {
  border-color: var(--green-border);
  color: var(--text-primary);
  background: var(--green-glow);
}

.action-pills-sub {
  text-align: center;
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  margin-top: 14px;
  font-style: italic;
}

/* ---------- INBOX SECTION ---------- */
.inbox-section {
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- ROI SPLIT CARDS ---------- */
.roi-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.roi-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.roi-desc {
  font-size: 0.82rem !important;
  margin-bottom: 16px;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.roi-row:last-child {
  border-bottom: none;
}

.roi-val {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
}

.roi-row-highlight {
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-top: 8px;
}

.roi-row-highlight .roi-val {
  color: var(--green);
  font-weight: 700;
}

/* ---------- SOCIAL PROOF STATS ---------- */
.social-proof {
  padding: 60px 0;
}

.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.proof-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.proof-stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.proof-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.proof-stat-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------- STATS / REPLACES BAR ---------- */
.stats { padding: 48px 0; }

.stat-item h3 { font-size: 2.2rem; margin-bottom: 4px; letter-spacing: -0.03em; }
.stat-item p {
  font-size: 0.75rem; color: var(--text-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.stat-item {
  transition: transform 0.2s ease;
}
.stat-item:hover {
  transform: translateY(-2px);
}

.replaces-bar {
  text-align: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.replaces-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 12px;
}

.replaces-logos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.replaces-item {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.7;
}

.replaces-divider {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.4;
}

/* ---------- VALUE ANCHORING ---------- */
.value-anchor {
  padding: 100px 0;
}

.value-grid {
  max-width: 600px;
  margin: 0 auto 32px;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.value-row:hover {
  background: var(--bg-card);
}

.value-row:first-child {
  border-top: 1px solid var(--border);
}

.value-tool {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.value-price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.value-row.total {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.value-row.total .value-tool {
  font-weight: 600;
  color: var(--text-primary);
}

.value-row.total .value-price {
  color: #ff4444;
  font-size: 1rem;
}

.value-bottom {
  text-align: center;
}

.value-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 16px;
}

.value-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.value-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.line-through {
  text-decoration: line-through;
  color: var(--text-muted);
  opacity: 0.6;
}

.value-vs {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

/* ---------- SETUP SECTION ---------- */
.setup-section { padding: 80px 0; }

.setup-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.setup-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.setup-step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #000;
  margin: 0 auto 14px;
}

.setup-step h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.setup-step p {
  font-size: 0.8rem;
  line-height: 1.6;
}

.setup-step-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 18px;
  flex-shrink: 0;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}

/* ---------- PRICING TOGGLE ---------- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.toggle-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  cursor: pointer;
}
.toggle-label.active,
.toggle-label:first-child { color: var(--text-primary); font-weight: 600; }
.toggle-label-annual { display: flex; align-items: center; gap: 8px; }

.toggle-save {
  font-size: 0.68rem;
  background: var(--green-glow);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid var(--green-border);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.toggle-switch:hover { border-color: var(--green-border); }
.toggle-switch.active { background: var(--green-glow); border-color: var(--green); }

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toggle-switch.active .toggle-knob {
  left: 25px;
  background: var(--green);
}

/* ---------- PRICING TAGLINE ---------- */
.pricing-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

/* ---------- PRICING BUTTON ---------- */
.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}
.btn-outline-primary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline-primary:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-glow);
}

/* ---------- PRICE ANIMATION ---------- */
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.pricing-onboarding {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 16px 24px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
}

.pricing-onboarding p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s ease; position: relative;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }

.pricing-featured {
  border-color: var(--green-border);
  background: linear-gradient(180deg, var(--green-glow) 0%, var(--bg-card) 40%);
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 8px 32px rgba(46, 204, 64, 0.06);
}
.pricing-featured:hover { border-color: var(--green); box-shadow: 0 16px 48px rgba(46, 204, 64, 0.12), 0 8px 24px rgba(0, 0, 0, 0.2); }

.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), #28b83a); color: #000;
  padding: 4px 16px; border-radius: 100px;
  font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.05em; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(46, 204, 64, 0.3);
  overflow: hidden;
}
.pricing-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: badgeShimmer 3s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.pricing-tier {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
}

.pricing-price { margin-bottom: 10px; }
.price-period { font-size: 0.85rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.82rem; margin-bottom: 18px; line-height: 1.6; }

.pricing-features { list-style: none; margin-bottom: 20px; }
.pricing-features li {
  font-size: 0.82rem; color: var(--text-secondary);
  padding: 6px 0; padding-left: 20px; position: relative;
  border-bottom: 1px solid rgba(34, 34, 34, 0.5);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 700; font-size: 0.72rem;
}

.pricing-features li.pricing-feature-disabled {
  color: var(--text-muted);
  opacity: 0.45;
}
.pricing-features li.pricing-feature-disabled::before {
  content: '—';
  color: var(--text-muted);
}

/* ---------- COMPARE TOGGLE ---------- */
.compare-toggle-wrap {
  text-align: center;
  margin: 32px auto 0;
}
.compare-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.compare-toggle:hover {
  border-color: var(--green-border);
  color: var(--green);
}
.compare-toggle.open {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-glow);
}
.compare-arrow {
  transition: transform 0.3s ease;
}
.compare-toggle.open .compare-arrow {
  transform: rotate(180deg);
}

/* ---------- FEATURE COMPARE TABLE ---------- */
.feature-compare {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 1000px;
  margin: 0 auto;
}
.feature-compare.open {
  max-height: 2000px;
  margin-top: 24px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.compare-table thead th {
  padding: 14px 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  text-align: center;
  vertical-align: bottom;
}
.compare-table thead th:first-child {
  text-align: left;
  color: var(--text-secondary);
}

.compare-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-transform: none;
  margin-top: 4px;
}

.compare-table tbody td {
  padding: 10px 12px;
  text-align: center;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(34, 34, 34, 0.4);
}
.compare-table tbody td:first-child {
  text-align: left;
  font-size: 0.82rem;
}

.compare-table tbody tr:hover {
  background: rgba(46, 204, 64, 0.03);
}

/* Green checkmarks in table */
.compare-table tbody td:not(:first-child):not(.compare-no):not(.compare-category) {
  color: var(--green);
  font-weight: 700;
}

.compare-no {
  color: var(--text-muted) !important;
  opacity: 0.35;
  font-weight: 400 !important;
}

.compare-category {
  font-family: var(--font-heading);
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green) !important;
  text-align: left !important;
  padding-top: 20px !important;
  border-bottom: 1px solid var(--green-border) !important;
  background: var(--green-glow);
}

/* Featured column highlight */
.compare-featured {
  background: rgba(46, 204, 64, 0.04);
}
th.compare-featured {
  position: relative;
  color: var(--green) !important;
}
th.compare-featured::after {
  content: '★';
  display: block;
  font-size: 0.62rem;
  margin-top: 2px;
}

/* ---------- GUARANTEE BAR ---------- */
.guarantee-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 600px;
  margin: 24px auto 0;
  padding: 16px 22px;
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
  text-align: left;
}

.guarantee-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.guarantee-text strong {
  color: var(--green);
}

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; }

.faq-grid {
  display: flex; flex-direction: column; gap: 10px;
}

.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-hover); }

.faq-item summary {
  padding: 16px 22px; font-family: var(--font-heading);
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.1rem; color: var(--text-muted); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 16px; font-size: 0.85rem; line-height: 1.7; }

/* ---------- CTA ---------- */
.cta-section {
  padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}

.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content > p { max-width: 440px; margin: 0 auto 20px; font-size: 0.95rem; }

.cta-includes {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-includes span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ---------- CTA SUBTEXT ---------- */
.cta-subtext {
  margin-top: 16px;
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
}

.cta-subtext strong {
  color: var(--text-secondary);
}

/* ---------- FOOTER ---------- */
.footer { padding: 48px 0 24px; border-top: 1px solid var(--border); }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 36px;
}

.footer-brand p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.footer-col h4 {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 12px;
}

.footer-col a {
  display: block; font-size: 0.82rem; color: var(--text-secondary);
  margin-bottom: 6px; transition: color 0.2s;
}
.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);
  font-size: 0.72rem; color: var(--text-muted);
}

.footer-socials a { color: var(--text-secondary); font-weight: 500; transition: color 0.2s; }
.footer-socials a:hover { color: var(--green); }

/* ---------- ANIMATIONS ---------- */
.animate { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
  display: none;
}

/* ---------- STICKY CTA BAR ---------- */
.sticky-cta-bar {
  position: fixed;
  top: -60px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  transition: top 0.3s ease;
}

.sticky-cta-bar.visible {
  top: 56px;
}

.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sticky-cta-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}

/* ---------- PULSING CTA ---------- */
.btn-pulse {
  position: relative;
  overflow: visible;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green), #28b83a);
  opacity: 0;
  z-index: -1;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.04); }
}

/* ---------- CLICK TRIGGERS ---------- */
.click-triggers {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.click-triggers span {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 500;
  opacity: 0.8;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .three-step-grid { grid-template-columns: 1fr; }
  .payment-steps-compact { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-four { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
  .platform-grid { grid-template-columns: 1fr; }
  .crm-demo { grid-template-columns: 1fr; max-width: 600px; }
  .crm-panel-left {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .crm-panel-center { border-right: none; }
  .crm-panel-right { max-height: none; }
  .roi-split { grid-template-columns: 1fr; max-width: 500px; }
  .proof-stats-grid { grid-template-columns: 1fr; max-width: 360px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.97); backdrop-filter: blur(20px);
    padding: 36px 24px; gap: 20px; z-index: 999;
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--text-primary); }

  .marketing-layout { grid-template-columns: 1fr; gap: 36px; }
  .pricing-grid-four { grid-template-columns: 1fr; max-width: 420px; }
  .compare-table { font-size: 0.72rem; }
  .compare-table thead th { padding: 10px 6px; font-size: 0.65rem; }
  .compare-table tbody td { padding: 8px 6px; }
  .compare-price { font-size: 0.82rem; }
  .feature-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .sticky-cta-bar { display: none; }
  .loss-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 40px; }
  .hero h1 { font-size: 2rem; }

  .three-step, .marketing-section, .platform-section,
  .pricing, .faq, .cta-section, .value-anchor { padding: 64px 0; }
  .platform-hero { padding: 64px 0 40px; }

  .three-step-grid { grid-template-columns: 1fr; }
  .loss-stats-grid { grid-template-columns: 1fr; max-width: 260px; margin-left: auto; margin-right: auto; }
  .payment-steps-compact { grid-template-columns: 1fr; }
  .channels-row { gap: 8px; }
  .channel-pill { padding: 8px 14px; font-size: 0.78rem; }
  .marketing-flow { flex-direction: column; align-items: flex-start; gap: 8px; }
  .flow-arrow { transform: rotate(90deg); }
  .setup-steps { flex-direction: column; gap: 24px; align-items: center; }
  .setup-step-divider { width: 1px; height: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-proof-bar { flex-direction: column; gap: 6px; align-items: flex-start; }
  .hero-proof-bar .proof-dot { display: none; }
  .value-comparison { flex-direction: column; gap: 16px; }
  .value-vs { display: none; }
  .agency-compare-table { font-size: 0.72rem; }
  .agency-compare-table thead th { font-size: 0.65rem; padding: 8px 6px; }
  .agency-compare-table tbody td { padding: 8px 6px; }
  .crm-demo { grid-template-columns: 1fr; }
  .crm-panel-left {
    flex-direction: column;
    align-items: flex-start;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .crm-convo-feed { max-height: 320px; }
  .crm-panel-right { max-height: none; }
  .action-pill { padding: 8px 14px; font-size: 0.78rem; }
  .roi-split { grid-template-columns: 1fr; }
  .proof-stats-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }
  .mobile-sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .back-to-top {
    bottom: 80px;
    right: 16px;
  }
  .replaces-bar { padding: 12px 14px; }
  .replaces-label { display: block; margin-bottom: 8px; margin-right: 0; }
}

/* ---------- SELECTION ---------- */
::selection { background: var(--green); color: #000; }

/* ---------- FOCUS VISIBLE (Accessibility) ---------- */
*:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--green-glow);
}

.nav-links a:focus-visible,
.footer-col a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .phone-frame { animation: none; }
  .btn-pulse::after { animation: none; }
  .dot { animation: none; }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .nav, .sticky-cta-bar, .scroll-progress, .back-to-top, .mobile-sticky-cta,
  .hero-mockup, .phone-frame { display: none !important; }
  body { background: #fff; color: #000; }
  .text-gradient { -webkit-text-fill-color: #000; background: none; }
  a { color: #000; text-decoration: underline; }
  section { padding: 20px 0; }
}

/* ---------- CONTACT FORM ---------- */
.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}
.lead-form {
  max-width: 720px;
  margin: 0 auto;
  background: #161616;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2ecc40;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.full-width { margin-bottom: 24px; }
.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
}
.form-status {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
  min-height: 24px;
}
.form-status.success { color: #2ecc40; }
.form-status.error { color: #ef4444; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 24px 20px; }
}
