@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: #334155;
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  color: #0b2b4a;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

.section--cloud {
  background: #f3f6f9;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-title h2 {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}
.section-title p {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f15a24;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn--orange {
  background: #f15a24;
  color: #ffffff;
}
.btn--orange:hover {
  background: #d94e1c;
}

.btn--navy {
  background: #0b2b4a;
  color: #ffffff;
}
.btn--navy:hover {
  background: #143a5c;
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.btn--ghost-dark {
  background: transparent;
  color: #0b2b4a;
  border-color: #e2e8f0;
}
.btn--ghost-dark:hover {
  border-color: #0b2b4a;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #334155;
}
.check-list li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: #f15a24 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E") center/12px no-repeat;
}

[data-animate] {
  opacity: 0;
  will-change: transform, opacity;
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

[data-duration=fast] {
  transition-duration: 0.45s;
}

[data-duration=slow] {
  transition-duration: 1s;
}

[data-delay="1"] {
  transition-delay: 0.12s;
}

[data-delay="2"] {
  transition-delay: 0.24s;
}

[data-delay="3"] {
  transition-delay: 0.36s;
}

[data-delay="4"] {
  transition-delay: 0.48s;
}

[data-delay="5"] {
  transition-delay: 0.6s;
}

[data-animate=fade-up] {
  transform: translateY(36px);
}

[data-animate=fade-left] {
  transform: translateX(-36px);
}

[data-animate=fade-right] {
  transform: translateX(36px);
}

[data-animate=fade-in] {
  transform: none;
}

[data-animate=zoom-in] {
  transform: scale(0.94);
}

[data-animate].is-inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(11, 43, 74, 0.06);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
@media (max-width: 992px) {
  .nav {
    display: none;
  }
}
.nav > a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #0b2b4a;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f15a24;
  transition: width 0.2s ease;
}
.nav > a:hover::after, .nav > a.is-active::after {
  width: 100%;
}
.nav .nav-dropdown__trigger {
  font-size: 0.88rem;
  font-weight: 500;
  color: #0b2b4a;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav .nav-dropdown__trigger::before {
  content: "";
  position: absolute;
  left: 0;
  right: 1rem;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f15a24;
  transition: width 0.25s ease;
}
.nav .nav-dropdown__trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: none;
  border-top: none;
  background: transparent;
  opacity: 0.75;
  flex-shrink: 0;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.3s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.nav .nav-dropdown__trigger:hover::before, .nav .nav-dropdown__trigger.is-active::before {
  width: calc(100% - 1rem);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.6rem;
}
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  z-index: 120;
  min-width: 220px;
  padding: 0.45rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(11, 43, 74, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s ease;
}
.nav-dropdown__panel a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: #0b2b4a;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-dropdown__panel a:hover, .nav-dropdown__panel a:focus-visible {
  background: #f15a24;
  color: #ffffff;
}
.nav-dropdown:hover .nav-dropdown__panel, .nav-dropdown:focus-within .nav-dropdown__panel, .nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-dropdown__trigger::after, .nav-dropdown:focus-within .nav-dropdown__trigger::after, .nav-dropdown.is-open .nav-dropdown__trigger::after {
  transform: rotate(225deg) translateY(-1px);
}
.nav-dropdown:last-child .nav-dropdown__panel, .nav-dropdown:nth-last-child(2) .nav-dropdown__panel {
  left: auto;
  right: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .header-cta .btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}
@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0b2b4a;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #0b2b4a;
}
.nav-toggle span::before {
  top: -6px;
}
.nav-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1rem 0 1.25rem;
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav > a {
  display: block;
  padding: 0.75rem 1rem;
  color: #0b2b4a;
  font-weight: 500;
}
.mobile-nav__group {
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.mobile-nav__group summary {
  list-style: none;
  padding: 0.85rem 1rem;
  color: #0b2b4a;
  font-weight: 600;
  cursor: pointer;
}
.mobile-nav__group summary::-webkit-details-marker {
  display: none;
}
.mobile-nav__group summary.is-active {
  color: #f15a24;
}
.mobile-nav__group a {
  display: block;
  padding: 0.55rem 1rem 0.55rem 1.5rem;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}
.mobile-nav__group a:hover {
  color: #0b2b4a;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071e35 0%, #0b2b4a 55%, #143a5c 100%);
  color: #ffffff;
  padding: 4.5rem 0 0;
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  max-width: 14ch;
  letter-spacing: -0.02em;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 1.15rem;
  line-height: 1.6;
}
.hero .lead strong {
  color: #ffffff;
  font-weight: 700;
}

.hero--home {
  padding: 4.5rem 0 3.5rem;
}
.hero--home .hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}
@media (max-width: 992px) {
  .hero--home .hero__shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.hero--home .hero__copy {
  max-width: 34rem;
  padding: 0.5rem 0;
}
.hero--home .hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}
.hero--home .hero__img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
@media (min-width: 992px) {
  .hero--home .hero__img {
    max-width: 620px;
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f15a24;
}

.hero__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}
.hero__checks li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}
.hero__checks li::before {
  content: "✓";
  color: #f15a24;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero__brand img {
  height: 48px;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 10px;
}

.hero__panel {
  width: min(100%, 420px);
  background: rgba(255, 255, 255, 0.95);
  color: #0b2b4a;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.hero__panel .bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  align-items: end;
  height: 120px;
  margin-top: 1rem;
}
.hero__panel .bars span {
  display: block;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #f15a24, #0b2b4a);
  opacity: 0.85;
}
.hero__panel .bars span:nth-child(1) {
  height: 45%;
}
.hero__panel .bars span:nth-child(2) {
  height: 70%;
}
.hero__panel .bars span:nth-child(3) {
  height: 55%;
}
.hero__panel .bars span:nth-child(4) {
  height: 90%;
}
.hero__panel .bars span:nth-child(5) {
  height: 65%;
}

.page-hero {
  background: #f3f6f9;
  padding: 4.5rem 0;
}
.page-hero .page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .page-hero .page-hero__grid {
    grid-template-columns: 1fr;
  }
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}
.page-hero .lead {
  color: #64748b;
  font-size: 1.05rem;
}
.page-hero .features-hero__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(11, 43, 74, 0.1);
}

.illus-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.illus-card .illus {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(145deg, #f3f6f9, #e8eef4);
  position: relative;
  overflow: hidden;
}
.illus-card .illus::before {
  content: "";
  position: absolute;
  inset: 18% 14%;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 43, 74, 0.08);
}
.illus-card .illus::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 28%;
  height: 10px;
  border-radius: 6px;
  background: #f15a24;
  opacity: 0.9;
  box-shadow: 0 22px 0 #0b2b4a, 0 44px 0 rgba(11, 43, 74, 0.25), 0 66px 0 rgba(11, 43, 74, 0.15);
}

