@charset "UTF-8";
:root {
  --color-bg: #ffffff;
  --color-surface: #f9fafb;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-primary: #0097D0;
  --color-primary-d: #007fb0;
  --color-secondary: #14b8a6;
  --color-accent: #f59e0b;
  --color-danger: #ef4444;
  --color-success: #10b981;
  --color-navy: #082338;
  --color-navy-2: #0d3a5e;
  --color-navy-3: #1C2B3A;
  --color-cyan: #5cb8f0;
  --color-white: #ffffff;
  --color-black: #0b0b0f;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
  --font-base: Plus Jakarta Sans, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-heading: Plus Jakarta Sans, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

html, body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-base);
  background-color: var(--color-bg);
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

@keyframes sd-flip-top {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateX(-90deg);
  }
}
@keyframes sd-flip-btm {
  from {
    transform: rotateX(90deg);
  }
  to {
    transform: rotateX(0deg);
  }
}
.section {
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .section {
    padding-block: 4.5rem;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 400;
  padding: 0.625rem 1.25rem;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: top 150ms ease;
}
.skip-link:focus-visible {
  top: 1rem;
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(40, 80, 116, 0);
  transition: background 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}
.site-header .navbar {
  padding-block: 1rem;
}
.site-header.is-scrolled, body:has(#login-page) .site-header, body:has(#profile-page) .site-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .site-header .navbar-collapse {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-height: calc(100svh - 80px);
    overflow-y: auto;
  }
}

.site-footer {
  overflow-x: clip;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.72);
  padding-block: 4.5rem 2rem;
}
@media (max-width: 767px) {
  .site-footer > .container {
    padding-inline: 1rem;
  }
}
.site-footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}
.site-footer-brand img {
  height: 32px;
  width: auto;
  display: block;
}
.site-footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
  margin-bottom: 1.5rem;
}
.site-footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.site-footer-cert {
  height: 120px;
  width: auto;
  display: block;
}
.site-footer-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 4px 10px;
}
.site-footer-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: color 150ms ease;
}
.site-footer-links a:hover {
  color: var(--color-cyan);
}
.site-footer-email {
  display: inline-block;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-cyan);
  margin-top: 0.5rem;
  overflow-wrap: normal;
  word-break: normal;
}
.site-footer-email:hover {
  color: #fff;
}
.site-footer-social {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 25%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9375rem;
  transition: background-color 150ms ease, border-color 150ms ease;
}
.site-footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}
.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer-bottom > * {
  min-width: 0;
  max-width: 100%;
}
.site-footer-offices + .site-footer-bottom {
  margin-top: 1.5rem;
}
.site-footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  overflow-wrap: break-word;
}
.site-footer-copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}
.site-footer-copy a:hover {
  color: var(--color-cyan);
}
.site-footer-slogan {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  font-style: italic;
}
.site-footer-offices {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer-address {
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}
.site-footer-address a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color-cyan);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease;
}
.site-footer-address a:hover {
  color: #fff;
}
.site-footer-address a + a {
  margin-left: 0.5rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 150ms ease;
}
.site-footer-legal a:hover {
  color: var(--color-cyan);
}
@media (max-width: 768px) {
  .site-footer .site-footer-heading {
    font-size: 0.75rem;
  }
  .site-footer .site-footer-links {
    gap: 0;
  }
  .site-footer .site-footer-links a {
    display: block;
    font-size: 1rem;
    line-height: 24px;
    padding: 10px 0;
    min-height: 44px;
  }
  .site-footer .site-footer-email {
    font-size: 1rem;
    line-height: 24px;
    padding: 10px 0;
    min-height: 44px;
  }
  .site-footer .site-footer-address {
    font-size: 1rem;
    line-height: 1.7;
  }
  .site-footer .site-footer-address a {
    line-height: 24px;
    padding: 10px 0;
    min-height: 44px;
  }
  .site-footer .site-footer-copy {
    font-size: 0.875rem;
  }
  .site-footer .site-footer-legal a {
    display: block;
    font-size: 0.875rem;
    line-height: 24px;
    padding: 10px 0;
    min-height: 44px;
  }
  .site-footer .site-footer-social a {
    width: 44px;
    height: 44px;
    font-size: 1.0625rem;
  }
}

@property --grad-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 135deg;
}
@property --grad-from {
  syntax: "<color>";
  inherits: true;
  initial-value: #16222f;
}
@property --grad-to {
  syntax: "<color>";
  inherits: true;
  initial-value: #0097d0;
}
.ambient-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ambient-bg--gradient {
  background: linear-gradient(var(--grad-angle, 135deg), var(--grad-from, #16222f) 0%, var(--grad-to, #0097d0) 100%);
}
.ambient-bg--veil {
  background: linear-gradient(to bottom, rgba(19, 30, 42, 0.72) 0%, rgba(19, 30, 42, 0.55) 50%, rgba(19, 30, 42, 0.78) 100%);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5625rem 1.25rem;
  border-radius: 7px;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px 0 rgba(0, 151, 208, 0.3);
  transition: background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.primary-btn:hover {
  background: var(--color-primary-d);
  box-shadow: 0 12px 28px 0 rgba(0, 151, 208, 0.45);
  transform: translateY(-1px);
  color: var(--color-white);
  text-decoration: none;
}
.primary-btn:active {
  transform: translateY(0);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 150ms ease, border-color 150ms ease;
}
.secondary-btn:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem 1.75rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--color-white);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  color: var(--color-navy-3);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 150ms ease, transform 150ms ease, border-color 150ms ease;
}
.light-btn:hover {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--color-navy-3);
  text-decoration: none;
}
.light-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
}

.primary-btn--lg {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.dark-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 0.8125rem 1.75rem;
  border-radius: 10px;
  border: none;
  background: var(--color-navy-3);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: background-color 150ms ease, transform 150ms ease;
}
.dark-btn:hover {
  background: var(--color-navy-2);
  transform: translateY(-1px);
  color: var(--color-white);
  text-decoration: none;
}
.dark-btn:active {
  transform: translateY(0);
}

