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

:root {
  --bg:        #050712;
  --bg2:       #080d1f;
  --bg3:       #0d1430;
  --surface:   #0f1629;
  --surface2:  #141d35;
  --border:    rgba(124,58,237,0.2);
  --border2:   rgba(255,255,255,0.06);
  --purple:    #7c3aed;
  --violet:    #8b5cf6;
  --cyan:      #06b6d4;
  --gold:      #f59e0b;
  --pink:      #ec4899;
  --green:     #10b981;
  --red:       #ef4444;
  --text:      #e2e8f0;
  --muted:     #94a3b8;
  --dimmed:    #475569;
  --grad:      linear-gradient(135deg, #7c3aed, #06b6d4);
  --grad2:     linear-gradient(135deg, #f59e0b, #ef4444);
  --grad3:     linear-gradient(135deg, #10b981, #06b6d4);
  --shadow:    0 0 40px rgba(124,58,237,0.15);
  --glow:      0 0 60px rgba(124,58,237,0.3);
}

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ─── PARTICLES CANVAS ──────────────────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ─── PRELOADER ─────────────────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem; font-weight: 900;
  letter-spacing: 4px; color: #fff;
  margin-bottom: 2rem;
}
.preloader-logo span { color: var(--cyan); }
.preloader-bar {
  width: 280px; height: 3px;
  background: var(--surface2); border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0;
  background: var(--grad);
  border-radius: 2px;
  animation: fillBar 2s ease forwards;
}
@keyframes fillBar { to { width: 100%; } }
.preloader-text { color: var(--muted); font-size: 0.85rem; letter-spacing: 2px; }

/* ─── NAVBAR ────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(5,7,18,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem; font-weight: 900;
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0;
}
.logo-grok { color: #fff; }
.logo-media { color: var(--cyan); }
.logo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
  margin-left: 3px;
  box-shadow: 0 0 8px var(--purple);
  animation: pulse 2s ease infinite;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; margin-left: auto;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--grad);
  transform: scaleX(0); transition: transform 0.3s;
  border-radius: 1px;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--grad); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 8px;
  text-decoration: none; font-size: 0.9rem; font-weight: 600;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--text); display: block; transition: all 0.3s; }

/* ─── SECTIONS BASE ─────────────────────────────────────────────────────── */
.section-pad { padding: 100px 0; position: relative; z-index: 1; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 4rem;
}
.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4);
  color: var(--violet);
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.25;
  margin-bottom: 1rem;
}
.section-header p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

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

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad); color: #fff;
  padding: 0.8rem 2rem; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text);
  padding: 0.8rem 2rem; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(124,58,237,0.1); border-color: var(--purple); }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 120px 2rem 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  max-width: 1280px; margin: 0 auto;
  gap: 4rem;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  flex: 1; position: relative; z-index: 2;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.35);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--violet);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.2)} }