.features-cards .fbox-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.features-cards .fbox {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.features-cards .fbox:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 43, 74, 0.08);
}
@media (max-width: 992px) {
  .features-cards .fbox {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .features-cards .fbox {
    grid-column: span 12;
  }
}
.features-cards .fbox--wide {
  grid-column: span 6;
}
@media (max-width: 768px) {
  .features-cards .fbox--wide {
    grid-column: span 12;
  }
}
.features-cards .fbox__img {
  background: #f3f6f9;
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  padding: 0.55rem;
}
.features-cards .fbox__img .icon-blob {
  width: min(70%, 180px);
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(241, 90, 36, 0.15), rgba(11, 43, 74, 0.12));
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: #0b2b4a;
  font-weight: 700;
}
.features-cards .fbox__img img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.features-cards .fbox__body {
  padding: 1.25rem 1.35rem 1.5rem;
}
.features-cards .fbox__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.features-cards .fbox__body p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}
.features-cards .features-cards__cta {
  text-align: center;
  margin-top: 2.75rem;
}

.solution-section {
  background: #ffffff;
}
.solution-section .solution-section__intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
  margin: 0 auto 2.75rem;
  max-width: 1280px;
}
.solution-section .solution-section__intro h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.solution-section .solution-section__intro p {
  max-width: 34rem;
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .solution-section .solution-section__intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .solution-section .solution-section__intro h2 {
    max-width: 16ch;
  }
}
.solution-section .solution-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .solution-section .solution-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .solution-section .solution-section__cards {
    grid-template-columns: 1fr;
  }
}
.solution-section .solution-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.solution-section .solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 43, 74, 0.08);
}
.solution-section .solution-card__image {
  aspect-ratio: 4/3;
  padding: 0.55rem;
  background: #f3f6f9;
}
.solution-section .solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.solution-section .solution-card__body {
  padding: 1rem 1.05rem 1.25rem;
}
.solution-section .solution-card__body h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.solution-section .solution-card__body p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
}
.solution-section .solution-feature {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.25rem;
  align-items: center;
  max-width: 1280px;
  margin: 1.25rem auto 0;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .solution-section .solution-feature {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.65rem;
  }
}
.solution-section .solution-feature__image {
  overflow: hidden;
  border-radius: 6px;
  background: #f3f6f9;
  aspect-ratio: 900/520;
}
.solution-section .solution-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-section .solution-feature__body {
  padding: 1rem 1.25rem 1rem 0;
}
.solution-section .solution-feature__body h3 {
  max-width: 18ch;
  margin-bottom: 0.7rem;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}
.solution-section .solution-feature__body p {
  color: #64748b;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .solution-section .solution-feature__body {
    padding: 0.5rem 0.75rem 0.75rem;
  }
}
.solution-section .solution-section__cta {
  margin-top: 2rem;
  text-align: center;
}

.insight-section {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}
.insight-section .insight-section__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .insight-section .insight-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.insight-section .insight-section__copy .eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
}
.insight-section .insight-section__copy h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
}
.insight-section .insight-section__copy .lead {
  margin-bottom: 0.9rem;
  color: #334155;
  font-size: 1rem;
}
.insight-section .insight-section__copy > p:not(.lead) {
  color: #64748b;
  font-size: 0.9rem;
}
.insight-section .insight-section__stats {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  color: #64748b;
  font-size: 0.82rem;
}
.insight-section .insight-section__stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.insight-section .insight-section__stats span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #f15a24;
}
.insight-section .insight-section__stats strong {
  color: #0b2b4a;
}
.insight-section .insight-section__media {
  margin-right: -1rem;
}
.insight-section .insight-section__media img {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(11, 43, 74, 0.1);
}
@media (max-width: 992px) {
  .insight-section .insight-section__media {
    margin-right: 0;
  }
}

.workflow-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.workflow-section .workflow-section__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .workflow-section .workflow-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.workflow-section .workflow-section__media img {
  width: 100%;
  max-width: 560px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(11, 43, 74, 0.08);
}
.workflow-section .workflow-section__copy {
  max-width: 32rem;
}
.workflow-section .workflow-section__copy .workflow-point {
  margin-bottom: 1.6rem;
}
.workflow-section .workflow-section__copy .workflow-point:last-of-type {
  margin-bottom: 1.1rem;
}
.workflow-section .workflow-section__copy .workflow-point h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}
.workflow-section .workflow-section__copy .workflow-point p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.recovery-band {
  padding-top: 1rem;
  padding-bottom: 4.5rem;
}
.recovery-band .band-dark__inner {
  grid-template-columns: 0.9fr 1.1fr;
}
@media (max-width: 992px) {
  .recovery-band .band-dark__inner {
    grid-template-columns: 1fr;
  }
}
.recovery-band .recovery-band__copy .eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
}
.recovery-band .recovery-band__copy h2 {
  max-width: 15ch;
}
.recovery-band .recovery-band__copy p {
  max-width: 30rem;
}
.recovery-band .recovery-band__copy .detail-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.recovery-band .recovery-band__media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.module-benefits-band .module-benefits-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.module-benefits-band .module-benefits-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}
.module-benefits-band .module-benefits-list__num {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 8px;
  background: rgba(241, 90, 36, 0.18);
  color: #f15a24;
  font-size: 0.72rem;
  font-weight: 700;
}
.module-benefits-band .module-benefits-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-size: 0.95rem;
}
.module-benefits-band .module-benefits-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
}

.features-automation .band-dark__inner {
  grid-template-columns: 0.85fr 1.15fr;
}
@media (max-width: 992px) {
  .features-automation .band-dark__inner {
    grid-template-columns: 1fr;
  }
}
.features-automation .features-automation__media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.split .split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 992px) {
  .split .split__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
@media (min-width: 992px) {
  .split.is-reverse .split__grid .split__copy {
    order: 2;
  }
  .split.is-reverse .split__grid .split__media {
    order: 1;
  }
}
.split h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}
.split .lead {
  color: #64748b;
}

.split-media {
  background: #f3f6f9;
  border-radius: 12px;
  min-height: 280px;
  border: 1px solid #e2e8f0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.split-media .panel {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 12px 32px rgba(11, 43, 74, 0.06);
}
.split-media .panel .row-line {
  height: 10px;
  border-radius: 99px;
  background: #e8eef4;
  margin-bottom: 0.75rem;
}
.split-media .panel .row-line.accent {
  width: 40%;
  background: #f15a24;
}
.split-media .panel .row-line.short {
  width: 65%;
}

.feature-story__media {
  padding: 0;
  overflow: hidden;
}
.feature-story__media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.band-dark {
  padding: 1.5rem 0 4rem;
}
.band-dark .band-dark__inner {
  background: linear-gradient(135deg, #071e35, #0b2b4a);
  border-radius: 16px;
  padding: 3rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .band-dark .band-dark__inner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
.band-dark .band-dark__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}
.band-dark .band-dark__inner > * {
  position: relative;
  z-index: 1;
}
.band-dark .band-dark__inner h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
}
.band-dark .band-dark__inner p,
.band-dark .band-dark__inner .check-list li {
  color: rgba(255, 255, 255, 0.85);
}
.band-dark .band-dark__inner .check-list li::before {
  background-color: #f15a24;
}

.logo-wall .logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .logo-wall .logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .logo-wall .logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.logo-wall .logo-chip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-height: 72px;
  display: grid;
  place-items: center;
  color: #0b2b4a;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.85;
}

