/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #1a1a24;
  --surface: #16161f;
  --surface-2: #1e1e2a;
  --border: rgba(255,255,255,0.06);
  --border-2: rgba(255,255,255,0.1);
  --text: #e4e4e7;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --accent: #6366f1;
  --accent-2: #818cf8;
  --cyan: #06b6d4;
  --green: #10b981;
  --gradient: linear-gradient(135deg, #6366f1, #06b6d4);
  --gradient-2: linear-gradient(135deg, #6366f1, #a855f7, #06b6d4);
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', var(--font);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-grid {
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.glow {
  position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0;
  animation: glowFloat 20s ease-in-out infinite;
}
.glow-1 { width: 600px; height: 600px; background: rgba(99,102,241,0.08); top: -200px; left: -200px; }
.glow-2 { width: 500px; height: 500px; background: rgba(6,182,212,0.06); bottom: -150px; right: -150px; animation-delay: -7s; }
.glow-3 { width: 400px; height: 400px; background: rgba(168,85,247,0.05); top: 50%; left: 50%; animation-delay: -14s; }

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
}
.logo-icon { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; color: var(--text-2); transition: var(--transition); position: relative; }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient); transition: width 0.3s ease; border-radius: 1px;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: rgba(10,10,15,0.95); backdrop-filter: blur(20px);
  padding: 24px; flex-direction: column; gap: 16px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a { font-size: 1.1rem; padding: 8px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius-full);
  font-family: var(--font); font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--border-2); background: var(--surface);
  color: var(--text); cursor: pointer; transition: var(--transition);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn:hover { background: var(--surface-2); border-color: var(--accent); transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-primary {
  background: var(--gradient); border: none; color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}
.btn-primary:hover { box-shadow: 0 6px 30px rgba(99,102,241,0.5); transform: translateY(-2px); }
.btn-glow::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit;
  background: var(--gradient-2); z-index: -1; filter: blur(12px); opacity: 0.5;
  transition: opacity 0.3s ease;
}
.btn-glow:hover::before { opacity: 0.8; }
.btn-ghost { background: transparent; border-color: var(--border-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent-2); }
.btn-outline:hover { background: rgba(99,102,241,0.1); }
.btn .arrow { transition: var(--transition); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.full-width { width: 100%; justify-content: center; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: var(--radius-full);
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  color: var(--accent-2); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.badge-animated { animation: badgePulse 3s ease-in-out infinite; }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== TICKER / MARQUEE ===== */
.ticker-wrap {
  position: relative; z-index: 1;
  overflow: hidden; padding: 16px 0;
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ticker {
  display: flex; gap: 48px; white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  font-family: var(--font-display); font-size: 0.9rem; color: var(--text-3);
  font-weight: 500; flex-shrink: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
  gap: 60px;
}
.hero-content { flex: 1.2; }
.hero-content h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-2); max-width: 520px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline;
}
.stat-plus, .stat-pct, .stat-slash {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text-3); margin-top: 4px; }

/* ===== PHONE MOCKUP ===== */
.hero-visual { flex: 1; display: flex; justify-content: center; }
.phone-mockup {
  width: 280px; height: 560px;
  background: var(--bg-2); border-radius: 40px;
  border: 2px solid var(--border-2);
  padding: 12px; position: relative;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(99,102,241,0.1);
  animation: phoneFloat 6s ease-in-out infinite;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: var(--bg); border-radius: 0 0 16px 16px;
  z-index: 2;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
  75% { transform: translateY(-8px) rotate(-0.5deg); }
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  border-radius: 30px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.call-ui { text-align: center; padding: 20px; }
.caller-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.4rem; margin: 0 auto 16px;
  box-shadow: 0 0 30px rgba(99,102,241,0.4);
  position: relative;
}
.avatar-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(99,102,241,0.3);
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}
.caller-name { font-weight: 600; font-size: 1.1rem; margin-bottom: 4px; }
.caller-number { color: var(--text-2); font-size: 0.9rem; margin-bottom: 16px; }
.call-status { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: var(--green); margin-bottom: 8px; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.call-timer { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin-bottom: 16px; }

/* Call wave animation */
.call-wave {
  display: flex; justify-content: center; gap: 4px; margin-bottom: 20px; height: 24px; align-items: center;
}
.call-wave span {
  width: 3px; border-radius: 3px; background: var(--accent);
  animation: waveBar 1.2s ease-in-out infinite;
}
.call-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.call-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.call-wave span:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.call-wave span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.call-wave span:nth-child(5) { height: 8px; animation-delay: 0.4s; }
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.call-actions { display: flex; justify-content: center; gap: 20px; }
.call-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface-2); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: var(--transition);
}
.call-btn:hover { transform: scale(1.1); }
.call-btn.end { background: #ef4444; animation: endPulse 2s ease-in-out infinite; }
@keyframes endPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
}