.hero-title {
  font-family: 'Orbitron', sans-serif;
  display: flex; flex-direction: column; gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.line1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: 3px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.line2 { font-size: clamp(1.4rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--text); }
.line3 { font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 600; color: var(--muted); }

.typewriter {
  color: var(--cyan);
  border-right: 2px solid var(--cyan);
  padding-right: 3px;
  animation: blink 0.7s step-end infinite;
  -webkit-text-fill-color: var(--cyan);
}
@keyframes blink { 50% { border-color: transparent; } }

.hero-desc {
  color: var(--muted); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-desc strong { color: var(--text); }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.pulse-icon {
  display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cyan); margin-right: 4px;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease infinite;
}

.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat span { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; font-weight: 900; color: #fff; }
.stat small { display: block; color: var(--muted); font-size: 0.75rem; margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual {
  flex: 1; position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  min-height: 500px;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.orb1 { width: 300px; height: 300px; background: rgba(124,58,237,0.25); top: 10%; left: 10%; }
.orb2 { width: 200px; height: 200px; background: rgba(6,182,212,0.2); bottom: 10%; right: 10%; }
.orb3 { width: 150px; height: 150px; background: rgba(245,158,11,0.15); top: 50%; left: 40%; }

.hero-ring {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.25);
  animation: spin linear infinite;
}
.r1 { width: 280px; height: 280px; animation-duration: 20s; border-style: dashed; }
.r2 { width: 200px; height: 200px; animation-duration: 15s; animation-direction: reverse; }
.r3 { width: 120px; height: 120px; animation-duration: 10s; border-color: rgba(6,182,212,0.3); }
@keyframes spin { to { transform: rotate(360deg); } }

.core-logo {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-size: 1.3rem; font-weight: 900;
  color: #fff;
  box-shadow: var(--glow);
  position: relative; z-index: 2;
}

.hero-card-float {
  position: absolute; z-index: 3;
  background: rgba(15,22,41,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow);
  animation: floatCard 4s ease infinite;
}
.hero-card-float div { display: flex; flex-direction: column; }
.hero-card-float strong { font-size: 0.85rem; color: var(--text); }
.hero-card-float small { font-size: 0.72rem; color: var(--green); }
.hc-icon { font-size: 1.5rem; }
.card1 { top: 10%; left: 0; animation-delay: 0s; }
.card2 { bottom: 20%; left: 5%; animation-delay: 1.5s; }
.card3 { top: 25%; right: 0; animation-delay: 0.8s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee-strip {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1rem 0; overflow: hidden; position: relative; z-index: 1;
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marqueeMove 30s linear infinite;
}
.marquee-track span { font-size: 0.85rem; font-weight: 600; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.marquee-track .sep { color: var(--purple); font-size: 0.7rem; }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SERVICES ──────────────────────────────────────────────────────────── */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}
.service-card.featured {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(239,68,68,0.05));
}
.service-card.featured:hover { border-color: rgba(245,158,11,0.7); box-shadow: 0 20px 40px rgba(245,158,11,0.15); }
.sc-glow {
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.sc-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--grad2); color: #fff;
  padding: 0.25rem 0.75rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
}
.sc-icon { width: 56px; height: 56px; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; color: #fff; }
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.sc-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.sc-features li { color: var(--muted); font-size: 0.85rem; padding-left: 1.2rem; position: relative; }
.sc-features li::before { content: '→'; position: absolute; left: 0; color: var(--violet); }
.sc-link { color: var(--violet); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.sc-link:hover { color: var(--cyan); }

/* ─── TOOLS ─────────────────────────────────────────────────────────────── */
.tools-section { background: var(--bg2); }
.tools-filter {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 3rem;
}
.filter-btn {
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--muted); padding: 0.5rem 1.25rem;
  border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--purple); color: #fff; border-color: var(--purple);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px; padding: 1.5rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.tool-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.4); }
.tool-card.hidden { display: none; }
.tool-version {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(6,182,212,0.15); color: var(--cyan);
  padding: 0.2rem 0.6rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
}
.tool-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.tool-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.tool-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.tool-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.tool-tags span {
  background: rgba(124,58,237,0.12); color: var(--violet);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600;
}
.tool-meta { display: flex; justify-content: space-between; font-size: 0.78rem; }
.tool-meta span:first-child { color: var(--green); }
.tool-meta span:last-child { color: var(--dimmed); }

/* ─── AIVOICEBOT ─────────────────────────────────────────────────────────── */
.voicebot-section { background: var(--bg); }
.voicebot-wrapper {
  display: flex; align-items: center; gap: 5rem; flex-wrap: wrap;
}
.vb-content { flex: 1; min-width: 300px; }
.vb-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin: 0.75rem 0 1rem;
}
.vb-desc { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.vb-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.vb-feat { display: flex; align-items: flex-start; gap: 0.75rem; }
.feat-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(16,185,129,0.15); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.vb-feat strong { display: block; font-size: 0.95rem; color: #fff; }
.vb-feat small { color: var(--muted); font-size: 0.82rem; }
.vb-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.vb-visual { flex: 1; display: flex; justify-content: center; min-width: 280px; }
.vb-phone-wrap { position: relative; }
.vb-phone {
  width: 280px; height: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 36px; padding: 24px 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--shadow);
  position: relative; z-index: 2;
}
.phone-notch {
  width: 100px; height: 28px;
  background: var(--bg); border-radius: 20px;
  margin: 0 auto 1rem;
}
.phone-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem; background: rgba(124,58,237,0.1);
  border-radius: 14px; margin-bottom: 1rem;
}
.ph-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0;
}
.phone-header strong { display: block; font-size: 0.9rem; }
.phone-header small { color: var(--green); font-size: 0.72rem; }

.phone-wave {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; height: 60px; margin: 1rem 0;
}
.wave-bar {
  width: 4px; background: var(--grad); border-radius: 2px;
  animation: waveAnim 1.2s ease infinite;
}
.wave-bar:nth-child(1)  { height: 20px; animation-delay: 0.0s; }
.wave-bar:nth-child(2)  { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { height: 50px; animation-delay: 0.2s; }
.wave-bar:nth-child(4)  { height: 40px; animation-delay: 0.3s; }
.wave-bar:nth-child(5)  { height: 55px; animation-delay: 0.4s; }
.wave-bar:nth-child(6)  { height: 30px; animation-delay: 0.5s; }
.wave-bar:nth-child(7)  { height: 55px; animation-delay: 0.4s; }
.wave-bar:nth-child(8)  { height: 40px; animation-delay: 0.3s; }
.wave-bar:nth-child(9)  { height: 50px; animation-delay: 0.2s; }
.wave-bar:nth-child(10) { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(11) { height: 20px; animation-delay: 0.0s; }
.wave-bar:nth-child(12) { height: 30px; animation-delay: 0.15s; }
@keyframes waveAnim { 0%,100%{transform:scaleY(0.4)} 50%{transform:scaleY(1)} }

.phone-msgs { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.msg { padding: 0.5rem 0.75rem; border-radius: 12px; font-size: 0.75rem; max-width: 85%; }
.ai-msg { background: rgba(124,58,237,0.2); color: var(--text); align-self: flex-start; }
.user-msg { background: var(--surface2); color: var(--muted); align-self: flex-end; }

.phone-stats {
  display: flex; gap: 0.75rem;
  padding: 0.75rem; background: rgba(16,185,129,0.08);
  border-radius: 12px; border: 1px solid rgba(16,185,129,0.2);
}
.ps-item { flex: 1; text-align: center; }
.ps-item strong { display: block; font-size: 0.9rem; color: var(--green); }
.ps-item small { font-size: 0.68rem; color: var(--muted); }

.vb-orbit-ring {
  position: absolute; inset: -40px; border-radius: 50%;
  border: 1px dashed rgba(124,58,237,0.2);
  animation: spin 25s linear infinite;
  pointer-events: none;
}
.vb-orb-tag {
  position: absolute;
  background: var(--surface2); border: 1px solid var(--border);
  padding: 0.3rem 0.75rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; color: var(--text);
  animation: spin 25s linear infinite reverse;
}
.tag1 { top: 0; left: 50%; transform: translateX(-50%); }
.tag2 { right: 0; top: 50%; transform: translateY(-50%); }
.tag3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.tag4 { left: 0; top: 50%; transform: translateY(-50%); }

/* ─── POLITICAL ──────────────────────────────────────────────────────────── */
.political-section { background: var(--bg2); }
.political-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.pol-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 16px; padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}
.pol-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.3); }
.pol-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem; font-weight: 900;
  color: rgba(245,158,11,0.2); margin-bottom: 0.75rem;
  line-height: 1;
}
.pol-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.pol-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