@media (min-width: 992px) {
  .site-header .navbar-collapse {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .navbar > .container {
    max-width: none;
    padding-inline: 1rem;
  }
  .site-header .navbar-nav .nav-link {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .site-header .navbar-nav.mx-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .site-header .site-header-actions {
    gap: 0.5rem;
    margin-right: 0;
    margin-left: auto;
  }
}
.site-header-logo {
  display: inline-flex;
  align-items: center;
}
.site-header-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.site-header-logo .logo-dark {
  display: none;
}
.site-header .nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 -2px 0 0 transparent;
  transition: color 150ms ease, box-shadow 150ms ease;
}
@media (min-width: 992px) {
  .site-header .nav-link {
    white-space: nowrap;
  }
}
.site-header .nav-link:hover {
  color: var(--color-white);
}
.site-header .nav-link.active {
  color: var(--color-white);
  box-shadow: inset 0 -2px 0 0 var(--color-cyan);
}
@media (max-width: 991px) {
  .site-header .navbar-collapse .nav-link {
    color: var(--color-text);
  }
  .site-header .navbar-collapse .nav-link:hover {
    color: var(--color-primary);
  }
  .site-header .navbar-collapse .nav-link.active {
    color: var(--color-primary);
    box-shadow: inset 0 -2px 0 0 var(--color-primary);
  }
}
.site-header .navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
@media (max-width: 991px) {
  .site-header .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.site-header .navbar-toggler:hover, .site-header .navbar-toggler:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}
.site-header .navbar-toggler:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}
.site-header .navbar-toggler[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}
.site-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .site-header-actions {
    margin-right: calc(10px - var(--mdb-gutter-x, 1.5rem) * 0.5);
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.5rem;
  }
  .site-header-actions .primary-btn,
  .site-header-actions .secondary-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media (min-width: 1400px) {
  .site-header-actions {
    margin-right: calc(10px - (100vw - 1320px) / 2);
  }
}
@media (max-width: 991px) {
  .site-header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border);
  }
  .site-header-actions .primary-btn,
  .site-header-actions .secondary-btn {
    text-align: center;
    width: 100%;
  }
}
.site-header-lang {
  appearance: none;
  font: inherit;
  line-height: normal;
}
.site-header-lang:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .site-header-lang {
    color: var(--color-text);
    border-color: var(--color-border);
  }
  .site-header-lang:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
  .site-header-lang img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(42%) saturate(1200%) hue-rotate(178deg);
  }
}
.site-header-login:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .site-header-login {
    color: var(--color-text);
    border-color: var(--color-border);
  }
  .site-header-login:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
}
.site-header .lang-soon {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  padding: 0.1rem 0.45rem;
  margin-left: 0.35rem;
  vertical-align: middle;
}
.site-header .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.site-header .dropdown-toggle::after {
  display: none !important;
}
.site-header .nav-dropdown-icon {
  transition: transform 150ms ease;
  flex-shrink: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.site-header .dropdown-toggle[aria-expanded=true] .nav-dropdown-icon {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .site-header .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  .site-header .nav-item.dropdown:hover > .dropdown-toggle .nav-dropdown-icon {
    transform: rotate(180deg);
  }
}
@media (max-width: 991px) {
  .site-header .nav-item.dropdown .dropdown-menu {
    position: static;
    width: 100%;
    border: 1px solid var(--color-border);
    box-shadow: none;
    margin-top: 0.25rem;
  }
}
.site-header.is-scrolled .site-header-logo .logo-light, body:has(#login-page) .site-header .site-header-logo .logo-light, body:has(#profile-page) .site-header .site-header-logo .logo-light {
  display: none;
}
.site-header.is-scrolled .site-header-logo .logo-dark, body:has(#login-page) .site-header .site-header-logo .logo-dark, body:has(#profile-page) .site-header .site-header-logo .logo-dark {
  display: block;
}
.site-header.is-scrolled .nav-link, body:has(#login-page) .site-header .nav-link, body:has(#profile-page) .site-header .nav-link {
  color: var(--color-text);
}
.site-header.is-scrolled .nav-link:hover, body:has(#login-page) .site-header .nav-link:hover, body:has(#profile-page) .site-header .nav-link:hover {
  color: var(--color-primary);
}
.site-header.is-scrolled .nav-link.active, body:has(#login-page) .site-header .nav-link.active, body:has(#profile-page) .site-header .nav-link.active {
  color: var(--color-primary);
  box-shadow: inset 0 -2px 0 0 var(--color-primary);
}
.site-header.is-scrolled .navbar-toggler, body:has(#login-page) .site-header .navbar-toggler, body:has(#profile-page) .site-header .navbar-toggler {
  color: var(--color-text);
  background: transparent;
  border-color: var(--color-border);
}
.site-header.is-scrolled .navbar-toggler:hover, .site-header.is-scrolled .navbar-toggler:focus, body:has(#login-page) .site-header .navbar-toggler:hover, body:has(#login-page) .site-header .navbar-toggler:focus, body:has(#profile-page) .site-header .navbar-toggler:hover, body:has(#profile-page) .site-header .navbar-toggler:focus {
  background: rgba(15, 23, 42, 0.05);
  border-color: var(--color-primary);
}
.site-header.is-scrolled .navbar-toggler[aria-expanded=true], body:has(#login-page) .site-header .navbar-toggler[aria-expanded=true], body:has(#profile-page) .site-header .navbar-toggler[aria-expanded=true] {
  background: rgba(15, 23, 42, 0.05);
  border-color: var(--color-primary);
}
.site-header.is-scrolled .site-header-lang,
.site-header.is-scrolled .site-header-login, body:has(#login-page) .site-header .site-header-lang,
body:has(#login-page) .site-header .site-header-login, body:has(#profile-page) .site-header .site-header-lang,
body:has(#profile-page) .site-header .site-header-login {
  color: var(--color-text);
  border-color: var(--color-border);
}
.site-header.is-scrolled .site-header-lang:hover,
.site-header.is-scrolled .site-header-login:hover, body:has(#login-page) .site-header .site-header-lang:hover,
body:has(#login-page) .site-header .site-header-login:hover, body:has(#profile-page) .site-header .site-header-lang:hover,
body:has(#profile-page) .site-header .site-header-login:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.site-header.is-scrolled .site-header-user .site-header-user-btn, body:has(#login-page) .site-header .site-header-user .site-header-user-btn, body:has(#profile-page) .site-header .site-header-user .site-header-user-btn {
  color: var(--color-text);
  border-color: var(--color-border);
}
.site-header.is-scrolled .site-header-user .site-header-user-btn:hover, body:has(#login-page) .site-header .site-header-user .site-header-user-btn:hover, body:has(#profile-page) .site-header .site-header-user .site-header-user-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.site-header.is-scrolled .site-header-theme .site-header-theme-btn, body:has(#login-page) .site-header .site-header-theme .site-header-theme-btn, body:has(#profile-page) .site-header .site-header-theme .site-header-theme-btn {
  color: var(--color-text);
  border-color: var(--color-border);
}
.site-header.is-scrolled .site-header-theme .site-header-theme-btn:hover, body:has(#login-page) .site-header .site-header-theme .site-header-theme-btn:hover, body:has(#profile-page) .site-header .site-header-theme .site-header-theme-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.site-header.is-scrolled .site-header-lang img, body:has(#login-page) .site-header .site-header-lang img, body:has(#profile-page) .site-header .site-header-lang img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(42%) saturate(1200%) hue-rotate(178deg);
}
.site-header .site-header-user {
  position: relative;
}
@media (min-width: 992px) {
  .site-header .site-header-user {
    margin-left: 1.5rem;
  }
}
.site-header .site-header-user .site-header-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 150ms ease, border-color 150ms ease;
}
.site-header .site-header-user .site-header-user-btn:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .site-header .site-header-user .site-header-user-btn {
    color: var(--color-text);
    border-color: var(--color-border);
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.75rem;
  }
  .site-header .site-header-user .site-header-user-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
}
.site-header .site-header-user .site-header-user-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.site-header .site-header-user .site-header-user-name {
  font-size: 0.9rem;
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .site-header .site-header-user .site-header-user-name {
    display: none;
  }
}
.site-header .site-header-user .site-header-user-menu {
  position: absolute;
  top: 100%;
  right: 0px;
  left: auto;
  margin-top: 0.5rem;
  min-width: 280px;
  max-width: 320px;
  max-height: min(560px, 100vh - 5rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0 0.5rem;
  border: none;
  border-radius: 15px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 201;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
}
.site-header .site-header-user .site-header-user-menu::-webkit-scrollbar {
  width: 6px;
}
.site-header .site-header-user .site-header-user-menu::-webkit-scrollbar-track {
  background: transparent;
}
.site-header .site-header-user .site-header-user-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 9999px;
}
@media (max-width: 991px) {
  .site-header .site-header-user .site-header-user-menu {
    position: static;
    right: 0;
    width: 100%;
    max-height: none;
    box-shadow: none;
    border: 1px solid var(--color-border);
  }
}
.site-header .site-header-user .site-header-user-header {
  padding: 0.9rem 0.75rem 0.75rem;
  line-height: 1.3;
  background: linear-gradient(172deg, #f8faff 8%, #eef2ff 92%);
  border-radius: 15px 15px 0 0;
}
.site-header .site-header-user .site-header-user-header-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.site-header .site-header-user .site-header-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
}
.site-header .site-header-user .site-header-user-header-text {
  flex: 1;
  min-width: 0;
}
.site-header .site-header-user .site-header-user-fullname {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}
.site-header .site-header-user .site-header-user-email {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  word-break: break-all;
  margin-top: 0.05rem;
}
.site-header .site-header-user .site-header-user-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.site-header .site-header-user .site-header-user-role {
  display: inline-block;
  padding: 0.1rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 9999px;
  color: var(--color-text-muted);
  background: var(--color-surface);
}
.site-header .site-header-user .site-header-user-role-active {
  text-transform: capitalize;
  color: var(--color-primary-d);
  background: rgba(0, 151, 208, 0.12);
}
.site-header .site-header-user .dropdown-header {
  padding: 0.35rem 0.75rem 0.15rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.site-header .site-header-user .dropdown-item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin: 0 0.35rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.85rem;
}
.site-header .site-header-user .site-header-item-icon,
.site-header .site-header-user .dropdown-item-icon {
  width: 18px;
  text-align: center;
  margin-right: 0.6rem;
  flex-shrink: 0;
}
.site-header .site-header-user .site-header-item-active {
  background: rgba(0, 151, 208, 0.08);
  color: var(--color-primary-d);
  font-weight: 500;
}
.site-header .site-header-user .site-header-item-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 151, 208, 0.12);
  font-size: 0.6rem;
  margin-left: auto;
}
.site-header .site-header-user .site-header-user-logout {
  color: var(--color-danger);
}
.site-header .site-header-theme {
  position: relative;
}
.site-header .site-header-theme .site-header-theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  white-space: nowrap;
  transition: color 150ms ease, border-color 150ms ease;
}
.site-header .site-header-theme .site-header-theme-btn:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 991px) {
  .site-header .site-header-theme .site-header-theme-btn {
    color: var(--color-text);
    border-color: var(--color-border);
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.75rem;
  }
  .site-header .site-header-theme .site-header-theme-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
}
.site-header .site-header-theme .site-header-theme-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.site-header .site-header-theme .site-header-theme-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .site-header .site-header-theme .site-header-theme-text {
    display: none;
  }
}
.site-header .site-header-theme .site-header-theme-label {
  font-size: 0.68rem;
  opacity: 0.75;
}
.site-header .site-header-theme .site-header-theme-current {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
}
.site-header .site-header-theme .site-header-theme-chevron {
  font-size: 0.65rem;
  opacity: 0.75;
  transition: transform 150ms ease;
}
.site-header .site-header-theme .site-header-theme-btn[aria-expanded=true] .site-header-theme-chevron {
  transform: rotate(180deg);
}
.site-header .site-header-theme .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  margin-top: 0.5rem;
  min-width: 220px;
  padding: 0 0 0.5rem;
  border: none;
  border-radius: 15px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 201;
}
.site-header .site-header-theme .dropdown-menu .dropdown-header {
  padding: 0.9rem 0.75rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}
.site-header .site-header-theme .dropdown-menu .dropdown-item {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  color: var(--color-text);
}
.site-header .site-header-theme .dropdown-menu .dropdown-item:hover {
  background: var(--color-surface);
}
.site-header .site-header-theme .dropdown-menu .dropdown-item.dropdown-item-active {
  font-weight: 600;
}
.site-header .site-header-theme .dropdown-menu .dropdown-item-icon {
  width: 18px;
  text-align: center;
  margin-right: 0.6rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .site-header .site-header-theme .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 1px solid var(--color-border);
    margin-top: 0.5rem;
    width: 100%;
  }
}

.logo-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 1.25rem;
  column-gap: clamp(1.25rem, 3.5vw, 3rem);
}

.logo-row-item {
  display: flex;
  align-items: center;
}
.logo-row-item img {
  height: clamp(23px, 3.24vw, 36px);
  width: auto;
  display: block;
}
.logo-row-item--lg img {
  height: clamp(29px, 4.03vw, 45px);
}
.logo-row-item--wide img {
  height: auto;
  width: clamp(86px, 10.08vw, 137px);
}
.logo-row-item--padded img {
  height: clamp(46px, 6.48vw, 72px);
}
.logo-row-item--tagline img {
  height: clamp(31px, 4.37vw, 48px);
}
.logo-row-item--compact img {
  height: clamp(26px, 3.73vw, 41px);
}

.cookie-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 500;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
  padding: 1.5rem;
}
.cookie-bar-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cookie-bar-copy {
  flex: 1 1 32ch;
  min-width: 0;
}
.cookie-bar-copy p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
}
.cookie-bar-copy a {
  color: var(--color-cyan);
  text-decoration: underline;
}
.cookie-bar-copy a:hover {
  color: #fff;
}
.cookie-bar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}
.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cookie-bar-actions {
    flex-shrink: 1;
    width: 100%;
  }
  .cookie-bar-actions .cookie-btn {
    flex: 1 1 100%;
  }
}

