:root {
  --navy: #0b2a6f;
  --red: #e1062a;
  --ink: #0b1220;
  --slate: #4b5563;
  --ice: #f5f7fb;
  --steel: #d7dfef;
  --success: #0f766e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

textarea {
  resize: vertical;
}

button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.bg-site {
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(225, 6, 42, 0.10), transparent 60%),
    radial-gradient(1200px 800px at 85% -20%, rgba(11, 42, 111, 0.10), transparent 60%),
    #f5f7fb;
}

.bg-hero-shell {
  background:
    linear-gradient(145deg, rgba(11, 42, 111, 0.95), rgba(8, 18, 38, 0.90)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 35%);
}

.bg-service-accent {
  background:
    radial-gradient(circle at top right, rgba(225, 6, 42, 0.15), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 247, 251, 1));
}

.ring-soft {
  box-shadow: inset 0 0 0 1px rgba(215, 223, 239, 0.8);
}

.review-card {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}

.review-card.show {
  opacity: 1;
  transform: translateY(0);
}

.review-scroll .vscroll {
  display: block;
  transform: translateY(100%);
  animation: vscroll var(--review-scroll-duration, 10s) linear infinite;
}

.review-scroll:hover .vscroll {
  animation-play-state: paused;
}

@keyframes vscroll {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(calc(-1 * var(--review-scroll-height, 60px)));
  }
}

.area-item {
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.area-item:hover {
  color: var(--navy);
  transform: translateX(4px);
}

.btn-hover {
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-hover:hover {
  transform: translateY(-2px);
}

.service-card-anim {
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card-anim:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(11, 42, 111, 0.16);
}

.insurance-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
}

.insurance-marquee::before,
.insurance-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.insurance-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.insurance-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.insurance-marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: insuranceMarquee 30s linear infinite;
}

.insurance-marquee:hover .insurance-marquee-track {
  animation-play-state: paused;
}

.insurance-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 180px;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.insurance-logo-card img {
  display: block;
  width: auto;
  max-width: 180px;
}

@keyframes insuranceMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.image-card {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 38, 0.08), rgba(8, 18, 38, 0.68));
}

.image-card > * {
  position: relative;
  z-index: 1;
}

details summary::-webkit-details-marker {
  display: none;
}

