/* ===== GPS.impro.tj - Уникальный конверсионный дизайн ===== */
:root {
  --primary: #00D4AA;
  --primary-dark: #00B894;
  --accent: #FF6B35;
  --accent-glow: rgba(255, 107, 53, 0.3);
  --dark: #0A0E17;
  --dark-light: #111827;
  --dark-card: #1A1F2E;
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --success: #10B981;
  --danger: #EF4444;
  --gradient: linear-gradient(135deg, #00D4AA 0%, #00B894 50%, #059669 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #F97316 100%);
  --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-grid {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  top: -200px; right: -200px;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.bg-glow-2 {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  z-index: -1;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 24px;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 10px 24px;
  background: rgba(10, 14, 23, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.nav-logo svg { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(0, 212, 170, 0.3);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(0, 212, 170, 0.1);
  border-color: var(--primary);
}

.btn-small { padding: 8px 18px; font-size: 0.85rem; }

.btn-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 170, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 212, 170, 0.5); }
}

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-map {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark-card);
  border-radius: 24px;
  border: 1px solid rgba(0, 212, 170, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.hero-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

/* Animated dots on map */
.map-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--primary);
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.map-dot-1 { top: 30%; left: 25%; animation-delay: 0s; }
.map-dot-2 { top: 55%; left: 60%; animation-delay: 0.5s; }
.map-dot-3 { top: 40%; left: 75%; animation-delay: 1s; }
.map-dot-4 { top: 70%; left: 35%; animation-delay: 1.5s; }

.map-route {
  position: absolute;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 10;
  animation: dash 3s linear infinite;
  opacity: 0.5;
}

@keyframes dash {
  to { stroke-dashoffset: -100; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ===== ROI CALCULATOR ===== */
.calculator {
  background: var(--dark-card);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(0, 212, 170, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.calc-inputs h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text);
}

.calc-field {
  margin-bottom: 20px;
}

.calc-field label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.calc-field label span { 
  color: var(--primary); 
  font-weight: 700;
  font-size: 1rem;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 212, 170, 0.15);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 212, 170, 0.5);
  transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.calc-hint {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(0, 212, 170, 0.06);
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.calc-hint strong { color: var(--primary); }

.calc-result {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0, 212, 170, 0.1);
}

.calc-result-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-result-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.calc-result-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.calc-result-period strong {
  color: var(--text);
}

.calc-highlight {
  background: var(--gradient);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: center;
}

.calc-highlight-label {
  font-size: 0.85rem;
  color: rgba(10, 14, 23, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.calc-highlight-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.calc-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.calc-breakdown-item {
  padding: 14px;
  background: rgba(0, 212, 170, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 170, 0.1);
}

.calc-breakdown-item .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.calc-breakdown-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0, 212, 170, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: var(--shadow-glow);
}

.step-number {
  width: 56px; height: 56px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 auto 24px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -32px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* ===== COMPARISON ===== */
.comparison {
  max-width: 900px;
  margin: 0 auto;
}

.compare-table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.compare-header {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.compare-header.feature { background: var(--dark-card); }
.compare-header.them { background: var(--dark-light); color: var(--text-muted); }
.compare-header.us { background: var(--gradient); color: var(--dark); }

.compare-row {
  display: contents;
}

.compare-row > div {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-row .feature { 
  background: var(--dark-card); 
  font-weight: 500;
}
.compare-row .them { 
  background: var(--dark-light); 
  color: var(--text-muted);
}
.compare-row .us { 
  background: rgba(0, 212, 170, 0.05); 
  color: var(--primary);
  font-weight: 600;
}

.compare-icon {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.icon-check { background: rgba(16, 185, 129, 0.2); color: var(--success); }
.icon-cross { background: rgba(239, 68, 68, 0.2); color: var(--danger); }
.icon-free { background: rgba(0, 212, 170, 0.2); color: var(--primary); }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0, 212, 170, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== TELEGRAM DEMO ===== */
.telegram-demo {
  max-width: 500px;
  margin: 0 auto;
  background: #17212B;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 170, 0.1);
}

.tg-header {
  background: #242F3D;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-avatar {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
}

.tg-name { font-weight: 600; }
.tg-status { font-size: 0.8rem; color: var(--success); }

.tg-chat {
  padding: 20px;
  min-height: 300px;
}

.tg-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  animation: messageIn 0.4s ease;
}

.tg-message.bot {
  background: #2B5278;
  color: white;
  border-bottom-left-radius: 4px;
}

.tg-message.user {
  background: var(--dark-light);
  color: var(--text);
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.tg-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: right;
}

@keyframes messageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.chat-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.4);
  transition: all 0.3s ease;
  color: var(--dark);
  font-size: 1.5rem;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 212, 170, 0.6);
}

.chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-height: 500px;
  background: var(--dark-card);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 170, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-panel.open { display: flex; }

.chat-header {
  padding: 20px;
  background: var(--gradient);
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-close {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.chat-close:hover { opacity: 1; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-msg.bot {
  background: rgba(0, 212, 170, 0.1);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--gradient);
  color: var(--dark);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-msg.typing {
  display: flex;
  gap: 4px;
  padding: 16px;
}

.typing-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

.chat-input-area {
  padding: 16px;
  border-top: 1px solid rgba(0, 212, 170, 0.1);
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--dark);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input:focus { border-color: var(--primary); }

.chat-send {
  width: 44px; height: 44px;
  background: var(--gradient);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.chat-send:hover { transform: scale(1.05); }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 212, 170, 0.2);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible { transform: translateY(0); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-light);
  padding: 60px 24px 100px;
  border-top: 1px solid rgba(0, 212, 170, 0.1);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px; height: 40px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--dark);
}

.footer h4 {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 212, 170, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .nav-links { display: none; }
  
  /* Calculator fixes */
  .calc-grid { grid-template-columns: 1fr; gap: 24px; }
  .calculator { padding: 24px; }
  .calc-result { padding: 24px; }
  .calc-result-number { font-size: 2.2rem; }
  .calc-highlight-number { font-size: 1.8rem; }
  .calc-breakdown { gap: 8px; }
  .calc-breakdown-item { padding: 10px; }
  .calc-breakdown-item .value { font-size: 0.95rem; }
  .calc-breakdown-item .label { font-size: 0.7rem; }
  .calc-field label { font-size: 0.85rem; }
  .calc-field label span { font-size: 0.95rem; }
  
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-header.them, .compare-header.us { display: none; }
  .compare-row { display: flex; flex-direction: column; margin-bottom: 16px; }
  .compare-row > div { padding: 12px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 16px; }
  .section h2 { font-size: 1.8rem; }
  
  /* Chat widget mobile fix */
  .chat-widget { bottom: 80px; right: 16px; }
  .chat-panel { 
    width: calc(100vw - 32px); 
    right: -8px; 
    bottom: 70px;
    max-height: 60vh;
  }
  .chat-toggle { 
    width: 52px; 
    height: 52px; 
  }
  
  /* Sticky CTA mobile */
  .sticky-cta { padding: 12px 16px; gap: 10px; }
  .sticky-cta .btn { padding: 10px 16px; font-size: 0.85rem; }
}

/* ===== LIVE COUNTER ===== */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.trust-badge svg {
  width: 20px; height: 20px;
  color: var(--success);
}
/* ===== VISITOR COUNTER ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(0, 212, 170, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 212, 170, 0.15);
}

.counter-pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

#visitorCount {
  color: var(--primary);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
