:root {
  --bg-main: #f9f9ff;
  --bg-soft: #f1f3fe;
  --bg-deep: #ebedf8;
  --page-bg: #f3f3f3;
  --text: #181c23;
  --muted: #414754;
  --primary: #005cbc;
  --primary-2: #1274e7;
  --line: rgba(255, 255, 255, 0.5);
  --line-2: rgba(0, 92, 188, 0.14);
  --glass: rgba(255, 255, 255, 0.6);
  --glass-strong: rgba(255, 255, 255, 0.75);
  --radius-xl: 24px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --shadow-lg: 0 30px 60px -15px rgba(95, 119, 166, 0.18);
  --shadow-md: 0 20px 30px -14px rgba(95, 119, 166, 0.16);
  --shadow-sm: 0 8px 20px -12px rgba(95, 119, 166, 0.16);
  --shadow-card-unified: 0 24px 48px -24px rgba(73, 98, 140, 0.24);
  --h2-card-size: clamp(1.75rem, 2.2vw, 2rem);
  --h2-card-line: 1.2;
  --h2-card-weight: 700;
  --h2-card-color: #0b58b8;
  --page-hero-top: 96px;
  --page-hero-bottom: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(31, 119, 238, 0.14), transparent 32%),
    radial-gradient(circle at 95% 100%, rgba(20, 115, 241, 0.14), transparent 28%),
    var(--page-bg);
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(56px);
  opacity: 0.48;
}

body::before {
  width: 540px;
  height: 540px;
  left: -180px;
  top: 120px;
  background: radial-gradient(circle, rgba(45, 138, 255, 0.52) 0%, rgba(45, 138, 255, 0) 72%);
}

body::after {
  width: 620px;
  height: 620px;
  right: -220px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(26, 119, 236, 0.45) 0%, rgba(26, 119, 236, 0) 76%);
}

/* Careers page: use clean flat background to avoid right-side gray cast */
body.careers-page {
  background: #e7f0ff;
}

body.careers-page::before,
body.careers-page::after {
  display: none;
}


/* Hard override: remove any top gap / right cast on careers page */
body.careers-page,
body.careers-page main,
body.careers-page .careers-hero {
  background-color: #e7f0ff !important;
}

body.careers-page .topbar {
  position: sticky;
  top: 14px !important;
  background: transparent;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

main .container {
  padding-left: 0;
  padding-right: 0;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 120;
  background: transparent;
  padding: 0 12px 12px;
}

.nav-wrap {
  position: relative;
  min-height: 81px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 10px 20px 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, rgba(246, 249, 255, 0.64), rgba(230, 236, 246, 0.58));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(41, 86, 153, 0.16);
  transition: box-shadow 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}

.topbar.is-scrolled .nav-wrap {
  box-shadow: 0 16px 38px rgba(23, 62, 121, 0.22);
  background: linear-gradient(135deg, rgba(250, 252, 255, 0.72), rgba(236, 242, 251, 0.68));
  transform: translateY(-2px);
}

.nav-wrap:hover {
  background: linear-gradient(135deg, rgba(252, 254, 255, 0.56), rgba(238, 244, 252, 0.52));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 81.6px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.94rem;
  color: #25364d;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-copy small {
  font-size: 0.68rem;
  font-weight: 600;
  color: #53657d;
}

.menu {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  justify-content: center;
  justify-self: center;
  width: 100%;
  padding: 4px 6px;
  border-radius: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
}