.absolute { position: absolute; }
.fixed { position: fixed; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-none { flex: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.object-contain { object-fit: contain; }
.sticky { position: sticky; }
.relative { position: relative; }
.top-0 { top: 0; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-\[60\] { z-index: 60; }
.top-1\/2 { top: 50%; }

.mx-auto { margin-left: auto; margin-right: auto; }
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-2\.5 { margin-top: 0.625rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-3\.5 { margin-top: 0.875rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-\[18px\] { margin-top: 18px; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-3\.5 { margin-bottom: 0.875rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-\[18px\] { margin-bottom: 18px; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-\[18px\] { padding: 18px; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-\[18px\] { padding-left: 18px; padding-right: 18px; }
.px-\[22px\] { padding-left: 22px; padding-right: 22px; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pl-\[18px\] { padding-left: 18px; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-\[18px\] { gap: 18px; }

.w-2\.5 { width: 0.625rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-full { width: 100%; }
.h-2\.5 { height: 0.625rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-24 { height: 6rem; }
.h-\[52px\] { height: 52px; }
.h-\[70px\] { height: 70px; }
.h-\[78px\] { height: 78px; }
.h-\[88px\] { height: 88px; }
.h-\[360px\] { height: 360px; }
.max-h-\[56px\] { max-height: 56px; }
.max-h-\[62px\] { max-height: 62px; }
.max-w-\[240px\] { max-width: 240px; }
.max-w-\[280px\] { max-width: 280px; }
.max-w-\[520px\] { max-width: 520px; }
.max-w-\[760px\] { max-width: 760px; }
.max-w-\[1200px\] { max-width: 1200px; }
.min-h-\[22px\] { min-height: 22px; }
.min-h-\[24px\] { min-height: 24px; }
.min-h-\[110px\] { min-height: 110px; }
.min-h-\[132px\] { min-height: 132px; }
.min-h-\[150px\] { min-height: 150px; }
.min-h-\[180px\] { min-height: 180px; }
.min-h-\[190px\] { min-height: 190px; }
.min-h-\[280px\] { min-height: 280px; }
.min-h-\[330px\] { min-height: 330px; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-\[1\.12fr_\.88fr\] { grid-template-columns: 1.12fr 0.88fr; }
.columns-2 { column-count: 2; }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[20px\] { border-radius: 20px; }
.rounded-\[22px\] { border-radius: 22px; }
.rounded-\[24px\] { border-radius: 24px; }
.rounded-\[28px\] { border-radius: 28px; }
.rounded-\[30px\] { border-radius: 30px; }
.rounded-\[32px\] { border-radius: 32px; }

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-gray-100 { border-color: #eef1f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }

.shadow-card { box-shadow: 0 10px 24px rgba(11, 42, 111, 0.08); }
.shadow-hero { box-shadow: 0 20px 60px rgba(11, 42, 111, 0.12); }
.shadow-rating { box-shadow: 0 14px 30px rgba(11, 42, 111, 0.25); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.site-header {
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex-wrap: nowrap;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  width: 240px;
}

.site-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

.employee-login-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--slate);
  font-weight: 700;
}

.employee-login-trigger:hover {
  color: var(--navy);
}

.top-call-btn {
  padding: 0.8rem 1.2rem;
  white-space: nowrap;
}

.floating-call-cta {
  display: none;
}

.site-header.scrolled {
  background-color: rgba(245, 247, 251, 0.96);
  box-shadow: 0 14px 32px rgba(11, 42, 111, 0.10);
  border-color: rgba(215, 222, 236, 0.9);
}

.hero-shell-anim {
  transform-origin: center;
  animation: heroFloat 5.6s ease-in-out infinite;
}

.reveal-on-load,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal-on-load.is-visible,
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.bg-white { background-color: #ffffff; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.10); }
.bg-white\/92 { background-color: rgba(255, 255, 255, 0.92); }
.bg-ice { background-color: #f5f7fb; }
.bg-ice\/90 { background-color: rgba(245, 247, 251, 0.90); }
.bg-navy { background-color: #0b2a6f; }
.bg-navy\/10 { background-color: rgba(11, 42, 111, 0.10); }
.bg-navy\/75 { background-color: rgba(11, 42, 111, 0.75); }
.bg-red { background-color: #e1062a; }
.bg-red\/85 { background-color: rgba(225, 6, 42, 0.85); }
.bg-ink\/50 { background-color: rgba(11, 18, 32, 0.50); }

.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-navy { --tw-gradient-from: #0b2a6f; }
.from-white { --tw-gradient-from: #ffffff; }
.from-white\/10 { --tw-gradient-from: rgba(255, 255, 255, 0.10); }
.from-\[\#edf3ff\] { --tw-gradient-from: #edf3ff; }
.to-\[\#0b1f50\] { --tw-gradient-to: #0b1f50; }
.to-\[\#112f7a\] { --tw-gradient-to: #112f7a; }
.to-\[\#edf3ff\] { --tw-gradient-to: #edf3ff; }
.to-transparent { --tw-gradient-to: transparent; }
.to-white { --tw-gradient-to: #ffffff; }

.text-white { color: #ffffff; }
.text-ink { color: #0b1220; }
.text-slate { color: #4b5563; }
.text-navy { color: #0b2a6f; }
.text-red { color: #e1062a; }
.text-success { color: #0f766e; }
.text-blue-100 { color: #dbeafe; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-\[\#ffd166\] { color: #ffd166; }

.hover\:text-navy:hover { color: #0b2a6f; }

#employeeStatus.error { color: #e1062a; }

.font-sans { font-family: 'Montserrat', system-ui, sans-serif; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 1; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[26px\] { font-size: 26px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[34px\] { font-size: 34px; }
.text-\[40px\] { font-size: 40px; }
.text-\[46px\] { font-size: 46px; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.7; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.8\] { line-height: 1.8; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[\.18em\] { letter-spacing: 0.18em; }
.tracking-\[\.2em\] { letter-spacing: 0.2em; }
.uppercase { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }

.opacity-90 { opacity: 0.9; }
.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}
.translate-y-0 { transform: translateY(0); }
.-translate-y-1\/2 { transform: translateY(-50%); }

@media (max-width: 639px) {
  .max-sm\:text-\[34px\] { font-size: 34px; }
  .max-sm\:w-full { width: 100%; }
  .max-sm\:justify-between { justify-content: space-between; }

  .site-header-inner {
    gap: 0.625rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .site-logo-link {
    width: 180px;
  }

  .site-logo {
    max-height: 32px;
  }

  .employee-login-trigger {
    display: none !important;
  }

  .site-header nav {
    display: none !important;
  }

  .top-call-btn {
    padding: 0.625rem 0.875rem;
    font-size: 14px;
    line-height: 1;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .site-logo-link {
    width: 210px;
  }

  .site-logo {
    max-height: 36px;
  }

  .top-call-btn {
    padding: 0.7rem 1rem;
    font-size: 14px;
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .floating-call-cta {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:grid-cols-\[1\.05fr_\.95fr\] { grid-template-columns: 1.05fr 0.95fr; }
  .lg\:grid-cols-\[\.85fr_1\.15fr\] { grid-template-columns: 0.85fr 1.15fr; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .review-card,
  .btn-hover,
  .service-card-anim,
  .area-item,
  .insurance-marquee-track,
  .reveal-on-load,
  .reveal-on-scroll,
  .hero-shell-anim {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