.cookie-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 10px 20px;
  min-height: 44px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.cookie-btn:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
}
.cookie-btn--primary {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
  color: #08263c;
}
.cookie-btn--primary:hover {
  background: #fff;
  border-color: #fff;
}
.cookie-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.cookie-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 32, 0.62);
}
.cookie-modal-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.cookie-modal-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}
.cookie-modal-close {
  appearance: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-size: 1.625rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 4px;
}
.cookie-modal-close:hover {
  color: var(--color-text);
}
.cookie-modal-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.cookie-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}
.cookie-modal-intro {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.cookie-modal-intro a {
  color: var(--color-primary);
  text-decoration: underline;
}
.cookie-modal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}
.cookie-modal-foot .cookie-btn {
  flex: 1 1 auto;
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.cookie-modal-foot .cookie-btn:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
}
@media (max-width: 639px) {
  .cookie-modal-foot .cookie-btn {
    flex: 1 1 100%;
  }
}

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-cat {
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.cookie-cat:first-of-type {
  padding-top: 0;
}
.cookie-cat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.cookie-cat-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
}
.cookie-cat-always {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.cookie-cat-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.cookie-switch {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 44px;
  height: 26px;
  margin: 0;
  cursor: pointer;
}
.cookie-switch-track {
  display: block;
  width: 44px;
  height: 26px;
  border-radius: 9999px;
  background: #c9ced6;
  transition: background-color 250ms ease;
}
.cookie-switch-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 250ms ease;
}
.cookie-switch input:checked + .cookie-switch-track {
  background: var(--color-primary);
}
.cookie-switch input:checked + .cookie-switch-track::after {
  transform: translateX(18px);
}
.cookie-switch input:focus-visible + .cookie-switch-track {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.cookie-switch input:disabled + .cookie-switch-track {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-settings-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease;
}
.cookie-settings-link:hover {
  color: var(--color-cyan);
}
.cookie-settings-link:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
}
@media (max-width: 767px) {
  .cookie-settings-link {
    display: block;
    font-size: 0.875rem;
    line-height: 24px;
    padding: 10px 0;
    min-height: 44px;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.eyebrow--light {
  color: var(--color-cyan);
}
.eyebrow.text-center {
  display: block;
  text-align: center;
}

.section-title {
  font-size: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  font-weight: 800;
  max-width: 32ch;
  margin-inline: auto;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--color-primary);
}
.link-arrow span {
  transition: transform 150ms ease;
}
.link-arrow:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  color: #fff;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(4.5rem + 48px + 80px);
  overflow: hidden;
  background: linear-gradient(180deg, #30608C 0%, #0097D0 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48, 96, 140, 0.72) 0%, rgba(0, 151, 208, 0.72) 100%);
  z-index: 1;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
}
.hero-title {
  font-size: clamp(2.4rem, 1.2rem + 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  color: var(--color-cyan);
}
.hero-title sup {
  font-size: clamp(1rem, 0.35em, 1.75rem);
  top: -1.1em;
  margin-left: 0.1em;
  font-weight: 600;
}
.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60ch;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 0.9375rem;
  }
}
.hero-subtitle strong {
  color: #fff;
  font-weight: 600;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.logos {
  position: relative;
  z-index: 2;
  padding-block: 2rem;
}
.logos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 151, 208, 0) 0%, rgba(12, 56, 92, 0.55) 35%, rgba(12, 56, 92, 0.82) 70%, rgba(12, 56, 92, 0.92) 100%);
}
.logos-inner {
  max-width: none;
  margin-inline: 0;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}
.logos-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.logos .logo-row {
  justify-content: space-between;
  column-gap: clamp(1.25rem, 2.4vw, 4rem);
}
@media (max-width: 1100px) {
  .logos .logo-row {
    justify-content: flex-start;
  }
}
.logos .logo-row-item img {
  filter: brightness(0) invert(1);
}
.logos .logo-row-item--color img {
  filter: none;
}

.feature--alt {
  background: #fff;
}
.feature-title {
  font-size: clamp(1.5rem, 1rem + 1.8vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 18ch;
}
.feature-text {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 46ch;
}
.feature-media {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.feature-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .feature-media img {
    height: 320px;
  }
}
.feature-media--stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 35, 56, 0.65));
}
.feature-stat-overlay {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(28, 43, 58, 0.9);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.5rem 1.5rem;
}
.feature-stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 18.15px;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}
.feature-stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 46.2px;
  color: #00C9ED;
}
@media (max-width: 768px) {
  .feature-stat-num {
    font-size: 1.375rem;
    line-height: 1.2;
  }
}
.feature-stat-sub {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 18.15px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.hero-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #DBEEFF;
  border-radius: 8px;
}
.hero-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-badge-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}
.hero-badge-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  line-height: 1.2;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.checklist-item {
  position: relative;
  padding-left: 2rem;
  color: var(--color-text);
  font-size: 0.9375rem;
}
.checklist-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #EBF7FC url("/assets/icons/check.svg") no-repeat center center;
  background-size: 10px 8px;
  border-radius: 11px;
}

