:root {
  --deep-navy: #452873;
  --blue: #452873;
  --purple: #452873;
  --orange: #EB7F2C;
  --orange-soft: #fff1e8;
  --cyan: #fff4ec;
  --cyan-dark: #EB7F2C;
  --white: #ffffff;
  --lab-white: #ffffff;
  --surface: #fff8f3;
  --surface-muted: #f6f0fb;
  --text: #231b2f;
  --text-muted: #665d72;
  --border: #eadfea;
  --success: #25d366;
  --container: 1180px;
  --section-space: 72px;
  --shadow: 0 8px 24px rgba(69, 40, 115, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--lab-white);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: inherit;
}

button {
  font: inherit;
}

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

.xaxis {
  padding: 70px 0;
}

.section-light {
  background: var(--white);
}

.section-white {
  background: var(--white);
}

.section-navy {
  background: var(--white);
  color: var(--text);
}

h1,
h2,
h3,
h4,
.brand-name,
.btn {
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.12;
}

h2 {
  color: var(--deep-navy);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.18;
}

h3 {
  color: var(--deep-navy);
  font-size: 1.3rem;
  line-height: 1.3;
}

p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: none;
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
}

.btn-dark {
  background: var(--deep-navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-cyan {
  background: var(--orange);
  color: var(--white);
}

.btn-cyan:hover {
  background: var(--deep-navy);
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.text-link {
  align-items: center;
  color: var(--orange);
  display: inline-flex;
  gap: 8px;
  font-weight: 800;
  margin-top: auto;
}

.text-link:hover {
  color: var(--purple);
}

.section-heading {
  max-width: 880px;
}

.section-heading p {
  margin-top: 14px;
}

.center-heading {
  margin: 0 auto 42px;
  text-align: center;
}

.section-action {
  margin-top: 40px;
  text-align: center;
}

.section-label,
.card-kicker {
  color: var(--orange);
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cyan-heading {
  color: var(--deep-navy);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.inner-breadcrumb {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  min-height: 310px;
  padding: 120px 0 54px;
  position: relative;
}

.inner-breadcrumb-overlay {
  background: linear-gradient(90deg, rgba(69, 40, 115, 0.9), rgba(69, 40, 115, 0.68));
  inset: 0;
  position: absolute;
}

.inner-breadcrumb .container {
  position: relative;
  z-index: 1;
}

.inner-breadcrumb-content {
  max-width: 760px;
}

.inner-breadcrumb-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.45rem);
  margin-bottom: 14px;
}

.inner-breadcrumb-content nav {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.inner-breadcrumb-content a {
  color: #ffd7bb;
}

.inner-breadcrumb-content i {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
}

.site-header {
  background: var(--white);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(234, 223, 234, 0.86);
  inset: 0 0 auto;
  position: fixed;
  transition: box-shadow 0.22s ease, background 0.22s ease;
  z-index: 100;
}

.site-header.is-scrolled {
  background: var(--white);
  box-shadow: none;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  height: 44px;
  object-fit: contain;
  width: auto;
}

.brand-mark {
  align-items: center;
  background: var(--deep-navy);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand-name {
  color: var(--deep-navy);
  font-size: 1.08rem;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  align-items: center;
  border-radius: 8px;
  color: #435065;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 4px;
  padding: 12px 13px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  background: var(--orange-soft);
  color: var(--deep-navy);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.nav-dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(69, 40, 115, 0.08);
  display: grid;
  gap: 4px;
  left: 0;
  min-width: 300px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 2px);
  transform: translateY(2px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  visibility: hidden;
}

.nav-dropdown.is-hovered .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown-menu a {
  border-radius: 8px;
  color: var(--text-muted);
  display: grid;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.35;
  padding: 8px 10px;
}

.nav-dropdown-menu a:hover {
  background: transparent;
  color: var(--text);
}

.nav-dropdown-menu span {
  color: inherit;
  font-weight: inherit;
}

.nav-dropdown-menu small {
  color: var(--text-muted);
}

.dropdown-all {
  color: var(--text-muted);
  font-weight: 400;
}

.solutions-dropdown .solutions-menu {
  min-width: 340px;
}

.solution-category {
  position: relative;
}

.solution-category::after {
  bottom: 0;
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  width: 16px;
}

.solution-category-link {
  align-items: center;
  display: flex !important;
  justify-content: space-between;
  gap: 18px;
  line-height: 1.2;
}

.solution-category-link i {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.solution-submenu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(69, 40, 115, 0.08);
  display: grid;
  gap: 4px;
  left: calc(100% - 1px);
  min-width: 300px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.solution-category:hover .solution-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.solution-submenu a {
  color: var(--text-muted);
}

@media (min-width: 901px) {
  .solutions-dropdown .solutions-menu {
    align-items: start;
    border-radius: 8px;
    box-shadow: 0 22px 45px rgba(69, 40, 115, 0.12);
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 50%;
    max-height: 65vh;
    min-width: 0;
    overflow-y: auto;
    padding: 18px;
    position: fixed;
    right: auto;
    top: 76px;
    transform: translate(-50%, -10px);
    width: min(calc(100vw - 32px), var(--container));
  }

  .solutions-dropdown.is-hovered .solutions-menu {
    transform: translate(-50%, 0);
  }

  .solutions-menu .solution-category {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .solutions-menu .solution-category:first-child {
    grid-column: auto;
  }

  .solution-category::after {
    display: none;
  }

  .solutions-menu .solution-category-link {
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    min-height: 32px;
    padding: 0 0 8px !important;
  }

  .solutions-menu .solution-category-link span {
    color: inherit;
  }

  .solutions-menu .solution-category-link i {
    display: none;
  }

  .solutions-menu .solution-submenu {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-top: 1px solid var(--border);
    gap: 2px;
    grid-template-columns: 1fr;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 8px 0 0;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .solutions-menu .solution-submenu a {
    align-items: center;
    display: flex;
    font-size: 0.84rem;
    font-weight: 400;
    justify-content: space-between;
    line-height: 1.28;
    min-height: 28px;
    padding: 5px 0;
  }

  .solutions-menu .solution-submenu a::after {
    color: var(--text-muted);
    content: "›";
    font-size: 1rem;
    line-height: 1;
    margin-left: 10px;
  }

  .solutions-menu .solution-submenu a:hover::after {
    color: var(--text);
  }

  .solutions-menu .dropdown-all {
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    color: var(--text-muted);
    grid-column: 1 / -1;
    justify-content: center;
    font-size: 0.86rem;
    font-weight: 400;
    min-height: 32px;
    padding-top: 8px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .solutions-dropdown .solutions-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.icon-btn,
.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--deep-navy);
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
}

.menu-toggle {
  display: none;
}

.hero-section {
  align-items: center;
  display: flex;
  min-height: 720px;
  overflow: hidden;
  padding-top: 76px;
  position: relative;
}

.hero-bg,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-bg img {
  filter: saturate(0.85) brightness(0.82);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(69, 40, 115, 0.92) 0%, rgba(69, 40, 115, 0.72) 58%, rgba(69, 40, 115, 0.18) 100%);

}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  color: var(--white);
  margin-top: 18px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  margin-top: 22px;
  max-width: 620px;
}

.eyebrow {
  align-items: center;
  color: #ffd7bb;
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-line {
  background: var(--orange);
  height: 1px;
  width: 48px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-width: 132px;
  padding: 14px 16px;
}

.hero-metrics strong {
  color: #ffd7bb;
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.82rem;
  margin-top: 7px;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card,
.blog-card,
.empty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
  transition: 0.24s ease;
}

.glass-card:hover,
.blog-card:hover {
  border-color: rgba(235, 127, 44, 0.45);
  box-shadow: none;
  transform: none;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px;
}

.pillar-icon {
  align-items: center;
  background: var(--orange-soft);
  border-radius: 8px;
  color: var(--orange);
  display: flex;
  font-size: 1.7rem;
  height: 52px;
  justify-content: center;
  margin-bottom: 22px;
  width: 52px;
}

.pillar-card h3 {
  margin-bottom: 12px;
}

.pillar-card p {
  margin-bottom: 22px;
}

.solution-layout,
.about-layout,
.docs-esg-grid,
.faq-layout,
.stats-section {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.section-navy .section-heading p,
.solution-option p,
.content-left p {
  color: var(--text-muted);
}

.solution-options {
  display: grid;
  gap: 14px;
  margin-block: 28px;
}

.solution-option {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid rgba(235, 127, 44, 0.38);
  border-radius: 8px;
  padding: 16px;
}

.solution-option.active,
.solution-option:hover {
  background: var(--orange-soft);
  border-left-color: var(--orange);
}

.solution-option h4 {
  color: var(--deep-navy);
  font-size: 1rem;
}

.solution-visual {
  position: relative;
}

.dark-glass {
  background: var(--white);
  border-color: var(--border);
}

.image-panel {
  padding: 14px;
  position: relative;
}

.image-panel img {
  aspect-ratio: 1 / 0.84;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.image-badge {
  background: rgba(69, 40, 115, 0.94);
  border: 1px solid rgba(235, 127, 44, 0.35);
  border-radius: 8px;
  bottom: 30px;
  display: grid;
  padding: 14px;
  position: absolute;
  right: 30px;
}

.image-badge strong {
  color: #ffd7bb;
}

.image-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.about-visual {
  position: relative;
}

.about-visual > img {
  aspect-ratio: 1 / 0.9;
  border-radius: 8px;
  box-shadow: none;
  object-fit: cover;
  width: 100%;
}

.legacy-badge {
  align-items: center;
  background: var(--orange);
  border-radius: 8px;
  bottom: 18px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 170px;
  padding: 18px;
  position: absolute;
  right: 24px;
  text-align: center;
}

.legacy-badge strong {
  font-size: 2.8rem;
  line-height: 1;
}

.legacy-badge span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy > p {
  margin-top: 18px;
}

.mini-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-block: 30px;
}

.mini-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}

.mini-info h4 {
  align-items: center;
  color: var(--deep-navy);
  display: flex;
  font-size: 0.98rem;
  gap: 8px;
}

.mini-info h4 span {
  color: var(--orange);
}

.mini-info p {
  font-size: 0.9rem;
  margin-top: 8px;
}

.stats-band {
  background: var(--white);
  color: var(--text);
}

.stats-band h2 {
  color: var(--deep-navy);
}

.stats-band .section-label {
  color: var(--orange);
}

.grid-container {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.stat-icon {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 22px;
}

.stat-card h3 {
  color: var(--deep-navy);
  font-size: 2.3rem;
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--text-muted);
  font-weight: 700;
}

.docs-esg-grid {
  align-items: stretch;
}

.documentation-panel,
.esg-panel {
  border-radius: 8px;
  padding: 30px;
}

.documentation-panel {
  background: var(--white);
  border: 1px solid var(--border);
}

.document-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.document-item {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  padding: 16px;
}

.document-item:hover {
  border-color: var(--orange);
}

.document-icon,
.download-icon,
.check-list span {
  color: var(--orange);
}

.document-item strong {
  color: var(--deep-navy);
  display: block;
}

.document-item small {
  color: var(--text-muted);
}

.esg-panel {
  background: var(--deep-navy);
  overflow: hidden;
  position: relative;
}

.esg-bg-icon {
  display: none;
  position: absolute;
  right: 14px;
  top: 10px;
}

.esg-content {
  position: relative;
  z-index: 2;
}

.esg-content h2 {
  color: var(--white);
}

.esg-content p,
.check-list li {
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.check-list li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-image {
  display: block;
  position: relative;
}

.blog-image img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  width: 100%;
}

.blog-category {
  background: var(--orange-soft);
  border-radius: 8px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  left: 16px;
  padding: 7px 10px;
  position: absolute;
  top: 16px;
}

.blog-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-meta {
  color: var(--text-muted);
  display: flex;
  font-size: 0.82rem;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.blog-content p {
  margin-bottom: 20px;
}

.empty-card {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
}

.faq-layout {
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 110px;
}

.faq-sticky > p {
  margin-top: 16px;
}

.faq-info-box {
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  margin-top: 28px;
  padding: 20px;
}

.faq-icon {
  align-items: center;
  background: var(--orange);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  flex: 0 0 48px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
}

.faq-info-box h3 {
  font-size: 1.05rem;
}

.custom-faq .accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.custom-faq .accordion-button {
  color: var(--deep-navy);
  font-weight: 800;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: var(--orange-soft);
  box-shadow: none;
  color: var(--orange);
}

.custom-faq .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.site-footer {
  background: var(--deep-navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  padding-block: 56px;
}

.footer-brand-row .brand-name,
.footer-column h4 {
  color: #ffd7bb;
}

.footer-brand p,
.footer-column a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.93rem;
}

.footer-brand p {
  margin-top: 18px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact p {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.footer-contact span {
  color: var(--orange);
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.about-page {
  background: var(--white);
  padding: 72px 0;
}

.about-page-hero {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.about-page-copy p {
  font-size: 1.04rem;
  margin-top: 18px;
  max-width: 680px;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-page-media {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.about-page-media img {
  aspect-ratio: 1.12 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-stats-grid {
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
}

.about-stat-card {
  border-right: 1px solid var(--border);
  padding: 24px;
}

.about-stat-card:last-child {
  border-right: 0;
}

.about-stat-card i {
  color: var(--orange);
  display: block;
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.about-stat-card strong {
  color: var(--deep-navy);
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.about-stat-card span {
  color: var(--text-muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 8px;
}

.about-section-block {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding-top: 54px;
}

.client-page-head {
  max-width: 780px;
}

.client-page-head p {
  margin-top: 14px;
}

.about-value-grid,
.about-service-grid,
.about-team-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value-grid article,
.about-service-grid a,
.about-team-grid article,
.about-rich-copy {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.about-value-grid i,
.about-service-icon {
  align-items: center;
  background: var(--orange-soft);
  border-radius: 8px;
  color: var(--orange);
  display: inline-flex;
  font-size: 1.45rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.about-value-grid h3,
.about-service-grid h3,
.about-team-grid h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.about-story-list {
  display: grid;
  gap: 18px;
  margin-top: 54px;
}

.about-story-card {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  padding: 18px;
}

.about-story-card img {
  aspect-ratio: 1.4 / 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.about-rich-copy {
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 54px;
}

.about-rich-copy :where(h1, h2, h3, h4) {
  color: var(--deep-navy);
}

.about-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-service-grid a {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.about-service-grid span,
.about-team-grid span {
  color: var(--orange);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-team-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  margin-bottom: 16px;
  object-fit: cover;
  width: 100%;
}

.about-cta {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 64px;
  padding: 30px;
}

.about-cta h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  margin-bottom: 0;
  max-width: 760px;
}

.services-page,
.service-detail-page {
  background: var(--white);
  padding: 72px 0;
}

.service-page-head,
.service-detail-head {
  max-width: 860px;
}

.service-page-head p,
.service-detail-head p {
  font-size: 1.04rem;
  margin-top: 16px;
}

.service-category-nav {
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding: 14px;
}

.service-category-nav a {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--deep-navy);
  font-weight: 800;
  padding: 9px 12px;
}

.service-category-nav a:hover {
  background: var(--orange-soft);
  border-color: rgba(235, 127, 44, 0.45);
}

.service-category-list {
  display: grid;
  gap: 54px;
  margin-top: 54px;
}

.service-category-block {
  border-top: 1px solid var(--border);
  padding-top: 42px;
  scroll-margin-top: 96px;
}

.service-category-head {
  margin-bottom: 22px;
}

.service-list-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-list-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
}

.service-list-icon {
  align-items: center;
  background: var(--orange-soft);
  border-radius: 8px;
  color: var(--orange);
  display: inline-flex;
  font-size: 1.45rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.service-list-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-list-content h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.service-list-content p {
  margin-bottom: 20px;
}

.service-empty {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 38px;
  text-align: center;
}

.service-empty i {
  color: var(--orange);
  font-size: 2rem;
}

.service-empty strong {
  color: var(--deep-navy);
}

.service-detail-layout {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  margin-top: 40px;
}

.service-detail-main,
.service-side-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.service-detail-main {
  overflow: hidden;
}

.service-detail-image img {
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  width: 100%;
}

.service-detail-copy,
.service-detail-actions {
  padding: 28px;
}

.service-detail-copy {
  color: var(--text-muted);
  line-height: 1.75;
}

.service-detail-copy h2 {
  font-size: 1.65rem;
  margin-bottom: 14px;
}

.service-detail-copy :where(h1, h2, h3, h4) {
  color: var(--deep-navy);
}

.service-detail-actions {
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-side-panel {
  padding: 24px;
  position: sticky;
  top: 100px;
}

.service-side-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.service-side-list {
  display: grid;
  gap: 8px;
}

.service-side-list a {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--deep-navy);
  display: flex;
  font-weight: 800;
  gap: 14px;
  justify-content: space-between;
  padding: 12px;
}

.service-side-list a:hover {
  background: var(--orange-soft);
}

.service-side-list i {
  color: var(--orange);
}

.service-appointment-box {
  border-top: 1px solid var(--border);
  margin-top: 22px;
  padding-top: 22px;
}

.service-appointment-box strong {
  color: var(--deep-navy);
  display: block;
  line-height: 1.35;
  margin-top: 8px;
}

.service-appointment-box a {
  color: var(--orange);
  display: inline-flex;
  font-weight: 900;
  margin-top: 14px;
}

.contact-page,
.faq-page {
  background: var(--white);
  padding: 72px 0;
}

.contact-page-head,
.faq-page-head {
  max-width: 820px;
}

.contact-page-head p,
.faq-page-head p {
  font-size: 1.04rem;
  margin-top: 16px;
}

.contact-info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.contact-info-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 24px;
}

.contact-info-card i {
  color: var(--orange);
  font-size: 1.55rem;
}

.contact-info-card span,
.contact-quick-panel > span,
.faq-help-card > span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-card strong {
  color: var(--deep-navy);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-main-layout,
.faq-page-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  margin-top: 44px;
}

.contact-quick-panel,
.contact-form-card,
.faq-help-card,
.faq-page-item,
.client-empty {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.contact-quick-panel,
.contact-form-card,
.faq-help-card,
.client-empty {
  padding: 28px;
}

.contact-quick-panel h2,
.faq-help-card strong {
  color: var(--deep-navy);
  display: block;
  font-size: 1.45rem;
  line-height: 1.25;
  margin-top: 10px;
}

.contact-quick-panel p,
.faq-help-card p {
  margin-top: 14px;
}

.contact-quick-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-quick-list div {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  padding-top: 14px;
}

.contact-quick-list i {
  align-items: center;
  background: var(--orange-soft);
  border-radius: 8px;
  color: var(--orange);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.contact-quick-list strong {
  color: var(--deep-navy);
}

.contact-alert,
.contact-error {
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 12px 14px;
}

.contact-alert {
  background: #eefaf1;
  color: #176b35;
}

.contact-error {
  background: #fff1e8;
  color: var(--orange);
}

.contact-form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-grid label,
.contact-message-field,
.contact-email-field {
  display: grid;
  gap: 8px;
}

.contact-form-grid span {
  color: var(--deep-navy);
  font-weight: 800;
}

.contact-form-grid em {
  color: var(--orange);
  font-style: normal;
}

.contact-form-grid input,
.contact-form-grid textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.contact-form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  border-color: var(--orange);
}

.contact-form-grid small {
  color: var(--orange);
  font-weight: 700;
}

.contact-email-field,
.contact-message-field {
  grid-column: 1 / -1;
}

.contact-submit-btn {
  align-items: center;
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  margin-top: 22px;
  min-height: 50px;
  padding: 13px 22px;
}

.contact-submit-btn:hover {
  background: var(--deep-navy);
}

.contact-faq-strip {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  margin-top: 64px;
  padding-top: 54px;
}

.contact-faq-list {
  display: grid;
  gap: 12px;
}

.contact-faq-list details,
.faq-page-item {
  padding: 0;
}

.contact-faq-list summary,
.faq-page-item summary {
  align-items: center;
  color: var(--deep-navy);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  padding: 18px 20px;
}

.contact-faq-list summary::-webkit-details-marker,
.faq-page-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-faq-list details > div,
.faq-page-answer {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.7;
  padding: 18px 20px;
}

.faq-page-list {
  display: grid;
  gap: 12px;
}

.faq-page-item[open] summary,
.contact-faq-list details[open] summary {
  color: var(--orange);
}

.faq-page-item summary i {
  color: var(--orange);
  transition: transform 0.2s ease;
}

.faq-page-item[open] summary i {
  transform: rotate(180deg);
}

.faq-page-answer small {
  color: var(--orange);
  display: block;
  font-weight: 800;
  margin-top: 12px;
}

.faq-help-card {
  position: sticky;
  top: 100px;
}

.faq-help-card .btn {
  margin-top: 22px;
}

.client-empty {
  align-items: center;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.client-empty i {
  color: var(--orange);
  font-size: 2rem;
}

.client-empty strong {
  color: var(--deep-navy);
}

@media (max-width: 1080px) {
  :root {
    --section-space: 82px;
  }

  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(69, 40, 115, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 5px 14px 8px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 76px;
    transform: translateY(-14px);
    transition: 0.24s ease;
  }

  body.menu-open .main-nav,
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 400;
    justify-content: space-between;
    padding: 4px 3px;
  }

  .nav-dropdown-menu {
    border: 0;
    box-shadow: none;
    margin-bottom: 8px;
    max-height: none;
    min-width: 0;
    opacity: 1;
    overflow-y: auto;
    padding: 0 0 0 10px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .solutions-dropdown .solutions-menu {
    display: none;
    min-width: 0;
    overscroll-behavior: contain;
  }

  .solutions-dropdown .nav-dropdown-toggle .material-symbols-outlined {
    display: none;
  }

  .nav-dropdown-menu .solution-category-link {
    color: var(--text);
    font-size: 0.48rem;
    font-weight: 700;
    gap: 4px;
    min-height: 14px;
    padding: 3px !important;
  }

  .solution-category-link i {
    font-size: 0.58rem;
    transform: rotate(90deg);
  }

  .solution-submenu {
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 1px 3px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 0 0 4px 8px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .nav-dropdown-menu .solution-submenu a {
    font-size: 0.44rem;
    font-weight: 400;
    line-height: 1;
    min-height: 11px;
    padding: 1px 2px;
  }

  .cards-grid-3,
  .solution-layout,
  .about-layout,
  .docs-esg-grid,
  .faq-layout,
  .stats-section,
  .about-page-hero,
  .contact-main-layout,
  .faq-page-layout,
  .contact-faq-strip,
  .service-detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid,
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat-card:nth-child(2) {
    border-right: 0;
  }

  .about-stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .about-value-grid,
  .about-service-grid,
  .contact-info-grid,
  .service-list-grid {
    grid-template-columns: 1fr;
  }

  .faq-help-card,
  .service-side-panel {
    position: static;
  }

  .faq-sticky {
    position: static;
  }
}

@media (max-width: 640px) {
    
  :root {
    --section-space: 68px;
  }
.xaxis {
  padding: 30px 0;
}
  .container {
    padding-inline: 18px;
  }

  .brand-name {
    font-size: 0.96rem;
    
  }

  .inner-breadcrumb {
    min-height: 250px;
    padding: 110px 0 42px;
  }

  .inner-breadcrumb-content nav {
    font-size: 0.88rem;
  }

  .hero-section {
    min-height: auto !important;
    padding: 70px 0px !important;
    padding-top: 120px !important;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics,
  .mini-grid,
  .grid-container {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: grid;
  }

  .legacy-badge {
    bottom: 16px;
    right: 16px;
  }

  .documentation-panel,
  .esg-panel,
  .pillar-card,
  .blog-content {
    padding: 24px;
  }

  .document-item {
    grid-template-columns: auto 1fr;
  }

  .download-icon {
    display: none;
  }

  .about-page {
    padding: 52px 0;
  }

  .about-stats-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-card,
  .about-stat-card:nth-child(2),
  .about-stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
    border-right: 0;
  }

  .about-stat-card:last-child {
    border-bottom: 0;
  }

  .about-story-card {
    grid-template-columns: 1fr;
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .contact-page,
  .faq-page,
  .services-page,
  .service-detail-page {
    padding: 52px 0;
  }

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

  .contact-quick-panel,
  .contact-form-card,
  .faq-help-card {
    padding: 24px;
  }
}