/* ===== SECTIONS ===== */
.section { position: relative; z-index: 1; padding: 100px 0; }
.section-dark { background: var(--bg-2); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p { color: var(--text-2); font-size: 1.05rem; }
.center { text-align: center; margin-top: 40px; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.1);
}
.feature-shine {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(99,102,241,0.03) 50%, transparent 60%);
  transition: opacity 0.3s ease;
}
.feature-card:hover .feature-shine { opacity: 1; }
.feature-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(99,102,241,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon { font-size: 1.6rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; }

/* ===== NUMBERS SHOWCASE ===== */
.numbers-showcase {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.number-category {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; overflow: hidden;
  transition: var(--transition);
}
.number-category:hover { border-color: rgba(99,102,241,0.2); }
.number-category h4 { font-size: 1.05rem; margin-bottom: 16px; font-weight: 600; }
.number-list { display: flex; flex-direction: column; gap: 8px; }
.number-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; background: var(--bg-2); border-radius: var(--radius);
  font-size: 0.9rem; transition: var(--transition);
}
.number-item:hover { background: var(--bg-3); transform: translateX(4px); }
.number-type { color: var(--text-3); font-size: 0.8rem; }
.number-price { color: var(--green); font-weight: 600; font-size: 0.85rem; white-space: nowrap; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  text-align: center; transition: var(--transition); position: relative;
}
.pricing-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-4px); }
.pricing-popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(99,102,241,0.15);
  transform: scale(1.05);
}
.pricing-popular:hover { transform: scale(1.05) translateY(-4px); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; padding: 4px 16px;
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em;
}
.pricing-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text-2); margin-bottom: 12px; }
.pricing-price {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin-bottom: 28px;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-3); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li {
  padding: 10px 0; font-size: 0.9rem; color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.pricing-features li:last-child { border: none; }
.pricing-card:hover .pricing-features li { color: var(--text); }

/* ===== TRUST ===== */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.trust-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition);
}
.trust-card:hover { border-color: rgba(6,182,212,0.3); transform: translateY(-2px); }
.trust-icon { font-size: 2rem; margin-bottom: 12px; }
.trust-card h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 8px; }
.trust-card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; }
.trust-logos {
  display: flex; justify-content: center; gap: 20px; margin-top: 48px; flex-wrap: wrap;
}
.trust-logos span {
  padding: 10px 24px; border: 1px solid var(--border-2); border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; color: var(--text-3);
  letter-spacing: 0.05em; transition: var(--transition);
}
.trust-logos span:hover {
  border-color: var(--accent); color: var(--accent-2);
  background: rgba(99,102,241,0.05);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.cta-content {
  text-align: center; max-width: 600px; margin: 0 auto;
  padding: 60px 40px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(99,102,241,0.08);
  position: relative; overflow: hidden;
}
.cta-content::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  background: var(--gradient); z-index: -1; opacity: 0.15;
}
.cta-content h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 16px;
}
.cta-content p { color: var(--text-2); margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border); padding: 60px 0 30px;
  background: var(--bg);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 40px; }