.callout {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #F9FAFB;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.callout-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.callout-text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.stats {
  position: relative;
  padding-block: 2rem;
  background-color: #e9f1f8;
  background-image: linear-gradient(0deg, rgba(5, 120, 176, 0.25) 0%, rgba(5, 120, 176, 0.25) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 39.87%, rgba(185, 185, 185, 0.2) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21'%3E%3Crect width='3' height='3' rx='0.75' fill='%23b0bec5' opacity='0.6'/%3E%3C/svg%3E");
  background-size: auto, auto, 21px 21px;
}
.stats-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .stats-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-num {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
}
.stats-label {
  margin-top: 0.25rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: var(--color-text);
}

.stat-digit {
  position: relative;
  display: inline-block;
  width: 2.1875rem;
  height: 3.25rem;
  perspective: 600px;
}

.sd-top {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 3.25rem;
  background: linear-gradient(180deg, #3a3a3a 0%, #1e1e1e 100%);
  border-radius: 6px 6px 0 0;
  clip-path: inset(0 0 50% 0 round 6px 6px 0 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.sd-top::before {
  content: attr(data-ch);
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.sd-btm {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 3.25rem;
  background: linear-gradient(180deg, #222 0%, #111 100%);
  border-radius: 0 0 6px 6px;
  clip-path: inset(50% 0 0 0 round 0 0 6px 6px);
}
.sd-btm::before {
  content: attr(data-ch);
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.sd-flip-top {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 3.25rem;
  background: linear-gradient(180deg, #3a3a3a 0%, #1e1e1e 100%);
  border-radius: 6px 6px 0 0;
  clip-path: inset(0 0 50% 0 round 6px 6px 0 0);
  transform-origin: center 50%;
  animation: sd-flip-top 140ms ease-in forwards;
  z-index: 4;
}
.sd-flip-top::before {
  content: attr(data-ch);
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.sd-flip-btm {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 3.25rem;
  background: linear-gradient(180deg, #222 0%, #111 100%);
  border-radius: 0 0 6px 6px;
  clip-path: inset(50% 0 0 0 round 0 0 6px 6px);
  transform-origin: center 50%;
  transform: rotateX(90deg);
  animation: sd-flip-btm 140ms ease-out 110ms forwards;
  z-index: 4;
}
.sd-flip-btm::before {
  content: attr(data-ch);
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .sd-flip-top,
  .sd-flip-btm {
    display: none;
  }
}
.lifecycle {
  background: #F9FAFB;
}
.lifecycle-title {
  font-size: clamp(1.5rem, 1rem + 1.8vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.lifecycle-text {
  color: var(--color-text-muted);
  max-width: 40ch;
  margin-bottom: 0;
}
.lifecycle-claim {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  background: rgba(0, 151, 208, 0.08);
  border: 1px solid rgba(0, 151, 208, 0.18);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
}
.lifecycle-claim-dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}
.lifecycle-cta {
  text-align: center;
  margin-top: 3rem;
}

.orbit {
  position: relative;
  --qs: 1;
  width: min(500px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 151, 208, 0.06), transparent 70%);
}
.orbit::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1.429px solid rgba(0, 151, 208, 0.12);
  border-radius: 50%;
}
.orbit::after {
  content: "";
  position: absolute;
  inset: calc(105px * var(--qs));
  border-radius: 50%;
  border: 0.952px solid rgba(0, 151, 208, 0.07);
}
.orbit-spokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: calc(137.143px * var(--qs));
  height: calc(137.143px * var(--qs));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 151, 208, 0.1);
  border: 1.429px solid rgba(0, 151, 208, 0.3);
}
.orbit-center::before {
  content: "";
  position: absolute;
  inset: calc(12px * var(--qs));
  border-radius: 50%;
  background: rgba(0, 151, 208, 0.08);
  z-index: 0;
}
.orbit-center-title, .orbit-center-sub {
  position: relative;
  z-index: 1;
}
.orbit-center-title {
  display: block;
  font-size: calc(10.476px * var(--qs));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(0, 151, 208, 0.9);
  line-height: 1.4;
  text-align: center;
}
.orbit-center-sub {
  display: block;
  font-size: calc(8.571px * var(--qs));
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 151, 208, 0.5);
  text-align: center;
  margin-top: 3px;
}
.orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(80px * var(--qs));
  height: calc(80px * var(--qs));
  border-radius: 50%;
  font-size: calc(0.8125rem * var(--qs));
  font-weight: 600;
  color: #fff;
  background: radial-gradient(circle at 32% 26%, var(--c-lt, var(--c, #0097D0)) 0%, var(--c, #0097D0) 58%, color-mix(in srgb, var(--c, #0097D0) 68%, #000) 100%);
  --r: calc(185px * var(--qs));
  transform: translate(-50%, -50%) rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a)));
  text-align: center;
  line-height: 1.3;
}
.orbit-node-num {
  display: block;
  font-size: calc(0.625rem * var(--qs));
  font-weight: 500;
  opacity: 0.75;
  line-height: 1.4;
}
.orbit-node {
  cursor: default;
  outline: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.orbit-node:hover, .orbit-node:focus-visible {
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.orbit-node:hover .orbit-node-tip, .orbit-node:focus-visible .orbit-node-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.orbit-node-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  background: var(--color-navy);
  color: #fff;
  font-size: calc(0.75rem * var(--qs));
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 5;
}
.orbit-node-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-navy);
}
.orbit-node--1 {
  --a: -90deg;
}
.orbit-node--2 {
  --a: -38.57deg;
}
.orbit-node--3 {
  --a: 12.86deg;
}
.orbit-node--4 {
  --a: 64.29deg;
}
.orbit-node--5 {
  --a: 115.71deg;
}
.orbit-node--6 {
  --a: 167.14deg;
}
.orbit-node--7 {
  --a: 218.57deg;
}
@media (max-width: 480px) {
  .orbit {
    --qs: 0.82;
  }
}
@media (max-width: 375px) {
  .orbit {
    --qs: 0.68;
  }
}
.orbit::before {
  border-style: dashed;
  animation: orbit-spin 90s linear infinite;
}
.orbit::after {
  border-style: dashed;
  animation: orbit-spin-rev 120s linear infinite;
}
.orbit-spokes line {
  animation: orbit-flow 1.6s linear infinite;
}
.orbit-spokes line:nth-child(2) {
  animation-delay: 0.1s;
}
.orbit-spokes line:nth-child(3) {
  animation-delay: 0.2s;
}
.orbit-spokes line:nth-child(4) {
  animation-delay: 0.3s;
}
.orbit-spokes line:nth-child(5) {
  animation-delay: 0.4s;
}
.orbit-spokes line:nth-child(6) {
  animation-delay: 0.5s;
}
.orbit-spokes line:nth-child(7) {
  animation-delay: 0.6s;
}
.orbit-center {
  animation: orbit-hub-pulse 3.6s ease-in-out infinite;
}
.orbit-node {
  animation: orbit-node-in 0.5s ease both;
}
.orbit-node--1 {
  animation-delay: 0s;
}
.orbit-node--2 {
  animation-delay: 0.06s;
}
.orbit-node--3 {
  animation-delay: 0.12s;
}
.orbit-node--4 {
  animation-delay: 0.18s;
}
.orbit-node--5 {
  animation-delay: 0.24s;
}
.orbit-node--6 {
  animation-delay: 0.3s;
}
.orbit-node--7 {
  animation-delay: 0.36s;
}
.orbit-node:hover, .orbit-node:focus-visible, .orbit-node.is-active {
  transform: translate(-50%, -50%) rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a))) scale(1.12);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4), 0 14px 30px -8px color-mix(in srgb, var(--c) 55%, transparent);
  z-index: 10;
}
.orbit-node.is-active .orbit-node-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .orbit::before, .orbit::after, .orbit-spokes line, .orbit-center, .orbit-node {
    animation: none;
  }
  .orbit-node {
    opacity: 1;
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbit-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes orbit-flow {
  to {
    stroke-dashoffset: -28;
  }
}
@keyframes orbit-hub-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 151, 208, 0.28);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(0, 151, 208, 0);
  }
}
@keyframes orbit-node-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.module {
  position: relative;
  height: 100%;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 41, 0.06);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 14px 30px -18px rgba(15, 23, 41, 0.18);
  transition: transform 90ms ease-out, box-shadow 250ms ease;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.35s ease;
}
.module::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(165deg, color-mix(in srgb, var(--c, #0891d1) 4%, transparent) 8%, color-mix(in srgb, var(--c, #0891d1) 10%, transparent) 10%, color-mix(in srgb, var(--c, #0891d1) 5%, transparent) 17%, rgba(255, 255, 255, 0.52) 25%, #fff 42%, #fdfeff 92%);
}
.module::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--c-lt, var(--c, #0891d1)) 0%, var(--c, #0891d1) 100%);
}
.module.is-revealed, .module:not([data-reveal]) {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.module:hover {
  box-shadow: 0 30px 54px -22px color-mix(in srgb, var(--c, #0891d1) 40%, transparent), 0 8px 20px -12px rgba(15, 23, 41, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.module-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--c, #0891d1) 12%, transparent), transparent 60%);
}
.module:hover .module-glare {
  opacity: 1;
}
.module-header, .module-text {
  position: relative;
  z-index: 1;
}
.module-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  transform: translateZ(26px);
}
@media (prefers-reduced-motion: reduce) {
  .module {
    transform: none !important;
    transition: box-shadow 250ms ease;
  }
  .module .module-header,
  .module .module-text {
    transform: none;
  }
}
.module-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: radial-gradient(circle at 32% 26%, var(--c-lt, var(--c, #0891d1)) 0%, var(--c, #0891d1) 58%, color-mix(in srgb, var(--c, #0891d1) 68%, #000) 100%);
  box-shadow: 0 8px 8px -2px color-mix(in srgb, var(--c, #0891d1) 45%, transparent), inset 0 1px 2px rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}
.module-title {
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0;
  color: #0f1729;
}
.module-text {
  color: #546070;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
  transform: translateZ(14px);
}

.row .col-lg-4:has(.module),
.row .col-md-6:has(.module) {
  perspective: 1000px;
}

.testimonials {
  background: var(--color-surface);
}
.testimonials .row {
  align-items: flex-start;
}

.testimonial-quote::after, .testimonial-quote::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: -0.12em;
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .testimonial {
    height: 380px;
  }
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px 0 rgba(0, 0, 0, 0.1);
}
.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .testimonial-quote {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 0;
    position: relative;
    padding-right: 1.5rem;
  }
  .testimonial-quote::after {
    position: absolute;
    right: 0.75rem;
    bottom: 0;
    background-color: var(--color-bg);
  }
}
.testimonial-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 34'%3E%3Cpath fill='%23A8DDEF' d='M44,0h-19v18.4C25,27,30.3,32.3,39.4,34L41.8,29.2C36.6,27.6,34,24.8,34,20.8H44V0Zm-25,0h-19v18.4C0,27,5.3,32.3,14.4,34l2.4,-4.8c-5.2,-1.6,-7.8,-4.4,-7.8,-8.4H19V0Z'/%3E%3C/svg%3E");
  margin-right: 0.3em;
}
.testimonial-quote::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 34'%3E%3Cpath fill='%23A8DDEF' d='M0,34H19V15.6C19,7,13.7,1.7,4.6,0l-2.4,4.8C7.4,6.4,10,9.2,10,13.2h-10V34Zm25,0H44V15.6C44,7,38.7,1.7,29.6,0l-2.4,4.8C32.4,6.4,35,9.2,35,13.2h-10V34Z'/%3E%3C/svg%3E");
  margin-left: 0.2em;
}
.testimonial-quote-lead {
  font-size: 1.125rem;
  font-weight: 400;
}
.testimonial-quote-rest {
  display: none;
}
.testimonial-quote-rest.open {
  display: block;
  margin-top: 0.5rem;
}
.testimonial:has(.testimonial-quote-rest.open) {
  height: auto;
}
.testimonial:has(.testimonial-quote-rest.open) .testimonial-quote {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  padding-right: 0;
}
.testimonial:has(.testimonial-quote-rest.open) .testimonial-quote::after {
  position: static;
  margin-left: 0.2em;
  background-color: transparent;
}
.testimonial-readmore {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}
.testimonial-readmore:hover {
  text-decoration: underline;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, #EBF7FC 0%, #A8DDEF 100%);
  color: #0097D0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 18.15px;
  object-fit: contain;
}
.testimonial-name {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
}
.testimonial-name small {
  color: var(--color-text-muted);
  font-weight: 400;
}

.partner {
  position: relative;
  overflow: hidden;
  background: #1e2c3c;
  color: #fff;
}
.partner-title {
  font-size: clamp(1.6rem, 1rem + 2vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.partner-text {
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  margin-bottom: 2rem;
}

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

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.steps-item {
  display: flex;
  gap: 1rem;
}
.steps-num {
  flex: none;
  width: 30px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  border: 1px solid rgba(0, 151, 208, 0.5);
  background: rgba(0, 151, 208, 0.18);
  color: #7fd3f2;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
}
.steps-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.steps-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.usecase {
  height: 100%;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
  overflow: hidden;
}
.usecase:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.usecase-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.usecase-body {
  padding: 1.5rem;
}
.usecase-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.usecase-text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.final-cta {
  background: var(--color-surface);
}
.final-cta-title {
  font-size: clamp(1.8rem, 1rem + 2.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.final-cta-text {
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0 auto 2rem;
}
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.final-cta-note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: center;
  color: #718096;
}

.demo-hero {
  background: linear-gradient(180deg, #30608C 0%, #0097D0 100%);
  color: var(--color-white);
  padding-top: calc(4.5rem + 64px);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.demo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0L0 0 0 40' fill='none' stroke='rgba(0,151,208,0.07)' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}
.demo-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.demo-hero-breadcrumb a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.demo-hero-breadcrumb a:hover {
  color: var(--color-white);
}
.demo-hero-breadcrumb span[aria-hidden] {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}
.demo-hero-breadcrumb span[aria-current] {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}
.demo-hero-title {
  font-size: clamp(1.75rem, 1rem + 3vw, 2.875rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.demo-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0;
}

.demo-process {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding-block: 2rem;
}
.demo-process-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 1rem;
}
.demo-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .demo-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .demo-process-grid {
    grid-template-columns: 1fr;
  }
}
.demo-process-step {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-inline: 1.5rem;
  border-right: 1px solid var(--color-border);
}
.demo-process-step:first-child {
  padding-left: 0;
}
.demo-process-step:last-child {
  border-right: none;
  padding-right: 0;
}
@media (max-width: 768px) {
  .demo-process-step {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 0 1rem 1rem 0;
    margin-bottom: 1rem;
  }
  .demo-process-step:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }
  .demo-process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .demo-process-step {
    border-right: none !important;
    padding-right: 0;
  }
}
.demo-process-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.demo-process-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.demo-process-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.demo-form-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .demo-form-title {
    font-size: 1.125rem;
  }
}

.demo-form-sub {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.demo-field {
  margin-bottom: 1rem;
}
.demo-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.demo-field label .req {
  color: var(--color-primary);
  margin-left: 2px;
}
.demo-field input[type=text],
.demo-field input[type=email],
.demo-field input[type=tel],
.demo-field select,
.demo-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.875rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color 150ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.demo-field input[type=text]:focus,
.demo-field input[type=email]:focus,
.demo-field input[type=tel]:focus,
.demo-field select:focus,
.demo-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 151, 208, 0.1);
}
.demo-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.demo-field textarea {
  resize: vertical;
  min-height: 90px;
}
.demo-field .is-invalid {
  border-color: var(--color-danger) !important;
}
.demo-field .invalid-feedback, .demo-field.demo-field .invalid-feedback {
  display: block;
  position: static;
  width: 100%;
  font-size: 0.75rem;
  color: var(--color-danger);
  margin-top: 0.25rem;
  margin-left: 0;
}
.demo-field--phone .demo-phone-group {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-surface);
  transition: border-color 150ms ease;
  overflow: hidden;
}
.demo-field--phone .demo-phone-group:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 151, 208, 0.1);
}
.demo-field--phone .demo-phone-dial,
.demo-field--phone input[type=tel] {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  width: auto;
}
.demo-field--phone .demo-phone-dial:focus,
.demo-field--phone input[type=tel]:focus {
  box-shadow: none;
}
.demo-field--phone .demo-phone-dial {
  flex: 0 0 auto;
  padding-right: 2rem;
  border-right: 1.5px solid var(--color-border);
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  background-position: right 10px center;
}
.demo-field--phone input[type=tel] {
  flex: 1 1 auto;
  min-width: 0;
}
.demo-field--phone .demo-phone-group:has(.is-invalid) {
  border-color: var(--color-danger);
}
.demo-field--phone input[type=tel].is-invalid {
  border-color: transparent !important;
}
.demo-field--consent .demo-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.demo-field--consent .demo-consent-label span {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
}
.demo-field--consent .demo-consent-label a {
  color: var(--color-primary);
  white-space: nowrap;
}
.demo-field--consent input[type=checkbox] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.demo-field--consent.demo-field .invalid-feedback {
  margin-left: calc(16px + 0.75rem);
  margin-bottom: 0.5rem;
}

.demo-submit {
  width: 100%;
  padding: 13px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease;
  margin-top: 0.5rem;
}
.demo-submit:hover {
  background: var(--color-primary-d);
}
.demo-submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.demo-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0, 151, 208, 0.06);
  border: 1px solid rgba(0, 151, 208, 0.2);
  border-radius: 16px;
}
.demo-success.is-visible {
  display: block;
}
.demo-success-icon {
  display: block;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.demo-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .demo-success h3 {
    font-size: 1.125rem;
  }
}
.demo-success p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}
.demo-success-again {
  margin-top: 1rem !important;
}
.demo-success-again a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}
.demo-success-again a:hover {
  color: var(--color-primary-d);
}

