/* ============================================================
   LocalRankPro — style.css
   gmb.sbgeeks.com
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #060E1E;
  color: #E2E8F0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input { font-family: inherit; }

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --blue:   #2563EB;
  --blue-l: #3B82F6;
  --blue-d: #1D4ED8;
  --purple: #7C3AED;
  --green:  #10B981;
  --amber:  #F59E0B;
  --red:    #EF4444;
  --cyan:   #06B6D4;

  --bg:     #060E1E;
  --bg2:    #0D1A2E;
  --bg3:    #111E35;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.12);

  --text:   #E2E8F0;
  --text2:  #94A3B8;
  --text3:  #64748B;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);

  --grad: linear-gradient(135deg, var(--blue), var(--purple));
  --grad-green: linear-gradient(135deg, #059669, #10B981);
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── ANNOUNCEMENT BAR ──────────────────────────────────────── */
.ann-bar {
  background: linear-gradient(90deg, #1e3a8a, #4c1d95, #1e3a8a);
  background-size: 200% 100%;
  animation: annScroll 6s linear infinite;
  padding: 10px 24px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
@keyframes annScroll {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.ann-inner { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.ann-badge { background: rgba(255,255,255,0.2); border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.ann-link { color: #93C5FD; font-weight: 600; }
.ann-link:hover { color: white; }
.ann-close { color: rgba(255,255,255,0.6); font-size: 14px; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
.ann-close:hover { color: white; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(6,14,30,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.header.scrolled { background: rgba(6,14,30,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 600; color: white; }
.logo-svg { flex-shrink: 0; }
.logo span strong { font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Nav */
.nav ul { display: flex; align-items: center; gap: 4px; }
.nav ul li { position: relative; }
.nav ul li a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text2);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav ul li a:hover { color: white; background: rgba(255,255,255,0.06); }

/* Mega menu */
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
  grid-template-columns: repeat(4, 200px);
  gap: 0;
  padding: 20px;
  gap: 16px;
  min-width: 860px;
  z-index: 200;
}
.has-mega:hover .mega-menu { display: grid; }
.mega-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); margin-bottom: 8px; padding: 0 8px; }
.mega-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; transition: background 0.2s; }
.mega-item:hover { background: rgba(255,255,255,0.06); }
.mi-icon { font-size: 18px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: 8px; flex-shrink: 0; }
.mega-item b { display: block; font-size: 13px; color: var(--text); font-weight: 600; }
.mega-item small { font-size: 12px; color: var(--text3); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-ghost-sm { padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--text2); border-radius: 8px; transition: all 0.2s; }
.btn-ghost-sm:hover { color: white; background: rgba(255,255,255,0.06); }
.btn-primary-sm {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--grad);
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary-sm:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37,99,235,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.b1 { width: 600px; height: 600px; background: radial-gradient(circle, #2563EB, transparent); top: -200px; right: -100px; animation: float1 8s ease-in-out infinite; }
.b2 { width: 400px; height: 400px; background: radial-gradient(circle, #7C3AED, transparent); bottom: -100px; left: -50px; animation: float2 10s ease-in-out infinite; }
.b3 { width: 300px; height: 300px; background: radial-gradient(circle, #10B981, transparent); top: 200px; left: 30%; animation: float3 12s ease-in-out infinite; opacity: 0.15; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,20px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-30px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px,20px); } }

.hero-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }

/* Hero copy */
.hero-badge-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text2); margin-bottom: 24px; flex-wrap: wrap; }
.live-badge { display: flex; align-items: center; gap: 6px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #34D399; padding: 4px 10px; border-radius: 20px; font-weight: 600; font-size: 12px; }
.live-dot { width: 7px; height: 7px; background: #10B981; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); } 50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); } }
.sep-dot { color: var(--text3); }

.hero-copy h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.h1-accent {
  background: linear-gradient(135deg, #60A5FA, #A78BFA, #34D399);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 17px; color: var(--text2); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-desc strong { color: white; }

/* Hero search */
.hero-search-box { margin-bottom: 32px; }
.hsb-row { display: flex; background: rgba(255,255,255,0.06); border: 1px solid var(--border2); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.hsb-row:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }
.hsb-field { display: flex; align-items: center; gap: 10px; flex: 1; padding: 14px 16px; }
.hsb-field input { background: none; border: none; outline: none; color: white; font-size: 15px; width: 100%; }
.hsb-field input::placeholder { color: var(--text3); }
.btn-hero {
  display: flex; align-items: center; white-space: nowrap;
  padding: 14px 22px;
  background: var(--grad);
  color: white;
  font-size: 14.5px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.btn-hero:hover { opacity: 0.9; }
.hsb-tags { display: flex; align-items: center; gap: 8px; margin-top: 10px; flex-wrap: wrap; font-size: 12.5px; color: var(--text3); }
.hsb-tags button { color: var(--blue-l); background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2); border-radius: 20px; padding: 3px 10px; font-size: 12px; transition: all 0.2s; }
.hsb-tags button:hover { background: rgba(37,99,235,0.2); color: white; }

/* Hero trust row */
.hero-trust-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.htr-item { text-align: center; }
.htr-item strong { display: block; font-size: 22px; font-weight: 800; color: white; }
.htr-item span { font-size: 12px; color: var(--text3); }
.htr-div { width: 1px; height: 32px; background: var(--border2); }

/* Hero visual */
.hero-visual { position: relative; }
.hv-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}
.hvc-top { margin-bottom: 16px; }
.hvc-biz { display: flex; align-items: center; gap: 12px; }
.hvc-avatar { width: 40px; height: 40px; background: linear-gradient(135deg,#EF4444,#F97316); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hvc-name { font-weight: 700; color: white; font-size: 15px; }
.hvc-kw { font-size: 12px; color: var(--text3); }
.hvc-score { margin-left: auto; text-align: center; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); border-radius: 10px; padding: 6px 12px; }
.hvc-score span { display: block; font-size: 22px; font-weight: 800; color: #10B981; line-height: 1; }
.hvc-score small { font-size: 10px; color: var(--text3); }

.hvc-grid-label { font-size: 11px; color: var(--text3); margin-bottom: 10px; font-weight: 500; }

/* Geo Grid */
.geo-grid-hero, .geo-mini, .demo-geo-grid {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
  place-items: center;
}
.geo-grid-hero { grid-template-columns: repeat(7,1fr); }
.geo-mini { grid-template-columns: repeat(7,1fr); }
.demo-geo-grid { grid-template-columns: repeat(9,1fr); }

.geo-pin {
  width: 72%;
  max-width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.geo-pin:hover { transform: scale(1.25); z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.geo-pin.rank-top { background: linear-gradient(135deg,#059669,#10B981); }
.geo-pin.rank-mid { background: linear-gradient(135deg,#D97706,#F59E0B); }
.geo-pin.rank-low { background: linear-gradient(135deg,#DC2626,#EF4444); }
.geo-pin.rank-none { background: rgba(255,255,255,0.1); color: var(--text3); font-size: 7px; }

.hvc-legend { display: flex; gap: 12px; font-size: 11px; color: var(--text2); margin-bottom: 14px; }
.ld { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px; }
.ld.g { background: #10B981; }
.ld.y { background: #F59E0B; }
.ld.r { background: #EF4444; }

.hvc-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.hvm-item { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 10px; text-align: center; }
.hvm-val { display: block; font-size: 22px; font-weight: 800; line-height: 1.2; }
.hvm-val.green { color: var(--green); }
.hvm-val.blue { color: var(--blue-l); }
.hvm-val.purple { color: #A78BFA; }
.hvm-lab { font-size: 11px; color: var(--text3); display: block; }
.hvm-chg { font-size: 11px; display: block; }
.hvm-chg.pos { color: var(--green); }

/* AI tip bubble */
.ai-tip {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 10px;
  padding: 12px;
  font-size: 12.5px;
  color: var(--text2);
}
.ai-tip-icon { font-size: 18px; flex-shrink: 0; }
.ai-tip p { line-height: 1.5; }
.ai-tip b { color: #93C5FD; }

/* Float alerts */
.float-alert {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: floatIn 0.5s ease forwards, floatBob 3s ease-in-out infinite;
  z-index: 5;
}
.fa1 { top: -24px; right: -20px; animation-delay: 0.2s; }
.fa2 { top: 40%; right: -60px; animation-delay: 0.8s; }
.fa3 { bottom: -20px; right: 0px; animation-delay: 1.4s; }
@keyframes floatIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.ts-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.ts-sep { color: var(--border2); }
.ts-item { color: var(--text2); }
.ts-item strong { color: white; }

/* ─── SECTION HEADERS ────────────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-tag {
  display: inline-block;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: #93C5FD;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.sec-head p { font-size: 17px; color: var(--text2); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ─── FEATURES ───────────────────────────────────────────────── */
.features-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.fhg-big {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.fhg-badge { position: absolute; top: 20px; right: 20px; background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3); color: #93C5FD; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.fhg-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.bg-blue { background: rgba(37,99,235,0.12); }
.bg-green { background: rgba(16,185,129,0.12); }
.bg-orange { background: rgba(245,158,11,0.12); }
.bg-purple { background: rgba(124,58,237,0.12); }
.bg-red { background: rgba(239,68,68,0.12); }

.fhg-big h3 { font-size: 22px; font-weight: 700; color: white; margin-bottom: 10px; }
.fhg-big p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.feat-list { list-style: none; margin-bottom: 20px; }
.feat-list li { font-size: 14px; color: var(--text2); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.feat-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.fhg-preview { margin-bottom: 16px; }
.fhg-legend { display: flex; gap: 12px; font-size: 11px; color: var(--text2); margin-top: 8px; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 3px; }
.dot.g { background: var(--green); }
.dot.y { background: var(--amber); }
.dot.r { background: var(--red); }

.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  border: 1px solid rgba(37,99,235,0.4);
  color: #93C5FD;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline-sm:hover { background: rgba(37,99,235,0.1); border-color: var(--blue); color: white; }

/* Small feature cards */
.fhg-smalls { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.feat-card:hover { border-color: rgba(37,99,235,0.4); transform: translateY(-2px); }
.fc-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 10px; }
.fc-badge { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; }
.fc-badge { background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.3); color: #93C5FD; }
.badge-green { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #34D399; }
.badge-purple { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.3); color: #A78BFA; }
.feat-card h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.feat-card p { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 10px; }
.feat-list-sm { list-style: none; }
.feat-list-sm li { font-size: 12.5px; color: var(--text2); padding: 3px 0; }

/* Extra features */
.extra-features { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.ef-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 20px; }
.ef-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ef-grid span { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 13px; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.ef-grid span:hover { background: rgba(255,255,255,0.07); border-color: var(--border2); color: white; }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.hiw-section { background: var(--bg2); }
.hiw-grid { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding-bottom: 8px; }
.hiw-step { flex: 1; min-width: 200px; text-align: center; padding: 0 16px; }
.hiw-arrow { flex-shrink: 0; font-size: 24px; color: var(--text3); margin-top: 64px; }
.hiw-num { font-size: 48px; font-weight: 900; color: rgba(37,99,235,0.2); line-height: 1; margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.hiw-icon { font-size: 32px; margin-bottom: 12px; }
.hiw-step h4 { font-size: 17px; font-weight: 700; color: white; margin-bottom: 8px; }
.hiw-step p { font-size: 13.5px; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.hiw-demo { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: left; }
.hd-input { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 8px 10px; margin-bottom: 8px; }
.hd-input input { background: none; border: none; outline: none; color: var(--text); font-size: 12px; width: 100%; }
.hd-result { font-size: 12px; color: var(--green); }
.kw-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.kw-pill { background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3); color: #93C5FD; font-size: 11px; padding: 3px 8px; border-radius: 20px; }
.kw-pill.add { background: rgba(255,255,255,0.05); border-color: var(--border); color: var(--text3); cursor: pointer; }
.grid-sel { font-size: 12px; color: var(--text2); }
.grid-sel strong { color: white; }
.mini-rank-row { display: flex; align-items: center; gap: 12px; }
.mrr-num { font-size: 36px; font-weight: 900; line-height: 1; }
.mrr-num.g { color: var(--green); }
.mrr-label { font-size: 13px; color: var(--text2); }
.mrr-trend { font-size: 12px; color: var(--green); font-weight: 600; margin-left: auto; }
.action-pill { background: rgba(255,255,255,0.05); border-radius: 6px; padding: 6px 10px; font-size: 12px; color: var(--text2); margin-bottom: 6px; }
.action-pill:last-child { margin-bottom: 0; }

/* ─── DASHBOARD PREVIEW ──────────────────────────────────────── */
.dash-window {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.dw-bar { background: var(--bg3); padding: 12px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
.dw-dots { display: flex; gap: 6px; }
.dw-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dw-dots span:nth-child(1) { background: #EF4444; }
.dw-dots span:nth-child(2) { background: #F59E0B; }
.dw-dots span:nth-child(3) { background: #10B981; }
.dw-url { flex: 1; text-align: center; font-size: 12px; color: var(--text3); background: rgba(255,255,255,0.05); border-radius: 6px; padding: 4px 12px; }
.dw-content { display: flex; }
.dw-left { width: 160px; background: var(--bg3); border-right: 1px solid var(--border); padding: 16px 10px; flex-shrink: 0; }
.dw-nav { }
.dn-logo { width: 36px; height: 36px; background: var(--grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: white; margin: 0 auto 16px; }
.dn-item { padding: 8px 10px; border-radius: 8px; font-size: 12px; color: var(--text3); margin-bottom: 4px; cursor: pointer; transition: all 0.2s; }
.dn-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.dn-item.active { background: rgba(37,99,235,0.15); color: #93C5FD; font-weight: 600; }
.dw-right { flex: 1; padding: 16px; }
.dw-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 16px; }
.ds-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 12px; text-align: center; }
.ds-val { display: block; font-size: 20px; font-weight: 800; }
.ds-val.g { color: var(--green); } .ds-val.b { color: var(--blue-l); } .ds-val.p { color: #A78BFA; } .ds-val.o { color: var(--amber); }
.ds-lbl { display: block; font-size: 11px; color: var(--text3); }
.ds-chg { font-size: 11px; display: block; }
.ds-chg.pos { color: var(--green); }
.dw-body-row { display: grid; grid-template-columns: 1fr 240px; gap: 12px; }
.dw-map-area { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.dw-ai-box { background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.2); border-radius: 10px; padding: 14px; }
.dab-title { font-size: 13px; font-weight: 700; color: #93C5FD; margin-bottom: 10px; }
.dab-item { font-size: 11.5px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.dab-item:last-child { border: none; }
.dab-item.good { color: var(--green); }
.dab-item.warn { color: var(--amber); }
.dab-item.act { color: var(--text2); }
.dw-cta { padding: 20px; text-align: center; border-top: 1px solid var(--border); }
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--grad);
  color: white;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-primary-lg:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }

/* ─── COMPARE TABLE ──────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border2); }
.compare-tbl { width: 100%; border-collapse: collapse; }
.compare-tbl th { padding: 16px 20px; background: var(--bg2); font-size: 13px; font-weight: 700; color: var(--text2); text-align: center; border-bottom: 2px solid var(--border2); }
.compare-tbl th:first-child { text-align: left; }
.compare-tbl td { padding: 12px 20px; font-size: 13.5px; color: var(--text2); text-align: center; border-bottom: 1px solid var(--border); }
.compare-tbl td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.compare-tbl tr:last-child td { border-bottom: none; }
.compare-tbl tr:hover td { background: rgba(255,255,255,0.02); }
.compare-tbl .tr-highlight td { background: rgba(37,99,235,0.04); }
.us-head { display: flex; align-items: center; justify-content: center; gap: 8px; color: white; }
.us-col { background: rgba(37,99,235,0.06) !important; border-left: 1px solid rgba(37,99,235,0.2); border-right: 1px solid rgba(37,99,235,0.2); }
.us-col th { color: white !important; }
.y { color: var(--green); font-weight: 600; }
.n { color: var(--red); }
.p { color: var(--amber); }
.cmp-win { color: var(--green); font-size: 16px; font-weight: 800; }
.cmp-bad { color: var(--red); font-size: 14px; font-weight: 700; }
.compare-note { margin-top: 24px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: var(--radius); padding: 18px 24px; font-size: 15px; color: var(--text2); line-height: 1.6; }
.compare-note strong { color: white; }

/* ─── PRICING ────────────────────────────────────────────────── */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 40px; background: var(--bg2); border: 1px solid var(--border2); border-radius: 10px; padding: 4px; width: fit-content; margin: 0 auto 40px; }
.bt-btn { padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text2); transition: all 0.2s; position: relative; }
.bt-btn.active { background: var(--grad); color: white; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.save-tag { background: rgba(16,185,129,0.2); color: var(--green); font-size: 11px; padding: 2px 7px; border-radius: 20px; margin-left: 6px; vertical-align: middle; font-weight: 700; }

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.plan-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: relative; transition: transform 0.2s, border-color 0.2s; }
.plan-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.3); }
.plan-featured { border-color: rgba(37,99,235,0.5); background: linear-gradient(160deg, rgba(37,99,235,0.08), var(--bg2)); box-shadow: 0 0 40px rgba(37,99,235,0.15); }
.plan-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: white; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.plan-name { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text3); margin-bottom: 10px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.plan-price sup { font-size: 18px; font-weight: 700; color: var(--text2); align-self: flex-start; margin-top: 8px; }
.plan-amt { font-size: 48px; font-weight: 900; color: white; line-height: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.plan-price sub { font-size: 14px; color: var(--text3); }
.plan-billed { font-size: 12px; color: var(--text3); margin-bottom: 10px; }
.plan-desc { font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 16px; min-height: 48px; }
.plan-card hr { border: none; border-top: 1px solid var(--border); margin-bottom: 16px; }
.plan-features { list-style: none; margin-bottom: 20px; }
.plan-features li { font-size: 13px; color: var(--text2); padding: 6px 0; display: flex; align-items: baseline; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.plan-features li:last-child { border: none; }
.pf-y { color: var(--green); flex-shrink: 0; font-weight: 700; }
.pf-n { color: var(--text3); flex-shrink: 0; }
.btn-plan-outline, .btn-plan-primary, .btn-plan-gradient {
  display: block; width: 100%; text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  margin-bottom: 8px;
}
.btn-plan-outline { border: 1.5px solid rgba(37,99,235,0.4); color: #93C5FD; }
.btn-plan-outline:hover { background: rgba(37,99,235,0.1); border-color: var(--blue); color: white; }
.btn-plan-primary { background: var(--grad); color: white; }
.btn-plan-primary:hover { opacity: 0.9; box-shadow: 0 6px 20px rgba(37,99,235,0.35); transform: translateY(-1px); }
.btn-plan-gradient { background: linear-gradient(135deg,#7C3AED,#2563EB); color: white; }
.btn-plan-gradient:hover { opacity: 0.9; transform: translateY(-1px); }
.plan-note { font-size: 12px; color: var(--text3); text-align: center; }
.plan-note a { color: #93C5FD; }

.money-back { display: flex; align-items: center; gap: 20px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: var(--radius); padding: 24px 32px; }
.mb-icon { font-size: 36px; flex-shrink: 0; }
.money-back strong { display: block; font-size: 18px; color: white; margin-bottom: 4px; }
.money-back p { font-size: 14px; color: var(--text2); }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform 0.2s; }
.testi-card:hover { transform: translateY(-3px); }
.testi-featured { border-color: rgba(37,99,235,0.4); background: linear-gradient(160deg,rgba(37,99,235,0.06),var(--bg2)); }
.tc-stars { color: var(--amber); font-size: 16px; margin-bottom: 12px; }
.testi-card p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.tc-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white; flex-shrink: 0; }
.tc-author strong { display: block; font-size: 14px; color: white; }
.tc-author span { display: block; font-size: 12px; color: var(--text3); }
.tc-result { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: 6px; padding: 8px 12px; font-size: 12.5px; color: var(--green); font-weight: 600; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(37,99,235,0.4); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; font-size: 15px; font-weight: 600; color: white; cursor: pointer; gap: 12px; }
.faq-q span { font-size: 20px; color: var(--blue-l); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { padding: 0 22px; font-size: 14px; color: var(--text2); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* ─── FINAL CTA ──────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, #0A1628 0%, #0D1E3D 50%, #0A1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fca-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(37,99,235,0.2),transparent); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.fca-inner { position: relative; }
.fca-tag { display: inline-block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 6px 16px; font-size: 13px; color: var(--text2); margin-bottom: 20px; }
.fca-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px,4vw,52px); font-weight: 900; color: white; line-height: 1.2; margin-bottom: 12px; }
.fca-inner h2 span { background: var(--grad); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.fca-inner p { font-size: 17px; color: var(--text2); margin-bottom: 36px; }
.fca-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-white-xl {
  display: inline-flex; align-items: center;
  padding: 16px 32px;
  background: white;
  color: #0A1628;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.2s;
}
.btn-white-xl:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.btn-ghost-xl {
  display: inline-flex; align-items: center;
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-ghost-xl:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }
.fca-note { font-size: 13px; color: var(--text3); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg3); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.ft-brand p { font-size: 14px; color: var(--text3); line-height: 1.7; margin: 12px 0 16px; max-width: 280px; }
.ft-socials { display: flex; gap: 10px; }
.ft-socials a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text2); transition: all 0.2s; }
.ft-socials a:hover { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.4); color: white; }
.ft-col h5 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.ft-col a { display: block; font-size: 13.5px; color: var(--text3); padding: 5px 0; transition: color 0.2s; }
.ft-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--text3); }
.footer-bottom a { color: #93C5FD; }
.fb-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.fb-badges span { font-size: 12px; color: var(--text3); }

/* ─── DASHBOARD PAGE ─────────────────────────────────────────── */
.app-layout { display: flex; height: 100vh; overflow: hidden; }
.app-sidebar {
  width: 240px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
}
.sidebar-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.sidebar-header .logo span { font-size: 16px; }
.sidebar-nav { padding: 16px 10px; flex: 1; }
.nav-section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text3); padding: 8px 12px 4px; }
.nav-item-sb {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text2);
  transition: all 0.2s;
  cursor: pointer;
  margin-bottom: 2px;
}
.nav-item-sb:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.nav-item-sb.active { background: rgba(37,99,235,0.15); color: #93C5FD; font-weight: 600; }
.nav-item-sb .nav-ico { font-size: 17px; flex-shrink: 0; }
.nav-item-sb .nav-badge { margin-left: auto; background: var(--red); color: white; font-size: 10px; font-weight: 700; border-radius: 10px; padding: 2px 7px; }

.sidebar-footer { padding: 16px; border-top: 1px solid var(--border); }
.sb-user { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px; cursor: pointer; transition: background 0.2s; }
.sb-user:hover { background: rgba(255,255,255,0.05); }
.sb-avatar { width: 34px; height: 34px; background: var(--grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white; }
.sb-name { font-size: 13px; font-weight: 600; color: var(--text); }
.sb-plan { font-size: 11px; color: var(--text3); }

.app-main { flex: 1; overflow-y: auto; background: var(--bg); }
.app-topbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(6,14,30,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 12px; }
.topbar-left h1 { font-size: 18px; font-weight: 700; color: white; }
.topbar-breadcrumb { font-size: 13px; color: var(--text3); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.topbar-btn-outline { border: 1px solid var(--border2); color: var(--text2); }
.topbar-btn-outline:hover { background: rgba(255,255,255,0.05); color: white; }
.topbar-btn-primary { background: var(--grad); color: white; }
.topbar-btn-primary:hover { opacity: 0.9; }

.app-content { padding: 24px; }
.content-page { display: none; }
.content-page.active { display: block; }

/* Dashboard stats row */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat-card-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.stat-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.stat-change { font-size: 12px; font-weight: 600; padding: 3px 8px; border-radius: 20px; }
.stat-change.up { background: rgba(16,185,129,0.1); color: var(--green); }
.stat-change.down { background: rgba(239,68,68,0.1); color: var(--red); }
.stat-val { font-size: 32px; font-weight: 900; color: white; line-height: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.stat-label { font-size: 13px; color: var(--text3); margin-top: 4px; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.card-block { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.card-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.card-title span { font-size: 16px; }

/* Geo grid full */
.geo-full-grid { display: grid; gap: 4px; place-items: center; }
.geo-full-grid.g7 { grid-template-columns: repeat(7,1fr); }
.geo-full-grid.g9 { grid-template-columns: repeat(9,1fr); }
.geo-full-grid.g11 { grid-template-columns: repeat(11,1fr); }
.gfp { width: 74%; max-width: 34px; aspect-ratio: 1; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: white; cursor: pointer; transition: transform 0.2s; position: relative; }
.gfp:hover { transform: scale(1.3); z-index: 10; }
.gfp:hover::after { content: attr(data-rank); position: absolute; top: -26px; left: 50%; transform: translateX(-50%); background: #1E293B; border: 1px solid var(--border2); color: white; font-size: 10px; padding: 2px 6px; border-radius: 4px; white-space: nowrap; }
.gfp.t { background: linear-gradient(135deg,#059669,#10B981); }
.gfp.m { background: linear-gradient(135deg,#D97706,#F59E0B); }
.gfp.l { background: linear-gradient(135deg,#DC2626,#EF4444); }
.gfp.n { background: rgba(255,255,255,0.08); color: var(--text3); font-size: 8px; }

/* Rank table */
.rank-table { width: 100%; border-collapse: collapse; }
.rank-table th { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text3); padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.rank-table td { padding: 12px 12px; font-size: 13.5px; color: var(--text2); border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
.rank-table tr:last-child td { border: none; }
.rank-table tr:hover td { background: rgba(255,255,255,0.02); }
.rank-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: 12px; font-weight: 800; color: white; }
.rb-top { background: linear-gradient(135deg,#059669,#10B981); }
.rb-mid { background: linear-gradient(135deg,#D97706,#F59E0B); }
.rb-low { background: linear-gradient(135deg,#DC2626,#EF4444); }
.rank-chg { font-size: 12px; font-weight: 700; }
.rank-chg.up { color: var(--green); }
.rank-chg.down { color: var(--red); }
.rank-chg.same { color: var(--text3); }

/* AI insights panel */
.ai-panel { background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.2); border-radius: var(--radius); padding: 20px; }
.ai-panel-title { font-size: 14px; font-weight: 700; color: #93C5FD; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.ai-insight-item { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; color: var(--text2); line-height: 1.5; }
.ai-insight-item:last-child { border: none; padding-bottom: 0; }
.aii-icon { font-size: 16px; flex-shrink: 0; }
.aii-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-right: 4px; }
.aii-high { background: rgba(239,68,68,0.15); color: var(--red); }
.aii-med { background: rgba(245,158,11,0.15); color: var(--amber); }
.aii-low { background: rgba(16,185,129,0.15); color: var(--green); }

/* ─── LOGIN PAGE ─────────────────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; }
.auth-left { flex: 1; background: linear-gradient(135deg,#0A1628 0%, #0D1E3D 100%); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 48px; position: relative; overflow: hidden; }
.auth-left-bg { position: absolute; inset: 0; }
.auth-left-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.alb1 { width: 400px; height: 400px; background: radial-gradient(circle,#2563EB,transparent); top: -100px; right: -100px; }
.alb2 { width: 300px; height: 300px; background: radial-gradient(circle,#7C3AED,transparent); bottom: -100px; left: -50px; }
.auth-left-content { position: relative; text-align: center; max-width: 420px; }
.auth-left-content h2 { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 32px; font-weight: 900; color: white; margin: 20px 0 12px; }
.auth-left-content p { font-size: 16px; color: var(--text2); line-height: 1.6; }
.auth-social-proof { display: flex; align-items: center; gap: 12px; margin-top: 32px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; }
.asp-avatars { display: flex; }
.asp-avatars span { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: white; margin-right: -8px; }
.asp-text { font-size: 13px; color: var(--text2); }
.asp-text strong { color: white; display: block; }
.auth-right { width: 520px; background: var(--bg); display: flex; align-items: center; justify-content: center; padding: 48px 40px; }
.auth-form-box { width: 100%; max-width: 400px; }
.auth-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: white; margin-bottom: 32px; }
.auth-logo strong { background: var(--grad); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.auth-tabs { display: flex; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 4px; margin-bottom: 28px; }
.auth-tab { flex: 1; text-align: center; padding: 9px; border-radius: 7px; font-size: 14px; font-weight: 600; color: var(--text3); cursor: pointer; transition: all 0.2s; }
.auth-tab.active { background: var(--grad); color: white; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.form-input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 14px;
  color: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.form-input::placeholder { color: var(--text3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 8px; }
.form-checkbox input { margin-top: 2px; accent-color: var(--blue); }
.form-checkbox label { font-size: 13px; color: var(--text2); line-height: 1.4; }
.form-checkbox a { color: #93C5FD; }
.btn-auth { display: block; width: 100%; padding: 13px; background: var(--grad); color: white; border-radius: 10px; font-size: 15px; font-weight: 700; text-align: center; transition: all 0.2s; margin-top: 20px; border: none; cursor: pointer; }
.btn-auth:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.35); }
.auth-divider { text-align: center; position: relative; margin: 20px 0; }
.auth-divider::before { content:''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { background: var(--bg); padding: 0 12px; font-size: 12px; color: var(--text3); position: relative; }
.oauth-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.oauth-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; background: var(--bg2); border: 1px solid var(--border2); border-radius: 9px; font-size: 13.5px; color: var(--text); transition: all 0.2s; cursor: pointer; }
.oauth-btn:hover { border-color: var(--blue-l); background: rgba(255,255,255,0.04); }
.auth-footer-note { text-align: center; font-size: 13px; color: var(--text3); margin-top: 20px; }
.auth-footer-note a { color: #93C5FD; }
.plan-select-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.plan-option { border: 1.5px solid var(--border); border-radius: 10px; padding: 14px; cursor: pointer; transition: all 0.2s; }
.plan-option:hover { border-color: rgba(37,99,235,0.4); }
.plan-option.selected { border-color: var(--blue); background: rgba(37,99,235,0.08); }
.po-name { font-size: 13px; font-weight: 700; color: white; }
.po-price { font-size: 18px; font-weight: 900; color: var(--blue-l); }
.po-desc { font-size: 11px; color: var(--text3); margin-top: 2px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .ef-grid { grid-template-columns: repeat(3,1fr); }
  .features-hero-grid { grid-template-columns: 1fr; }
  .fhg-smalls { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .grid-2, .grid-3-1 { grid-template-columns: 1fr; }
  .dw-body-row { grid-template-columns: 1fr; }
  .dw-stats { grid-template-columns: repeat(2,1fr); }
  .compare-tbl { min-width: 700px; }
  .auth-left { display: none; }
  .auth-right { width: 100%; }
  .mega-menu { min-width: 340px; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 200; padding: 80px 24px 32px; flex-direction: column; overflow-y: auto; }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav ul li a { font-size: 16px; padding: 12px 16px; }
  .mega-menu { display: none !important; }
  .hamburger { display: flex; }
  .header-cta .btn-ghost-sm { display: none; }
  .hiw-grid { flex-direction: column; align-items: center; }
  .hiw-arrow { transform: rotate(90deg); margin: 0; }
  .fhg-smalls { grid-template-columns: 1fr 1fr; }
  .ef-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .dw-left { display: none; }
  .app-sidebar { display: none; }
  .app-main { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .fca-btns { flex-direction: column; align-items: center; }
  .auth-right { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hsb-row { flex-direction: column; border-radius: 12px; }
  .btn-hero { border-radius: 10px; justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .htr-div { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .fhg-smalls { grid-template-columns: 1fr; }
  .ef-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .plan-select-grid { grid-template-columns: 1fr; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* Tooltip */
.tooltip-wrap { position: relative; display: inline-block; }
.tooltip-tip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #1E293B; border: 1px solid var(--border2); color: var(--text); font-size: 12px; padding: 6px 10px; border-radius: 6px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s; z-index: 100; }
.tooltip-wrap:hover .tooltip-tip { opacity: 1; }

/* Notification toast */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--bg2); border: 1px solid var(--border2); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); box-shadow: var(--shadow-lg); z-index: 999; transform: translateY(80px); opacity: 0; transition: all 0.4s cubic-bezier(0.68,-0.55,0.27,1.55); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 20px; }

/* ─── ENHANCED FOOTER ────────────────────────────────────────── */
.footer { background: #04091A; border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: white; text-decoration: none; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: var(--text3); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.social-link { width: 36px; height: 36px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text3); text-decoration: none; transition: all 0.2s; }
.social-link:hover { background: var(--blue); border-color: var(--blue); color: white; }
.footer-apps { display: flex; gap: 8px; }
.app-badge { display: flex; align-items: center; gap: 6px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 7px 12px; font-size: 12px; font-weight: 600; color: var(--text2); text-decoration: none; transition: all 0.2s; }
.app-badge:hover { border-color: var(--blue); color: white; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-newsletter h4 { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.footer-newsletter p { font-size: 13px; color: var(--text3); margin-bottom: 14px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 8px; }
.newsletter-form input { flex: 1; background: var(--bg2); border: 1px solid var(--border2); border-radius: 8px; padding: 10px 12px; font-size: 13px; color: white; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--blue); }
.newsletter-form button { background: var(--grad); color: white; border: none; border-radius: 8px; padding: 10px 14px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.newsletter-note { font-size: 11px; color: var(--text3); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.trust-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text3); background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); border-radius: 6px; padding: 4px 8px; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.footer-legal { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-legal p { font-size: 13px; color: var(--text3); margin: 0; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 12px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: white; }
.footer-powered { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text3); }
.powered-link { display: flex; align-items: center; gap: 5px; color: #93C5FD; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.powered-link:hover { color: white; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; gap: 12px; }
}

/* ─── GEO-GRID PIN COLORS ───────────────────────────────────── */
.grid-pin {
  width: 74%; max-width: 38px; aspect-ratio: 1;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: white; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative; user-select: none;
}
.grid-pin:hover { transform: scale(1.3); z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.gpin-green { background: linear-gradient(135deg,#059669,#10B981); }
.gpin-amber { background: linear-gradient(135deg,#D97706,#F59E0B); }
.gpin-red   { background: linear-gradient(135deg,#DC2626,#EF4444); }
.gpin-gray  { background: rgba(255,255,255,0.08); color: var(--text3); }

/* Extra grid size columns */
.geo-full-grid.g3  { grid-template-columns: repeat(3,1fr); }
.geo-full-grid.g5  { grid-template-columns: repeat(5,1fr); }
.geo-full-grid.g13 { grid-template-columns: repeat(13,1fr); }
.geo-full-grid.g15 { grid-template-columns: repeat(15,1fr); }

/* ─── SPINNER ANIMATION ────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── MODAL OVERLAY ─────────────────────────────────────────── */
/* Modals default to display:none via inline style; opened via JS .style.display='flex' */