.footer-brand { max-width: 300px; }
.footer-brand p { color: var(--text-3); font-size: 0.9rem; margin-top: 12px; }
.footer-links { display: flex; gap: 60px; }
.footer-links h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-2); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links a { display: block; font-size: 0.9rem; color: var(--text-3); padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--text); transform: translateX(2px); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-3); }

/* ===== QUOTE PAGE ===== */
.quote-page {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
}
.quote-header { text-align: center; margin-bottom: 48px; }
.quote-header h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 12px;
}
.quote-header p { color: var(--text-2); font-size: 1.05rem; }

/* Filters */
.quote-filters {
  display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.filter-group { flex: 1; min-width: 200px; }
.filter-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-3); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-group select, .filter-group input {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-2);
  color: var(--text); font-family: var(--font); font-size: 0.9rem;
  transition: var(--transition); appearance: none;
}
.filter-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2371717a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.filter-group input::placeholder { color: var(--text-3); }

/* Number Grid */
.number-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px;
  margin-bottom: 32px;
}
.num-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
  position: relative; overflow: hidden;
}
.num-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(99,102,241,0.03));
  opacity: 0; transition: opacity 0.3s ease;
}
.num-card:hover::before { opacity: 1; }
.num-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(99,102,241,0.1); }
.num-card.selected { border-color: var(--green); background: rgba(16,185,129,0.05); }
.num-card.selected::before { background: linear-gradient(135deg, transparent 60%, rgba(16,185,129,0.05)); opacity: 1; }
.num-info { flex: 1; position: relative; z-index: 1; }
.num-number { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 4px; }
.num-meta { display: flex; gap: 12px; align-items: center; }
.num-meta span { font-size: 0.8rem; color: var(--text-3); }
.num-tag {
  padding: 2px 8px; border-radius: var(--radius-full);
  background: rgba(99,102,241,0.1); color: var(--accent-2);
  font-size: 0.7rem; font-weight: 600;
}
.num-right { text-align: right; position: relative; z-index: 1; }
.num-price { font-weight: 700; color: var(--green); font-size: 1rem; }
.num-select {
  margin-top: 6px; font-size: 0.75rem; color: var(--text-3);
  transition: var(--transition);
}
.num-card:hover .num-select { color: var(--accent-2); }
.num-card.selected .num-select { color: var(--green); font-weight: 600; }

/* Cart Panel */
.cart-panel {
  position: sticky; bottom: 24px;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.3); margin-top: 24px;
  transition: var(--transition);
  backdrop-filter: blur(20px);
}
.cart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cart-header h3 { font-family: var(--font-display); font-size: 1.1rem; }
.cart-count {
  background: var(--gradient); color: #fff; width: 28px; height: 28px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  transition: transform 0.3s ease;
}
.cart-count.bump { animation: cartBump 0.3s ease; }
@keyframes cartBump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.cart-items { margin-bottom: 16px; max-height: 200px; overflow-y: auto; }
.cart-empty { color: var(--text-3); font-size: 0.9rem; text-align: center; padding: 12px; }
.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; background: var(--bg-2); border-radius: var(--radius);
  margin-bottom: 8px; font-size: 0.9rem;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item-remove {
  background: none; border: none; color: var(--text-3); cursor: pointer;
  font-size: 1.1rem; transition: var(--transition); padding: 0 4px;
}
.cart-item-remove:hover { color: #ef4444; transform: scale(1.2); }
.cart-total {
  display: flex; justify-content: space-between; padding: 16px 0;
  border-top: 1px solid var(--border); font-weight: 700; font-size: 1.1rem;
}
.cart-total span:last-child { color: var(--green); }
.cart-checkout:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-checkout { margin-bottom: 8px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 40px;
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-3);
  font-size: 1.8rem; cursor: pointer; transition: var(--transition);
}
.modal-close:hover { color: var(--text); transform: rotate(90deg); }
.modal h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.modal > p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 28px; }