.client-preview-grid,
.client-directory-grid {
  display: grid;
  gap: 0.9rem;
}

.client-preview-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .client-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .client-preview-grid {
    grid-template-columns: 1fr;
  }
}

.client-card {
  position: relative;
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 1.1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #0b2b4a;
  text-align: center;
  font-weight: 700;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.client-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  width: 24px;
  height: 2px;
  background: #f15a24;
}
.client-card:hover {
  border-color: rgba(241, 90, 36, 0.45);
  box-shadow: 0 10px 24px rgba(11, 43, 74, 0.08);
  transform: translateY(-2px);
}
.client-card:hover img {
  transform: scale(1.04);
}

.client-preview-grid .client-card {
  min-height: 96px;
}

.client-card--name {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 0.75rem;
}
.client-card--name strong {
  color: #0b2b4a;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.clients-preview__cta {
  margin-top: 2rem;
  text-align: center;
}

.clients-page-hero {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(135deg, #071e35, #0b2b4a);
  color: #ffffff;
}
.clients-page-hero .eyebrow {
  color: #f15a24;
}
.clients-page-hero h1 {
  max-width: 18ch;
  color: #ffffff;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
}
.clients-page-hero p {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.clients-directory {
  background: #ffffff;
}
.clients-directory .clients-directory__intro {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}
.clients-directory .clients-directory__intro .eyebrow {
  font-size: 0.7rem;
}
.clients-directory .clients-directory__intro h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}
.clients-directory .clients-directory__intro p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}
.clients-directory .client-directory-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .clients-directory .client-directory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .clients-directory .client-directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .clients-directory .client-directory-grid {
    grid-template-columns: 1fr;
  }
}

.proof .proof__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .proof .proof__grid {
    grid-template-columns: 1fr;
  }
}
.proof .avatars {
  display: flex;
  margin: 1.25rem 0 0.5rem;
}
.proof .avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  background: linear-gradient(135deg, #f15a24, #0b2b4a);
}
.proof .avatars span:first-child {
  margin-left: 0;
}
.proof .stat {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0b2b4a;
}

.faq {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.faq .faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 992px) {
  .faq .faq__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.faq .faq__intro {
  max-width: 28rem;
}
.faq .faq__intro .eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
}
.faq .faq__intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}
.faq .faq__intro > p {
  color: #64748b;
  font-size: 0.95rem;
}
.faq .faq__contact-btn {
  margin-top: 1.5rem;
}
.faq .faq__view-all {
  display: flex;
  width: fit-content;
  margin-top: 0.75rem;
}

.contact-page-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #071e35, #0b2b4a);
  color: #ffffff;
}
.contact-page-hero .eyebrow {
  color: #f15a24;
}
.contact-page-hero h1 {
  max-width: 16ch;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}
.contact-page-hero p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.contact-section {
  background: #f3f6f9;
  border-top: 1px solid #e2e8f0;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.contact-section .contact-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .contact-section .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact-section .contact-section__details h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}
.contact-section .contact-section__details .lead {
  max-width: 31rem;
  color: #64748b;
  font-size: 0.95rem;
}
.contact-section .contact-demo-cta {
  margin: 1.25rem 0 0;
}
.contact-section .contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.75rem 0 2rem;
}
.contact-section .contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #334155;
}
.contact-section .contact-item:hover strong {
  color: #f15a24;
}
.contact-section .contact-item > span:last-child {
  display: grid;
  gap: 0.1rem;
}
.contact-section .contact-item small {
  color: #64748b;
  font-size: 0.75rem;
}
.contact-section .contact-item strong {
  color: #0b2b4a;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact-section .contact-item__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(241, 90, 36, 0.12);
  color: #f15a24;
  font-size: 1.05rem;
}
.contact-section .contact-location {
  max-width: 31rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid #f15a24;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 43, 74, 0.05);
}
.contact-section .contact-location .eyebrow {
  margin-bottom: 0.45rem;
  color: #f15a24;
  font-size: 0.68rem;
}
.contact-section .contact-location p {
  margin: 0 0 0.6rem;
  color: #334155;
  font-size: 0.86rem;
  line-height: 1.6;
}
.contact-section .contact-location__link {
  color: #0b2b4a;
  font-size: 0.82rem;
  font-weight: 700;
}
.contact-section .contact-location__link:hover {
  color: #f15a24;
}
.contact-section .contact-map {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin-top: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #e8eef4;
  box-shadow: 0 12px 30px rgba(11, 43, 74, 0.08);
}
.contact-section .contact-map iframe {
  display: block;
  width: 100%;
  min-height: 230px;
  border: 0;
  filter: saturate(0.82);
}
.contact-section .contact-map__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(11, 43, 74, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #0b2b4a;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(11, 43, 74, 0.14);
}
.contact-section .contact-map__badge img {
  width: auto;
  height: 20px;
}

.contact-form-card {
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(11, 43, 74, 0.08);
}
.contact-form-card .eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
}
.contact-form-card h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.contact-form-card > p {
  margin-bottom: 1.5rem;
  color: #64748b;
  font-size: 0.88rem;
}
@media (max-width: 768px) {
  .contact-form-card {
    padding: 1.25rem;
  }
}

.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form__status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}
.contact-form__status.is-pending {
  background: #f3f6f9;
  color: #64748b;
}
.contact-form__status.is-success {
  background: rgba(11, 43, 74, 0.08);
  color: #0b2b4a;
}
.contact-form__status.is-error {
  background: rgba(241, 90, 36, 0.12);
  color: #d94e1c;
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: #0b2b4a;
  font-size: 0.82rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  color: #334155;
  background: #f3f6f9;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f15a24;
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.12);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.accordion {
  border-top: 1px solid #e2e8f0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.accordion__item {
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.2rem 0.7rem;
  font: inherit;
  font-weight: 600;
  color: #0b2b4a;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s ease, background 0.25s ease;
}
.accordion__trigger > span:last-of-type {
  flex: 1;
}
.accordion__trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-right: 0.25rem;
  border-right: 2px solid #0b2b4a;
  border-bottom: 2px solid #0b2b4a;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease, border-color 0.25s ease;
}
.accordion__trigger:hover {
  color: #ffffff;
  background: #f15a24;
}
.accordion__trigger:hover::after {
  border-color: #ffffff;
}
.accordion__trigger:hover .accordion__number {
  color: #ffffff;
}
.accordion__trigger[aria-expanded=true] {
  color: #ffffff;
  background: #f15a24;
}
.accordion__trigger[aria-expanded=true]::after {
  border-color: #ffffff;
  transform: rotate(225deg) translateY(-2px);
}
.accordion__trigger[aria-expanded=true] .accordion__number {
  color: #ffffff;
}

.accordion__number {
  color: #f15a24;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.accordion__panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 3.2rem 0 3rem;
  background: #ffffff;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.45s ease;
}
.accordion__panel.is-open {
  max-height: 240px;
  padding-top: 0.45rem;
  padding-bottom: 1.35rem;
  opacity: 1;
}

