:root {
  --bg: #f8fafc;
  --primary: #1e3a5f;
  --accent: #2c7da0;
  --line: #d7e3ee;
  --text-soft: #5b6b7b;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(44, 125, 160, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f6f9fc 48%, #ffffff 100%);
}

.site-shell {
  position: relative;
  overflow-x: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(30, 58, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 78%);
  opacity: 0.35;
}

.header-panel {
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}

.header-scrolled .header-panel {
  border-color: rgba(44, 125, 160, 0.18);
  box-shadow: 0 22px 55px rgba(30, 58, 95, 0.1);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.9;
}

.hero-glow-left {
  left: -7rem;
  top: 4rem;
  height: 18rem;
  width: 18rem;
  background: rgba(44, 125, 160, 0.12);
}

.hero-glow-right {
  right: -6rem;
  top: 1rem;
  height: 16rem;
  width: 16rem;
  background: rgba(30, 58, 95, 0.08);
}

.hero-panel,
.stat-card,
.service-card,
.feature-card,
.process-step {
  position: relative;
  border: 1px solid var(--line);
  background: #ffffff;
}

.stat-card {
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.snapshot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #e6edf3;
  padding-bottom: 0.9rem;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.snapshot-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-card {
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(30, 58, 95, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  height: 4px;
  width: 100%;
  border-top-left-radius: 1.75rem;
  border-top-right-radius: 1.75rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 125, 160, 0.28);
  box-shadow: 0 22px 50px rgba(30, 58, 95, 0.1);
}

.service-icon {
  display: inline-flex;
  height: 3.4rem;
  width: 3.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(44, 125, 160, 0.1);
  color: var(--accent);
}

.feature-card {
  border-radius: 1.6rem;
  padding: 1.75rem;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

.feature-number {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.process-step {
  border-radius: 1.6rem;
  padding: 1.6rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.process-badge {
  display: inline-flex;
  height: 2.6rem;
  width: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.08);
  color: var(--primary);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.contact-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