.demo-trust {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 80px;
}
.demo-trust-quote {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.demo-trust-attr strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
}
.demo-trust-attr span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.demo-trust-reply {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 151, 208, 0.06);
  border: 1px solid rgba(0, 151, 208, 0.18);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.5rem;
}
.demo-trust-reply-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.demo-trust-reply p {
  font-size: 0.8125rem;
  color: var(--color-primary-d);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.demo-trust-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.demo-trust-contact p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.demo-trust-contact a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.demo-trust-contact a:hover {
  color: var(--color-primary-d);
}

.demo-objections {
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
  margin-top: 3rem;
}
.demo-objections-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 1.5rem;
}
.demo-objections-item {
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
  padding: 1.5rem;
}
.demo-objections-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.demo-objections-q {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.demo-objections-a {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

:root {
  --platform-s1-color: #0097D0;
  --platform-s1-tint: #E5F6FB;
  --platform-s2-color: #1A8C5A;
  --platform-s2-tint: #EAF7F0;
  --platform-s3-color: #B06A10;
  --platform-s3-tint: #FDF3E7;
  --platform-s4-color: #6B4EA8;
  --platform-s4-tint: #F0EBF8;
  --platform-s5-color: #D4820A;
  --platform-s5-tint: #FEF5E7;
  --platform-s6-color: #0578B0;
  --platform-s6-tint: #E8F4FD;
  --platform-s7-color: #2E6826;
  --platform-s7-tint: #F0F7EE;
}

[data-stage="1"] {
  --s-color: var(--platform-s1-color);
  --s-tint: var(--platform-s1-tint);
}

[data-stage="2"] {
  --s-color: var(--platform-s2-color);
  --s-tint: var(--platform-s2-tint);
}

[data-stage="3"] {
  --s-color: var(--platform-s3-color);
  --s-tint: var(--platform-s3-tint);
}

[data-stage="4"] {
  --s-color: var(--platform-s4-color);
  --s-tint: var(--platform-s4-tint);
}

[data-stage="5"] {
  --s-color: var(--platform-s5-color);
  --s-tint: var(--platform-s5-tint);
}

[data-stage="6"] {
  --s-color: var(--platform-s6-color);
  --s-tint: var(--platform-s6-tint);
}

[data-stage="7"] {
  --s-color: var(--platform-s7-color);
  --s-tint: var(--platform-s7-tint);
}

.platform-hero {
  background: linear-gradient(180deg, #30608C 0%, #0097D0 100%);
  color: var(--color-white);
  padding-top: calc(4.5rem + 64px);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.platform-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0L0 0 0 40' fill='none' stroke='rgba(0,151,208,0.07)' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}
.platform-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.platform-hero-breadcrumb a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.platform-hero-breadcrumb a:hover {
  color: var(--color-white);
}
.platform-hero-breadcrumb span[aria-hidden] {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}
.platform-hero-breadcrumb span[aria-current] {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}
.platform-hero-title {
  font-size: clamp(1.875rem, 1rem + 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 1rem;
  max-width: 640px;
}
.platform-hero-accent {
  color: var(--color-cyan);
}
.platform-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  line-height: 1.72;
  margin-bottom: 2rem;
  margin-top: 0;
}
.platform-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.platform-positioning {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-block: 1.5rem;
}
.platform-positioning-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.platform-positioning-statement {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .platform-positioning-statement {
    font-size: 0.9375rem;
  }
}
.platform-positioning-statement em {
  color: var(--color-primary);
  font-style: normal;
}
.platform-positioning-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}
@media (max-width: 768px) {
  .platform-positioning-badges {
    margin-left: 0;
  }
}
.platform-positioning-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-d);
  background: rgba(0, 151, 208, 0.08);
  border: 1px solid rgba(0, 151, 208, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.platform-stages-wrapper {
  position: relative;
}

.platform-stages-content {
  min-width: 0;
  padding-left: 2rem;
}
@media (max-width: 991px) {
  .platform-stages-content {
    padding-left: 0;
  }
}

.platform-lnav {
  position: sticky;
  top: 85px;
  z-index: 90;
  background: var(--color-bg);
  padding-block: 1.5rem;
  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.06);
  clip-path: inset(0 -20px 0 0);
}
@media (max-width: 991px) {
  .platform-lnav {
    display: none;
  }
}
.platform-lnav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-left: 4px solid #E5E7EB;
  margin-bottom: 10px;
  text-decoration: none;
  background: transparent;
  transition: background 150ms ease, border-color 150ms ease;
  border-radius: 3px 0 0 3px;
}
.platform-lnav-item:last-child {
  border-bottom: none;
}
.platform-lnav-item:hover {
  background: var(--s-tint);
  border-left-color: var(--s-color);
}
.platform-lnav-item:hover .platform-lnav-kicker {
  color: var(--s-color);
}
.platform-lnav-item:hover .platform-lnav-num {
  background: var(--s-tint);
  border-color: var(--s-color);
  color: var(--s-color);
}
.platform-lnav-item.is-active {
  background: var(--s-tint);
  border-left-color: var(--s-color);
}
.platform-lnav-item.is-active .platform-lnav-kicker {
  color: var(--s-color);
}
.platform-lnav-item.is-active .platform-lnav-num {
  background: var(--s-color);
  border-color: var(--s-color);
  color: #fff;
}
.platform-lnav-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.platform-lnav-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.platform-lnav-kicker {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s-color);
  line-height: 1.2;
  transition: color 150ms ease;
}
.platform-lnav-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.platform-stage {
  padding-top: 15px;
  padding-bottom: 3rem;
  scroll-margin-top: 80px;
}
.platform-stage--even {
  background: rgba(0, 151, 208, 0.035);
}
.platform-stage-hd {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .platform-stage-hd {
    flex-direction: column;
    gap: 1rem;
  }
}
.platform-stage-badge {
  flex-shrink: 0;
  text-align: center;
}
.platform-stage-num {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--s-color);
}
.platform-stage-num-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 3px;
  display: block;
}
.platform-stage-title {
  flex: 1;
  padding-top: 2px;
}
.platform-stage-kicker {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s-color);
  display: block;
  margin-bottom: 0.3rem;
}
.platform-stage-h {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.platform-stage-outcome {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: 4px;
  border-left: 3px solid;
  background: var(--s-tint);
  border-color: var(--s-color);
  color: var(--s-color);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.cap {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--s-color);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.cap-always {
  padding: 1.5rem;
}
.cap-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.cap-out {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}
.cap-expand-hint {
  position: absolute;
  bottom: 7px;
  right: 9px;
  font-size: 0.6875rem;
  color: var(--color-primary);
  opacity: 0;
  transition: opacity 150ms ease;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cap-expand-hint {
    opacity: 0.5;
  }
}
.cap-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding: 0 1.5rem;
  border-top: 0px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
@media (hover: hover) {
  .cap:hover {
    border-color: rgba(0, 151, 208, 0.4);
  }
  .cap:hover .cap-expand-hint {
    opacity: 0.7;
  }
  .cap:hover .cap-detail {
    max-height: 200px;
    padding: 0.5rem 1.5rem 1rem;
    border-top-width: 1px;
  }
}
.cap.open {
  border-color: rgba(0, 151, 208, 0.4);
}
.cap.open .cap-detail {
  max-height: 200px;
  padding: 0.5rem 1.5rem 1rem;
  border-top-width: 1px;
}
.cap.open .cap-expand-hint {
  opacity: 0;
}

.platform-stage--even .cap,
.platform-stage--even .platform-track--expandable {
  background: var(--color-surface);
}

.cap-plus {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.025);
  border-radius: 4px;
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
}
.cap-plus strong {
  color: var(--color-text);
  font-weight: 600;
}

.stage-detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.stage-detail.open {
  max-height: 600px;
  opacity: 1;
}

.stage-lead {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.proof-callout {
  display: flex;
  gap: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.platform-stage--even .proof-callout {
  background: rgba(0, 151, 208, 0.06);
  border-color: rgba(0, 151, 208, 0.2);
}

.proof-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.proof-text {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.proof-text strong {
  color: var(--color-text);
  font-weight: 600;
}

.stage-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem 0;
  margin-top: 0.25rem;
  transition: color 150ms ease;
  -webkit-tap-highlight-color: transparent;
}
.stage-toggle:hover {
  color: var(--color-primary-d);
}
.stage-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.stage-toggle.open svg {
  transform: rotate(180deg);
}

.platform-track {
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  height: 100%;
}
.platform-track-kicker {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.5rem;
}
.platform-track--tinted {
  background: var(--s-tint);
  border-color: var(--s-color);
}
.platform-track--tinted .platform-track-kicker {
  color: var(--s-color);
}
.platform-track--expandable {
  position: relative;
  overflow: hidden;
  cursor: default;
  background: var(--color-bg);
  border-top: 3px solid var(--s-color);
  transition: border-color 150ms ease;
}
.platform-track--expandable .platform-track-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.platform-track--expandable .platform-track-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-primary);
  font-size: 0.8125rem;
  opacity: 0.6;
  transition: opacity 150ms ease;
  pointer-events: none;
}
.platform-track--expandable.open, .platform-track--expandable:focus-within, .platform-track--expandable:hover {
  border-color: rgba(0, 151, 208, 0.4);
}
.platform-track--expandable.open .platform-track-list, .platform-track--expandable:focus-within .platform-track-list, .platform-track--expandable:hover .platform-track-list {
  max-height: 420px;
  opacity: 1;
}
.platform-track--expandable.open .platform-track-hint, .platform-track--expandable:focus-within .platform-track-hint, .platform-track--expandable:hover .platform-track-hint {
  opacity: 0;
}
.platform-track h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.platform-track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.platform-track-list li {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  padding: 0.175rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.45;
}
.platform-track-list li::before {
  content: "–";
  color: var(--color-primary);
  flex-shrink: 0;
  font-weight: 700;
}

.platform-summary {
  position: relative;
  overflow: hidden;
  background: #1e2c3c;
  padding-block: 3rem;
}
.platform-summary-h {
  font-size: clamp(1.375rem, 1rem + 2vw, 2.125rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.platform-summary-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.625rem;
}
@media (max-width: 1050px) {
  .platform-summary-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .platform-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.platform-summary > .container {
  position: relative;
  z-index: 1;
}

.platform-sum-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--s-color);
  border-radius: 8px;
  padding: 1rem 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease;
  display: block;
}
.platform-sum-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--s-color);
}
.platform-sum-card-num {
  width: 38px;
  height: 38px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  border: 1.5px solid var(--s-color);
  background: var(--s-color);
  color: #fff;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.platform-sum-card-n {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s-color);
  display: block;
  margin-bottom: 0.3rem;
  transition: color 150ms ease;
}
.platform-sum-card-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}
.platform-sum-card-out {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
  display: block;
}

