:root {
  --navy: #072b61;
  --gold: #d4a44a;
  --ink: #111827;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  max-width: 100%;
}

a,
button,
input,
select,
textarea,
h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

button {
  font: inherit;
}

/* Local utility fallback for the Tailwind classes used by the public templates.
   This keeps the site properly rendered when CDN scripts are blocked or offline. */
.absolute { position: absolute; }
.fixed { position: fixed; }
.relative { position: relative; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { bottom: 0; top: 0; }
.right-0 { right: 0; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.contents { display: contents; }
.shrink-0 { flex-shrink: 0; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-self-start { justify-self: start; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.w-fit { width: fit-content; }
.w-full { width: 100%; }
.w-\[58\%\] { width: 58%; }
.h-full { height: 100%; }
.min-h-\[360px\] { min-height: 360px; }
.min-h-\[620px\] { min-height: 620px; }
.h-\[360px\] { height: 360px; }
.max-w-xs { max-width: 20rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-bottom: 1rem; padding-top: 1rem; }
.py-8 { padding-bottom: 2rem; padding-top: 2rem; }
.py-10 { padding-bottom: 2.5rem; padding-top: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-28 { padding-top: 7rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-14 { padding-bottom: 3.5rem; }
.border-t { border-top: 1px solid; }
.border-y { border-bottom: 1px solid; border-top: 1px solid; }
.border-slate-200 { border-color: #e2e8f0; }
.rounded-2xl { border-radius: 1rem; }
.bg-white { background: #fff; }
.bg-mist { background: #f5f8fc; }
.bg-navy { background: var(--navy); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from, transparent), var(--tw-gradient-via, var(--tw-gradient-to, transparent)), var(--tw-gradient-to, transparent)); }
.from-mist { --tw-gradient-from: #f5f8fc; }
.from-white { --tw-gradient-from: #fff; }
.via-white\/70 { --tw-gradient-via: rgba(255, 255, 255, .7); }
.to-white { --tw-gradient-to: #fff; }
.to-white\/5 { --tw-gradient-to: rgba(255, 255, 255, .05); }
.object-cover { object-fit: cover; }
.font-body { font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.font-heading { font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif; }
.text-center { text-align: center; }
.text-sm { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-\[1\.02\] { line-height: 1.02; }
.tracking-normal { letter-spacing: 0; }
.text-ink { color: var(--ink); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.text-white\/70 { color: rgba(255, 255, 255, .7); }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.shadow-premium { box-shadow: 0 24px 70px rgba(7, 43, 97, .13); }
.transition-all { transition-property: all; }
.duration-300 { transition-duration: .3s; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }

.font-body svg,
[data-lucide] {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; }
  .sm\:text-6xl { font-size: 3.75rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-\[\.82fr_1\.18fr\] { grid-template-columns: .82fr 1.18fr; }
  .lg\:grid-cols-\[1fr_\.95fr\] { grid-template-columns: 1fr .95fr; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:pt-32 { padding-top: 8rem; }
  .lg\:pb-0 { padding-bottom: 0; }
  .lg\:min-h-\[640px\] { min-height: 640px; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
}

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

::selection {
  background: rgba(212, 164, 74, 0.28);
}

.section {
  padding: 76px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 156px 0 82px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.78)),
    url("../images/corporate-office.jpg") center / cover;
}

.page-hero.dark {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    url("../images/corporate-office.jpg") center / cover;
  color: var(--ink);
}

.page-hero h1 {
  max-width: 780px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero.dark h1 {
  color: var(--navy);
}

.page-hero p {
  max-width: 680px;
  margin-top: 22px;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}

.page-hero.dark p {
  color: #475569;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-logo-img {
  display: block;
  width: clamp(280px, 32vw, 470px);
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgba(212, 164, 74, 0.9);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
}

#siteHeader {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(226, 232, 240, .88);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .05);
  backdrop-filter: blur(14px);
}

#siteHeader.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.08);
}

#siteHeader nav[aria-label="Primary navigation"] {
  gap: 30px;
}

#siteHeader nav[aria-label="Primary navigation"] .nav-cta {
  margin-left: 8px;
}

.nav-link {
  position: relative;
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
  padding: 10px 0;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.nav-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--navy);
  padding: 0 18px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(7, 43, 97, .16);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover,
.nav-cta:focus,
.nav-pill:hover,
.nav-pill:focus {
  background: #0a3678;
  transform: translateY(-1px);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-search,
.menu-trigger {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(7, 43, 97, .14);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.header-search:hover,
.menu-trigger:hover,
.header-search:focus,
.menu-trigger:focus {
  border-color: rgba(212, 164, 74, .55);
  color: var(--gold);
  transform: translateY(-1px);
}

.header-search svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.menu-trigger svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.1;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 60;
  display: grid;
  width: 300px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  padding: 10px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 6px;
  padding: 11px 12px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: #f5f8fc;
  color: var(--navy);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(15, 23, 42, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: min(90vw, 430px);
  height: 100dvh;
  overflow-y: auto;
  border-right: 1px solid rgba(226, 232, 240, 0.95);
  background: white;
  box-shadow: 24px 0 70px rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  padding: 18px 24px;
}

.mobile-menu-head strong {
  display: block;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.mobile-nav {
  display: grid;
  gap: 0;
  padding: 8px 24px 32px;
}

.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 10px 12px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #f5f8fc;
  color: var(--navy);
  padding-left: 16px;
}

.mobile-nav-group {
  display: grid;
  gap: 2px;
}

.mobile-nav-group > a {
  background: transparent;
  font-weight: 800;
}

.mobile-accordion-toggle {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 6px;
  background: transparent;
  padding: 10px 12px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.mobile-accordion-toggle:hover,
.mobile-accordion-toggle:focus {
  background: #f5f8fc;
  color: var(--navy);
}

.mobile-accordion-toggle svg {
  width: 18px;
  min-width: 18px;
  height: 18px;
  transition: transform .2s ease;
}

.mobile-accordion-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-accordion-panel[hidden] {
  display: none;
}

.mobile-nav-group > div {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(212, 164, 74, .38);
  margin: 4px 0 10px 12px;
  padding: 0 0 0 10px;
}

.mobile-nav-group > div a {
  min-height: 40px;
  padding: 8px 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
}

.sidebar-service-heading {
  min-height: 42px;
  border-bottom-color: rgba(212, 164, 74, .22);
  padding: 11px 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-service-section > .mobile-accordion-panel {
  display: grid;
  gap: 0;
  padding: 2px 0 6px 8px;
}

.mobile-service-section > .mobile-accordion-panel[hidden] {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.btn-primary,
.btn-secondary,
.btn-gold {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 30px rgba(7, 43, 97, 0.18);
}

.btn-primary:hover,
.btn-gold:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(7, 43, 97, 0.45);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
}

.btn-gold {
  background: linear-gradient(135deg, #e8bd62, var(--gold));
  color: white;
  box-shadow: 0 16px 30px rgba(212, 164, 74, 0.26);
}

.icon-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(7, 43, 97, 0.18);
  border-radius: 8px;
  background: white;
  color: var(--navy);
}

.hero-section {
  min-height: 730px;
  background:
    radial-gradient(circle at 8% 20%, rgba(212, 164, 74, 0.12), transparent 28%),
    linear-gradient(90deg, white 0%, white 48%, #eef4fb 100%);
}

.premium-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  color: #0b66dc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.premium-badge {
  background: #e8f1ff;
  padding: 9px 12px;
}

.section-title {
  margin-top: 8px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.stat-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  column-gap: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  padding: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.stat-item svg {
  grid-row: span 2;
  color: #0b66dc;
}

.stat-item strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.stat-item span {
  color: #475569;
  font-size: 12px;
}

.feature-float {
  position: absolute;
  right: 0;
  top: 110px;
  width: min(330px, 90%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 22px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.feature-row {
  display: flex;
  gap: 14px;
  padding: 10px 0;
}

.feature-row svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--gold);
}

.feature-row strong,
.feature-row small {
  display: block;
}

.feature-row strong {
  color: var(--navy);
  font-size: 14px;
}

.feature-row small {
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.service-card {
  position: relative;
  min-height: 214px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(212, 164, 74, 0.5);
  box-shadow: 0 22px 55px rgba(7, 43, 97, 0.12);
  transform: translateY(-6px);
}

.service-card > svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
}

.service-card h3 {
  margin-top: 20px;
  max-width: 240px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.service-card h3::after {
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.service-card p {
  margin-top: 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.service-card a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--navy);
  opacity: 0.75;
}

.service-group-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 14px;
  background: #fff;
  padding: clamp(18px, 2.4vw, 26px);
  box-shadow: 0 14px 38px rgba(15, 23, 42, .09);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-group-card:hover {
  border-color: rgba(212, 164, 74, .4);
  box-shadow: 0 20px 46px rgba(7, 43, 97, .12);
  transform: translateY(-3px);
}

.service-group-card > img {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 10px;
  object-fit: cover;
}

.service-group-body {
  display: grid;
  gap: 16px;
  padding: 24px 4px 2px;
}

.service-group-body h3 {
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.service-group-body > p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 720px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.service-group-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-group-body li {
  position: relative;
  padding: 10px 12px 10px 30px;
  border-radius: 7px;
  background: #f8fafc;
  color: #1e293b;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
  transition: background .18s ease, color .18s ease;
}

.service-group-body li::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.service-group-body li a:hover,
.service-group-body li a:focus {
  color: var(--navy);
}

.service-group-body li:hover {
  background: #f1f5f9;
  color: var(--navy);
}

.service-group-more {
  justify-self: end;
  border-bottom: 2px solid var(--gold);
  padding: 4px 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.detail-card,
.team-card,
.form-card,
.value-card,
.article-panel {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.detail-card {
  padding: clamp(24px, 4vw, 40px);
}

.detail-card h2,
.article-panel h2 {
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.1;
}

.detail-card p,
.article-panel p {
  margin-top: 16px;
  color: #475569;
  line-height: 1.8;
}

.detail-card h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.18;
}

.detail-card ul,
.detail-card ol {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 1.25rem;
  color: #475569;
  line-height: 1.75;
}

.detail-card ul {
  list-style: disc;
}

.detail-card ol {
  list-style: decimal;
}

.detail-card li {
  padding-left: 4px;
}

.detail-card li::marker {
  color: var(--gold);
  font-weight: 800;
}

.service-content-grid {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  grid-template-columns: 1fr;
}

.service-content-grid.two {
  grid-template-columns: 1fr;
}

.service-content-grid.three {
  grid-template-columns: 1fr;
}

.service-content-block {
  min-width: 0;
  padding: 0;
}

.service-content-block p:first-of-type {
  margin-top: 10px;
}

.service-content-block + .service-content-block {
  margin-top: 30px;
}

.service-detail-layout {
  align-items: start;
}

.service-detail-layout .form-card {
  align-self: start;
  height: auto;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.check-list svg {
  width: 18px;
  min-width: 18px;
  margin-top: 2px;
  color: #0b66dc;
}

.side-panel {
  position: sticky;
  top: 112px;
  border-radius: 8px;
}

.side-nav {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  padding: 16px 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.side-nav a:hover {
  background: #f8fafc;
}

.form-card {
  padding: 26px;
}

.form-card h2,
.form-card h3 {
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.field-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.field-grid label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: white;
  padding: 13px 14px;
  color: #111827;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-grid textarea {
  min-height: 116px;
  resize: vertical;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 164, 74, 0.16);
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card div {
  padding: 22px;
}

.team-card h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.team-card p {
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
}

.team-card h3 a {
  color: inherit;
}

.team-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.team-read-link svg {
  width: 16px;
  height: 16px;
}

.team-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(240px, 38%) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.team-profile > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
}

.team-profile h2 {
  margin-top: 10px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

.team-designation {
  margin-top: 12px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
}

.team-bio {
  margin-top: 22px;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.team-bio p + p {
  margin-top: 14px;
}

.team-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.team-profile-hero {
  padding: clamp(96px, 10vw, 124px) 0 clamp(34px, 5vw, 62px);
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
}

.team-profile-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  margin-top: 0;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(212, 164, 74, .08), transparent 32%),
    #fff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 70px rgba(7, 43, 97, .1);
}

.team-jumbotron-back {
  grid-column: 1 / -1;
  justify-self: start;
  margin-bottom: -8px;
}

.team-profile-copy h1 {
  max-width: 920px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.45rem);
  font-weight: 900;
  line-height: 1;
}

.team-profile-copy h1::after {
  content: "";
  display: block;
  width: min(100%, 680px);
  height: 3px;
  margin-top: 16px;
  background: var(--gold);
}

.team-profile-meta,
.team-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin-top: 22px;
  color: #111827;
  font-size: 17px;
  font-weight: 800;
}

.team-profile-meta span,
.team-contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.team-profile-meta svg,
.team-contact-line svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.team-share-btn {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(219, 168, 64, .36);
  border-radius: 999px;
  background: #fff;
  color: var(--gold);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
  cursor: pointer;
}

.team-share-btn svg {
  width: 19px;
  height: 19px;
}

.team-share-btn.copied {
  border-color: rgba(7, 43, 97, .18);
  background: var(--navy);
  color: #fff;
}

.team-contact-line {
  font-size: 16px;
  font-weight: 800;
}

.team-contact-line a {
  color: #273449;
}

.team-fact-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  margin-top: 30px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.75;
}

.team-fact-row + .team-fact-row {
  margin-top: 26px;
}

.team-fact-row strong {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
}

.team-profile-photo {
  padding-top: 8px;
}

.team-profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 2px solid rgba(219, 168, 64, .7);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 22px 56px rgba(15, 23, 42, .18);
}

.team-contact-cta {
  margin-top: 36px;
}

.team-story {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.team-story-section {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.team-story-section h2,
.team-contact-section h2 {
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.55rem, 2.25vw, 2.1rem);
  font-weight: 900;
  line-height: 1.12;
}

.team-story-section h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  background: var(--gold);
}

.team-story-body {
  color: #273449;
  font-size: 15.5px;
  line-height: 1.75;
}

.team-story-body h2,
.team-story-body h3,
.team-story-body h4 {
  margin-top: 26px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 850;
  line-height: 1.22;
}

.team-story-body h2 {
  font-size: 1.55rem;
}

.team-story-body h3 {
  font-size: 1.3rem;
}

.team-story-body h4 {
  font-size: 1.08rem;
}

.team-story-body h2:first-child,
.team-story-body h3:first-child,
.team-story-body h4:first-child,
.team-story-body p:first-child,
.team-story-body ul:first-child,
.team-story-body ol:first-child {
  margin-top: 0;
}

.team-story-body p + p,
.team-story-body ul + p,
.team-story-body ol + p,
.team-story-body p + ul,
.team-story-body p + ol,
.team-story-body blockquote + p {
  margin-top: 18px;
}

.team-story-body strong {
  color: #111827;
}

.team-story-body ul,
.team-story-body ol {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 1.35rem;
}

.team-story-body ul {
  list-style: disc;
}

.team-story-body ol {
  list-style: decimal;
}

.team-story-body li::marker {
  color: var(--gold);
  font-weight: 900;
}

.team-story-body a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.team-story-body blockquote {
  margin-top: 20px;
  border-left: 3px solid var(--gold);
  background: #fff;
  padding: 14px 18px;
  color: #334155;
  font-weight: 650;
}

.team-contact-section {
  scroll-margin-top: 110px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.team-contact-section > p {
  max-width: 900px;
  margin-top: 14px;
  color: #53627a;
  font-size: 16px;
  line-height: 1.7;
}

.team-contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.team-contact-form .full {
  grid-column: 1 / -1;
}

.team-contact-form button {
  justify-self: start;
}

.value-card {
  padding: 26px;
}

.value-card svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.value-card h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.value-card p {
  margin-top: 10px;
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
}

.article-panel {
  overflow: hidden;
}

.article-panel > img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.article-panel > div {
  padding: clamp(24px, 4vw, 40px);
}

.article-panel time {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.contact-info-card svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.contact-info-card h3 {
  color: var(--navy);
  font-weight: 900;
}

.contact-info-card p,
.contact-info-card a {
  display: block;
  margin-top: 5px;
  color: #475569;
  font-size: 14px;
}

.mission-strip {
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent),
    var(--navy);
  color: white;
  box-shadow: 0 24px 70px rgba(7, 43, 97, 0.22);
}

.mission-strip > div {
  display: flex;
  gap: 18px;
  padding: 30px;
}

.mission-strip svg {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  padding: 13px;
}

.mission-strip strong,
.mission-strip small {
  display: block;
}

.mission-strip small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

#about li {
  display: flex;
  align-items: center;
  gap: 10px;
}

#about li svg {
  width: 18px;
  color: #0b66dc;
}

.quote-card {
  position: absolute;
  right: -28px;
  bottom: -20px;
  width: min(300px, 86%);
  border-radius: 16px;
  background: white;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.quote-card svg {
  color: #b9c7da;
}

.quote-card p {
  margin-top: 18px;
  color: #475569;
  line-height: 1.8;
}

.quote-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 13px;
}

.logo-strip {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  color: #111827;
  filter: grayscale(1);
  opacity: 0.72;
}

.logo-strip span {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.testimonial-carousel {
  overflow: hidden;
  margin-top: 32px;
}

.testimonial-track {
  --testimonial-gap: 20px;
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  padding: 26px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex-basis: calc((100% - var(--testimonial-gap)) / 2);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex-basis: calc((100% - (var(--testimonial-gap) * 2)) / 3);
  }
}

.stars {
  color: #f7b500;
  letter-spacing: 0.12em;
}

.testimonial-card p {
  margin-top: 16px;
  min-height: 78px;
  color: #475569;
  line-height: 1.8;
}

.testimonial-card div:last-child {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.testimonial-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.testimonial-card small {
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: width 0.2s ease, background 0.2s ease;
}

.dot.active {
  width: 22px;
  background: #0b66dc;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  position: absolute;
  left: 26px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--navy));
  content: "";
}

.timeline > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.timeline span {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.timeline strong {
  color: var(--navy);
  font-size: 17px;
}

.industry-card {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.industry-card svg {
  color: var(--gold);
}

.office-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 43, 97, 0.95), rgba(7, 43, 97, 0.88)),
    url("../images/corporate-office.jpg") center / cover;
}

.office-section > div {
  position: relative;
  z-index: 1;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card > div {
  padding: 24px;
}

.blog-card time {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.blog-card h3 {
  margin-top: 10px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.blog-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.blog-feed {
  display: grid;
  gap: 34px;
}

.blog-row {
  display: grid;
  grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.blog-row-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.blog-row-image img,
.blog-article-image {
  width: 100%;
  object-fit: cover;
}

.blog-row-image img {
  aspect-ratio: 16 / 10;
  transition: transform 0.35s ease;
}

.blog-row:hover .blog-row-image img {
  transform: scale(1.035);
}

.blog-row-body h2,
.blog-empty h2 {
  margin-top: 12px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 900;
  line-height: 1.13;
}

.blog-row-body h2 a {
  color: inherit;
}

.blog-row-body p,
.blog-empty p {
  margin-top: 14px;
  color: #475569;
  font-size: 16px;
  line-height: 1.85;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-meta a,
.blog-meta span {
  color: #64748b;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.blog-filter-note {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  padding-bottom: 18px;
}

.blog-filter-note span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.blog-filter-note a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.pagination a,
.pagination strong,
.pagination span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 43, 97, 0.16);
  border-radius: 8px;
  background: white;
  padding: 0 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.pagination strong,
.pagination a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.pagination span {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #64748b;
}

.blog-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 22px;
}

.blog-side-box {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.blog-side-box h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.blog-side-box > a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding: 14px 0;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.blog-side-box > a:first-of-type {
  border-top: 0;
}

.blog-side-box > a.is-active,
.blog-side-box > a:hover {
  color: var(--navy);
}

.blog-side-box strong {
  color: var(--gold);
  font-size: 13px;
}

.latest-post-link {
  display: grid !important;
  justify-content: stretch !important;
}

.latest-post-link time {
  margin-top: 6px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-article {
  max-width: 100%;
}

.blog-article-image {
  aspect-ratio: 16 / 7;
  border-radius: 8px;
  margin-bottom: 28px;
}

.blog-content {
  margin-top: 24px;
  color: #334155;
  font-size: 18px;
  line-height: 1.95;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  margin-top: 34px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  line-height: 1.2;
}

.blog-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.blog-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.blog-content p,
.blog-content ul,
.blog-content ol {
  margin-top: 18px;
}

.blog-content ul,
.blog-content ol {
  padding-left: 22px;
}

.blog-content ul {
  list-style: disc;
}

.blog-content ol {
  list-style: decimal;
}

.blog-content li {
  margin-top: 10px;
  padding-left: 4px;
}

.blog-content li::marker {
  color: var(--gold);
  font-weight: 800;
}

.blog-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(212, 164, 74, 0.55);
  text-underline-offset: 4px;
}

.blog-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.blog-actions-bar form {
  display: contents;
}

.blog-actions-bar button,
.blog-actions-bar a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(7, 43, 97, 0.16);
  border-radius: 8px;
  background: white;
  padding: 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.blog-actions-bar button.active,
.blog-actions-bar button:hover,
.blog-actions-bar a:hover {
  border-color: rgba(212, 164, 74, 0.45);
  color: var(--gold);
}

.blog-comments {
  margin-top: 46px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  padding-top: 34px;
}

.blog-comment-form {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.blog-comment-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-comment-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.blog-comment {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: white;
  padding: 16px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--navy);
  padding: 32px clamp(24px, 5vw, 64px);
  color: white;
  box-shadow: 0 24px 70px rgba(7, 43, 97, 0.22);
}

.cta-band > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-band > div > svg {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  padding: 14px;
}

.cta-band strong,
.cta-band small {
  display: block;
}

.cta-band strong {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 900;
}

.cta-band small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.footer-logo-img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.footer-logo strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
}

.footer-logo small {
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 900;
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #475569;
  font-size: 14px;
}

.footer-col svg {
  width: 16px;
  color: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .timeline::before {
    left: 8%;
    right: 8%;
    top: 26px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .timeline > div {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .logo-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .mission-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mission-strip > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 1023px) {
  .hero-section {
    min-height: auto;
    background: linear-gradient(180deg, #f7fbff 0%, white 100%);
  }

  .feature-float {
    bottom: 24px;
    top: auto;
    right: 18px;
  }

  .logo-lockup {
    min-height: auto;
  }

  .site-logo-img {
    width: clamp(220px, 64vw, 330px);
    max-height: 64px;
  }

  .blog-shell {
    grid-template-columns: 1fr;
  }

  .team-detail-shell,
  .team-profile,
  .team-profile-panel,
  .team-story-section,
  .team-contact-form {
    grid-template-columns: 1fr;
  }

  .team-profile-photo {
    max-width: 420px;
    padding-top: 0;
  }

  .team-fact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 132px 0 62px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .page-hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .team-profile-hero {
    padding-top: 142px;
  }

  .section {
    padding: 58px 0;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -34px auto 0;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .btn-gold {
    width: 100%;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-gold {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .text-link {
    align-items: flex-start;
  }

  .blog-row {
    grid-template-columns: 1fr;
  }

  .qa-search-form {
    grid-template-columns: 1fr;
  }

  .blog-comment-fields {
    grid-template-columns: 1fr;
  }

  .blog-row-body h2,
  .blog-empty h2 {
    font-size: 1.55rem;
  }

  .blog-content {
    font-size: 16px;
    line-height: 1.85;
  }

  .blog-article-image {
    aspect-ratio: 16 / 10;
  }
}

.qa-hero,
.qa-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 82px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .76)),
    url("../images/team-meeting.jpg") center / cover;
  color: var(--ink);
}

.qa-hero h1,
.qa-detail-hero h1 {
  max-width: 840px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  font-weight: 800;
  line-height: 1;
}

.qa-hero p,
.qa-detail-hero p {
  max-width: 700px;
  margin-top: 22px;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}

.qa-hero-panel {
  display: grid;
  gap: 14px;
}

.qa-hero-panel div {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  padding: 22px;
  backdrop-filter: blur(10px);
}

.qa-hero-panel strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
}

.qa-hero-panel span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
}

.qa-section-head,
.qa-answer-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.qa-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin: -6px 0 22px;
}

.qa-search-form label {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 8px;
  background: #fff;
  padding: 0 16px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .045);
}

.qa-search-form svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.qa-search-form input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #263247;
  font-size: 15px;
  font-weight: 700;
}

.qa-search-form input::placeholder {
  color: #94a3b8;
}

.qa-search-status {
  margin: -6px 0 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.qa-list,
.qa-answer-list {
  display: grid;
  gap: 16px;
}

.qa-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  background: white;
  padding: 16px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.qa-card.is-hidden {
  display: none;
}

.qa-card-stat {
  display: grid;
  min-height: 82px;
  place-items: center;
  align-content: center;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--navy);
}

.qa-card-stat strong {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.qa-card-stat span {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.qa-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.qa-meta span,
.qa-meta strong {
  display: inline-flex;
  align-items: center;
}

.qa-meta span:not(:last-child)::after,
.qa-meta strong::after {
  width: 4px;
  height: 4px;
  margin-left: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  content: "";
}

.qa-meta.light {
  margin-top: 18px;
  color: #64748b;
}

.qa-card h3 {
  margin-top: 8px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.06rem, 1.9vw, 1.42rem);
  font-weight: 800;
  line-height: 1.2;
}

.qa-card p {
  margin-top: 8px;
  color: #475569;
  font-size: clamp(.92rem, 1.2vw, 1rem);
  line-height: 1.65;
}

.qa-read,
.qa-back,
.qa-answer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.qa-read {
  margin-top: 16px;
}

.qa-read svg,
.qa-back svg,
.qa-answer-link svg {
  width: 17px;
  height: 17px;
}

.qa-back {
  margin-bottom: 22px;
  color: var(--navy);
}

.qa-load-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.qa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.qa-actions .qa-read {
  margin-top: 0;
}

.qa-answer-link {
  min-height: 38px;
  border: 1px solid rgba(7, 43, 97, .18);
  border-radius: 6px;
  background: #f8fafc;
  cursor: pointer;
  padding: 0 12px;
}

.qa-answer-link:hover {
  background: var(--navy);
  color: white;
}

.qa-question-panel,
.qa-answer-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  background: white;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.qa-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.qa-rich-text {
  color: #334155;
  font-size: clamp(.95rem, 1.2vw, 1.03rem);
  line-height: 1.85;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.qa-rich-text p + p,
.qa-rich-text p + ul,
.qa-rich-text p + ol,
.qa-rich-text ul + p,
.qa-rich-text ol + p {
  margin-top: 10px;
}

.qa-rich-text ul,
.qa-rich-text ol {
  margin-top: 10px;
  padding-left: 24px;
}

.qa-rich-text ul {
  list-style: disc;
}

.qa-rich-text ol {
  list-style: decimal;
}

.qa-rich-text li {
  margin-top: 6px;
  padding-left: 3px;
}

.qa-rich-text li > p {
  margin: 0;
}

.qa-rich-text h2,
.qa-rich-text h3,
.qa-rich-text h4 {
  margin-top: 16px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  line-height: 1.25;
}

.qa-rich-text blockquote {
  margin-top: 12px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  color: #475569;
}

.qa-rich-text.compact {
  font-size: clamp(.9rem, 1.05vw, .98rem);
  line-height: 1.7;
}

.qa-thread-list {
  gap: 10px;
}

.qa-thread-item {
  --thread-avatar: 30px;
  --thread-gap: 8px;
  display: grid;
  grid-template-columns: var(--thread-avatar) minmax(0, 1fr);
  gap: var(--thread-gap);
  margin-left: 0;
  position: relative;
}

.qa-thread-item::before {
  display: none;
}

.qa-thread-item[style*="--depth: 1"]::before,
.qa-thread-item[style*="--depth: 2"]::before,
.qa-thread-item[style*="--depth: 3"]::before,
.qa-thread-item[style*="--depth: 4"]::before,
.qa-thread-item[style*="--depth: 5"]::before,
.qa-thread-item[style*="--depth: 6"]::before,
.qa-thread-item[style*="--depth: 7"]::before {
  display: none;
}

.qa-thread-main {
  min-width: 0;
}

.qa-thread-bubble {
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  background: white;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .045);
  min-width: 0;
}

.qa-avatar.compact {
  width: 30px;
  height: 30px;
  font-size: 13px;
}

.qa-meta.compact {
  font-size: 11px;
}

.qa-thread-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 10px 0 6px 4px;
}

.qa-thread-actions > button {
  align-items: center;
  color: #64748b;
  display: inline-flex;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
}

.qa-thread-actions > button:hover {
  color: var(--navy);
}

.qa-thread-actions > button svg {
  width: 14px;
  height: 14px;
}

.qa-vote-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, .8);
  background: rgba(255, 255, 255, .86);
  padding: 0 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .045);
}

.qa-vote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #111827;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.qa-vote-form button:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.qa-vote-form button.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 43, 97, .22);
  transform: translateY(-1px);
}

.qa-vote-form button[data-vote-button="-1"].active {
  background: #334155;
  box-shadow: 0 10px 24px rgba(51, 65, 85, .2);
}

.qa-vote-form svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.55;
}

.qa-vote-form strong {
  min-width: 24px;
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.qa-vote-divider {
  width: 1px;
  height: 24px;
  background: #d6d9df;
}

.qa-thread-children {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  margin-left: calc((30px + 8px) * -1);
  padding-left: 0;
  width: calc(100% + 30px + 8px);
}

.qa-thread-children.is-hidden {
  display: none;
}

.qa-show-replies {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 8px 4px;
  width: fit-content;
}

.qa-show-replies svg {
  width: 15px;
  height: 15px;
}

.qa-reply-form {
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: white;
  display: grid;
  gap: 8px;
  margin: 8px 0 10px;
  padding: 10px;
}

.qa-reply-form.is-hidden {
  display: none;
}

.qa-reply-form textarea {
  min-height: 72px;
  resize: vertical;
  border: 1px solid #dbe3ee;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 14px;
}

.qa-reply-form > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-primary.compact,
.btn-secondary.compact {
  min-height: 34px;
  padding: 0 12px;
}

.accepted-badge {
  gap: 5px;
  color: #166534;
}

.accepted-badge svg {
  width: 15px;
  height: 15px;
}

.qa-answer-form,
.qa-ask-form {
  margin-top: 4px;
}

.qa-form-note {
  margin-top: -4px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.ask-float-wrap {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 60;
}

.ask-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  cursor: pointer;
  font-weight: 900;
  padding: 7px 18px 7px 7px;
  box-shadow: 0 18px 45px rgba(212, 164, 74, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ask-float:hover {
  box-shadow: 0 24px 58px rgba(212, 164, 74, .45);
  transform: translateY(-3px);
}

.ask-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.ask-word {
  font-size: 15px;
}

body.modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.auth-modal.is-open {
  display: block;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .58);
  backdrop-filter: blur(8px);
}

.auth-dialog {
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 8vh auto;
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(2, 6, 23, .28);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  color: var(--navy);
}

.auth-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #f8fafc;
}

.auth-tabs button {
  min-height: 42px;
  padding: 0 18px;
  color: #475569;
  font-size: 14px;
  font-weight: 900;
}

.auth-tabs button.active {
  background: var(--navy);
  color: white;
}

.auth-panel {
  display: none;
  margin-top: 22px;
}

.auth-panel.active {
  display: block;
}

.auth-panel h2 {
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.auth-panel p {
  margin-top: 8px;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .qa-hero,
  .qa-detail-hero {
    padding: 128px 0 58px;
  }

  .qa-section-head,
  .qa-answer-head {
    align-items: start;
    flex-direction: column;
  }

  .qa-card,
  .qa-question-panel,
  .qa-answer-card {
    grid-template-columns: 1fr;
  }

  .qa-thread-item {
    --thread-avatar: 28px;
    --thread-gap: 8px;
    grid-template-columns: var(--thread-avatar) minmax(0, 1fr);
    margin-left: 0;
  }

  .qa-thread-item::before {
    display: none;
  }

  .qa-thread-children {
    margin-left: calc((28px + 8px) * -1);
    width: calc(100% + 28px + 8px);
  }

  .qa-avatar.compact {
    width: 28px;
    height: 28px;
  }

  .qa-card-stat {
    min-height: auto;
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 8px;
    padding: 14px;
  }

  .qa-card-stat span {
    margin-top: 0;
  }

  .ask-float-wrap {
    right: 14px;
    bottom: 14px;
  }

  .auth-dialog {
    margin-top: 5vh;
    padding: 20px;
  }
}
