/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0A0F1E;
  --bg-surface:   #111827;
  --bg-card:      #0D1525;
  --border:       #1E2A3A;
  --accent:       #00D4FF;
  --accent-hover: #00B8E0;
  --accent-glow:  rgba(0, 212, 255, 0.15);
  --accent-dim:   rgba(0, 212, 255, 0.08);
  --text:         #F9FAFB;
  --text-muted:   #6B7280;
  --text-dim:     #9CA3AF;
  --green:        #10B981;
  --radius-card:  14px;
  --radius-btn:   8px;
  --transition:   0.25s ease;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 40px rgba(0, 212, 255, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #00D4FF, #0066FF);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(0,212,255,0.6);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Shimmer ripple effect on button click */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}
.btn:active::after { opacity: 1; }

.btn-primary {
  background: var(--accent);
  color: #0A0F1E;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-glow:hover {
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-crm  { color: var(--accent); }
.logo-flow { color: var(--text); }
.logo-lab  { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 6px;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbPulse 7s ease-in-out infinite alternate;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.4) 0%, transparent 65%);
  top: -250px; right: -150px;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0,80,255,0.35) 0%, transparent 65%);
  bottom: -120px; left: -80px;
  animation-delay: -3.5s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 65%);
  top: 50%; left: 40%;
  animation-delay: -1.5s;
}

@keyframes orbPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1); }
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #0088FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typewriter */
.hero-typed {
  display: inline;
  color: var(--accent);
}
.typed-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== HERO VISUAL (Dashboard) ===== */
.hero-visual {
  position: relative;
  height: 480px;
}

.db-card {
  background: rgba(13,21,37,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.08);
  width: 100%;
  max-width: 420px;
  position: absolute;
  top: 0; right: 0;
}

.db-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.db-dots {
  display: flex;
  gap: 5px;
}
.db-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.db-title {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}
.db-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.live-pulse {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: livePing 1.2s ease-in-out infinite;
}
@keyframes livePing {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.pipeline-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.p-col {
  text-align: center;
}
.p-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.p-num.green { color: var(--green); }
.p-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.p-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, #00D4FF, #0066FF);
  border-radius: 2px;
  animation: barSlide 1.2s ease forwards;
  transform-origin: left;
}
.p-fill-green {
  background: linear-gradient(90deg, #10B981, #059669);
}
@keyframes barSlide {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Mini bar chart */
.db-chart {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 6px;
}
.chart-bar {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.chart-bar::before {
  content: '';
  display: block;
  width: 100%;
  height: var(--h);
  background: rgba(0,212,255,0.25);
  border-radius: 3px 3px 0 0;
  animation: chartGrow 1s ease forwards;
  transform-origin: bottom;
}
.chart-bar--active::before {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,212,255,0.4);
}
@keyframes chartGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
.chart-bar span {
  font-size: 9px;
  color: var(--text-muted);
}
.chart-label {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

/* Floating notification cards */
.notif {
  position: absolute;
  background: rgba(13,21,37,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  opacity: 0;
  animation-fill-mode: both;
}
.notif-1 { bottom: 140px; left: -30px; animation-name: float1; animation-delay: 0.5s; }
.notif-2 { bottom: 60px;  right: 20px; animation-name: float2; animation-delay: 1.2s; }
.notif-3 { top: 220px;   left: -40px;  animation-name: float3; animation-delay: 2s; }

@keyframes float1 {
  0%   { transform: translateY(0px);   opacity: 1; }
  100% { transform: translateY(-12px); opacity: 0.9; }
}
@keyframes float2 {
  0%   { transform: translateY(0px);  opacity: 1; }
  100% { transform: translateY(10px); opacity: 0.85; }
}
@keyframes float3 {
  0%   { transform: translateY(0px);   opacity: 1; }
  100% { transform: translateY(-8px);  opacity: 0.9; }
}

.notif-icon-wrap {
  font-size: 20px;
  flex-shrink: 0;
}
.notif-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.notif-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.notif-time {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  margin-left: auto;
  flex-shrink: 0;
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0,212,255,0.05);
  border-top: 1px solid rgba(0,212,255,0.1);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 14px 0;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}
.t-sep {
  color: var(--accent) !important;
  font-size: 8px !important;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTIONS SHARED ===== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== TOOL REPLACEMENT INFOGRAPHIC ===== */
.tools-replace {
  background: linear-gradient(180deg, var(--bg) 0%, #060C1C 100%);
  border-top: 1px solid var(--border);
}

.tools-infographic {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 32px;
  align-items: center;
}

/* Before column */
.tools-before, .tools-after {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
}

.tools-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.col-icon { font-size: 16px; }
.col-total {
  margin-left: auto;
  font-size: 13px;
  color: #FF5F5F;
  font-weight: 800;
}
.tools-col-header--good .col-icon { }
.col-total--good { color: var(--green); }

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tool-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  overflow: hidden;
}
.tool-row:hover { border-color: rgba(255,80,80,0.2); }
.tool-emoji { font-size: 16px; flex-shrink: 0; }
.tool-name {
  flex: 1;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}
.tool-price {
  font-size: 12px;
  font-weight: 700;
  color: #FF5F5F;
  opacity: 0.8;
}
/* Animated strikethrough line */
.tool-strike {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1.5px;
  background: rgba(255,80,80,0.55);
  width: 0%;
  transform: translateY(-50%);
  transition: width 0.6s ease;
}
.tools-infographic.visible .tool-strike { width: 100%; }
.tool-row:nth-child(1) .tool-strike { transition-delay: 0.1s; }
.tool-row:nth-child(2) .tool-strike { transition-delay: 0.2s; }
.tool-row:nth-child(3) .tool-strike { transition-delay: 0.3s; }
.tool-row:nth-child(4) .tool-strike { transition-delay: 0.4s; }
.tool-row:nth-child(5) .tool-strike { transition-delay: 0.5s; }
.tool-row:nth-child(6) .tool-strike { transition-delay: 0.6s; }
.tool-row:nth-child(7) .tool-strike { transition-delay: 0.7s; }
.tool-row:nth-child(8) .tool-strike { transition-delay: 0.8s; }

/* Center arrow */
.tools-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.tools-arrow {
  width: 80px;
  height: 80px;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { filter: drop-shadow(0 0 8px rgba(0,212,255,0.4)); }
  50%      { filter: drop-shadow(0 0 20px rgba(0,212,255,0.8)); }
}
.savings-bubble {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(0,100,255,0.08));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 12px;
  padding: 16px 20px;
}
.savings-top  { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.savings-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
}
.savings-amount span { font-size: 20px; }
.savings-bottom { font-size: 11px; color: var(--text-muted); }

/* GHL platform card */
.ghl-platform-card {
  text-align: center;
}
.ghl-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--accent);
  color: #0A0F1E;
  font-size: 16px;
  font-weight: 900;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 0 24px rgba(0,212,255,0.35);
}
.ghl-platform-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.ghl-platform-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ghl-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ghl-features-grid span {
  font-size: 13px;
  color: var(--text-dim);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gf-check { color: var(--accent); font-weight: 700; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all 0.3s ease;
  overflow: hidden;
}
/* Animated gradient border glow on hover */
.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0%, var(--accent) 25%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  animation: rotateGlow 3s linear infinite;
}
.service-card:hover .card-glow { opacity: 0.4; }
.service-card > *:not(.card-glow) { position: relative; z-index: 1; }

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(0,0,0,0.3);
}
.service-card--featured {
  border-color: rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, #0D1525 0%, #0A1A2E 100%);
}