/* Form */
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-3); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-2);
  color: var(--text); font-family: var(--font); font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.form-group input::placeholder { color: var(--text-3); }
.form-note { font-size: 0.75rem; color: var(--text-3); text-align: center; margin-top: 8px; }

.order-summary {
  background: var(--surface); border-radius: var(--radius); padding: 16px;
  margin-bottom: 8px;
}
.order-summary-item { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 4px 0; color: var(--text-2); }
.order-summary-total { display: flex; justify-content: space-between; font-weight: 700; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 8px; }

.checkout-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 4rem; margin-bottom: 16px; animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.checkout-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 12px; }
.checkout-success p { color: var(--text-2); margin-bottom: 24px; }

/* ===== SMOOTH SCROLL INDICATOR ===== */
.scroll-indicator {
  position: fixed; bottom: 32px; right: 32px; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(99,102,241,0.3);
  border: none;
}
.scroll-indicator.visible { opacity: 1; transform: translateY(0); }
.scroll-indicator:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(99,102,241,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-popular { transform: none; }
  .pricing-popular:hover { transform: translateY(-4px); }
  .footer-top { flex-direction: column; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero { flex-direction: column; min-height: auto; padding-top: 100px; gap: 40px; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 220px; height: 440px; }
  .hero-stats { gap: 24px; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn-lg { padding: 12px 22px; font-size: 0.95rem; }
  .features-grid { grid-template-columns: 1fr; }
  .numbers-showcase { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .number-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .quote-filters { flex-direction: column; }
  .ticker-wrap { display: none; }
  .scroll-indicator { bottom: 20px; right: 20px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-popular { transform: none; }
  .pricing-popular:hover { transform: translateY(-4px); }
  .cta-content { padding: 40px 24px; }
  .cta-content h2 { font-size: 1.6rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .modal { padding: 28px 20px; }
  .modal h2 { font-size: 1.3rem; }
  .cart-panel { padding: 18px; }
  .quote-page { padding: 100px 16px 60px; }
  .quote-header h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .num-card { padding: 16px; }
  .num-number { font-size: 0.95rem; }
  .feature-card { padding: 24px; }
  .trust-card { padding: 24px; }
  .trust-logos { gap: 10px; }
  .trust-logos span { padding: 8px 14px; font-size: 0.78rem; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-3); }

/* ===== SELECTION ===== */
::selection { background: rgba(99,102,241,0.3); color: #fff; }

/* ===== FLOATING TELEGRAM SUPPORT ===== */
.tg-float {
  position: fixed; bottom: 28px; right: 90px; z-index: 90;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius-full);
  background: #2AABEE; color: #fff;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(42,171,238,0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  animation: tgFloatIn 0.6s 1s both cubic-bezier(0.4, 0, 0.2, 1);
}
.tg-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 32px rgba(42,171,238,0.5);
  background: #229ED9;
}
.tg-float svg { flex-shrink: 0; }
@keyframes tgFloatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .tg-float { bottom: 20px; right: 70px; padding: 10px 16px; font-size: 0.85rem; }
  .tg-float span { display: none; }
  .tg-float { padding: 12px; border-radius: 50%; }
}

/* ===== LOADING SHIMMER ===== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stats .stat { flex-direction: row; align-items: center; gap: 8px; }
  .stat-label { margin-top: 0; }
  .phone-mockup { width: 190px; height: 380px; }
  .nav-inner { padding: 0 16px; }
  .section-inner { padding: 0 16px; }
  .footer-inner { padding: 0 16px; }
  .modal-overlay { padding: 12px; }
  .modal { padding: 24px 16px; border-radius: var(--radius); }
  .btn-lg { padding: 12px 20px; font-size: 0.9rem; }
  .tg-float { right: 16px; bottom: 16px; }
  .scroll-indicator { right: 16px; bottom: 16px; }
}