.platform-cta {
  background: var(--color-surface);
  padding-block: 4.5rem;
  text-align: center;
}
.platform-cta-h {
  font-size: clamp(1.625rem, 1rem + 2.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.platform-cta-sub {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.platform-cta-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin: 2rem auto 0;
  max-width: 520px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .platform-cta-steps {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.platform-cta-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 130px;
  justify-content: center;
}
.platform-cta-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.platform-cta-step-num span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-text-muted);
}
.platform-cta-step-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.platform-cta-arrow {
  color: rgba(0, 0, 0, 0.2);
  font-size: 0.8125rem;
  flex-shrink: 0;
}
.platform-cta-note {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #718096;
}

@media (prefers-reduced-motion: reduce) {
  .cap-detail,
  .stage-detail {
    transition: none !important;
  }
}
.ss-hero {
  background: linear-gradient(180deg, #30608C 0%, #0097D0 100%);
  color: var(--color-white);
  padding-top: calc(4.5rem + 64px);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.ss-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0L0 0 0 40' fill='none' stroke='rgba(0,151,208,0.07)' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}
.ss-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ss-hero-breadcrumb a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.ss-hero-breadcrumb a:hover {
  color: var(--color-white);
}
.ss-hero-breadcrumb span[aria-hidden] {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}
.ss-hero-breadcrumb span[aria-current] {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}
.ss-hero-title {
  font-size: clamp(1.875rem, 1rem + 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 1rem;
  max-width: 640px;
}
.ss-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  line-height: 1.72;
  margin-bottom: 2rem;
  margin-top: 0;
}

.ss-quotes {
  background: var(--color-bg);
  padding-block: 3rem;
}
.ss-quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.quote-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.quote-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote-card-face {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(0, 151, 208, 0.25);
  background: linear-gradient(135deg, #1a3a52, #0d1a26);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-card-face-ph {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(0, 151, 208, 0.55);
  text-align: center;
  line-height: 1.3;
  padding: 0 4px;
}
.quote-card-company {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 2px;
}
.quote-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  display: block;
}
.quote-card-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
}
.quote-card-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid rgba(0, 151, 208, 0.3);
  padding-left: 1rem;
  margin: 0;
}

.quote-placeholder {
  background: var(--color-surface);
  border: 2px dashed rgba(0, 151, 208, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quote-placeholder strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
}
.quote-placeholder p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.quote-placeholder .ph-note {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.ss-cases {
  background: var(--color-surface);
  padding-block: 3rem;
}
.ss-cases-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ss-cases-heading-text {
  min-width: 0;
}
.ss-cases-count {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-d);
  background: rgba(0, 151, 208, 0.08);
  border: 1px solid rgba(0, 151, 208, 0.2);
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.ss-cases-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.ss-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.cs-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(20, 60, 90, 0.1) 0 18px 50px;
  overflow: hidden;
}

.cs-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.cs-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cs-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 26, 40, 0.88) 0%, rgba(6, 26, 40, 0.45) 38%, rgba(6, 26, 40, 0.05) 70%, rgba(6, 26, 40, 0) 100%);
  transition: opacity 500ms ease;
  opacity: 0.82;
}
.cs-hero-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cs-hero-title {
  margin: 0;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-hero-rule {
  display: block;
  height: 3px;
  width: 64px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (max-width: 768px) {
  .cs-hero {
    height: 280px;
  }
}

.cs-hero:hover .cs-hero-img {
  transform: scale(1.07);
}
.cs-hero:hover .cs-hero-scrim {
  opacity: 1;
}
.cs-hero:hover .cs-hero-caption {
  transform: translateY(-4px);
}
.cs-hero:hover .cs-hero-rule {
  width: 120px;
}

.cs-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
}

.cs-head {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cs-logo-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.cs-client-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: block;
  flex: none;
}

.cs-client-logo {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #33475b;
  margin-right: 0.5rem;
}

.cs-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.cs-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-d);
  background: rgba(0, 151, 208, 0.08);
  border: 1px solid rgba(0, 151, 208, 0.2);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

.cs-head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 0.375rem;
}

.cs-meta {
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #3d5266;
  margin: 0;
}

.cs-summary {
  padding: 1.5rem;
}

.cs-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.cs-row:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cs-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.cs-row-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  width: 96px;
  flex-shrink: 0;
  padding-top: 4px;
}
@media (max-width: 767px) {
  .cs-row-label {
    width: auto;
    padding-top: 0;
  }
}

.cs-row-text {
  font-size: 0.9375rem;
  color: #4a5f72;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.cs-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, opacity 250ms ease;
  opacity: 0;
  border-top: 0px solid var(--color-border);
}
.cs-detail.open {
  max-height: none;
  overflow: visible;
  opacity: 1;
  border-top-width: 1px;
}

.cs-detail-inner {
  padding: 1.5rem;
}

.cs-quote-block {
  background: rgba(0, 151, 208, 0.06);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.cs-quote-text {
  font-size: 0.9375rem;
  color: #46596a;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.cs-quote-attr {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.cs-quote-attr strong {
  color: #26394a;
  font-weight: 700;
}

.cs-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0;
  padding: 1.5rem;
  padding-top: 1rem;
  border-top: 0px solid var(--color-border);
}
@media (max-width: 480px) {
  .cs-metrics {
    grid-template-columns: 1fr;
  }
}

.cs-metric {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}
.cs-metric-val {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}
.cs-metric-label {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #6a8296;
  margin-top: 0.5rem;
  display: block;
}

.cs-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-top: 1px solid var(--color-border);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}
.cs-toggle:hover {
  background: rgba(0, 151, 208, 0.05);
}
.cs-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.cs-toggle.open svg {
  transform: rotate(180deg);
}

.testimonial-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  align-self: flex-start;
  padding: 0.5rem 0 0;
  background: none;
  border: none;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.testimonial-toggle:hover {
  text-decoration: underline;
}
.testimonial-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.testimonial-toggle.open svg {
  transform: rotate(180deg);
}

.cs-placeholder {
  background: var(--color-surface);
  border: 2px dashed rgba(0, 151, 208, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.cs-placeholder strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
}
.cs-placeholder p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.cs-placeholder .ph-note {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.ss-segments {
  background: var(--color-navy);
  padding-block: 3rem;
}
.ss-segments-h {
  font-size: clamp(1.375rem, 1rem + 2vw, 2.125rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.ss-segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.seg-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 250ms ease, background-color 250ms ease, border-color 250ms ease;
}
.seg-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}
.seg-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.seg-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
}

.ss-cta {
  background: var(--color-surface);
  padding-block: 4.5rem;
  text-align: center;
}
.ss-cta-h {
  font-size: clamp(1.625rem, 1rem + 2.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.ss-cta-sub {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .cs-detail,
  .cs-toggle svg,
  .testimonial-toggle svg,
  .cs-hero-img,
  .cs-hero-scrim,
  .cs-hero-caption,
  .cs-hero-rule {
    transition: none !important;
  }
  .cs-hero:hover .cs-hero-img {
    transform: none;
  }
  .cs-hero:hover .cs-hero-caption {
    transform: none;
  }
}
.inner-hero {
  background: linear-gradient(180deg, #30608C 0%, #0097D0 100%);
  color: var(--color-white);
  padding-top: calc(4.5rem + 64px);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0L0 0 0 40' fill='none' stroke='rgba(0,151,208,0.07)' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}
.inner-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.inner-hero-breadcrumb a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.inner-hero-breadcrumb a:hover {
  color: var(--color-white);
}
.inner-hero-breadcrumb span[aria-hidden] {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}
.inner-hero-breadcrumb span[aria-current] {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}
.inner-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 0.5rem;
}
.inner-hero-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--color-cyan);
  border-radius: 2px;
  display: block;
}
.inner-hero-title {
  font-size: clamp(1.875rem, 1rem + 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 1rem;
  max-width: 640px;
}
.inner-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  line-height: 1.72;
  margin-bottom: 2rem;
  margin-top: 0;
}
.inner-hero .pg-news-meta {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  justify-content: flex-start;
}
.inner-hero .pg-news-meta i {
  color: rgba(255, 255, 255, 0.8);
}

.pg-section {
  padding-block: 3rem;
}
.pg-section--alt {
  background: var(--color-surface);
}
.pg-section--dark {
  background: var(--color-navy);
}
.pg-section--tint {
  background: rgba(0, 151, 208, 0.04);
  border-top: 1px solid rgba(0, 151, 208, 0.12);
  border-bottom: 1px solid rgba(0, 151, 208, 0.12);
}

.pg-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}
.pg-label--light {
  color: var(--color-cyan);
}

.pg-h {
  font-size: clamp(1.375rem, 1rem + 2.5vw, 2.375rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 0.5rem;
  scroll-margin-top: 96px;
}
.pg-h--light {
  color: var(--color-white);
}

.pg-sub {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 2rem;
}
.pg-sub--light {
  color: rgba(255, 255, 255, 0.5);
}
.pg-sub--wide {
  max-width: 80ch;
}
@media (max-width: 768px) {
  .pg-sub {
    font-size: 0.9375rem;
  }
}

.pg-body {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.75;
  max-width: 680px;
}
.pg-body p {
  margin-bottom: 1.25rem;
}
.pg-body p:last-child {
  margin-bottom: 0;
}
.pg-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 2rem 0 0.5rem;
  scroll-margin-top: 96px;
}
.pg-body h2:first-child {
  margin-top: 0;
}
.pg-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin: 1.5rem 0 0.5rem;
  scroll-margin-top: 96px;
}
.pg-body ul, .pg-body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}
.pg-body li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.pg-legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 992px) {
  .pg-legal-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
  }
}
.pg-legal-layout .pg-body {
  max-width: none;
}

.pg-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.pg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  line-height: 1.6;
  min-width: 480px;
}
.pg-table th, .pg-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.pg-table th {
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-surface);
  white-space: nowrap;
}
.pg-table td {
  color: var(--color-text-muted);
}
.pg-table code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8125rem;
  color: var(--color-text);
  background: var(--color-gray-100);
  padding: 2px 5px;
  border-radius: 4px;
  overflow-wrap: break-word;
}

.pg-legal-toc {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  align-self: start;
}
@media (min-width: 992px) {
  .pg-legal-toc {
    position: sticky;
    top: 96px;
  }
}
.pg-legal-toc-h {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.pg-legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pg-legal-toc a {
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}
.pg-legal-toc a:hover {
  color: var(--color-primary);
}

.pg-pull-quote {
  background: var(--color-navy);
  border-radius: 16px;
  padding: 2rem 3rem;
  border-left: 4px solid var(--color-primary);
}
.pg-pull-quote-text {
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  letter-spacing: -0.01em;
}
.pg-pull-quote-text em {
  color: var(--color-cyan);
  font-style: normal;
}

.pg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .pg-split {
    grid-template-columns: 1fr;
  }
}