.featured-badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: #0A0F1E;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: rotate(8deg) scale(1.1); }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== WHY GHL ===== */
.why-ghl {
  background: linear-gradient(135deg, #0A0F1E 0%, #0D1A2E 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-ghl-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.why-ghl-text .section-title,
.why-ghl-text .section-subtitle,
.why-ghl-text .section-tag { text-align: left; margin-left: 0; }
.why-ghl-text .section-subtitle { margin-bottom: 32px; }

.why-ghl-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateX(4px);
}
.benefit-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.benefit-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.benefit-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== RESULTS / STATS RINGS ===== */
.results {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.result-item {
  text-align: center;
}

.result-ring-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.result-ring {
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: rgba(0,212,255,0.1);
  stroke-width: 6;
}

.ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 1.6s ease;
}

/* We define the gradient inline via JS; this is the fallback */
.result-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.result-number {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.result-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.result-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(180deg, #060C1C 0%, var(--bg) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr 120px 1fr;
  gap: 0;
  align-items: start;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.step:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(0,0,0,0.3);
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(0,212,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -3px;
}

.step-icon-wrap {
  position: relative;
  width: 64px;
  margin: 0 auto 20px;
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.step:hover .step-icon { transform: scale(1.1) rotate(5deg); }
.step-ping {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(0,212,255,0.3);
  border-radius: 18px;
  animation: pingAnim 2s ease-in-out infinite;
}
@keyframes pingAnim {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.1); opacity: 0; }
}

.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step p   { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.step-tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 100px;
}
.connector-svg { width: 120px; }
.connector-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1s ease;
}
.connector-path.drawn { stroke-dashoffset: 0; }

/* ===== PRICING ===== */
.pricing { background: linear-gradient(180deg, var(--bg) 0%, #060B18 100%); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
}
.pricing-card--popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, #0D1830 0%, #0A1525 100%);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(0,212,255,0.12);
}
.pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0A0F1E;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.plan-price {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-label  { font-size: 12px; color: var(--text-muted); }
.price-amount { font-size: 38px; font-weight: 900; color: var(--text); letter-spacing: -1px; line-height: 1; }
.price-period { font-size: 14px; color: var(--text-muted); }

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.plan-features li.muted { opacity: 0.45; }
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.cross { color: var(--text-muted); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.quote-mark {
  font-size: 64px;
  line-height: 0.6;
  color: rgba(0,212,255,0.15);
  font-family: Georgia, serif;
  font-weight: 900;
  margin-bottom: 16px;
  display: block;
}

.stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1.5px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, #060B18 0%, #0A0F1E 100%);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-title,
.contact-text .section-subtitle,
.contact-text .section-tag { text-align: left; margin-left: 0; }
.contact-text .section-subtitle { margin-bottom: 32px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-item svg { color: var(--accent); flex-shrink: 0; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dim); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-surface); }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #060B18;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { font-size: 20px; }
.footer-tagline { color: var(--text-muted); font-size: 14px; margin: 10px 0 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); text-align: center; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 3D Tilt card */
.tilt-card { transform-style: preserve-3d; will-change: transform; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-visual       { display: none; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-ghl-inner     { grid-template-columns: 1fr; gap: 48px; }
  .tools-infographic { grid-template-columns: 1fr; }
  .tools-center      { flex-direction: row; justify-content: center; gap: 24px; }
  .steps-grid        { grid-template-columns: 1fr; }
  .step-connector    { display: none; }
  .results-grid      { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--popular { transform: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner     { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner      { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,15,30,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 15px; border-radius: 8px; }
  .nav-cta  { margin: 8px 0 0; width: 100%; }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .results-grid      { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .ghl-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title     { font-size: 28px; }
  .section-title  { font-size: 24px; }
  .results-grid   { grid-template-columns: 1fr 1fr; }
  .footer-links   { grid-template-columns: 1fr; }
}