@media (max-width: 768px) {
  .faq {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .accordion__trigger {
    padding-left: 0;
    padding-right: 0;
    gap: 0.75rem;
    font-size: 0.92rem;
  }
  .accordion__trigger:hover {
    padding-left: 0;
  }
  .accordion__panel {
    padding-right: 0.5rem;
    padding-left: 2.35rem;
  }
}
.cta-banner {
  background: linear-gradient(135deg, #071e35, #0b2b4a);
  color: #ffffff;
  text-align: center;
  padding: 4.5rem 0;
}
.cta-banner h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.cta-banner .note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.pillars {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.pillars .pillars__inner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11, 43, 74, 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
@media (max-width: 992px) {
  .pillars .pillars__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .pillars .pillars__inner {
    grid-template-columns: 1fr;
  }
}
.pillars .pillar {
  padding: 1.5rem;
  border-right: 1px solid #e2e8f0;
}
@media (max-width: 992px) {
  .pillars .pillar:nth-child(2n) {
    border-right: 0;
  }
  .pillars .pillar {
    border-bottom: 1px solid #e2e8f0;
  }
}
@media (min-width: 992px) {
  .pillars .pillar:last-child {
    border-right: 0;
  }
}
.pillars .pillar .mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(241, 90, 36, 0.12);
  color: #f15a24;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.pillars .pillar h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.pillars .pillar p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.testimonials .t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 992px) {
  .testimonials .t-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials .t-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}
.testimonials .t-card .quote {
  color: #f15a24;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonials .t-card p {
  color: #334155;
  font-size: 0.98rem;
}
.testimonials .t-card .who {
  margin-top: 1rem;
  font-weight: 700;
  color: #0b2b4a;
  font-size: 0.95rem;
}
.testimonials .t-card .who span {
  display: block;
  font-weight: 500;
  color: #64748b;
  font-size: 0.85rem;
}

.page-hero--compact {
  padding: 5.5rem 0 4.75rem;
  background: linear-gradient(135deg, #071e35, #0b2b4a);
  color: #ffffff;
}
.page-hero--compact .container {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.page-hero--compact .eyebrow {
  color: #f15a24;
}
.page-hero--compact h1 {
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}
.page-hero--compact p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}
.page-hero--compact .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.page-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.page-intro h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}
.page-intro p {
  margin: 0;
  color: #64748b;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

.content-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.content-card:hover {
  border-color: rgba(241, 90, 36, 0.5);
  box-shadow: 0 16px 36px rgba(11, 43, 74, 0.08);
  transform: translateY(-3px);
}
.content-card .content-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  background: rgba(241, 90, 36, 0.12);
  color: #f15a24;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.content-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}
.content-card p {
  margin-bottom: 1.25rem;
  color: #64748b;
  font-size: 0.9rem;
}
.content-card .text-link {
  margin-top: auto;
  color: #0b2b4a;
  font-size: 0.88rem;
  font-weight: 700;
}
.content-card .text-link:hover {
  color: #f15a24;
}

.content-card--media {
  overflow: hidden;
  padding: 0;
}
.content-card--media .content-card__media {
  display: grid;
  width: 100%;
  min-height: 180px;
  place-items: center;
  padding: 0.6rem;
  background: #f3f6f9;
}
.content-card--media .content-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
  border-radius: 6px;
}
.content-card--media .content-card__body {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem 1.5rem 1.5rem;
}

.detail-section .detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .detail-section .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.detail-section .detail-media {
  padding: 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f3f6f9;
}
.detail-section .detail-media img {
  width: 100%;
  border-radius: 6px;
}
.detail-section .detail-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}
.detail-section .detail-copy > p {
  color: #64748b;
}
.detail-section .detail-copy .detail-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.simple-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
}
.simple-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #334155;
  font-size: 0.92rem;
}
.simple-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: #f15a24;
}

.timeline {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.timeline .timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .timeline .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
.timeline .timeline__item strong {
  color: #f15a24;
  font-size: 0.85rem;
}
.timeline .timeline__item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}
.timeline .timeline__item p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}

.resource-list {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}
.resource-list .resource-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .resource-list .resource-list__item {
    grid-template-columns: auto 1fr;
  }
}
.resource-list .resource-list__item .content-card__icon {
  margin: 0;
}
.resource-list .resource-list__item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.resource-list .resource-list__item p {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
}

/* V2 information architecture */
.v2-home .v2-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #071e35, #0b2b4a);
  color: #ffffff;
}
.v2-home .v2-hero .hero__grid {
  align-items: center;
}
.v2-home .v2-hero h1 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.05em;
}
.v2-home .v2-hero .lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
}
.v2-home .v2-hero .eyebrow {
  color: #f15a24;
}
.v2-home .v2-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.75rem;
}
.v2-home .v2-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
@media (max-width: 768px) {
  .v2-home .v2-proof {
    grid-template-columns: repeat(2, 1fr);
  }
}
.v2-home .v2-proof div {
  padding: 1rem;
  background: rgba(7, 30, 53, 0.55);
}
.v2-home .v2-proof strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
}
.v2-home .v2-proof span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}
.v2-home .v2-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .v2-home .v2-section-heading {
    display: block;
  }
}
.v2-home .v2-section-heading h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
}
.v2-home .v2-section-heading p {
  max-width: 450px;
  margin: 0;
  color: #64748b;
}
.v2-home .detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .v2-home .detail-grid {
    gap: 2.25rem;
  }
}
@media (max-width: 768px) {
  .v2-home .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.v2-home .v2-connected-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6f9 100%);
}
.v2-home .v2-connected-section .detail-media {
  padding: 0.9rem;
  border: 1px solid rgba(11, 43, 74, 0.08);
  border-radius: 24px;
  background: radial-gradient(circle at 28% 28%, rgba(241, 90, 36, 0.1), transparent 42%), #f3f6f9;
  box-shadow: 0 24px 50px rgba(11, 43, 74, 0.12);
}
.v2-home .v2-connected-section .detail-media img {
  display: block;
  width: 100%;
  border-radius: 16px;
  mix-blend-mode: multiply;
}
.v2-home .v2-connected-section .detail-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}
.v2-home .v2-connected-section .detail-copy .btn--orange {
  margin-top: 0.4rem;
}
.v2-home .v2-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .v2-home .v2-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .v2-home .v2-module-grid {
    grid-template-columns: 1fr;
  }
}
.v2-home .v2-module-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.v2-home .v2-module-card:hover {
  border-color: rgba(241, 90, 36, 0.5);
  box-shadow: 0 18px 38px rgba(11, 43, 74, 0.1);
  transform: translateY(-4px);
}
.v2-home .v2-module-card .v2-module-card__media {
  box-sizing: border-box;
  height: 220px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: #f3f6f9;
}
.v2-home .v2-module-card .v2-module-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.v2-home .v2-module-card .v2-module-card__content {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.35rem 0.55rem;
}
.v2-home .v2-module-card .v2-module-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}
.v2-home .v2-module-card .v2-module-card__number {
  color: #f15a24;
  font-size: 0.75rem;
  font-weight: 700;
}
.v2-home .v2-module-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}
.v2-home .v2-module-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
}
.v2-home .v2-module-card .text-link {
  margin-top: auto;
  padding-top: 1.1rem;
  color: #0b2b4a;
  font-size: 0.82rem;
  font-weight: 700;
}
.v2-home .v2-module-card .v2-module-card__link {
  display: block;
  margin-top: 0;
  margin: 0 1.35rem 1.35rem;
  padding: 0.65rem 0.95rem;
  border-width: 1px;
  font-size: 0.8rem;
}
.v2-home .v2-section-action {
  margin-top: 2rem;
  text-align: center;
}
.v2-home .v2-module-card__icon,
.v2-home .v2-capability__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(241, 90, 36, 0.12);
  color: #f15a24;
  font-size: 0.7rem;
  font-weight: 700;
}
.v2-home .v2-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .v2-home .v2-capability-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .v2-home .v2-capability-grid {
    grid-template-columns: 1fr;
  }
}
.v2-home .v2-capability {
  padding: 1.5rem;
  border-radius: 12px;
  background: #f3f6f9;
}
.v2-home .v2-capability h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.05rem;
}
.v2-home .v2-capability p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
}
.v2-home .v2-logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: center;
  padding: 1.25rem 0;
  color: #0b2b4a;
  font-size: 0.92rem;
  font-weight: 700;
}

