html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, .font-heading { font-family: 'Sora', sans-serif; }

.hero-bg {
  background:
    linear-gradient(120deg, rgba(10,21,38,0.92) 0%, rgba(10,21,38,0.78) 45%, rgba(10,21,38,0.55) 100%),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.pattern-dots {
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stat-number { font-variant-numeric: tabular-nums; }

.card-service {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(10,21,38,0.35);
  border-color: theme('colors.accent.400');
}

.process-line {
  background-image: repeating-linear-gradient(to right, theme('colors.navy.200') 0, theme('colors.navy.200') 8px, transparent 8px, transparent 16px);
  height: 2px;
}

.swiper-pagination-bullet { background: theme('colors.navy.300') !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: theme('colors.accent.500') !important; }

.avatar-initial {
  background: linear-gradient(135deg, theme('colors.navy.700'), theme('colors.navy.900'));
}