.menu-indicator {
  position: absolute;
  top: 4px;
  left: 0;
  width: 0;
  height: calc(100% - 8px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(29, 68, 126, 0.16);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), width 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.menu.menu-indicator-enabled .menu-indicator {
  opacity: 1;
}

.menu.menu-indicator-enabled {
  border: 0;
  background: transparent;
}

.menu a {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
  padding: 0.48rem 0.72rem;
  border-radius: 10px;
  border-bottom: 0;
  transition: color 0.28s ease, background-color 0.28s ease;
}

.menu a::after {
  content: none;
}

.menu a:hover,
.menu a.active,
.menu a.is-current {
  color: #0b4d9f;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(29, 68, 126, 0.16);
}

.menu a:hover::after,
.menu a.active::after,
.menu a.is-current::after {
  transform: none;
}

.menu.menu-indicator-enabled a:hover,
.menu.menu-indicator-enabled a.active,
.menu.menu-indicator-enabled a.is-current {
  background: transparent;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  padding: 0.54rem 0.72rem;
  background: var(--glass-strong);
  color: #20426c;
  font-weight: 700;
}

.nav-wrap > .btn {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  padding: 0.74rem 1.35rem;
  transition: 0.24s ease;
}

.btn-primary {
  color: #fff;
  background: var(--primary-2);
  box-shadow: 0 8px 14px rgba(18, 116, 231, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 18px rgba(18, 116, 231, 0.38);
}

.btn-outline {
  color: #222e40;
  background: transparent;
  border: 1px solid rgba(114, 119, 133, 0.7);
}

main section {
  padding: 60px 0;
}

.page-hero {
  padding-top: var(--page-hero-top) !important;
  padding-bottom: var(--page-hero-bottom) !important;
}

.section-soft {
  background: var(--bg-soft);
}

.section-deep {
  background: var(--bg-deep);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  box-shadow: var(--shadow-lg);
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-sub {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-banner {
  position: relative;
  min-height: 700px;
  border-radius: 0;
  overflow: hidden;
  margin: 0 -32px;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(93deg, rgba(15, 31, 52, 0.55) 0%, rgba(15, 31, 52, 0.22) 40%, rgba(15, 31, 52, 0.06) 70%),
    radial-gradient(700px 300px at 18% 26%, rgba(255, 255, 255, 0.14), transparent 70%);
}

.hero-content {
  position: absolute;
  top: 160px;
  left: 40px;
  width: min(768px, calc(100% - 80px));
  z-index: 2;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.hero-content h1 strong {
  color: #2080ed;
}

.hero-content p {
  margin: 24px 0 0;
  max-width: 540px;
  color: rgba(245, 249, 255, 0.94);
  font-size: 18px;
  line-height: 1.62;
}

.hero-catalogue {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.hero-catalogue::after {
  content: "";
  width: 86px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-700 {
  min-height: 700px;
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px;
  background: var(--glass);
  border-left: 1px solid var(--line-2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.split-text h2,
.split-text h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.split-text p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.meta-lines {
  margin-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-row span:first-child {
  color: rgba(24, 28, 35, 0.42);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.meta-row span:last-child {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
}

.tag-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 92, 188, 0.3);
  color: var(--primary);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 6px 14px;
  background: rgba(0, 92, 188, 0.05);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  padding: 24px;
}

.card,
.mini-card,
.cert-item,
.leader-card,
.job-card,
.cv-panel,
.news-item {
  background-color: rgba(245, 247, 252, 0.9);
}

.has-hover-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --hover-x: 50%;
  --hover-y: 50%;
}

.has-hover-glow::before {
  content: "";
  position: absolute;
  inset: -28%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  filter: blur(26px);
  transition: opacity 0.26s ease;
  background: radial-gradient(
    circle at var(--hover-x) var(--hover-y),
    rgba(255, 255, 255, 0.72) 0%,
    rgba(189, 217, 255, 0.34) 22%,
    rgba(141, 186, 255, 0.2) 40%,
    rgba(141, 186, 255, 0) 62%
  );
}

.has-hover-glow:hover::before,
.has-hover-glow.is-hovering::before {
  opacity: 1;
}

.has-hover-glow > * {
  position: relative;
  z-index: 1;
}

.card h3,
.card h4 {
  margin: 0;
  line-height: 1.35;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.center-card {
  text-align: center;
}

.center-card .icon-dot {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  margin: 0 auto 12px;
  background: rgba(177, 201, 253, 0.5);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 20px;
}

.careers-hero {
  padding: var(--page-hero-top) 32px 80px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #e7f0ff 0%, #f9f9ff 100%);
}

.careers-hero-copy {
  max-width: 896px;
}

.careers-hero-title {
  color: var(--primary);
}

.careers-hero-sub {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #3c4a42;
}

.careers-hero-cta {
  margin-top: 24px;
  min-width: 228px;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.careers-hero-gallery {
  position: relative;
  width: min(1357.122px, calc(100vw - 64px));
  aspect-ratio: 1357.122 / 431.807;
  height: auto;
  max-width: none;
  margin: 32px 0 0 50%;
  transform: translateX(-50%);
}

.careers-gallery-item {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 9.578px;
  background: rgba(255, 255, 255, 0.72);
}

.careers-gallery-item img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.careers-gallery-item-edge-left {
  left: 0;
  top: 41.59%;
  width: 15.06%;
  height: 58.4%;
}

.careers-gallery-item-edge-left img {
  left: -94.41%;
  width: 219.4%;
  height: 100%;
}

.careers-gallery-item-left {
  left: 16.83%;
  top: 16.82%;
  width: 17.58%;
  height: 68.21%;
}

.careers-gallery-item-left img,
.careers-gallery-item-right img,
.careers-gallery-item-edge-right img {
  width: 100%;
  height: 100%;
}

.careers-gallery-item-main {
  left: 36.18%;
  top: 0;
  width: 24.29%;
  height: 100%;
  box-shadow: 0 15.963px 19.954px -3.991px rgba(0, 0, 0, 0.1), 0 6.385px 7.982px -4.789px rgba(0, 0, 0, 0.1);
}

.careers-gallery-item-main img {
  top: 0;
  left: -14.69%;
  width: 132.78%;
  height: 99.82%;
}

.careers-gallery-item-right {
  left: 62.24%;
  top: 25.69%;
  width: 17.47%;
  height: 68.39%;
}

.careers-gallery-item-edge-right {
  left: 81.47%;
  top: 19.96%;
  width: 18.53%;
  height: 38.82%;
}

.careers-intro-section {
  padding-top: 72px;
  background: #f9f9ff;
}

.careers-intro-header {
  max-width: 900px;
}

.careers-section-title,
.careers-jobs-title {
  color: var(--primary);
}

.careers-intro-header .section-sub {
  font-size: 1.08rem;
}

.careers-benefits {
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 60px;
}

.careers-benefits .card {
  background: rgba(255, 255, 255, 0.4) !important;
  padding: clamp(34px, 4vw, 58px) clamp(24px, 3vw, 42px);
}

.careers-benefits .icon-dot {
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  background: rgba(190, 210, 255, 0.62);
  font-size: 1.45rem;
}

.careers-benefit-title {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.careers-benefits p {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.65;
}

.careers-jobs-title {
  font-size: 2rem;
}

.careers-jobs-list {
  margin-top: 24px;
}

.jobs-layout.jobs-many .careers-jobs-list {
  position: sticky;
  top: 110px;
}

#jobs {
  background: #f0f3ff;
  margin-bottom: -40px;
}


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

.job-heading {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.2;
}

.job-summary {
  margin-top: 12px;
}

.cv-panel-title {
  font-size: 1.75rem;
  text-align: center;
}

.cv-panel-lead {
  text-align: center;
}

.cv-panel-subtitle {
  margin: 20px 0 8px;
  font-size: 1.2rem;
}

.cv-panel-subtitle-first {
  margin-top: 18px;
}

.cv-form-row {
  margin-top: 12px;
}

.cv-email-list {
  margin-top: 0;
}

.cv-note {
  margin-top: 12px;
  color: #5b6c84;
}

.feature-card {
  padding: 0;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.feature-card .content {
  padding: 24px;
}

.list-check {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.list-check li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #1274e7;
  font-weight: 800;
}

.jobs {
  display: grid;
  gap: 12px;
}

.job-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow-md);
}

.job-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.job-hot {
  border-radius: 9999px;
  padding: 4px 12px;
  background: rgba(198, 84, 1, 0.1);
  color: #c65401;
  font-size: 12px;
  font-weight: 600;
}

.job-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.career-detail-hero-card {
  padding: 36px;
}

.career-detail-title {
  color: #0b58b8;
  font-size: clamp(2rem, 3.6vw, 2.3rem);
}

.career-detail-meta {
  margin-top: 14px;
  font-size: 0.95rem;
}

.career-detail-meta i {
  color: var(--primary);
  font-size: 1rem;
}

.career-detail-section {
  padding-top: 0;
}

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

.career-detail-content-card {
  padding: 32px;
}

.career-detail-heading-gap {
  margin-top: 26px;
}

.job-card .btn-outline {
  margin-top: 16px;
  width: 100%;
}

.cv-panel {
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 49px;
}

.cv-panel h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.cv-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.jobs-layout.jobs-many .cv-panel {
  position: sticky;
  top: 110px;
}

.form-grid-2 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-group {
  display: grid;
  gap: 4px;
}

.form-group label {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #c1c6d6;
  border-radius: 6px;
  background: #fff;
  padding: 11px 13px;
  font: inherit;
  color: #303d50;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.upload-box {
  margin-top: 12px;
  border: 2px dashed #c1c6d6;
  border-radius: 6px;
  background: #fff;
  padding: 26px;
  text-align: center;
  color: #64748b;
}

.upload-box strong {
  color: var(--primary);
}

.form-submit {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.footer {
  padding: 64px 0 32px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.footer h4 {
  margin: 0 0 12px;
  color: #00adef;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer p,
.footer li,
.footer a {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.footer ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.contact-list .icon {
  width: 16px;
  text-align: center;
  line-height: 1.6;
  color: #00adef;
}

.social-chip {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.social-links {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-links .social-chip {
  margin-top: 0;
}

.social-chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.quick-quote {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
}

.quick-quote input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  color: #334155;
}

.quick-quote .btn {
  border-radius: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: fit-content;
  padding-inline: 18px;
}

.site-footer {
  background: rgba(238, 240, 245, 0.92);
  margin-top: 0;
}

.site-footer h4 {
  color: #09a5e4;
  font-size: 1.125rem;
  margin-bottom: 1.55rem;
  font-weight: 700;
}

.site-footer .company {
  font-size: 1rem;
  color: #354052;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.site-footer .contact-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0;
  color: #566175;
  font-size: 0.875rem;
  line-height: 1.35;
}

.site-footer .contact-list i {
  color: #0ea5e9;
  font-size: 1.2em;
  margin-top: 0;
  width: 1.2rem;
  text-align: center;
}

.site-footer .contact-list strong {
  color: #334155;
}

.quick-links li {
  margin-bottom: 1rem;
}

.quick-links a {
  color: #526075;
  font-size: 0.875rem;
  line-height: 1.35;
  text-decoration: none;
}

.quick-links a:hover {
  color: var(--primary);
}

.social-title,
.subscribe-title {
  color: #354052;
  font-size: 0.875rem;
  font-weight: 700;
}

.subscribe-title {
  margin-bottom: 0.6rem;
  margin-top: 1rem;
}

.subscribe-copy {
  color: #5f6d83;
  font-size: 0.875rem;
}

.site-footer hr {
  margin: 3rem 0 2rem;
  border-color: #cfd8e8;
}

.copyright {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: #00adef;
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 260;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.careers-page .floating-actions {
  right: max(10px, env(safe-area-inset-right));
  left: auto !important;
  width: auto;
  max-width: calc(100vw - 20px);
  overflow: hidden;
}

.careers-page .floating-btn-quote {
  max-width: min(164px, calc(100vw - 40px));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Prevent floating CTA from ever expanding page width on careers */
html:has(body.careers-page),
body.careers-page,
body.careers-page main {
  overflow-x: clip;
}

.floating-btn {
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.88);
  color: #114c9d;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(19, 58, 119, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(19, 58, 119, 0.24);
}

.floating-btn-top {
  font-size: 1.1rem;
}

.floating-btn-quote {
  display: none;
  width: auto;
  height: auto;
  min-height: 44px;
  padding: 0.58rem 0.9rem;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #1475eb, #0063d8);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro {
  background: transparent;
  text-align: center;
}

.about-intro .section-sub {
  max-width: 760px;
  margin: 22px auto 0;
}

.mini-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 33px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.mini-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.cert-carousel {
  margin-top: 32px;
}

.cert-scroller {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 12px;
}

.cert-scroller::-webkit-scrollbar {
  display: none;
}

.cert-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (24px * 3)) / 4);
  gap: 24px;
}

.cert-track .cert-item {
  scroll-snap-align: start;
}

.cert-scrollbar {
  position: relative;
  width: min(420px, 42%);
  height: 8px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(129, 140, 160, 0.26);
  overflow: hidden;
}

.cert-scrollbar-thumb {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  border-radius: inherit;
  background: rgba(98, 109, 128, 0.82);
  left: 0;
  transition: left 0.18s ease, width 0.18s ease;
}

.cert-item {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-md);
}

.cert-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.cert-item p {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  color: var(--muted);
}

.cert-item p strong {
  font-weight: 500;
  color: #1f2937;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.leader-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.leader-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.leader-card .meta {
  padding: 24px;
  text-align: center;
}

.leader-card .meta h4 {
  margin: 0;
  font-size: 20px;
}

.leader-card .meta p {
  margin: 3px 0 0;
  color: var(--primary);
  font-size: 14px;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.news-item h3 {
  margin: 12px 0 0;
}

.news-item time {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.news-page .news-main {
  padding-top: 0;
}

.news-page .news-main > section {
  padding-bottom: 2.25rem !important;
}

.news-page .news-main > section + section {
  margin-top: 0;
}

.news-page .news-main > .page-hero {
  padding-top: calc(var(--page-hero-top) * 0.78) !important;
  padding-bottom: 2.5rem !important;
}

.news-page .news-main > section:first-child:not(.page-hero) {
  padding-top: 2.5rem !important;
  padding-bottom: 1.75rem !important;
}

.news-hero-inner {
  max-width: 760px;
}

.news-hero-inner h1 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0b58b8;
}

.news-hero-inner p {
  margin: 12px auto 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: #414754;
}

.news-shell {
  padding: 22px;
  border-radius: 18px;
  background: rgba(241, 243, 251, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.news-section-title {
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0b58b8;
}

.news-company-title,
.news-related-title {
  font-size: 2rem;
  line-height: 2.375rem;
}

.news-section-link {
  color: #0ea5e9;
  font-size: 14px;
  font-weight: 600;
}

.news-feature-card {
  overflow: hidden;
  border-radius: 12px;
}

.news-main-grid {
  align-items: stretch;
}

.news-feature-column,
.news-related-column {
  display: flex;
  flex-direction: column;
}

.news-feature-column .news-feature-card {
  flex: 1;
}

.news-feature-media {
  position: relative;
  display: block;
}

.news-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #15a7ef, #0d8fdb);
}

.news-feature-body {
  padding: 24px;
}

.news-date {
  font-size: 13px;
  color: #727785;
}

.news-feature-body h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.news-feature-body h3 a {
  color: #181c23;
}

.news-feature-body p {
  margin-top: 10px;
  color: #414754;
  line-height: 1.7;
}

.news-readmore {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0ea5e9;
  font-size: 14px;
  font-weight: 600;
}

.news-related-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.news-related-list::-webkit-scrollbar {
  width: 6px;
}

.news-related-list::-webkit-scrollbar-thumb {
  background: rgba(138, 150, 174, 0.55);
  border-radius: 999px;
}

.news-related-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(245, 247, 252, 0.9);
  box-shadow: 0 10px 24px -20px rgba(52, 74, 108, 0.5);
}

.news-related-item img {
  width: 124px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-related-item small {
  color: #727785;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.news-related-item h3 {
  margin: 4px 0 0;
  font-size: 19px;
  line-height: 1.28;
  color: #1f2937;
}

.news-related-item p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #727785;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow-left {
  width: 640px;
  height: 640px;
  left: -190px;
  top: 40px;
  background: radial-gradient(circle, rgba(22, 130, 255, 0.38) 0%, rgba(22, 130, 255, 0.18) 42%, rgba(22, 130, 255, 0) 84%);
}

.section-home-news {
  position: relative;
}

.section-home-news .section-title {
  font-size: clamp(1.8rem, 2.2vw, 2rem);
}

.home-news-card {
  overflow: hidden;
}

.home-news-media {
  position: relative;
  display: block;
  text-decoration: none;
}

.home-news-media img {
  width: 100%;
  aspect-ratio: 387.33 / 192;
  object-fit: cover;
  display: block;
}

.home-news-chip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(241, 245, 251, 0.95);
  color: #0d57b8;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 500;
  padding: 0.52rem 0.95rem;
}

.home-news-body {
  padding: 1.35rem 1.3rem 1.55rem;
}

.home-news-body h3 {
  margin: 0 0 0.9rem;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 600;
}

.home-news-body h3 a {
  text-decoration: none;
  color: #0e5dbf;
}

.home-news-body h3 a:hover {
  color: #0a6dd9;
}

.home-news-body p {
  margin: 0 0 1rem;
  color: #49586e;
  font-size: 1rem;
  line-height: 1.5;
}

.home-news-body time {
  color: #7b8798;
  font-size: 0.95rem;
}

.contact-section-plain {
  background: transparent !important;
}

.contact-hero .section-title {
  color: var(--h2-card-color);
}

.contact-hero .section-sub {
  max-width: 760px;
}

.contact-section-plain .contact-panel {
  padding: 32px;
}

.contact-media {
  width: 100%;
  height: 320px;
  margin-bottom: 24px;
  object-fit: cover;
  border-radius: 12px;
}

.contact-panel-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--h2-card-color);
}

.contact-panel-title-flat {
  margin-top: 0;
}

.contact-info-list {
  margin-top: 8px;
}

.contact-form {
  margin-top: 12px;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form .btn {
  margin-top: 6px;
  justify-self: start;
}

@media (max-width: 1199.98px) {
  .contact-section-plain .contact-panel {
    padding: 28px;
  }
}

@media (max-width: 991.98px) {
  .contact-section-plain .contact-panel {
    padding: 24px;
  }
}

@media (max-width: 575.98px) {
  .contact-section-plain .contact-panel {
    padding: 18px;
  }
}

.news-mini-subscribe {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(245, 247, 252, 0.9);
}

.news-mini-subscribe h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #181c23;
}

.news-mini-subscribe p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #414754;
}

.news-mini-subscribe small {
  display: block;
  margin-top: 10px;
  color: #727785;
  font-size: 11px;
}

.news-inline-form {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.news-inline-form input {
  flex: 1;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid #c1c6d6;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.65);
  color: #1f2937;
}

.news-inline-form .btn {
  border-radius: 8px;
  padding-inline: 20px;
  white-space: nowrap;
}

.news-arrow-controls {
  display: inline-flex;
  gap: 8px;
}

.news-arrow-controls button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #c1c6d6;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.86);
}

.news-guide-card {
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(245, 247, 252, 0.9);
  box-shadow: 0 22px 45px -24px rgba(95, 119, 166, 0.25);
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.news-guide-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  background: #f0f9ff;
  font-size: 18px;
}

.news-guide-card h3 {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #181c23;
}

.news-guide-card p {
  margin: 10px 0 0;
  color: #414754;
  line-height: 1.6;
}

.news-guide-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(193, 198, 214, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-guide-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #727785;
  font-size: 12px;
}

.news-guide-meta a {
  font-size: 14px;
  color: #0ea5e9;
  font-weight: 600;
}

.news-newsletter {
  position: relative;
  padding: 30px 38px;
  border-radius: 12px;
  background: rgba(245, 247, 252, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.news-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background: radial-gradient(circle at 100% 0%, #38bdf8 0%, transparent 48%);
}

.news-newsletter > .row {
  position: relative;
  z-index: 1;
}

.news-newsletter h3 {
  margin: 0;
  font-size: var(--h2-card-size);
  line-height: var(--h2-card-line);
  font-weight: var(--h2-card-weight);
  color: var(--h2-card-color);
}

.news-newsletter p {
  margin: 10px 0 0;
  color: #414754;
}

.news-inline-form-wide {
  margin-top: 0;
}

.news-newsletter small {
  display: block;
  margin-top: 9px;
  color: #727785;
  font-size: 12px;
}

.news-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.875rem;
  color: #667085;
}

.news-breadcrumb a {
  color: #4b5563;
}

.news-breadcrumb i {
  font-size: 10px;
}

.page-hero:has(.news-breadcrumb) {
  padding-top: 1.75rem !important;
  padding-bottom: 2.25rem !important;
}

.page-hero:has(.news-breadcrumb) .news-breadcrumb,
.news-page .news-main > section:first-child:has(.news-breadcrumb) .news-breadcrumb {
  margin-bottom: 1.75rem !important;
}

.news-page .news-main > section:first-child:has(.news-breadcrumb) {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.news-detail-hero {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(245, 247, 252, 0.9);
}

.news-detail-hero h1 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #48629a;
}

.news-detail-hero p {
  margin-top: 10px;
  color: #414754;
  line-height: 1.7;
}

.news-detail-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(245, 247, 252, 0.9);
  overflow: hidden;
}

.news-detail-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-detail-content {
  padding: 28px;
}

.news-detail-content h2 {
  margin: 22px 0 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.news-detail-content p {
  margin: 14px 0 0;
  color: #414754;
  line-height: 1.75;
}

.news-detail-content ul {
  margin: 12px 0 0;
  color: #414754;
  padding-left: 1.15rem;
  display: grid;
  gap: 8px;
}

.news-detail-content blockquote {
  margin: 20px 0 0;
  padding: 18px 18px 18px 20px;
  border-left: 4px solid #0ea5e9;
  border-radius: 0 10px 10px 0;
  background: rgba(14, 165, 233, 0.08);
  color: #1f2937;
}

.news-detail-download {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(193, 198, 214, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.news-detail-download strong {
  display: block;
  color: #111827;
}

.news-detail-download p {
  margin: 4px 0 0;
  font-size: 14px;
}

.news-detail-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.news-related-stack {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(245, 247, 252, 0.9);
}

.news-related-stack > h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #48629a;
}

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

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

.product-catalog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(245, 247, 252, 0.9);
  box-shadow: var(--shadow-card-unified);
}

.product-catalog-media {
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.product-catalog-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-catalog-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #0b58b8;
}

.product-catalog-card .section-kicker {
  margin: 0 0 8px;
}

.product-catalog-card p {
  margin: 0.8rem 0 0;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-catalog-card .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.products-main .section-header {
  max-width: 920px;
}

.products-main .section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: #0b58b8;
  letter-spacing: -0.02em;
}

.products-main > section:not(.page-hero) {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.product-hero-figma {
  position: relative;
  min-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  background: #f2f3f7;
  border: 1px solid rgba(224, 230, 242, 0.92);
}

.product-hero-figma-image {
  position: absolute;
  right: -86px;
  bottom: -62px;
  width: min(760px, 74%);
  max-width: none;
  opacity: 0.42;
  filter: saturate(0.96);
}

.product-hero-figma-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 243, 247, 0.98) 0%, rgba(242, 243, 247, 0.92) 36%, rgba(242, 243, 247, 0.65) 64%, rgba(242, 243, 247, 0.4) 100%),
    radial-gradient(640px 340px at 22% 62%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
}

.product-hero-figma-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: clamp(28px, 4vw, 40px);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-hero-figma-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.product-hero-figma-title span {
  display: block;
  color: #131b29;
  font-weight: 900;
  font-style: italic;
}

.product-hero-figma-title em {
  display: block;
  color: #0b5bbb;
  font-style: italic;
  font-weight: 900;
}

.product-hero-figma-content p {
  margin: 1.8rem 0 0;
  color: #444b58;
  font-size: clamp(1rem, 1.1vw, 1.45rem);
  line-height: 1.5;
}

.product-split-shell {
  border-radius: 22px;
  padding: 22px;
  background: rgba(241, 244, 250, 0.9);
  border: 1px solid rgba(222, 229, 242, 0.9);
}

.product-split-media {
  height: 100%;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
}

.product-split-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 16px;
  object-fit: cover;
}

.product-split-body {
  padding: 4px;
}

.product-split-body .section-kicker {
  color: #4b5563;
  letter-spacing: 0.34em;
}

.product-split-body h2 {
  margin: 0;
  color: #0b58b8;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.14;
}

.product-split-body p {
  margin: 0.85rem 0 0;
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.55;
}

.product-split-body .meta-lines {
  margin-top: 1.25rem;
}

.product-split-body .meta-row {
  padding: 0.9rem 0;
}

.product-split-body .meta-row span:last-child {
  font-size: 1.04rem;
  font-weight: 700;
}

.product-chip-grid {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-chip-grid .tag {
  margin-top: 0;
}

.product-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.product-split-reverse .product-split-body h2 {
  max-width: 26rem;
}

.product-acoustic-shell .product-split-image {
  filter: saturate(0.9) contrast(0.98);
}

.product-acoustic-copy .section-kicker {
  color: #4b5563;
  letter-spacing: 0.34em;
}

.product-acoustic-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3rem);
  color: #0b58b8;
  line-height: 1.14;
}

.product-acoustic-copy .section-body {
  margin-top: 0.9rem;
  font-size: 1.02rem;
  line-height: 1.52;
}

.product-acoustic-item {
  height: 100%;
  border-radius: 12px;
  padding: 16px;
  background: rgba(245, 247, 252, 0.9);
  border: 1px solid rgba(229, 233, 241, 0.9);
}

.product-acoustic-item h3 {
  margin: 0 0 8px;
  color: #0b58b8;
  font-size: 1.15rem;
  line-height: 1.35;
}

.product-acoustic-item p {
  margin: 0;
  font-size: 0.95rem;
}

.product-support-item {
  border-radius: 14px;
  padding: 26px 14px;
}

.product-support-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin: 0 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
}

.product-support-item i {
  color: #1675e6;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.product-support-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-detail-hero-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.product-detail-hero-copy .section-kicker {
  margin-bottom: 14px;
}

.product-detail-hero-copy .section-title {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.12;
}

.product-detail-hero-copy .section-sub {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1rem, 1.28vw, 1.25rem);
  line-height: 1.55;
}

.product-group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-group-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-spec-card,
.product-info-panel {
  min-width: 0;
  padding: 22px;
  border-radius: 14px;
}

.product-spec-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.product-spec-card-wide {
  grid-column: 1 / -1;
}

.product-spec-card img,
.product-spec-visual {
  width: 100%;
  min-height: 300px;
  border-radius: 12px;
  background: rgba(245, 247, 252, 0.94);
}

.product-spec-card img {
  object-fit: contain;
}

.product-spec-visual {
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(221, 228, 240, 0.92);
}

.product-spec-visual-text span {
  color: #0b58b8;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.product-spec-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.product-spec-body .section-kicker {
  margin-bottom: 8px;
}

.product-spec-body h2,
.product-info-panel h2 {
  margin: 0;
  color: #0b58b8;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.product-spec-body p,
.product-detail-copy {
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.58;
}

.product-spec-list {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.product-spec-list li {
  position: relative;
  padding-left: 20px;
  color: #344054;
  font-size: 0.98rem;
  line-height: 1.52;
}

.product-spec-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0b58b8;
}

.product-spec-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.product-spec-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  color: #1f2937;
  font-size: 0.94rem;
}

.product-spec-table-compact {
  min-width: 360px;
}

.product-spec-table caption {
  caption-side: top;
  margin-bottom: 10px;
  color: #0b58b8;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
}

.product-spec-table th,
.product-spec-table td {
  padding: 10px 12px;
  border: 1px solid rgba(156, 168, 190, 0.72);
  vertical-align: middle;
}

.product-spec-table th {
  background: rgba(226, 235, 248, 0.72);
  color: #344054;
  font-weight: 800;
}

.product-spec-table td {
  background: rgba(255, 255, 255, 0.44);
}

.product-info-panel {
  background: rgba(245, 247, 252, 0.9);
  border: 1px solid rgba(222, 229, 242, 0.9);
}

.card,
.mini-card,
.cert-item,
.leader-card,
.job-card,
.cv-panel,
.news-item,
.news-feature-card,
.news-guide-card,
.news-detail-card,
.news-mini-subscribe,
.news-newsletter,
.news-shell,
.news-related-item,
.news-related-stack,
.solution-card,
.intro-card,
.glass-card,
.glass-solid {
  background: rgba(245, 247, 252, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow-card-unified) !important;
}

@media (max-width: 1080px) {
  .menu {
    gap: 0.75rem;
  }

  .menu a {
    padding: 0.44rem 0.58rem;
    font-size: 1rem;
  }

  .split-text {
    padding: 56px;
  }

  .grid-4,
  .cert-grid,
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cert-track {
    grid-auto-columns: calc((100% - (20px * 2)) / 3);
    gap: 20px;
  }

  .cert-scrollbar {
    width: min(320px, 56%);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid section:last-child {
    grid-column: 1 / -1;
  }

  .news-guide-card h3 {
    font-size: 21px;
  }

  .news-inline-form {
    flex-direction: column;
  }

  .news-inline-form .btn {
    width: 100%;
  }

  .news-related-list {
    overflow: visible;
    padding-right: 0;
  }

  .home-news-body h3 {
    font-size: 1.35rem;
  }

}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    font-size: 0;
    line-height: 1;
    z-index: 3;
  }

  .menu-toggle::before {
    content: "\F479";
    font-family: "bootstrap-icons";
    font-size: 1.36rem;
    color: #1f4f93;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-md);
    padding: 8px;
    justify-self: stretch;
  }

  .menu.open {
    display: flex;
  }

  .menu-indicator {
    display: none;
  }

  .menu a {
    padding: 10px 8px;
    border-bottom: 0;
    border-radius: 8px;
  }

  .menu a.active,
  .menu a.is-current {
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(29, 68, 126, 0.14);
  }

  .nav-wrap > .btn {
    display: none;
  }

  .floating-btn-quote {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  .topbar {
    top: 8px;
    padding: 0 10px 8px;
  }

  .container {
    padding: 0 16px;
  }

  main .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-wrap {
    min-height: 72px;
    padding: 10px 12px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand spacer menu";
    background: linear-gradient(135deg, rgba(246, 249, 255, 0.64), rgba(230, 236, 246, 0.58));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    font-size: 0;
    line-height: 1;
    z-index: 3;
  }

  .menu-toggle::before {
    content: "\F479";
    font-family: "bootstrap-icons";
    font-size: 1.36rem;
    color: #1f4f93;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-md);
    padding: 8px;
    justify-self: stretch;
  }

  .menu.open {
    display: flex;
  }

  .menu-indicator {
    display: none;
  }

  .menu a {
    padding: 10px 8px;
    border-bottom: 0;
    border-radius: 8px;
  }

  .menu a.active,
  .menu a.is-current {
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(29, 68, 126, 0.14);
  }

  .brand-copy {
    display: none;
  }

  .nav-wrap > .btn {
    display: none;
  }

  .floating-btn-quote {
    display: inline-flex;
  }

  .hero-banner {
    margin: 0 -16px;
    min-height: 560px;
  }

  .hero-banner img {
    min-height: 560px;
  }

  .hero-content {
    left: 16px;
    top: 104px;
    width: calc(100% - 32px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .cert-grid,
  .leader-grid,
  .footer-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .split-text {
    padding: 40px 24px;
    border-left: 0;
    border-top: 1px solid var(--line-2);
  }

  .split-image img {
    min-height: 420px;
  }

  .cv-panel {
    padding: 28px 22px;
  }

  .cv-panel h3 {
    font-size: 32px;
  }

  .form-submit {
    justify-content: stretch;
  }

  .form-submit .btn {
    width: 100%;
  }

  .quick-quote {
    flex-direction: column;
  }

  .quick-quote .btn {
    width: 100%;
  }

  .jobs-layout.jobs-many .cv-panel {
    position: static;
  }

  .jobs-layout.jobs-many .careers-jobs-list {
    position: static;
    top: auto;
  }

  .news-shell {
    padding: 14px;
    border-radius: 14px;
  }

  .home-news-body {
    padding: 1.1rem 1rem 1.2rem;
  }

  .home-news-body h3 {
    font-size: 1.2rem;
  }

  .home-news-body p {
    font-size: 0.95rem;
  }

  .careers-hero {
    padding: 116px 0 68px;
  }

  .careers-hero-copy {
    padding: 0 16px;
  }

  .careers-hero-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .careers-hero-cta {
    width: min(100%, 280px);
    min-width: 0;
  }

  .careers-hero-gallery {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    height: auto;
    min-width: 0;
    margin: 24px 0 0;
    padding: 0 16px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    transform: none;
  }

  .careers-gallery-item,
  .careers-gallery-item-edge-left,
  .careers-gallery-item-left,
  .careers-gallery-item-main,
  .careers-gallery-item-right,
  .careers-gallery-item-edge-right {
    position: relative;
    inset: auto;
    flex: 0 0 clamp(140px, 42vw, 220px);
    width: auto;
    height: 220px;
    max-width: none;
    transform: none;
    scroll-snap-align: start;
  }

  .careers-gallery-item-main {
    flex-basis: clamp(180px, 56vw, 280px);
  }

  .careers-gallery-item-edge-left,
  .careers-gallery-item-edge-right {
    display: none;
  }

  .careers-gallery-item img,
  .careers-gallery-item-edge-left img,
  .careers-gallery-item-left img,
  .careers-gallery-item-main img,
  .careers-gallery-item-right img,
  .careers-gallery-item-edge-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .careers-intro-section {
    padding-top: 42px;
  }

  .careers-intro-header {
    padding: 0 16px;
  }

  .careers-benefits {
    margin-top: 32px;
  }

  .careers-benefits .card {
    padding: 30px 22px;
  }

  .careers-benefits .icon-dot {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .careers-jobs-title {
    font-size: 1.7rem;
  }

  .job-title-row {
    align-items: flex-start;
  }

  .job-heading {
    font-size: 1.35rem;
  }

  .cv-panel-title {
    font-size: 1.5rem;
  }

  .news-section-title {
    font-size: 28px;
  }

  .news-section-link {
    font-size: 13px;
  }

  .news-feature-body,
  .news-newsletter,
  .news-detail-content {
    padding: 18px;
  }

  .news-newsletter h3 {
    font-size: 1.5rem;
  }

  .news-feature-body h3,
  .news-guide-card h3 {
    font-size: 24px;
  }

  .news-guide-card {
    padding: 18px;
  }

  .news-related-item {
    align-items: center;
  }

  .news-related-item img {
    width: 100px;
    height: 80px;
    object-position: center;
  }

  .contact-media {
    height: 260px;
  }

  .contact-form .btn {
    width: 100%;
  }

  .cert-track {
    grid-auto-columns: 84%;
    gap: 16px;
  }

  .cert-scrollbar {
    width: min(250px, 70%);
  }

  .news-detail-download {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-detail-download .btn {
    width: 100%;
  }

  .news-detail-sidebar {
    position: static;
  }

  .product-hero-figma {
    min-height: 470px;
  }

  .product-hero-figma-content {
    min-height: 470px;
    max-width: 100%;
    padding: 24px 18px;
  }

  .product-hero-figma-image {
    right: -58px;
    bottom: -34px;
    width: min(560px, 88%);
    opacity: 0.35;
  }

  .product-hero-figma-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .product-hero-figma-content p {
    margin-top: 1.2rem;
    max-width: 420px;
    font-size: 1.05rem;
  }

  .product-split-shell,
  .product-acoustic-shell {
    padding: 14px;
  }

  .product-split-media,
  .product-split-image {
    min-height: 280px;
  }

  .product-split-body h2,
  .product-acoustic-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .product-split-body p,
  .product-acoustic-copy .section-body {
    font-size: 1rem;
  }

  .product-catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .careers-hero-gallery .careers-gallery-item-right,
  .careers-hero-gallery .careers-gallery-item-main,
  .careers-hero-gallery .careers-gallery-item-left {
    overflow: hidden;
    background: transparent;
  }

  .careers-hero-gallery .careers-gallery-item-right img,
  .careers-hero-gallery .careers-gallery-item-main img,
  .careers-hero-gallery .careers-gallery-item-left img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* About page - organization images ratio and mobile grid */
.about-page .leader-card img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 294 / 320;
  object-fit: cover;
}

@media (max-width: 860px) {
  .about-page .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* About page - certificates responsive behavior */
.about-page .cert-item {
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.about-page .cert-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 250.4 / 350;
  flex: 0 0 auto;
  object-fit: cover;
}

@media (max-width: 860px) {
  .about-page .cert-scroller {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
  }

  .about-page .cert-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(142px, calc((100% - 16px) / 2), 190px);
    gap: 16px;
  }

  .about-page .cert-track .cert-item {
    scroll-snap-align: start;
  }

  .about-page .cert-item {
    padding: 14px;
  }

  .about-page .cert-item p {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .about-page .cert-scrollbar {
    display: none;
  }
}
/* Careers mobile layout: carousel, floating CTA and footer clamp */
@media (max-width: 859.98px) {
  html:has(body.careers-page) {
    min-height: 0 !important;
    height: auto !important;
    overflow-x: clip !important;
    background: #eef0f5 !important;
  }

  body.careers-page {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: clip !important;
    background: #eef0f5 !important;
  }

  body.careers-page main {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #e7f0ff !important;
  }

  body.careers-page::before,
  body.careers-page::after,
  body.careers-page main::before,
  body.careers-page main::after,
  body.careers-page .site-footer::after {
    content: none !important;
    display: none !important;
  }

  body.careers-page .site-footer {
    display: block !important;
    margin: 0 !important;
    padding-bottom: 18px !important;
    background: #eef0f5 !important;
    box-shadow: 0 100vmax 0 100vmax #eef0f5 !important;
    clip-path: inset(0 -100vmax -100vmax -100vmax);
  }

  body.careers-page > :last-child {
    margin-bottom: 0 !important;
  }

  body.careers-page .floating-actions {
    position: fixed !important;
    inset: auto max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) auto !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    overflow: hidden !important;
    z-index: 1500 !important;
  }

  body.careers-page .floating-actions .btn-quote,
  body.careers-page .floating-actions .quote-button {
    max-width: min(164px, calc(100vw - 40px)) !important;
    white-space: nowrap !important;
  }

  body.careers-page .careers-hero-gallery {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.careers-page .careers-hero-gallery::-webkit-scrollbar {
    display: none;
  }

  body.careers-page .careers-hero-gallery.is-mobile-carousel {
    --careers-mobile-gap: 12px;
    --careers-mobile-item: calc((100vw - 32px - (var(--careers-mobile-gap) * 2)) / 3);
    height: var(--careers-mobile-item) !important;
    min-height: var(--careers-mobile-item) !important;
    max-height: var(--careers-mobile-item) !important;
    padding-bottom: 0 !important;
  }

  body.careers-page .careers-hero-gallery.is-mobile-carousel .careers-hero-carousel-track {
    display: flex !important;
    gap: var(--careers-mobile-gap) !important;
    align-items: stretch !important;
    height: var(--careers-mobile-item) !important;
    min-height: var(--careers-mobile-item) !important;
    will-change: transform;
    transition: transform 560ms ease;
  }

  body.careers-page .careers-hero-gallery.is-mobile-carousel .careers-hero-carousel-track.is-no-transition {
    transition: none !important;
  }

  body.careers-page .careers-hero-gallery.is-mobile-carousel .careers-hero-carousel-item {
    flex: 0 0 var(--careers-mobile-item) !important;
    width: var(--careers-mobile-item) !important;
    height: var(--careers-mobile-item) !important;
    min-width: 0 !important;
    min-height: var(--careers-mobile-item) !important;
    max-height: var(--careers-mobile-item) !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  body.careers-page .careers-hero-gallery.is-mobile-carousel .careers-hero-carousel-item img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

/* About page: Vision / Goals / Mission cards in careers-like format */
.about-page .about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-page .about-values-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 34px 24px 28px;
  box-shadow: 0 16px 34px rgba(15, 45, 90, 0.08);
}

.about-page .about-values-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(205, 221, 255, 0.82);
  color: #0b64c8;
  font-size: 1.5rem;
}

.about-page .about-values-card-title {
  margin: 0 0 14px;
  color: #0f5db8;
  font-size: clamp(1.42rem, 1.15rem + 0.8vw, 1.86rem);
  line-height: 1.22;
}

.about-page .about-values-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #3f4f63;
  font-size: 1.06rem;
  line-height: 1.72;
}

.about-page .about-values-list li + li {
  margin-top: 0.72rem;
}

/* About page layout utilities */
.about-page .about-blue-title,
.about-page .about-section-heading,
.about-page .about-centered-title {
  color: #005cbc;
}

.about-page .about-split {
  align-items: center;
}

.about-page .about-content-card {
  padding: 40px;
}

.about-page .about-section-heading {
  margin: 0;
  font-size: 2rem;
  line-height: 1.22;
}

.about-page .about-image-card {
  padding: 0;
  overflow: hidden;
}

.about-page .about-feature-image {
  min-height: 420px;
}

.about-page .about-dovlon-image {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
}

.about-page .about-centered-title {
  font-size: 2rem;
  text-align: center;
}

.about-page .about-leader-grid {
  margin-top: 32px;
}

.about-page .about-leader-photo {
  object-position: center 22%;
}

@media (max-width: 1024px) {
  .about-page .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .about-page .about-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-page .about-values-card {
    border-radius: 14px;
    padding: 28px 18px 22px;
  }

  .about-page .about-content-card p {
    text-align: justify;
    text-justify: inter-word;
  }

  .about-page .about-values-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }

  .about-page .about-dovlon-image {
    min-height: 0;
    object-fit: contain;
    background: #f5f7fb;
  }
}

/* Shared static replacements for former inline HTML styles */
.hero-title-blue,
.product-detail-heading,
.product-tech-title,
.project-insight-title {
  color: #0b58b8;
}

.project-list-section {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

.hero-sub-narrow {
  max-width: 760px;
}

.hero-sub-wide {
  max-width: 860px;
}

.product-detail-card {
  padding: 28px;
}

.product-detail-card > .row {
  align-items: flex-start !important;
}

.product-detail-image {
  min-height: 340px;
  border-radius: 12px;
}

.product-detail-card .product-detail-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.product-accessories-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-accessories-visual-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-accessory-tile {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 50px rgba(31, 86, 147, 0.12);
  text-align: center;
}

.product-accessory-tile i {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(206, 221, 255, 0.95);
  color: #0067d8;
  font-size: 1.38rem;
}

.product-accessory-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.product-accessory-tile h3 {
  margin: 0;
  color: #0f1b2d;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.32;
  text-transform: uppercase;
}

.product-detail-heading {
  margin: 0;
  font-size: 1.9rem;
}

.product-tech-card {
  padding: 24px;
}

.product-tech-title {
  margin: 0;
  font-size: 1.55rem;
}

.project-insight-card {
  padding: 32px;
}

.project-insight-title {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.25;
}

.project-insight-copy {
  margin-top: 12px;
}

.project-insight-cta {
  margin-top: 14px;
}

@media (max-width: 640px) {
  .product-accessories-visual {
    grid-template-columns: 1fr;
  }

  .product-accessory-tile {
    min-height: 132px;
  }
}

@media (max-width: 991.98px) {
  .product-accessories-visual-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-catalog-grid-3,
  .product-group-grid,
  .product-group-grid-2 {
    grid-template-columns: 1fr;
  }

  .product-spec-card,
  .product-spec-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-spec-card img,
  .product-spec-visual {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .product-accessories-visual-wide {
    grid-template-columns: 1fr;
  }
}


/* Final about values text alignment */
.about-page .about-values-card-title {
  text-align: center;
}

.about-page .about-values-list li {
  text-align: justify;
  text-justify: inter-word;
}