.v2-modules-category__intro {
  margin-bottom: 2.75rem;
}
.v2-modules-category .content-grid {
  gap: 1rem;
}
.v2-modules-category--cols-4 .content-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .v2-modules-category--cols-4 .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .v2-modules-category--cols-4 .content-grid {
    grid-template-columns: 1fr;
  }
}
.v2-modules-category--cols-2 .content-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .v2-modules-category--cols-2 .content-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.v2-detail-hero {
  padding: 4.5rem 0;
  background: #f3f6f9;
}
.v2-detail-hero .detail-grid {
  align-items: center;
}
.v2-detail-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
.v2-detail-hero .detail-media {
  border: 0;
  background: transparent;
}

.v2-feature-band {
  padding: 5rem 0;
}
.v2-feature-band--navy {
  background: #0b2b4a;
  color: #ffffff;
}
.v2-feature-band--navy h2,
.v2-feature-band--navy h3 {
  color: #ffffff;
}
.v2-feature-band--navy p,
.v2-feature-band--navy li {
  color: rgba(255, 255, 255, 0.78);
}

.leadership-page .leadership-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  color: #ffffff;
  background: #071e35;
}
.leadership-page .leadership-hero__bg {
  position: absolute;
  inset: 0;
}
.leadership-page .leadership-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.leadership-page .leadership-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 30, 53, 0.92) 0%, rgba(11, 43, 74, 0.78) 48%, rgba(7, 30, 53, 0.7) 100%);
}
.leadership-page .leadership-hero .container {
  position: relative;
  z-index: 1;
}
.leadership-page .leadership-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: end;
}
@media (max-width: 992px) {
  .leadership-page .leadership-hero__grid {
    grid-template-columns: 1fr;
  }
}
.leadership-page .leadership-hero .eyebrow {
  color: #f15a24;
}
.leadership-page .leadership-hero h1 {
  max-width: 14ch;
  margin: 0.35rem 0 1rem;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
}
.leadership-page .leadership-hero__lead {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
}
.leadership-page .leadership-hero__traits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}
@media (max-width: 992px) {
  .leadership-page .leadership-hero__traits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .leadership-page .leadership-hero__traits {
    grid-template-columns: 1fr 1fr;
  }
}
.leadership-page .leadership-hero__trait {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}
.leadership-page .leadership-hero__trait span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
}
.leadership-page .leadership-hero__icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #f15a24;
  font-size: 0.78rem;
  font-weight: 700;
}
.leadership-page .leadership-hero__quote {
  justify-self: end;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 992px) {
  .leadership-page .leadership-hero__quote {
    justify-self: start;
  }
}
.leadership-page .leadership-hero__quote em {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2em;
  margin: 0;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid #f15a24;
  font-style: italic;
}
@media (max-width: 992px) {
  .leadership-page .leadership-hero__quote em {
    align-items: flex-start;
  }
}
.leadership-page .leadership-hero__quote span {
  display: block;
  white-space: nowrap;
}
.leadership-page .leadership-intro {
  padding: 4.5rem 0 2rem;
}
.leadership-page .leadership-intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 992px) {
  .leadership-page .leadership-intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.leadership-page .leadership-intro__copy h2 {
  max-width: 12ch;
  margin: 0.4rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}
.leadership-page .leadership-intro__copy p {
  max-width: 34rem;
  color: #64748b;
  line-height: 1.7;
}
.leadership-page .leader-feature {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(11, 43, 74, 0.06);
}
@media (max-width: 768px) {
  .leadership-page .leader-feature {
    grid-template-columns: 1fr;
  }
}
.leadership-page .leader-feature__photo {
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 8px;
  background: linear-gradient(160deg, #143a5c, #071e35);
}
.leadership-page .leader-feature__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.leadership-page .leader-feature__avatar {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.leadership-page .leader-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.25rem 0.15rem;
}
.leadership-page .leader-feature h3 {
  margin: 0;
  font-size: 1.35rem;
}
.leadership-page .leader-feature__role {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}
.leadership-page .leader-feature__exp {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #0b2b4a;
  font-size: 0.82rem;
  font-weight: 700;
}
.leadership-page .leader-feature__exp::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f15a24;
}
.leadership-page .leader-feature__bio {
  margin: 0.35rem 0 0.15rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}
.leadership-page .leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.35rem 0 0.65rem;
}
.leadership-page .leader-tags span {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(11, 43, 74, 0.06);
  color: #143a5c;
  font-size: 0.72rem;
  font-weight: 600;
}
.leadership-page .leader-link {
  color: #0b2b4a;
  font-size: 0.86rem;
  font-weight: 700;
}
.leadership-page .leader-link:hover {
  color: #f15a24;
}
.leadership-page .leadership-team {
  padding: 1.5rem 0 4.5rem;
}
.leadership-page .leadership-team__heading {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
}
.leadership-page .leadership-team__heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.leadership-page .leadership-team__heading::after {
  content: "";
  width: 4rem;
  height: 3px;
  background: #f15a24;
}
.leadership-page .leadership-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
@media (max-width: 1200px) {
  .leadership-page .leadership-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .leadership-page .leadership-team__grid {
    grid-template-columns: 1fr;
  }
}
.leadership-page .leader-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(11, 43, 74, 0.04);
}
.leadership-page .leader-card__photo {
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: linear-gradient(160deg, #e8eef4, #143a5c);
}
.leadership-page .leader-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.leadership-page .leader-card__avatar {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}
.leadership-page .leader-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}
.leadership-page .leader-card__role {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}
.leadership-page .leader-card__exp {
  margin: 0.55rem 0;
  color: #0b2b4a;
  font-size: 0.78rem;
  font-weight: 700;
}
.leadership-page .leader-card__bio {
  margin: 0 0 0.75rem;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.55;
}
.leadership-page .leader-card .leader-link {
  margin-top: auto;
}
.leadership-page .leadership-departments {
  padding: 4.5rem 0;
  background: #f3f6f9;
}
.leadership-page .leadership-departments__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 992px) {
  .leadership-page .leadership-departments__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.leadership-page .leadership-departments__copy h2 {
  max-width: 12ch;
  margin: 0.4rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.leadership-page .leadership-departments__copy p {
  max-width: 32rem;
  margin: 0 0 1.5rem;
  color: #64748b;
  line-height: 1.7;
}
.leadership-page .leadership-departments__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem 1.5rem;
}
@media (max-width: 768px) {
  .leadership-page .leadership-departments__list {
    grid-template-columns: 1fr;
  }
}
.leadership-page .leadership-departments__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}
.leadership-page .leadership-departments__item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}
.leadership-page .leadership-departments__item p {
  margin: 0;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.5;
}
.leadership-page .leadership-departments__icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 10px;
  background: rgba(241, 90, 36, 0.12);
  color: #f15a24;
  font-size: 0.72rem;
  font-weight: 700;
}
.leadership-page .leadership-cta {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0;
  color: #ffffff;
  background: #071e35;
}
.leadership-page .leadership-cta__bg {
  position: absolute;
  inset: 0;
}
.leadership-page .leadership-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.leadership-page .leadership-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 53, 0.94) 0%, rgba(11, 43, 74, 0.82) 55%, rgba(7, 30, 53, 0.75) 100%);
}
.leadership-page .leadership-cta .container {
  position: relative;
  z-index: 1;
}
.leadership-page .leadership-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .leadership-page .leadership-cta__grid {
    grid-template-columns: 1fr;
  }
}
.leadership-page .leadership-cta .eyebrow {
  color: #f15a24;
}
.leadership-page .leadership-cta h2 {
  max-width: 18ch;
  margin: 0.4rem 0 0.85rem;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.leadership-page .leadership-cta p {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.journey-page .journey-intro {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
.journey-page .journey-intro .container {
  max-width: 48rem;
}
.journey-page .journey-intro p {
  margin: 0 0 1rem;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}
.journey-page .journey-intro__lead {
  color: #0b2b4a;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
}
.journey-page .journey-e {
  padding: 2rem 0 4rem;
  background: #ffffff;
}
.journey-page .journey-e__head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.journey-page .journey-e__head h2 {
  margin: 0.35rem 0 0.65rem;
  color: #0b2b4a;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.journey-page .journey-e__head p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}
.journey-page .journey-e__layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.78fr) minmax(0, 1.4fr);
  gap: 2.75rem;
  align-items: start;
}
@media (max-width: 992px) {
  .journey-page .journey-e__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.journey-page .journey-e__sticky {
  position: sticky;
  top: calc(78px + 1rem);
  padding: 0.25rem 0 1.5rem;
}
@media (max-width: 992px) {
  .journey-page .journey-e__sticky {
    position: relative;
    top: auto;
    padding-bottom: 0;
  }
}
.journey-page .journey-e__panel {
  padding: 0;
  background: transparent;
}
.journey-page .journey-e__active-year {
  margin: 0;
  color: #0b2b4a;
  font-size: clamp(3.2rem, 7vw, 4.75rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  transition: opacity 0.25s ease;
}
.journey-page .journey-e__active-label {
  margin: 0.55rem 0 1.15rem;
  color: #f15a24;
  font-size: 1.05rem;
  font-weight: 700;
}
.journey-page .journey-e__dots {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}
@media (max-width: 992px) {
  .journey-page .journey-e__dots {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
    border-top: 0;
    background: transparent;
    padding-top: 0.15rem;
  }
}
.journey-page .journey-e__dot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 0.95rem 0.85rem;
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
  background: #ffffff;
  color: #0b2b4a;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}
.journey-page .journey-e__dot .journey-e__num {
  flex: 0 0 auto;
  color: #f15a24;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.journey-page .journey-e__dot > span:last-of-type {
  flex: 1;
  line-height: 1.2;
  color: inherit;
}
.journey-page .journey-e__dot:hover, .journey-page .journey-e__dot.is-active {
  color: #ffffff;
  background: #f15a24;
}
.journey-page .journey-e__dot:hover .journey-e__num, .journey-page .journey-e__dot.is-active .journey-e__num {
  color: #ffffff;
}
@media (max-width: 992px) {
  .journey-page .journey-e__dot {
    width: auto;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  .journey-page .journey-e__dot.is-active, .journey-page .journey-e__dot:hover {
    border-color: #f15a24;
  }
}
.journey-page .journey-e__progress {
  margin-top: 1.35rem;
  padding-top: 0.25rem;
}
.journey-page .journey-e__progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.journey-page .journey-e__progress-top span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.journey-page .journey-e__progress-top strong {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 700;
}
.journey-page .journey-e__progress-top strong em {
  color: #f15a24;
  font-style: normal;
}
.journey-page .journey-e__progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(11, 43, 74, 0.1);
}
.journey-page .journey-e__progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #f15a24;
  transition: width 0.35s ease;
}
.journey-page .journey-e__tip {
  margin-top: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  background: rgba(11, 43, 74, 0.04);
}
.journey-page .journey-e__tip strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #0b2b4a;
  font-size: 0.95rem;
}
.journey-page .journey-e__tip p {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.5;
}
.journey-page .journey-e__stream {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0.35rem 0 2rem 1.75rem;
}
.journey-page .journey-e__stream::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  bottom: 2rem;
  left: 0.35rem;
  width: 2px;
  background: #e2e8f0;
}
@media (max-width: 992px) {
  .journey-page .journey-e__stream {
    padding-left: 1.4rem;
  }
}
.journey-page .journey-e__story {
  position: relative;
  padding: 0 0 2.75rem;
}
.journey-page .journey-e__story::after {
  content: "";
  position: absolute;
  top: 1.55rem;
  bottom: 0;
  left: -1.4rem;
  width: 2px;
  background: transparent;
  transition: background 0.3s ease;
  pointer-events: none;
}
@media (max-width: 992px) {
  .journey-page .journey-e__story::after {
    left: -1.2rem;
  }
}
.journey-page .journey-e__story.is-current::after {
  top: 1.15rem;
  background: #f15a24;
}
.journey-page .journey-e__story.is-current .journey-e__node {
  border-color: #f15a24;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.18);
}
.journey-page .journey-e__story.is-current .journey-e__phase {
  color: #ffffff;
  background: #f15a24;
}
.journey-page .journey-e__node {
  position: absolute;
  top: 1.15rem;
  left: -1.55rem;
  z-index: 1;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid rgba(11, 43, 74, 0.22);
  border-radius: 50%;
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 992px) {
  .journey-page .journey-e__node {
    left: -1.35rem;
  }
}
.journey-page .journey-e__story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}
.journey-page .journey-e__story-meta .eyebrow {
  margin: 0;
}
.journey-page .journey-e__phase {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 43, 74, 0.06);
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.journey-page .journey-e__story h3 {
  margin: 0 0 0.75rem;
  color: #0b2b4a;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}
.journey-page .journey-e__story > p {
  max-width: 40rem;
  margin: 0 0 1.25rem;
  color: #64748b;
  line-height: 1.7;
}
.journey-page .journey-e__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .journey-page .journey-e__cards {
    grid-template-columns: 1fr;
  }
}
.journey-page .journey-e__card {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: rgba(11, 43, 74, 0.03);
  border: 1px solid rgba(11, 43, 74, 0.05);
  will-change: transform;
}
.journey-page .journey-e__card span {
  display: block;
  margin-bottom: 0.4rem;
  color: #f15a24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-page .journey-e__card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0b2b4a;
  font-size: 1.02rem;
  line-height: 1.3;
}
.journey-page .journey-e__card p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}
.journey-page .journey-e__card--navy {
  background: #0b2b4a;
  border-color: transparent;
}
.journey-page .journey-e__card--navy span {
  color: #f15a24;
}
.journey-page .journey-e__card--navy strong {
  color: #ffffff;
}
.journey-page .journey-e__card--navy p {
  color: rgba(255, 255, 255, 0.75);
}
.journey-page .journey-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 992px) {
  .journey-page .journey-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .journey-page .journey-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.journey-page .journey-stat {
  padding: 1.35rem 1.2rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(11, 43, 74, 0.06);
}
.journey-page .journey-stat strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #0b2b4a;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1;
}
.journey-page .journey-stat span {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.45;
}
.journey-page .journey-growth__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 992px) {
  .journey-page .journey-growth__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .journey-page .journey-growth__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.journey-page .journey-growth__item {
  padding: 1rem 0.9rem;
  border-top: 3px solid #f15a24;
  background: rgba(11, 43, 74, 0.03);
  border-radius: 0 0 0.75rem 0.75rem;
}
.journey-page .journey-growth__item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #0b2b4a;
  font-size: 1.1rem;
}
.journey-page .journey-growth__item p {
  margin: 0;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.5;
}
.journey-page .journey-growth__note {
  max-width: 46rem;
  margin: 1.75rem 0 0;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.65;
}
.journey-page .journey-close .eyebrow {
  color: #f15a24;
}
.journey-page .journey-close__inner {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .journey-page .journey-close__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.journey-page .journey-close__inner h2 {
  max-width: 18ch;
  margin: 0.4rem 0 0.85rem;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.journey-page .journey-close__inner p {
  max-width: 40rem;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
.journey-page .journey-close__sub {
  color: rgba(255, 255, 255, 0.7) !important;
}

.awards-page .awards-hero {
  padding: 0;
  background: #f3f6f9;
}
.awards-page .awards-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(36rem, 78vh);
}
@media (max-width: 992px) {
  .awards-page .awards-hero__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}
.awards-page .awards-hero__copy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4.5rem clamp(1.5rem, 3vw, 2.5rem) 4.5rem max(1rem, (100vw - 1280px) / 2);
  background: #071e35;
  color: #ffffff;
  border-right: 3px solid #f15a24;
  text-align: left;
}
@media (max-width: 992px) {
  .awards-page .awards-hero__copy {
    padding: 3.5rem max(1rem, (100vw - 1280px) / 2);
    border-right: 0;
    border-bottom: 3px solid #f15a24;
  }
}
.awards-page .awards-hero__copy-inner {
  width: 100%;
  max-width: 32rem;
  margin-left: 0;
}
.awards-page .awards-hero .eyebrow {
  color: #f15a24;
}
.awards-page .awards-hero h1 {
  max-width: 14ch;
  margin: 0.45rem 0 1rem;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  line-height: 1.12;
}
.awards-page .awards-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
}
.awards-page .awards-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-start;
  margin-top: 1.75rem;
}
.awards-page .awards-hero__chips span {
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
}
.awards-page .awards-hero__showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 3.25rem 2rem;
  background: #f3f6f9;
}
.awards-page .awards-hero__frame {
  margin: 0;
  width: min(100%, 19.5rem);
  padding: 0;
  border: 0;
  background: #f3f6f9;
  box-shadow: none;
}
.awards-page .awards-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(11, 43, 74, 0.16));
}
.awards-page .awards-hero__caption {
  text-align: center;
}
.awards-page .awards-hero__caption-title {
  margin: 0;
  color: #f15a24;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.awards-page .awards-hero__caption-sub {
  margin: 0.4rem 0 0;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}