.pg-split-img {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a52, var(--color-navy));
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pg-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .pg-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pg-stat {
  background: var(--color-surface);
  padding: 1.5rem;
  text-align: center;
}
@media (max-width: 600px) {
  .pg-stat {
    padding: 1rem 0.5rem;
  }
}
.pg-stat-val {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: 0.375rem;
}
@media (max-width: 768px) {
  .pg-stat-val {
    font-size: 1.625rem;
  }
}
@media (max-width: 600px) {
  .pg-stat-val {
    font-size: clamp(0.9375rem, 5.2vw, 1.625rem);
  }
}
.pg-stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  display: block;
}

.pg-founder {
  padding-block: 112px;
  background: var(--color-surface);
}
@media (max-width: 991px) {
  .pg-founder {
    padding-block: 3rem;
  }
}

.pg-founder-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 381fr) minmax(0, 747fr);
  align-items: end;
}
@media (max-width: 991px) {
  .pg-founder-stage {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pg-founder-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #efefef);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991px) {
  .pg-founder-card {
    display: none;
  }
}

.pg-founder-photo {
  position: relative;
  align-self: end;
  margin-bottom: 0;
}
.pg-founder-photo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .pg-founder-photo {
    max-width: 320px;
    margin-inline: auto;
  }
}

.pg-founder-text {
  position: relative;
  padding-bottom: 2rem;
}

.pg-founder-kicker {
  text-align: center;
  font-size: clamp(1.75rem, 1rem + 2.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: #0d1a26;
  margin: 0 0 1.5rem;
}
.pg-founder-kicker span {
  color: var(--color-primary);
}

.pg-founder-lead {
  font-size: 1.125rem;
  line-height: 24px;
  color: #4a5568;
  margin: 0 0 1.5rem;
  max-width: 693px;
}
@media (max-width: 768px) {
  .pg-founder-lead {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.pg-founder-cols {
  display: grid;
  grid-template-columns: minmax(0, 369fr) minmax(0, 341fr);
  gap: 18px;
  align-items: start;
}
@media (max-width: 768px) {
  .pg-founder-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.pg-founder-col p {
  font-size: 0.75rem;
  line-height: 20px;
  color: #4a5568;
  margin: 0 0 0.5rem;
}
.pg-founder-col p:last-child {
  margin-bottom: 0;
}

.pg-founder-attr {
  margin-top: 1.5rem;
}

.pg-founder-name {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.pg-founder-role {
  font-size: 12px;
  font-weight: 700;
  color: #838383;
  margin: 4px 0 0;
}

.pg-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .pg-team {
    grid-template-columns: 1fr 1fr;
  }
}

.pg-team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.pg-team-photo {
  height: 200px;
  width: 100%;
  background: linear-gradient(135deg, #1a3a52, var(--color-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pg-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.pg-team-info {
  padding: 1.5rem;
}
.pg-team-info-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}
.pg-team-info-role {
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.pg-team-info-bio {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.pg-celebration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .pg-celebration-grid {
    grid-template-columns: 1fr;
  }
}

.pg-celebration-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a52, var(--color-navy));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 250ms ease;
}
.pg-celebration-tile:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .pg-celebration-tile {
    transition: none;
  }
}
.pg-celebration-tile--main {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .pg-celebration-tile--main {
    aspect-ratio: 4/3;
    min-height: 0;
  }
}
.pg-celebration-tile--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
}
.pg-celebration-tile--main .pg-celebration-open {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
}
.pg-celebration-tile--wide {
  aspect-ratio: 16/9;
}
.pg-celebration-tile--small {
  aspect-ratio: 1;
}

.pg-celebration-open {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.pg-celebration-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms ease;
}
.pg-celebration-tile:hover .pg-celebration-open img {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .pg-celebration-open img {
    transition: none;
  }
  .pg-celebration-tile:hover .pg-celebration-open img {
    transform: none;
  }
}

.pg-celebration-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pg-celebration-tile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pg-celebration-caption {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  color: #fff;
}
.pg-celebration-caption-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 0.25rem;
}
.pg-celebration-caption-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.pg-celebration-tag {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.pg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(8, 10, 14, 0.92);
}
.pg-lightbox[hidden] {
  display: none;
}

.pg-lightbox-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: min(1100px, 100%);
  max-height: 100%;
}

.pg-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pg-lightbox-caption {
  margin: 0;
  color: #fff;
  font-size: 0.9375rem;
  text-align: center;
}
.pg-lightbox-caption:empty {
  display: none;
}

.pg-lightbox-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
}

.pg-lightbox-close,
.pg-lightbox-nav {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.pg-lightbox-close:hover,
.pg-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.pg-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
}

.pg-lightbox-nav {
  width: 48px;
  height: 48px;
}
@media (max-width: 640px) {
  .pg-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
  }
}
@media (max-width: 640px) {
  .pg-lightbox-nav--prev {
    left: 0.5rem;
  }
}
@media (max-width: 640px) {
  .pg-lightbox-nav--next {
    right: 0.5rem;
  }
}

.pg-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pg-value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
}
.pg-value-card-name {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
  display: block;
  margin-bottom: 0.25rem;
}
.pg-value-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
}

.pg-news {
  margin-top: 1.5rem;
}

.pg-news-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: box-shadow 150ms ease;
  text-decoration: none;
}
.pg-news-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.pg-news-img {
  height: 192px;
  flex-shrink: 0;
  background: #ebe8e3;
  overflow: hidden;
  position: relative;
}
.pg-news-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-news-img--hero {
  height: auto;
  max-height: 420px;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.pg-news-img--hero img {
  position: static;
  max-height: 420px;
}

.pg-news-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pg-news-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
}

.pg-news-h {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  width: 100%;
}

.pg-news-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  display: block;
  width: 100%;
}

.pg-news-excerpt {
  font-size: 0.75rem;
  color: #6b6b6b;
  line-height: 1.625;
  flex: 1;
  margin-bottom: 0.5rem;
  width: 100%;
}

.pg-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.6875rem;
  color: #6b6b6b;
  margin-bottom: 0;
  width: 100%;
}

.pg-news-meta-dates {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pg-news-meta-dates span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pg-news-meta-dates i {
  font-size: 0.625rem;
  color: #6b6b6b;
}

.pg-news-card .pg-news-meta {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.pg-news-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.pg-news-badge--news {
  color: #1447e6;
  background: #eff6ff;
}
.pg-news-badge--insights {
  color: #7008e7;
  background: #f5f3ff;
}
.pg-news-badge--case-studies {
  color: #007a55;
  background: #ecfdf5;
}
.pg-news-badge--events {
  color: #bb4d00;
  background: #fffbeb;
}
.pg-news-badge--default {
  color: var(--color-primary);
  background: rgba(0, 151, 208, 0.08);
}

.pg-news-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.375rem;
  position: relative;
  z-index: 1;
}
.pg-news-link:hover {
  color: var(--color-primary-d);
}
.pg-news-link::after {
  content: "→";
}

.pg-news-link--stretched::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pg-news-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--color-surface);
  border-radius: 16px;
  border: 2px dashed rgba(0, 151, 208, 0.3);
}
.pg-news-empty p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.pg-news-empty a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.pg-news-loadmore {
  text-align: center;
  margin-top: 2rem;
}
.pg-news-loadmore .secondary-btn {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111111;
  padding: 0.6rem 1.5rem;
}

.pg-news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .pg-news-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }
}

.pg-news-sidebar {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  overflow: hidden;
  align-self: start;
}
.pg-news-sidebar-h {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
  padding: 16px 20px 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.pg-news-side-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
}
.pg-news-side-item:last-of-type {
  border-bottom: none;
}
.pg-news-side-item-img {
  flex: 0 0 64px;
  width: 64px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #ebe8e3;
}
.pg-news-side-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-news-side-item-body {
  min-width: 0;
}
.pg-news-side-item-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: #111111;
  line-height: 1.375;
  margin-bottom: 0.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg-news-side-item-date {
  font-size: 0.625rem;
  color: #6b6b6b;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pg-news-side-item-date i {
  font-size: 0.5625rem;
}

.pg-news-side-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.pg-news-side-badge--news {
  color: #1447e6;
  background: #eff6ff;
}
.pg-news-side-badge--insights {
  color: #7008e7;
  background: #f5f3ff;
}
.pg-news-side-badge--case-studies {
  color: #007a55;
  background: #ecfdf5;
}
.pg-news-side-badge--events {
  color: #bb4d00;
  background: #fffbeb;
}
.pg-news-side-badge--default {
  color: var(--color-primary);
  background: rgba(0, 151, 208, 0.08);
}

.pg-news-sidebar-viewall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 13px 20px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.pg-news-sidebar-viewall:hover {
  color: var(--color-primary-d);
}

.pg-news-article-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text);
}
.pg-news-article-body p {
  margin-bottom: 1rem;
}
.pg-news-article-body a {
  color: var(--color-primary);
}
.pg-news-article-body a:hover {
  color: var(--color-primary-d);
}
.pg-news-article-body li[data-list] {
  display: block;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.25em;
}
.pg-news-article-body li[data-list]::before {
  position: absolute;
  left: 0.3em;
}
.pg-news-article-body li[data-list][data-list=bullet]::before {
  content: "•";
}
.pg-news-article-body li[data-list][data-list=ordered] {
  counter-increment: list-counter;
}
.pg-news-article-body li[data-list][data-list=ordered]::before {
  content: counter(list-counter) ".";
}
.pg-news-article-body li[data-list][data-list=ordered]:first-of-type, .pg-news-article-body li[data-list][data-list=bullet]:first-of-type {
  counter-reset: list-counter;
}

.pg-jobs {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pg-job {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.pg-job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 150ms ease;
  gap: 0.5rem;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: var(--color-surface);
  width: 100%;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  text-align: left;
}
.pg-job-header:hover {
  background: var(--color-bg);
}

.pg-job-title-group {
  flex: 1;
}

.pg-job-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.pg-job-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pg-job-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-primary-d);
  background: rgba(0, 151, 208, 0.08);
  border: 1px solid rgba(0, 151, 208, 0.2);
  padding: 2px 9px;
  border-radius: 9999px;
}

.pg-job-chevron {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  transition: transform 150ms ease;
}

.pg-job-header[aria-expanded=true] .pg-job-chevron {
  transform: rotate(180deg);
}

.accordion-button.pg-job-header::after {
  display: none;
}
.accordion-button.pg-job-header:not(.collapsed) {
  background-color: var(--color-bg);
  box-shadow: none;
  color: inherit;
}
.accordion-button.pg-job-header:focus {
  box-shadow: none;
}

.pg-job-body-inner {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-border);
}
.pg-job-body-inner h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  margin-top: 1rem;
}
.pg-job-body-inner h4:first-child {
  margin-top: 0;
}
.pg-job-body-inner p, .pg-job-body-inner li {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.65;
}
.pg-job-body-inner ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.pg-job-body-inner li {
  margin-bottom: 0.3rem;
}
.pg-job-body-inner .primary-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-top: 1rem;
}

