/* CONVERSIQ Global — Premium BPO Website Styles */

:root {
  --primary: #0F172A;
  --secondary: #2563EB;
  --accent: #06B6D4;
  --success: #10B981;
  --background: #F8FAFC;
  --text: #0F172A;
  --text-muted: #64748B;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* Glassmorphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-subtext {
  color: #E2E8F0;
}

.hero-region-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #F1F5F9;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-region-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(6, 182, 212, 0.4);
}

/* ── Hero animations ── */
.gradient-text-shimmer {
  background: linear-gradient(90deg, #60A5FA, #22D3EE, #818CF8, #60A5FA);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: text-shimmer 5s linear infinite;
}

@keyframes text-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* Aurora orbs */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-drift 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.5) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  animation-duration: 14s;
}

.hero-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation-duration: 18s;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation-duration: 10s;
  animation-delay: -2s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Network particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.6);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
  animation: particle-float 6s ease-in-out infinite;
  animation-delay: var(--d);
}

.hero-particle-lg {
  width: 6px;
  height: 6px;
  background: rgba(37, 99, 235, 0.7);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.5);
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-20px) scale(1.3); opacity: 1; }
}

/* Staggered entrance */
.hero-animate {
  opacity: 0;
  transform: translateY(28px);
}

.hero-loaded .hero-animate-1 { animation: hero-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards; }
.hero-loaded .hero-animate-2 { animation: hero-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards; }
.hero-loaded .hero-animate-3 { animation: hero-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards; }
.hero-loaded .hero-animate-4 { animation: hero-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards; }
.hero-loaded .hero-animate-5 { animation: hero-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards; }
.hero-loaded .hero-animate-6 { animation: hero-enter-scale 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards; }

.hero-pill {
  opacity: 0;
  transform: translateY(12px) scale(0.95);
}

.hero-loaded .hero-pill-1 { animation: hero-pill-in 0.5s ease 0.85s forwards; }
.hero-loaded .hero-pill-2 { animation: hero-pill-in 0.5s ease 0.95s forwards; }
.hero-loaded .hero-pill-3 { animation: hero-pill-in 0.5s ease 1.05s forwards; }
.hero-loaded .hero-pill-4 { animation: hero-pill-in 0.5s ease 1.15s forwards; }
.hero-loaded .hero-pill-5 { animation: hero-pill-in 0.5s ease 1.25s forwards; }
.hero-loaded .hero-pill-6 { animation: hero-pill-in 0.5s ease 1.35s forwards; }
.hero-loaded .hero-pill-7 { animation: hero-pill-in 0.5s ease 1.45s forwards; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-enter-scale {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-pill-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-animate-6 {
  transform: translateY(28px) scale(0.96);
}

/* CTA shine */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: btn-shine 3.5s ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* Pulse dot */
.hero-pulse-dot {
  animation: hero-pulse-dot 2s ease-in-out infinite;
}

@keyframes hero-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Dashboard glow + chart */
.dashboard-glow {
  position: relative;
  animation: float-slow 8s ease-in-out infinite;
}

.dashboard-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.3));
  z-index: -1;
  animation: dashboard-glow 4s ease-in-out infinite alternate;
}

@keyframes dashboard-glow {
  0% { opacity: 0.5; filter: blur(8px); }
  100% { opacity: 1; filter: blur(12px); }
}

.live-badge { letter-spacing: 0.05em; }

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: hero-pulse-dot 1.5s ease-in-out infinite;
}

.dash-stat-card {
  opacity: 0;
  transform: translateY(8px);
}

.hero-loaded .hero-dash-1 { animation: hero-enter 0.5s ease 1.1s forwards; }
.hero-loaded .hero-dash-2 { animation: hero-enter 0.5s ease 1.25s forwards; }
.hero-loaded .hero-dash-3 { animation: hero-enter 0.5s ease 1.4s forwards; }

.chart-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.hero-loaded .chart-line {
  animation: chart-draw 2.2s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards;
}