.awards-page .awards-feature {
  padding: 4.5rem 0;
}
.awards-page .awards-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .awards-page .awards-feature__grid {
    grid-template-columns: 1fr;
  }
}
.awards-page .awards-feature__copy h2 {
  margin: 0.35rem 0 0.5rem;
  color: #0b2b4a;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.2;
}
.awards-page .awards-feature__copy p {
  margin: 0 0 1rem;
  color: #64748b;
  line-height: 1.7;
}
.awards-page .awards-feature__meta {
  margin-bottom: 1.25rem !important;
  color: #0b2b4a !important;
  font-weight: 700;
}
.awards-page .awards-feature__media {
  align-self: stretch;
}
.awards-page .awards-feature__photo {
  margin: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #e8eef4;
}
.awards-page .awards-feature__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}
.awards-page .awards-teaser {
  margin-top: 1.5rem !important;
  padding-top: 1.15rem;
  border-top: 3px solid #f15a24;
  color: #0b2b4a !important;
  font-size: 1.08rem !important;
  font-style: italic;
  font-weight: 600;
  line-height: 1.45 !important;
}
.awards-page .awards-video {
  padding: 4rem 0;
}
.awards-page .awards-video__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 992px) {
  .awards-page .awards-video__grid {
    grid-template-columns: 1fr;
  }
}
.awards-page .awards-video__copy h2 {
  margin: 0.35rem 0 0.85rem;
  color: #0b2b4a;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}
.awards-page .awards-video__copy p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}
.awards-page .awards-video__frame {
  overflow: hidden;
  border-radius: 12px;
  background: #071e35;
  box-shadow: 0 18px 40px rgba(11, 43, 74, 0.12);
}
.awards-page .awards-video__frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #071e35;
}
.awards-page .awards-story .detail-copy h2 {
  max-width: 16ch;
}
.awards-page .awards-story .detail-copy > p {
  margin: 0 0 1rem;
}
.awards-page .awards-commitment {
  padding: 4.5rem 0 5rem;
  background: #071e35;
  color: #ffffff;
}
.awards-page .awards-commitment .eyebrow {
  color: #f15a24;
}
.awards-page .awards-commitment__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: end;
}
@media (max-width: 992px) {
  .awards-page .awards-commitment__grid {
    grid-template-columns: 1fr;
  }
}
.awards-page .awards-commitment h2 {
  margin: 0.4rem 0 1rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.25;
}
.awards-page .awards-commitment p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
.awards-page .awards-commitment__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.awards-page .awards-commitment__traits li {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}
.awards-page .awards-commitment__close {
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 3px solid #f15a24;
}
.awards-page .awards-commitment__close p {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}