.political-banner {
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(239,68,68,0.08));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 20px; padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.pb-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.pb-content p { color: var(--muted); font-size: 0.9rem; }

/* ─── ROI CALCULATOR ─────────────────────────────────────────────────────── */
.calc-section { background: var(--bg); }
.calc-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start; max-width: 960px; margin: 0 auto;
}
.calc-form { background: var(--surface); border: 1px solid var(--border2); border-radius: 20px; padding: 2rem; }
.calc-field { margin-bottom: 1.5rem; }
.calc-field label { display: block; color: var(--text); font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.calc-field input[type=range] { width: 100%; accent-color: var(--purple); cursor: pointer; }
.range-val {
  text-align: right; font-weight: 700; font-size: 0.9rem; color: var(--violet); margin-top: 0.25rem;
}
.calc-field select, .calc-field input[type=text] {
  width: 100%; padding: 0.7rem 1rem;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 10px; color: var(--text); font-size: 0.9rem;
  font-family: inherit; cursor: pointer;
  transition: border-color 0.2s;
}
.calc-field select:focus { outline: none; border-color: var(--purple); }
.calc-btn { width: 100%; justify-content: center; }

.calc-result {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  position: sticky; top: 100px;
}
.cr-header {
  font-weight: 700; font-size: 1.1rem; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border2);
}
.cr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1rem; }
.cr-item { display: flex; flex-direction: column; gap: 0.25rem; }
.cr-label { font-size: 0.78rem; color: var(--muted); }
.cr-val { font-size: 1.2rem; font-weight: 700; color: #fff; }
.cr-val.highlight { color: var(--cyan); }
.cr-val.success { color: var(--green); }
.cr-note { font-size: 0.75rem; color: var(--dimmed); line-height: 1.6; margin-top: 1rem; }

/* ─── WHY SECTION ────────────────────────────────────────────────────────── */
.why-section { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 5rem;
}
.why-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 16px; padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.3); }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.why-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