.chart-area {
  opacity: 0;
}

.hero-loaded .chart-area {
  animation: chart-fill 1s ease 2.2s forwards;
}

.chart-dot {
  opacity: 0;
  transform-origin: center;
}

.hero-loaded .chart-dot {
  animation: chart-dot-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 3.2s forwards;
}

@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes chart-fill {
  to { opacity: 1; }
}

@keyframes chart-dot-pop {
  to { opacity: 1; }
}

.hero-loaded .chart-status {
  animation: chart-status-in 0.5s ease 3s forwards;
}

@keyframes chart-status-in {
  to { opacity: 1; }
}

.agent-row {
  opacity: 0;
  transform: translateX(16px);
}

.hero-loaded .hero-agent-1 { animation: agent-slide 0.6s ease 2.5s forwards; }
.hero-loaded .hero-agent-2 { animation: agent-slide 0.6s ease 2.75s forwards; }

@keyframes agent-slide {
  to { opacity: 1; transform: translateX(0); }
}

/* Floating stat cards */
.hero-float-card {
  opacity: 0;
  transform: translateY(16px) scale(0.9);
}

.hero-loaded .hero-float-card-1 {
  animation: float-card-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.8s forwards,
             float 6s ease-in-out 2.5s infinite;
}

.hero-loaded .hero-float-card-2 {
  animation: float-card-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards,
             float-slow 8s ease-in-out 2.7s infinite;
}

@keyframes float-card-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Country flags */
.flag {
  display: inline-block;
  width: 1.333333em;
  line-height: 1em;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
  vertical-align: middle;
}

.flag-sm { font-size: 16px; }
.flag-md { font-size: 24px; }
.flag-lg { font-size: 28px; }

.region-flag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.footer-region-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #1D4ED8 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Navigation */
.nav-link {
  position: relative;
  color: #CBD5E1;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-nav-link {
  color: #94A3B8;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link::after {
  display: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #FFFFFF;
}

.mobile-nav-link.active {
  border-bottom-color: var(--accent);
  padding-left: 0.75rem;
  border-left: 3px solid var(--accent);
}

/* Hero */
.hero-gradient {
  background-color: #0F172A;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  background-size: 60px 60px, 60px 60px, 100% 100%;
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid,
.grid-overlay {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Service cards */
.service-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #E2E8F0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.service-card:hover .service-icon svg {
  color: white;
}

/* Stats */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 1.25rem;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card.bg-white\/5 .stat-number,
.stat-number.text-white {
  background: none;
  -webkit-text-fill-color: white;
  color: white;
}

/* Process steps */
.process-step {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 1.25rem;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.process-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Testimonial */
.testimonial-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* FAQ */
.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--secondary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Form */
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: white;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: #94A3B8;
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  color: #64748B;
  font-weight: 600;
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 1;
}

/* World map */
.map-region {
  cursor: pointer;
  transition: all 0.3s ease;
  fill: #CBD5E1;
}

.map-region.active {
  fill: url(#regionGradient);
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.5));
}

.map-region:hover {
  fill: #93C5FD;
}

.map-pulse {
  animation: map-pulse 2s ease-in-out infinite;
}

@keyframes map-pulse {
  0%, 100% { r: 4; opacity: 1; }
  50% { r: 8; opacity: 0.5; }
}

/* Why choose us */
.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.feature-check:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.check-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}

/* Industry pills */
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.industry-pill:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(37, 99, 235, 0.05);
}

/* Dashboard mockup */
.dashboard-mockup {
  background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Section badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

/* Navbar scroll state */
.navbar-scrolled {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Region tooltip */
.region-tooltip {
  position: absolute;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 10;
  white-space: nowrap;
}

.region-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Success message */
.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: scale-in 0.4s ease;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }

  .hero-headline {
    font-size: 2.25rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero-animate, .hero-pill, .dash-stat-card, .agent-row, .hero-float-card,
  .chart-area, .chart-dot {
    opacity: 1;
    transform: none;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }

  .logo-track {
    animation: none;
  }
}