.blog-page .blog-hero {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0 4rem;
  color: #ffffff;
  background: #071e35;
}
.blog-page .blog-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 20%, rgba(241, 90, 36, 0.2), transparent 42%), radial-gradient(ellipse at 85% 80%, rgba(20, 58, 92, 0.7), transparent 50%), linear-gradient(135deg, #071e35 0%, #0b2b4a 55%, #071e35 100%);
}
.blog-page .blog-hero .container {
  position: relative;
  z-index: 1;
}
.blog-page .blog-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: end;
}
@media (max-width: 992px) {
  .blog-page .blog-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.blog-page .blog-hero__copy {
  max-width: 38rem;
}
.blog-page .blog-hero .eyebrow {
  color: #f15a24;
}
.blog-page .blog-hero h1 {
  max-width: 12ch;
  margin: 0.4rem 0 1rem;
  color: #ffffff;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
}
.blog-page .blog-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.7;
}
.blog-page .blog-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}
.blog-page .blog-hero__chips span {
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
}
.blog-page .blog-hero__panel {
  display: grid;
  gap: 1rem;
  justify-self: end;
  width: min(100%, 22rem);
}
@media (max-width: 992px) {
  .blog-page .blog-hero__panel {
    justify-self: start;
    width: 100%;
  }
}
.blog-page .blog-hero__panel-card {
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.blog-page .blog-hero__panel-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: #f15a24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.blog-page .blog-hero__panel-title {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}
.blog-page .blog-hero__panel-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
}
.blog-page .blog-hero__panel-stat {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(241, 90, 36, 0.12);
}
.blog-page .blog-hero__panel-stat strong {
  color: #f15a24;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.blog-page .blog-hero__panel-stat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
}
.blog-page .blog-listing {
  padding: 3rem 0 5rem;
  background: #ffffff;
}
.blog-page .blog-listing__layout {
  display: grid;
  grid-template-columns: 16.5rem minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .blog-page .blog-listing__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.blog-page .blog-sidebar {
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}
@media (max-width: 992px) {
  .blog-page .blog-sidebar {
    position: static;
  }
}
.blog-page .blog-sidebar__label {
  margin: 0;
  padding: 0.95rem 1rem 0.75rem;
  color: rgba(11, 43, 74, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.blog-page .blog-categories {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
}
.blog-page .blog-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e2e8f0;
}
.blog-page .blog-categories li + li .blog-categories__item {
  border-top: 1px solid #e2e8f0;
}
.blog-page .blog-categories__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 0.95rem 0.95rem;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #0b2b4a;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}
.blog-page .blog-categories__item:hover, .blog-page .blog-categories__item.is-active {
  color: #ffffff;
  background: #f15a24;
}
.blog-page .blog-categories__item:hover .blog-categories__num,
.blog-page .blog-categories__item:hover .blog-categories__count, .blog-page .blog-categories__item.is-active .blog-categories__num,
.blog-page .blog-categories__item.is-active .blog-categories__count {
  color: #ffffff;
}
.blog-page .blog-categories__num {
  flex: 0 0 auto;
  color: #f15a24;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.blog-page .blog-categories__name {
  flex: 1;
  line-height: 1.2;
  color: inherit;
}
.blog-page .blog-categories__count {
  flex: 0 0 auto;
  color: rgba(11, 43, 74, 0.4);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 0.25s ease;
}
.blog-page .blog-newsletter {
  padding: 1.35rem 1.2rem 1.4rem;
  border-radius: 12px;
  background: linear-gradient(165deg, #071e35 0%, #0b2b4a 70%);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 43, 74, 0.18);
}
.blog-page .blog-newsletter__eyebrow {
  margin: 0 0 0.55rem;
  color: #f15a24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.blog-page .blog-newsletter h2 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.25;
}
.blog-page .blog-newsletter p {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}
.blog-page .blog-newsletter .btn {
  width: 100%;
  justify-content: center;
}
.blog-page .blog-main {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}
.blog-page .blog-featured {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 43, 74, 0.05);
}
.blog-page .blog-featured__link {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .blog-page .blog-featured__link {
    grid-template-columns: 1fr;
  }
}
.blog-page .blog-featured__media {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  background: radial-gradient(circle at 85% 120%, rgba(241, 90, 36, 0.55), transparent 42%), linear-gradient(160deg, #071e35, #143a5c);
}
.blog-page .blog-featured__media::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 2.5rem;
  height: 2px;
  background: #f15a24;
}
.blog-page .blog-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-page .blog-featured .blog-media__mark {
  position: absolute;
  top: 1.55rem;
  left: 1.25rem;
  color: #f15a24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.blog-page .blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.75rem 1.6rem;
}
.blog-page .blog-featured__cat {
  margin: 0;
  color: #f15a24;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-page .blog-featured h2 {
  margin: 0;
  color: #0b2b4a;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.25;
}
.blog-page .blog-featured__excerpt {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}
.blog-page .blog-featured__meta {
  margin: 0.35rem 0 0;
  color: rgba(11, 43, 74, 0.45);
  font-size: 0.82rem;
  font-weight: 600;
}
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-page .blog-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-page .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 43, 74, 0.08);
}
.blog-page .blog-card__link {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
}
.blog-page .blog-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8eef4;
}
.blog-page .blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-page .blog-card__media--blue {
  background: linear-gradient(145deg, #d7e6f4, #b7cfe6);
}
.blog-page .blog-card__media--peach {
  background: linear-gradient(145deg, #f7e0d4, #efc4ae);
}
.blog-page .blog-card__media--mint {
  background: linear-gradient(145deg, #d9ebe4, #b9d8cb);
}
.blog-page .blog-card__media--sand {
  background: linear-gradient(145deg, #efe6d6, #dfd0b5);
}
.blog-page .blog-card__media--navy {
  background: linear-gradient(145deg, #143a5c, #071e35);
}
.blog-page .blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.25rem;
}
.blog-page .blog-card__rule {
  display: block;
  width: 1.75rem;
  height: 2px;
  background: #f15a24;
}
.blog-page .blog-card__cat {
  margin: 0;
  color: #f15a24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-page .blog-card h3 {
  margin: 0;
  color: #0b2b4a;
  font-size: 1.05rem;
  line-height: 1.35;
}
.blog-page .blog-card__excerpt {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}
.blog-page .blog-card__meta {
  margin-top: auto;
  padding-top: 0.55rem;
  color: rgba(11, 43, 74, 0.45);
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-page .blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
.blog-page .blog-pagination__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.blog-page .blog-pagination__btn {
  display: grid;
  min-width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  padding: 0 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #0b2b4a;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.blog-page .blog-pagination__btn:hover {
  border-color: rgba(241, 90, 36, 0.45);
  color: #f15a24;
}
.blog-page .blog-pagination__btn.is-active {
  border-color: #f15a24;
  background: #f15a24;
  color: #ffffff;
}
.blog-page .blog-pagination__status {
  margin: 0;
  color: rgba(11, 43, 74, 0.45);
  font-size: 0.85rem;
  font-weight: 600;
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6f9 100%);
  color: #64748b;
  padding: 4.5rem 0 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 120px;
  height: 3px;
  background: #f15a24;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-grid--v2 {
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}
@media (max-width: 992px) {
  .footer-grid--v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-grid--v2 {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-brand img {
  width: auto;
  height: 42px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.92rem;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  color: #0b2b4a;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  color: #64748b;
}
.footer-col a:hover {
  color: #0b2b4a;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/*# sourceMappingURL=main.css.map */