.pg-job-apply {
  display: inline-block;
  margin-top: 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease;
}
.pg-job-apply:hover {
  background: var(--color-primary-d);
  color: var(--color-white);
}

.pg-jobs-empty {
  background: var(--color-surface);
  border: 2px dashed rgba(0, 151, 208, 0.3);
  border-radius: 8px;
  padding: 3rem 1.5rem;
  text-align: center;
}
.pg-jobs-empty p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.pg-jobs-empty a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.pg-contact {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .pg-contact {
    grid-template-columns: 1fr;
  }
}

.pg-contact-field {
  margin-bottom: 1rem;
}
.pg-contact-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.pg-contact-field label .req {
  color: var(--color-primary);
  margin-left: 2px;
}
.pg-contact-field input, .pg-contact-field select, .pg-contact-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 0.875rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color 150ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.pg-contact-field input:focus, .pg-contact-field select:focus, .pg-contact-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 151, 208, 0.1);
}
.pg-contact-field textarea {
  min-height: 120px;
  resize: vertical;
}
.pg-contact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

.pg-contact-submit {
  width: 100%;
  padding: 13px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  cursor: pointer;
  transition: background 150ms ease;
}
.pg-contact-submit:hover {
  background: var(--color-primary-d);
}

.pg-contact-info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 84px;
}
@media (max-width: 900px) {
  .pg-contact-info {
    position: static;
  }
}
.pg-contact-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.pg-contact-method {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pg-contact-method svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 1px;
}
.pg-contact-method-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}
.pg-contact-method a {
  font-size: 0.8125rem;
  color: var(--color-primary);
  text-decoration: none;
  display: block;
}
.pg-contact-method a:hover {
  color: var(--color-primary-d);
}
.pg-contact-method span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.pg-demo-redirect {
  background: rgba(0, 151, 208, 0.06);
  border: 1px solid rgba(0, 151, 208, 0.2);
  border-radius: 4px;
  padding: 1rem;
  margin-top: 1rem;
}
.pg-demo-redirect p {
  font-size: 0.8125rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.pg-demo-redirect a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.pg-cta {
  background: var(--color-surface);
  text-align: center;
  padding-block: 4.5rem;
}
.pg-cta h2 {
  font-size: clamp(1.375rem, 1rem + 2vw, 2.125rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  max-width: none;
}
.pg-cta p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.pg-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pg-impact-card {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pg-impact-card {
    grid-template-columns: 1fr;
  }
}
.pg-impact-photo {
  align-self: start;
  padding: 1.5rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .pg-impact-photo {
    padding: 1.5rem 1.5rem 0;
  }
}
.pg-impact-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.pg-impact-body {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pg-impact-stat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pg-impact-stat-label {
  font-family: "Archivo Narrow", Archivo, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: #4a4a4f;
  text-transform: uppercase;
  line-height: 1;
}
.pg-impact-stat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pg-impact-stat-icon {
  width: 54px;
  height: 46px;
  flex: none;
}
.pg-impact-stat-val {
  font-size: 4.125rem;
  font-weight: 700;
  color: #29a9e0;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .pg-impact-stat-val {
    font-size: 3rem;
  }
}
.pg-impact-stat-note {
  font-size: 0.9375rem;
  color: #7b7b82;
  line-height: 1.5;
  max-width: 44ch;
}
.pg-impact-rule {
  height: 1px;
  background: #e3e1de;
}
.pg-impact-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 62ch;
}
.pg-impact-copy h2 {
  margin: 0;
  font-family: "Archivo Narrow", Archivo, sans-serif;
  font-size: 1.6875rem;
  font-weight: 700;
  color: #2f2f34;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.pg-impact-copy h3 {
  margin: 0.5rem 0 0;
  font-family: "Archivo Narrow", Archivo, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #29a9e0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}
.pg-impact-copy p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: #55555c;
  text-wrap: pretty;
}
.pg-impact-sdg {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 600px) {
  .pg-impact-sdg {
    justify-content: center;
  }
}
.pg-impact-sdg > div {
  min-width: 0;
  max-width: 100%;
}
.pg-impact-sdg .b1g1-sdg-widget,
.pg-impact-sdg .b1g1-sdg-widget section {
  float: none !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
.pg-impact-sdg .img-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 160px;
  height: 160px;
}
.pg-impact-sdg .img-sec:hover .img-hover-text {
  display: block !important;
}
.pg-impact-sdg .sdg-plan .img-sec {
  max-width: 320px;
}
.pg-impact-sdg .sdg-img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
}

.pg-layers-head, .pg-hubs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pg-layers-head .pg-h, .pg-hubs-head .pg-h {
  margin-bottom: 0;
}

.pg-hubs-head-note {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 38ch;
  margin: 0;
}

.pg-layers-head-note {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 38ch;
  margin: 0;
}

.pg-hubs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pg-hub {
  --pg-hub-accent: var(--color-cyan);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease, border-color 250ms ease;
}
.pg-hub::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--pg-hub-accent);
}
.pg-hub:hover, .pg-hub:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .pg-hub:hover, .pg-hub:focus-within {
    transform: none;
  }
}
.pg-hub-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pg-hub-glyph {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pg-hub-accent);
  color: var(--color-navy);
}
.pg-hub-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}
.pg-hub-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
}
.pg-hub-caps {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pg-hub-caps li {
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.pg-hub-link {
  margin-top: auto;
  padding-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-cyan);
  text-decoration: none;
  transition: color 150ms ease, gap 150ms ease;
}
.pg-hub-link[hidden] {
  display: none;
}
.pg-hub-link:hover, .pg-hub-link:focus-visible {
  color: var(--color-white);
  gap: 0.65rem;
}
.pg-hub-link span {
  font-size: 0.9375rem;
  line-height: 1;
}
@media (prefers-reduced-motion: reduce) {
  .pg-hub-link:hover, .pg-hub-link:focus-visible {
    gap: 0.4rem;
  }
}

.pg-layers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pg-layer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.pg-layer:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 151, 208, 0.35);
}
@media (prefers-reduced-motion: reduce) {
  .pg-layer:hover {
    transform: none;
  }
}
.pg-layer-id {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 clamp(240px, 24vw, 300px);
}
.pg-layer-glyph {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
}
.pg-layer-titles {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.pg-layer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.pg-layer-kicker {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.pg-layer-desc {
  flex: 1 1 320px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}
.pg-layer-badge {
  flex: none;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  background: rgba(0, 151, 208, 0.08);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pg-layer {
    align-items: flex-start;
    gap: 1rem;
  }
  .pg-layer-id {
    flex: 1 1 100%;
  }
  .pg-layer-desc {
    flex: 1 1 100%;
  }
  .pg-layer-badge {
    display: none;
  }
}

.pg-hub-glyph-svg {
  display: block;
}

.exh-map {
  --exh-accent: #45f0cf;
  --exh-accent-soft: rgba(69, 240, 207, 0.65);
  --exh-dot: #3d5488;
  font-family: "Manrope", system-ui, sans-serif;
  position: relative;
  width: 100%;
  padding: 3rem clamp(16px, 4vw, 72px) 3rem;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 70% -10%, rgba(47, 227, 192, 0.1), transparent 60%), radial-gradient(900px 500px at 10% 110%, rgba(47, 227, 192, 0.06), transparent 55%), #060b1c;
  color: #eef2fb;
}
.exh-map a {
  color: var(--exh-accent);
  text-decoration: none;
}
.exh-map a:hover {
  color: #7cf0dc;
}
.exh-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1500px;
  margin: 0 auto 0.5rem;
}
.exh-map-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--exh-accent);
  opacity: 0.95;
}
.exh-map-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--exh-accent);
  box-shadow: 0 0 0 4px var(--exh-accent-soft);
}
.exh-map-count {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.5rem;
}
.exh-map-count b {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}
.exh-map-count span {
  font-size: 0.9375rem;
  font-weight: 600;
  opacity: 0.62;
  max-width: 260px;
  line-height: 1.3;
}
.exh-map-stage {
  position: relative;
  max-width: 1500px;
  margin: 0.5rem auto 0;
  aspect-ratio: 1.95/1;
}
@media (max-width: 767px) {
  .exh-map-stage {
    aspect-ratio: 1.85/1;
    margin-inline: calc(-1 * clamp(16px, 4vw, 72px));
    width: auto;
  }
}
.exh-map-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.exh-map-beacons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .exh-map-beacons {
    display: none;
  }
}
.exh-map-legend {
  display: none;
}
@media (max-width: 767px) {
  .exh-map-legend {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    max-width: 1500px;
  }
  .exh-map-legend li {
    position: relative;
    padding-left: 14px;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #eef2fb;
    opacity: 0.78;
  }
  .exh-map-legend li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--exh-accent);
  }
}

.exh-beacon {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.exh-beacon i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--exh-accent);
  box-shadow: 0 0 12px 2px var(--exh-accent-soft), 0 0 0 1px rgba(255, 255, 255, 0.5);
  z-index: 2;
}
.exh-beacon::before, .exh-beacon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.35);
  background: var(--exh-accent);
  opacity: 0.7;
  animation: exh-pulse 3s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
}
.exh-beacon::after {
  animation-delay: 1.5s;
}
.exh-beacon-lbl {
  position: absolute;
  left: 50%;
  bottom: 150%;
  transform: translate(-50%, 0);
  white-space: nowrap;
  text-align: center;
  padding: 4px 9px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 150ms ease;
}
.exh-beacon-lbl .nm {
  display: block;
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #eef2fb;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 0.9);
}
.exh-beacon-lbl .nm .co {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--exh-accent);
  opacity: 0.9;
  margin-top: 1px;
}
.exh-beacon:hover {
  z-index: 20;
}
.exh-beacon:hover .exh-beacon-lbl {
  background: rgba(6, 12, 28, 0.94);
  border-color: var(--exh-accent-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.exh-beacon:hover i {
  animation: exh-bump 0.4s ease;
}
.exh-beacon[data-pos=right] .exh-beacon-lbl {
  left: 180%;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.exh-beacon[data-pos=left] .exh-beacon-lbl {
  right: 180%;
  left: auto;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}
.exh-beacon[data-pos=bottom] .exh-beacon-lbl {
  top: 170%;
  bottom: auto;
}
.exh-beacon[data-pos=topleft] .exh-beacon-lbl {
  left: auto;
  right: 60%;
  bottom: 150%;
  text-align: right;
}

@keyframes exh-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.35);
    opacity: 0.6;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.8);
    opacity: 0;
  }
}
@keyframes exh-bump {
  50% {
    box-shadow: 0 0 16px 4px var(--exh-accent-soft), 0 0 3px #fff;
  }
}