.testimonials { }
.test-title {
  font-size: 1.5rem; font-weight: 700; text-align: center;
  margin-bottom: 2rem; color: var(--text);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.test-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 16px; padding: 1.75rem;
}
.test-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; }
.test-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.ta-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.9rem; }
.test-author small { color: var(--muted); font-size: 0.78rem; }

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800;
  margin: 0.75rem 0 1rem;
}
.contact-info > p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cd-item { display: flex; align-items: center; gap: 0.75rem; }
.cd-icon { font-size: 1.25rem; }
.cd-item strong { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 0.15rem; }
.cd-item small { color: var(--muted); font-size: 0.8rem; display: block; line-height: 1.6; }
.contact-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.soc-btn {
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--muted); padding: 0.5rem 1rem;
  border-radius: 8px; text-decoration: none; font-size: 0.82rem;
  transition: all 0.2s;
}
.soc-btn:hover { background: rgba(124,58,237,0.1); color: var(--text); border-color: var(--purple); }

.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 10px; color: var(--text); font-size: 0.9rem;
  font-family: inherit; transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.full-width { width: 100%; justify-content: center; }
.form-success {
  margin-top: 1rem; padding: 0.75rem 1rem;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px; color: var(--green); font-size: 0.9rem; text-align: center;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 1px solid var(--border2); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-badge { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-badge span {
  background: rgba(124,58,237,0.1); border: 1px solid var(--border);
  padding: 0.25rem 0.75rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; color: var(--muted);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fl-col h5 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 1px; }
.fl-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.875rem; margin-bottom: 0.65rem; transition: color 0.2s; }
.fl-col a:hover { color: var(--violet); }
.footer-bottom {
  border-top: 1px solid var(--border2); padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.825rem; color: var(--dimmed); }
.footer-tagline { font-weight: 600; }

/* ─── SEO SECTION ───────────────────────────────────────────────────────── */
.seo-section {
  background: var(--bg2);
  padding: 60px 0;
  border-top: 1px solid var(--border2);
  position: relative; z-index: 1;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem; margin-bottom: 2.5rem;
}
.seo-block {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
}
.seo-block h2 {
  font-size: 1rem; font-weight: 700;
  color: var(--violet); margin-bottom: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
}
.seo-block p {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.8;
}
.seo-block strong { color: var(--text); }
.seo-local {
  background: var(--surface);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px; padding: 1.5rem;
}
.seo-local h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.75rem;
}
.seo-local p {
  font-size: 0.82rem; color: var(--muted);
  line-height: 2;
}
.seo-local a { color: var(--violet); text-decoration: none; }
.seo-local a:hover { color: var(--cyan); }

/* ─── BACK TO TOP ────────────────────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: #fff;
  border: none; font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  transform: translateY(20px);
}
.back-top.visible { opacity: 1; transform: translateY(0); }

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

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .voicebot-wrapper { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,7,18,0.98); border-top: 1px solid var(--border); padding: 1.5rem 2rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-container { position: relative; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .political-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .political-banner { flex-direction: column; text-align: center; }
}
