:root {
  --navy: #1c5fbf;
  --navy-dark: #1550a8;
  --blue: #2563eb;
  --bg: #ffffff;
  --bg-alt: #f0f6ff;
  --text: #0d1f35;
  --text-dim: #4a5e78;
  --heading: #0d1f35;
  --surface: #ffffff;
  --surface-muted: #f0f6ff;
  --surface-strong: #e3edff;
  --muted: #4a5e78;
  --primary: #1c5fbf;
  --accent: #2563eb;
  --primary-dark: #0d1f35;
  --primary-soft: rgba(37, 99, 235, 0.1);
  --border: #d0e3f8;
  --border-strong: rgba(28, 95, 191, 0.2);
  --shadow: 0 24px 60px rgba(28, 95, 191, 0.12);
  --shadow-soft: 0 14px 36px rgba(28, 95, 191, 0.08);
  --success-bg: #ecfdf3;
  --success-text: #067647;
  --error-bg: #fef3f2;
  --error-text: #b42318;
  --danger: #b42318;
  --radius: 6px;
  --radius-lg: 6px;
  --radius-md: 6px;
  --radius-sm: 6px;
  --radius-pill: 999px;
  --container: 1140px;
  --nav-collapse: 1190px;
  --r: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(0, 87, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.12);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 1.5rem));
  margin: 0 auto;
}

.narrow {
  width: min(680px, calc(100% - 1.5rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 243, 244, 0.88);
  border-bottom: 1px solid rgba(0, 20, 137, 0.08);
  backdrop-filter: blur(18px);
}

.site-header > .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.nav-row,
.button-row,
.list-row,
.pill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.nav-row {
  padding: 1rem 0;
  flex-wrap: nowrap;
}

.site-header .nav-row {
  padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
}

.nav-panel {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.4rem, 0.9vw, 0.85rem);
  min-width: 0;
  flex-wrap: nowrap;
}

.site-header .brand {
  flex-shrink: 0;
}

.site-header .brand-logo {
  width: clamp(220px, 22vw, 300px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(0, 20, 137, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-row.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-row.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-row.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-mark {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--primary-dark);
}

.brand-submark {
  margin-left: 0.24rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.site-nav a:not(.btn),
.nav-meta-link {
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.72rem + 0.22vw, 0.92rem);
  font-weight: 600;
}

.site-nav a:not(.btn)::after,
.nav-meta-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn).is-nav-active::after,
.nav-meta-link:not(.nav-meta-link--icon):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:not(.btn).is-nav-active {
  color: var(--primary);
}

.nav-meta-link--icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--radius-md);
  line-height: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header .nav-meta-link--icon {
  margin-inline-end: clamp(0.85rem, 2.5vw, 1.35rem);
}

.nav-meta-link--icon::after {
  display: none;
}

.nav-meta-link--icon:hover,
.nav-meta-link--icon:focus-visible {
  background: rgba(0, 87, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(0, 87, 255, 0.12);
}

.nav-meta-link__icon {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(0.4rem, 0.75vw, 0.85rem);
  flex-wrap: nowrap;
}

.nav-actions .btn-small {
  white-space: nowrap;
  font-size: clamp(0.78rem, 0.7rem + 0.24vw, 0.9rem);
  padding: 0.62rem clamp(0.7rem, 1.1vw, 1.1rem);
}

.nav-actions .language-switcher {
  flex-shrink: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: var(--radius-md);
  background: rgba(0, 20, 137, 0.06);
  border: 1px solid rgba(0, 20, 137, 0.1);
}

.language-switcher__btn {
  min-width: 2.25rem;
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.language-switcher__btn.is-active {
  background: var(--primary);
  color: #fff;
}

.site-footer {
  margin-top: 0;
  padding: 3.25rem 0 1.5rem;
  background: #1b1d27;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 0 clamp(2rem, 8.11vw, 7.3125rem);
  align-items: start;
}

.footer-grid h4 {
  margin: 0 0 1.85rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.footer-brand {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  color: #fff;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 9rem;
  max-width: min(100%, 32rem);
  object-fit: contain;
}

.footer-brand-block {
  display: grid;
  gap: 0;
  align-self: start;
  margin-top: 0;
}

.footer-copy {
  max-width: 40rem;
  margin: 2.5rem 0 4rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875rem;
  color: #fff;
}

.footer-subscribe {
  display: flex;
  align-items: stretch;
  width: min(100%, 38rem);
  min-height: 2.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8d8d8;
  box-shadow: none;
  transition: border-color 180ms ease;
}

.footer-subscribe:focus-within {
  border-color: #0057ff;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.15);
}

.footer-subscribe input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: #1b1d27;
  font-size: 1.0625rem;
}

.footer-subscribe input:focus {
  outline: none;
  box-shadow: none;
}

.footer-subscribe input::placeholder {
  color: #84898b;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.17;
}

.footer-subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  min-width: 8rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: #0057ff;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.1875;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.footer-subscribe-button:hover {
  background: #001489;
  color: #fff;
}

.footer-subscribe-button svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-column {
  min-width: 0;
  padding-top: 1rem;
}

.footer-contact-column {
  display: grid;
  gap: 0;
  align-content: start;
}

.footer-contact-column .footer-contact-item span:last-child {
  max-width: none;
}

.footer-contact-column .footer-socials {
  margin-top: 2rem;
}

.footer-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-list a {
  color: #fff;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav-list a:hover {
  color: #0057ff;
}

.footer-nav-list--company {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: clamp(2rem, 10.29vw, 9.25rem);
  row-gap: 1.25rem;
}

.footer-nav-list--company a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.0625rem;
}

.footer-nav-list--company a::before {
  content: "";
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #0057ff;
}

.footer-contact-list {
  display: grid;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.0625rem;
  text-decoration: none;
}

a.footer-contact-item:hover {
  color: #0057ff;
}

a.footer-contact-item:hover .footer-contact-icon {
  color: #0057ff;
}

.footer-contact-item span:last-child {
  overflow-wrap: anywhere;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  color: #fff;
  flex: 0 0 auto;
}

.footer-contact-icon svg,
.footer-social-link svg {
  width: 100%;
  height: 100%;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: #0057ff;
  color: #fff;
  transition: background-color 180ms ease, transform 180ms ease;
}

.footer-social-link:hover {
  background: #001489;
  color: #fff;
  transform: translateY(-1px);
}

.footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 0.625rem;
  border-top: 1px solid #0057ff;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875rem;
  color: #fff;
}

.footer-bottom p {
  margin: 0;
}

.hero {
  padding: 4.75rem 0 5.4rem;
  background: #f7f3f4;
}

.hero-home {
  --hero-pad-top: clamp(2.25rem, 2vw + 1.25rem, 3.5rem);
  --hero-pad-bottom: clamp(2rem, 4.5vw, 3.25rem);
  --hero-grid-gap: clamp(1.25rem, 2.75vw, 2.25rem);
  --hero-visual-w: min(100%, 37rem);
  --hero-stage-w: 677;
  --hero-stage-h: 331;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-block: var(--hero-pad-top) var(--hero-pad-bottom);
  background: #f7f3f4;
}

.hero-home.hero {
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
}

.hero-home .hero-grid {
  position: relative;
  z-index: 1;
  gap: var(--hero-grid-gap);
  align-items: center;
}

@media (min-width: 1191px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }
}

.section {
  padding: 5rem 0;
  background: #f7f3f4;
}

.section-soft,
.section-accent {
  background: #f7f3f4;
}

.hero-grid,
.two-column,
.card-grid,
.form-grid,
.contact-shell {
  display: grid;
  gap: 1.4rem;
}

.hero-grid,
.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.8rem;
}

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

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

/* Product catalog */
.products-catalog__count {
  margin: 0 0 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 87, 255, 0.22);
  box-shadow: var(--shadow);
}

.product-card--empty {
  grid-column: 1 / -1;
  padding: 2rem 1.5rem;
}

.product-card--empty .product-card__body {
  padding: 0;
}

.product-card__media-link {
  display: block;
  color: inherit;
}

.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: 1.35rem;
  background: linear-gradient(165deg, #f7f3f4 0%, #eef3ff 55%, #e8efff 100%);
  border-bottom: 1px solid var(--border);
}

.product-card__image {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(0, 20, 137, 0.28);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem 1.35rem 1.35rem;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(0, 87, 255, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  box-shadow: 0 6px 16px rgba(0, 20, 137, 0.08);
}

.product-card__tag--status-available {
  border-color: rgba(0, 87, 255, 0.2);
  background: rgba(0, 87, 255, 0.08);
  color: var(--primary);
}

.product-card__tag--status-on_order {
  border-color: rgba(181, 110, 0, 0.25);
  background: rgba(255, 193, 7, 0.12);
  color: #8a5a00;
}

.product-card__title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.25;
}

.product-card__title a {
  color: var(--text);
  transition: color 160ms ease;
}

.product-card__title a:hover {
  color: var(--accent);
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.product-card__meta-sep {
  opacity: 0.55;
}

.product-card__excerpt {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.product-card__cta {
  align-self: flex-start;
  margin-top: 0.35rem;
}

/* Product detail */
.product-detail-page .section.product-detail {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.product-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.product-detail__back:hover {
  color: #0057ff;
}

.product-detail__header {
  margin-bottom: 1.75rem;
}

.product-detail__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.product-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #84898b;
}

.product-detail__badge {
  flex-shrink: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 70px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.product-detail__badge--available {
  background: rgba(0, 87, 255, 0.2);
  color: #001489;
}

.product-detail__badge--on_order {
  background: rgba(255, 193, 7, 0.2);
  color: #8a5a00;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.product-detail__gallery {
  position: sticky;
  top: 6.5rem;
}

.product-detail__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 2rem;
  background: linear-gradient(165deg, #fff 0%, #f7f3f4 40%, #eef3ff 100%);
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
}

.product-detail__image {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.product-detail__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  color: rgba(0, 20, 137, 0.25);
}

.product-detail__summary {
  display: grid;
  gap: 1.25rem;
}

.product-detail__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
  margin: 0;
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
}

.product-detail__spec {
  margin: 0;
  min-width: 0;
}

.product-detail__spec dt {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail__spec dd {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.product-detail__block {
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
}

.product-detail__block h2 {
  margin: 0 0 0.75rem;
  color: #001489;
  font-size: 1rem;
  font-weight: 700;
}

.product-detail__prose {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-page .product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.94rem;
  margin-top: 0.25rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

.product-detail-page .product-card__btn--primary {
  border: 1px solid #0057ff;
  background: #0057ff;
  color: #fff;
}

.product-detail-page .product-card__btn--primary:hover {
  background: #0046d6;
  border-color: #0046d6;
  color: #fff;
}

@media (max-width: 900px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
  }

  .product-detail__gallery {
    position: static;
  }

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

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

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

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

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

.full-width {
  grid-column: 1 / -1;
}

.card,
.solution-card,
.contact-card,
.value-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 20, 137, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading-centered {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h1,
.section-heading h2,
.hero h1,
.values-copy h2,
.expertise-copy h3 {
  margin: 0.3rem 0 0.9rem;
  line-height: 1.07;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4.35vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
  background: linear-gradient(180deg, #4d71ff 0%, var(--accent) 52%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-home .hero-home__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 39rem;
  margin: 0;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 1rem + 2.8vw, 3.375rem);
  font-weight: 1000;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: normal;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #1b1d27;
}

.hero-home__title-accent,
.hero-home__title-end {
  display: block;
  width: fit-content;
  max-width: 100%;
  line-height: 1.28;
  padding-block-end: 0.07em;
  overflow: visible;
  background: linear-gradient(90deg, #0057ff 0%, #001489 82.21%, #1b1d27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-home__title-end {
  position: relative;
  padding-bottom: 0.75rem;
}

.hero-home__title-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  max-width: 16.4rem;
  height: auto;
  overflow: visible;
  pointer-events: none;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--accent) 0%, #4d71ff 48%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  color: var(--primary);
}

.values-copy h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--primary);
  text-wrap: balance;
}

.expertise-copy h3 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent);
}

.eyebrow,
.muted {
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 64ch;
  font-size: 1.12rem;
}

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

.home-page .hero-copy {
  width: 100%;
  max-width: min(39rem, 100%);
}

.hero-home .hero-lead {
  margin: clamp(1rem, 2vw, 1.45rem) 0 0;
  max-width: 37rem;
  color: #1b1d27;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 58ch;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: clamp(1.35rem, 3vw, 2rem);
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 2vw, 1rem);
}

.hero-home .hero-actions {
  margin-top: clamp(1.1rem, 2.5vw, 1.6rem);
  align-items: center;
  gap: 0.75rem;
}

.hero-home__btn {
  min-width: 10.5rem;
  min-height: 2.75rem;
  padding: 0.82rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-home .hero-actions .btn-primary {
  border: none;
  background: #0057ff;
  color: #fff;
  box-shadow: none;
}

.hero-home .hero-actions .btn-secondary {
  border: 0.25px solid #1b1d27;
  background: #f7f3f4;
  color: #1b1d27;
  box-shadow: none;
}

.hero-actions .btn {
  min-width: 150px;
  padding-inline: 1.6rem;
}

.hero-actions .btn-secondary {
  border: 1px solid rgba(0, 20, 137, 0.12);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 20, 137, 0.08);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  container-type: inline-size;
  container-name: hero-visual;
}

.hero-visual__stage {
  position: relative;
  width: var(--hero-visual-w);
  max-width: 100%;
  aspect-ratio: 677 / 331;
  margin-inline: auto 0;
  container-type: inline-size;
  container-name: hero-stage;
}

.hero-visual-card {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 1px solid #0057ff;
  border-radius: 20px;
  background: #fff;
  box-shadow: 5px 8px 11.2px rgba(0, 87, 255, 0.25);
}

.hero-visual-card--main {
  left: 6.8%;
  top: 22%;
  z-index: 2;
  width: 86.5%;
  height: 74%;
  padding: 0;
  overflow: visible;
  border-radius: 36px;
  box-shadow: 4px 16px 11.2px rgba(0, 87, 255, 0.25);
}

.hero-visual-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-sizing: border-box;
  height: 100%;
  min-height: 100%;
  padding: clamp(1rem, 2.2vw, 1.75rem) clamp(0.85rem, 1.8vw, 2rem) clamp(1.15rem, 2.5vw, 1.65rem);
  overflow: visible;
}

.hero-visual-card--main h3 {
  margin: 0;
  flex-shrink: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1b1d27;
}

.hero-visual-card--main p {
  margin: 0;
  flex: 1;
  min-height: 0;
  max-width: none;
  color: #1b1d27;
  font-size: clamp(0.68rem, 2.2cqi, 0.78rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hero-visual-card--chart-sm {
  left: 19.6%;
  top: 11.8%;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 29.9%;
  height: 23.3%;
  padding: 0.55rem 0.75rem 0.65rem;
  overflow: visible;
  box-shadow: 5px 8px 11.2px rgba(0, 87, 255, 0.25);
  animation: heroChartCardFloat 4.5s ease-in-out infinite;
  will-change: transform;
}

.hero-visual-card--progress {
  right: 0;
  top: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 29.9%;
  height: 37.1%;
  padding: 0.55rem 0.75rem 0.65rem;
  overflow: visible;
  box-shadow: 7px 8px 7.3px rgba(0, 87, 255, 0.25);
  animation: heroChartCardFloat 5.25s ease-in-out infinite 0.75s;
  will-change: transform;
}

.hero-visual-card--progress .hero-bars,
.hero-visual-card--chart-sm .hero-bars {
  flex: 1;
  min-height: 0;
}

.hero-visual-card--progress .hero-bars li,
.hero-visual-card--chart-sm .hero-bars li {
  transform-origin: bottom center;
  animation: heroBarPulse 2.6s ease-in-out infinite;
}

.hero-visual-card--chart-sm .hero-bars li:nth-child(1) {
  animation-delay: 0s;
}

.hero-visual-card--chart-sm .hero-bars li:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-visual-card--chart-sm .hero-bars li:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-visual-card--chart-sm .hero-bars li:nth-child(4) {
  animation-delay: 0.45s;
}

.hero-visual-card--chart-sm .hero-bars li:nth-child(5) {
  animation-delay: 0.6s;
}

.hero-visual-card--chart-sm .hero-bars li:nth-child(6) {
  animation-delay: 0.75s;
}

.hero-visual-card--chart-sm .hero-bars li:nth-child(7) {
  animation-delay: 0.9s;
}

.hero-visual-card--progress .hero-bars li:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-visual-card--progress .hero-bars li:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-visual-card--progress .hero-bars li:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-visual-card--progress .hero-bars li:nth-child(4) {
  animation-delay: 0.65s;
}

.hero-visual-card--progress .hero-bars li:nth-child(5) {
  animation-delay: 0.8s;
}

.hero-visual-card--progress .hero-bars li:nth-child(6) {
  animation-delay: 0.95s;
}

.hero-visual-card--progress .hero-bars li:nth-child(7) {
  animation-delay: 1.1s;
}

.hero-visual-card--services {
  left: 0;
  top: auto;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  max-width: 58%;
  height: auto;
  min-height: 0;
  padding: 0.45rem 0.7rem;
  box-shadow: 3px 9px 11.2px rgba(0, 87, 255, 0.25);
}

.hero-visual-card--services p {
  margin: 0;
  min-width: 0;
  flex: 1;
  color: #1b1d27;
  font-size: clamp(0.58rem, 2.6cqi, 0.75rem);
  line-height: 1.2;
}

.hero-visual-card--team {
  right: 0;
  top: auto;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 42%;
  height: auto;
  min-height: 0;
  padding: 0.4rem 0.55rem;
  overflow: visible;
  box-shadow: 7px 9px 11.2px rgba(0, 87, 255, 0.25);
}

.hero-visual-card__label {
  margin: 0 0 0.28rem;
  color: #1b1d27;
  font-size: 0.78rem;
  line-height: 1.28;
}

.hero-visual__grid-icon {
  display: grid;
  grid-template-columns: repeat(2, 1rem);
  gap: 0.2rem;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: clamp(1rem, 4cqi, 1.65rem);
  margin-bottom: 0.12rem;
}

.hero-visual__grid-icon span {
  border: 2px solid #0057ff;
  border-radius: 3px;
  background: transparent;
}

.hero-visual__grid-icon .is-solid {
  border-color: #0057ff;
  background: #0057ff;
}

.hero-visual__check {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 20px;
  background: #0057ff;
  color: #fff;
}

.hero-visual__check svg {
  width: 0.75rem;
  height: auto;
}

.hero-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-bars li {
  flex: 0 0 0.65rem;
  height: var(--h, 50%);
  border-radius: 7px;
  background: #001489;
}

.hero-bars--sm li {
  flex-basis: 0.5rem;
}

.hero-visual__avatars {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-visual__avatars li {
  flex-shrink: 0;
  width: clamp(1.4rem, 6.2cqi, 2.1rem);
  height: clamp(1.4rem, 6.2cqi, 2.1rem);
  margin-left: clamp(-0.42rem, -2.4cqi, -0.65rem);
  border: 2px solid #fff;
  border-radius: 20px;
  background: #0057ff;
}

.hero-visual__avatars li:first-child {
  margin-left: 0;
}

.hero-visual__avatars li:nth-child(even) {
  background: #001489;
}

.hero-visual__avatars li.is-plus {
  display: grid;
  place-items: center;
  background: #0057ff;
  color: #fff;
  font-size: clamp(0.7rem, 3cqi, 0.92rem);
  font-weight: 700;
  line-height: 1;
}

.hero-visual__avatars li.is-plus span {
  margin-top: -0.05rem;
}

@container hero-stage (max-width: 420px) {
  .hero-visual-card--main {
    top: 20%;
    height: 76%;
  }

  .hero-visual-card__body {
    padding: 0.8rem 0.7rem 1.1rem;
  }

  .hero-visual-card--main h3 {
    font-size: 0.95rem;
    line-height: 1.12;
  }

  .hero-visual-card--main p {
    font-size: clamp(0.62rem, 2.6cqi, 0.72rem);
    line-height: 1.32;
  }

  .hero-visual-card--chart-sm,
  .hero-visual-card--progress {
    padding: 0.4rem 0.5rem 0.45rem;
  }

  .hero-bars {
    gap: 0.3rem;
  }

  .hero-bars li {
    flex: 0 0 0.5rem;
  }

  .hero-bars--sm li {
    flex-basis: 0.38rem;
  }

  .hero-visual__avatars li {
    width: 1.75rem;
    height: 1.75rem;
    margin-left: -0.5rem;
  }
}

@container hero-stage (max-width: 300px) {
  .hero-visual-card--services {
    max-width: 62%;
    gap: 0.35rem;
    padding: 0.38rem 0.55rem;
  }

  .hero-visual-card--services p {
    font-size: clamp(0.52rem, 2.8cqi, 0.65rem);
    line-height: 1.15;
  }

  .hero-visual__check {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hero-visual-card--team {
    max-width: 46%;
    padding: 0.35rem 0.45rem;
  }

  .hero-visual__avatars li {
    width: clamp(1.2rem, 7cqi, 1.65rem);
    height: clamp(1.2rem, 7cqi, 1.65rem);
    margin-left: clamp(-0.35rem, -2.8cqi, -0.5rem);
  }
}

.status-pill,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 87, 255, 0.16);
  background: rgba(255, 255, 255, 0.98);
  color: #555d74;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(0, 20, 137, 0.14);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 87, 255, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.status-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  flex: 0 0 auto;
}

.status-pill-icon svg {
  width: 0.78rem;
  height: 0.78rem;
}

.micro-label {
  color: #6a7188;
  font-size: 0.76rem;
  font-weight: 700;
}

.feature-card,
.benefit-card {
  text-align: center;
}

.feature-card h3,
.value-card h3,
.solution-card h3,
.service-card h3,
.benefit-card h3,
.contact-card-label {
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.contact-card-label {
  display: block;
  font-weight: 800;
}

.icon-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 87, 255, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(227, 237, 255, 0.94));
  border: 1px solid rgba(0, 87, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.icon-orb.small {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
}

.values-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.values-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  min-height: 220px;
}

.values-grid .value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.expertise-grid,
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.expertise-grid {
  align-items: stretch;
}

.careers-grid {
  align-items: stretch;
}

.expertise-copy {
  padding-right: 1rem;
}

#expertise {
  overflow-x: clip;
}

.expertise-visual {
  position: relative;
  width: 100%;
  max-height: min(22.5rem, 50vh);
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.expertise-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.solution-grid {
  gap: 1.4rem;
}

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

.solution-visual {
  position: relative;
  min-height: 185px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.1), rgba(0, 20, 137, 0.35)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 32%),
    linear-gradient(120deg, rgba(0, 87, 255, 0.85), rgba(0, 20, 137, 0.95));
}

.solution-image {
  display: block;
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.solution-visual span {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.solution-visual span:nth-child(1) {
  top: 18%;
  left: 10%;
  width: 42%;
  height: 18%;
}

.solution-visual span:nth-child(2) {
  right: 11%;
  bottom: 22%;
  width: 28%;
  height: 28%;
}

.solution-visual span:nth-child(3) {
  bottom: 12%;
  left: 16%;
  width: 52%;
  height: 10%;
}

.solution-body {
  padding: 1.25rem 1.25rem 1.45rem;
}

.partner-section {
  overflow-x: clip;
}

.partner-section .container {
  overflow: hidden;
}

.brand-marquee-stack {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.brand-marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: brand-marquee-scroll 36s linear infinite;
}

.brand-marquee--forward .brand-marquee-inner {
  animation-direction: normal;
}

.brand-marquee--reverse .brand-marquee-inner {
  animation-direction: reverse;
}

.brand-marquee:nth-child(1) .brand-marquee-inner {
  animation-duration: 42s;
}

.brand-marquee:nth-child(2) .brand-marquee-inner {
  animation-duration: 36s;
}

.brand-marquee--stagger .brand-marquee-inner {
  animation-duration: 47s;
  animation-delay: -19s;
}

.brand-track {
  display: flex;
  flex: 0 0 auto;
  gap: 3rem;
  min-width: max-content;
  /* Match gap so the loop seam (last logo → first logo) has the same spacing. */
  padding-right: 3rem;
}

.partner-section .brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.partner-section .partner-logo {
  display: block;
  width: auto;
  max-width: 300px;
  height: 90px;
  object-fit: contain;
}

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

.service-card {
  position: relative;
  padding-top: 4.2rem;
}

@media (min-width: 641px) {
  .service-card h3 {
    margin-top: 0.75rem;
  }
}

.service-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  color: var(--accent);
  font-weight: 800;
}

.service-icon {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
}

.careers-section {
  background: #f7f3f4;
}

#career {
  overflow-x: clip;
}

.career-visual-panel {
  position: relative;
  width: 100%;
  max-height: min(22.5rem, 50vh);
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.career-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.career-copy {
  display: flex;
  flex-direction: column;
}

.career-copy__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 39.025rem;
  margin: 0 0 2.25rem;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.375rem);
  font-weight: 1000;
  font-style: normal;
  line-height: 1.185;
  letter-spacing: normal;
}

.career-copy__title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  background: linear-gradient(90deg, #0057ff 0%, #001489 82.21%, #1b1d27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.career-copy__lead {
  max-width: 34.785rem;
  margin: 0 0 1.75rem;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.64;
  color: #1b1d27;
}

.career-copy__actions {
  justify-content: flex-start;
}

.benefit-card {
  min-height: 100%;
}

#why-work {
  position: relative;
  z-index: 1;
  padding-bottom: 6.5rem;
}

.contact-curve {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -2rem;
  overflow: visible;
  line-height: 0;
  pointer-events: none;
}

.contact-curve__image {
  display: block;
  width: 100%;
  height: clamp(10.5rem, 15vw, 14.25rem);
  object-fit: cover;
  object-position: top left;
}

.contact-section {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  margin-top: 0;
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  background: #dfe4f5;
}

.contact-section__header {
  position: relative;
  z-index: 1;
  width: min(72rem, 100%);
  max-width: none;
  margin-bottom: 2rem;
  margin-inline: auto;
  text-align: center;
}

.contact-section__header.container {
  width: min(90rem, calc(100% - 1.5rem));
}

.contact-section__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 0.4rem;
  width: 100%;
  max-width: none;
  margin: 0 auto 1.35rem;
  padding: 0 0.25rem 0.12em;
  overflow: visible;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.375rem);
  font-weight: 1000;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-wrap: balance;
  color: #001489;
  text-shadow: none;
}

.contact-section__title-text {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.contact-section__lead {
  max-width: 44.34rem;
  margin: 0 auto;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875;
  color: #1b1d27;
}

.contact-shell {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: stretch;
}

.contact-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-grid {
  position: relative;
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-content: stretch;
}

.contact-section .contact-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  min-height: 12.35rem;
  padding: 2rem 2.25rem;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: none;
}

.contact-card-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: #0057ff;
  color: #fff;
  box-shadow: none;
}

.contact-card-icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.contact-card-body {
  flex: 1 1 auto;
  min-width: 0;
}

.contact-section .contact-card-label,
.contact-form-heading h3 {
  display: inline-block;
  position: relative;
  margin: 0 0 0.7rem;
  padding-bottom: 0.55rem;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0057ff;
  text-shadow: none;
}

.contact-section .contact-card-label::after,
.contact-form-heading h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.35rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0057ff, #001489);
}

.contact-form-heading h3::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-section .contact-card-text {
  margin: 0 0 0.55rem;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875;
  color: #1b1d27;
}

.contact-section .contact-card-value {
  color: #001489;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.21;
  overflow-wrap: anywhere;
}

.contact-section .contact-card-value:hover {
  color: #0057ff;
}

.contact-socials {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  background: #0057ff;
  color: #fff;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-social-link:hover {
  background: #001489;
  color: #fff;
  transform: translateY(-1px);
}

.contact-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-form-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.15rem 2.35rem 2.35rem;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: none;
}

.contact-form-card .form-stack,
.contact-form.form-stack {
  flex: 1;
  gap: 1.1rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.contact-form-heading {
  margin-bottom: 1.35rem;
  text-align: center;
}

.contact-form-heading h3 {
  margin: 0 0 0.7rem;
}

.contact-form-heading p {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875;
  color: #1b1d27;
}

.contact-section .contact-form__field label {
  margin-bottom: 0.35rem;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875;
  color: #1b1d27;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
  min-height: 2.77rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: none;
}

.contact-section .contact-form textarea {
  min-height: 5.9rem;
  resize: vertical;
}

.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.17;
  color: #84898b;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border-color: #0057ff;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.12);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 2.77rem;
  margin-top: 0.35rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: var(--radius-md);
  background: #001489;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-form__submit:hover {
  background: #0057ff;
  color: #fff;
  transform: translateY(-1px);
}

.contact-form__submit svg {
  flex: 0 0 auto;
}

.feature-list,
.stack-list,
.stack-section,
.form-stack {
  display: grid;
  gap: 0.8rem;
}

.feature-list.compact {
  gap: 0.5rem;
}

.filter-form {
  margin-bottom: 1.4rem;
}

.filter-form__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: end;
}

.filter-form__field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.filter-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.filter-form__actions .btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .filter-form__toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .filter-form__field--search {
    grid-column: 1 / -1;
  }

  .filter-form__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .filter-form__toolbar {
    grid-template-columns: 1fr;
  }

  .filter-form__field--search,
  .filter-form__actions {
    grid-column: auto;
  }

  .filter-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-form__actions .btn {
    width: 100%;
  }
}

/* Catalog listing (careers & products) */
.catalog-list-page .section.catalog-list {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.catalog-list__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.catalog-list__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin: 0 0 1.75rem;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.catalog-list__back:hover {
  color: #0057ff;
}

.catalog-list__back-icon {
  flex-shrink: 0;
}

.catalog-list__header {
  max-width: 39rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.catalog-list__title {
  margin: 0 0 0.85rem;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.375rem);
  font-weight: 1000;
  line-height: 1.185;
  background: linear-gradient(90deg, #0057ff 0%, #001489 82.21%, #1b1d27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.catalog-list__lead {
  margin: 0 auto;
  max-width: 39rem;
  font-family: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #1b1d27;
}

.catalog-list__filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(11.5rem, 12rem);
  gap: 0.85rem;
  align-items: stretch;
  max-width: 58rem;
  margin: 0 auto 0.85rem;
  width: 100%;
}

.catalog-list__search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.catalog-list__search-icon {
  position: absolute;
  left: 1rem;
  flex-shrink: 0;
  color: #84898b;
  pointer-events: none;
}

.catalog-list__search input {
  width: 100%;
  min-height: 2.77rem;
  padding: 0.65rem 1rem 0.65rem 2.65rem;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: #1b1d27;
}

.catalog-list__search input::placeholder {
  color: #84898b;
}

.catalog-list__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.77rem;
  min-height: 2.77rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: #001489;
  cursor: pointer;
}

.catalog-list__filter-btn:hover {
  color: #0057ff;
}

.catalog-list__role,
.catalog-list__select {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.catalog-list__role select,
.catalog-list__select select {
  appearance: none;
  min-height: 2.77rem;
  padding: 0.65rem 2.25rem 0.65rem 1rem;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  color: #1b1d27;
  cursor: pointer;
}

.catalog-list__role-chevron {
  position: absolute;
  right: 1rem;
  pointer-events: none;
  color: #001489;
}

.catalog-list__count {
  margin: 0 auto 1.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #1b1d27;
}

.catalog-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
  width: 100%;
}

/* Products catalog — sidebar filters */
.products-catalog-page .catalog-list__layout {
  display: grid;
  grid-template-columns: minmax(15rem, 17.5rem) minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
  width: 100%;
}

.products-catalog-page .catalog-list__sidebar {
  position: sticky;
  top: 6.5rem;
}

.products-catalog-page .catalog-sidebar__form {
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  background: #fff;
}

.products-catalog-page .catalog-sidebar__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.products-catalog-page .catalog-sidebar__field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.products-catalog-page .catalog-sidebar__label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1b1d27;
}

.products-catalog-page .catalog-sidebar__search {
  position: relative;
  display: flex;
  align-items: center;
}

.products-catalog-page .catalog-sidebar__search-icon {
  position: absolute;
  left: 0.85rem;
  color: #84898b;
  pointer-events: none;
}

.products-catalog-page .catalog-sidebar__search input {
  width: 100%;
  min-height: 2.77rem;
  padding: 0.65rem 0.85rem 0.65rem 2.45rem;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  line-height: 1.2;
  color: #1b1d27;
}

.products-catalog-page .catalog-sidebar__search input::placeholder {
  color: #84898b;
}

.products-catalog-page .catalog-sidebar__select {
  position: relative;
  display: flex;
  align-items: center;
}

.products-catalog-page .catalog-sidebar__select select {
  appearance: none;
  width: 100%;
  min-height: 2.77rem;
  padding: 0.65rem 2.25rem 0.65rem 0.85rem;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.2;
  color: #1b1d27;
  cursor: pointer;
}

.products-catalog-page .catalog-sidebar__select select:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.products-catalog-page .catalog-sidebar__chevron {
  position: absolute;
  right: 0.85rem;
  pointer-events: none;
  color: #001489;
}

.products-catalog-page .catalog-sidebar__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.products-catalog-page .catalog-sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.94rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.products-catalog-page .catalog-sidebar__btn--primary {
  border: 1px solid #0057ff;
  background: #0057ff;
  color: #fff;
  cursor: pointer;
}

.products-catalog-page .catalog-sidebar__btn--primary:hover {
  background: #0046d6;
  border-color: #0046d6;
}

.products-catalog-page .catalog-sidebar__btn--secondary {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #5b5b5b;
}

.products-catalog-page .catalog-sidebar__btn--secondary:hover {
  border-color: #0057ff;
  color: #0057ff;
}

.products-catalog-page .catalog-list__main {
  min-width: 0;
}

.products-catalog-page .catalog-list__count {
  margin: 0 0 1.25rem;
  text-align: left;
}

@media (max-width: 900px) {
  .products-catalog-page .catalog-list__layout {
    grid-template-columns: 1fr;
  }

  .products-catalog-page .catalog-list__sidebar {
    position: static;
  }
}

.career-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 17.3rem;
  padding: 1.65rem 1.75rem 1.5rem;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  background: #fff;
}

.career-card--empty {
  grid-column: 1 / -1;
}

.career-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.career-card__department {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #5b5b5b;
}

.career-card__badge {
  flex-shrink: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 70px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.career-card__badge--open {
  background: rgba(0, 87, 255, 0.2);
  color: #001489;
}

.career-card__badge--fulltime {
  background: rgba(39, 255, 186, 0.2);
  color: #005338;
}

.career-card__badge--closed {
  background: #ffd4d4;
  color: #530000;
}

.career-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1d27;
}

.career-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.career-card__location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #5b5b5b;
}

.career-card__location svg {
  flex-shrink: 0;
  color: #5b5b5b;
}

.career-card__study {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #5b5b5b;
}

.career-card__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.career-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.94rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.career-card__btn--secondary {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #5b5b5b;
}

.career-card__btn--secondary:hover {
  border-color: #0057ff;
  color: #0057ff;
}

.career-card__btn--primary {
  border: 1px solid #0057ff;
  background: #0057ff;
  color: #fff;
}

.career-card__btn--primary:hover {
  background: #0046d6;
  border-color: #0046d6;
  color: #fff;
}

.catalog-list-page .catalog-list__grid .product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: none;
  transition: border-color 180ms ease;
}

.catalog-list-page .catalog-list__grid .product-card:hover {
  transform: none;
  border-color: #0057ff;
  box-shadow: none;
}

.catalog-list-page .catalog-list__grid .product-card--empty {
  grid-column: 1 / -1;
  padding: 1.65rem 1.75rem 1.5rem;
}

.catalog-list-page .product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(165deg, #f7f3f4 0%, #eef3ff 55%, #e8efff 100%);
  border-bottom: 1px solid #d8d8d8;
}

.catalog-list-page .product-card__image {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.catalog-list-page .product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(0, 20, 137, 0.28);
}

.catalog-list-page .product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.75rem 1.5rem;
}

.catalog-list-page .product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.catalog-list-page .product-card__category {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #5b5b5b;
}

.catalog-list-page .product-card__badge {
  flex-shrink: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 70px;
  border: 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: none;
}

.catalog-list-page .product-card__badge--available {
  background: rgba(0, 87, 255, 0.2);
  color: #001489;
}

.catalog-list-page .product-card__badge--on_order {
  background: rgba(255, 193, 7, 0.2);
  color: #8a5a00;
}

.catalog-list-page .product-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.catalog-list-page .product-card__title a {
  color: #1b1d27;
}

.catalog-list-page .product-card__title a:hover {
  color: #0057ff;
}

.catalog-list-page .product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #5b5b5b;
}

.catalog-list-page .product-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.catalog-list-page .product-card__brand svg {
  flex-shrink: 0;
  color: #5b5b5b;
}

.catalog-list-page .product-card__ref {
  flex-shrink: 0;
}

.catalog-list-page .product-card__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.catalog-list-page .product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.94rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.catalog-list-page .product-card__btn--secondary {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #5b5b5b;
}

.catalog-list-page .product-card__btn--secondary:hover {
  border-color: #0057ff;
  color: #0057ff;
}

.catalog-list-page .product-card__btn--primary {
  border: 1px solid #0057ff;
  background: #0057ff;
  color: #fff;
}

.catalog-list-page .product-card__btn--primary:hover {
  background: #0046d6;
  border-color: #0046d6;
  color: #fff;
}

@media (max-width: 900px) {
  .catalog-list__filters {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .catalog-list__role,
  .catalog-list__select {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .catalog-list__filters {
    grid-template-columns: 1fr;
  }

  .catalog-list__filter-btn {
    justify-self: start;
  }
}

/* Career detail */
.career-detail-page .section.career-detail {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.career-detail-page .career-detail__inner {
  width: min(920px, calc(100% - 6rem));
}

.career-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.career-detail__back:hover {
  color: #0057ff;
}

.career-detail__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.career-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #84898b;
}

.career-detail__meta-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.career-detail__meta-location svg {
  flex-shrink: 0;
  color: #84898b;
}

.career-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 16.7rem);
  gap: 2rem 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.career-detail__section {
  margin-bottom: 1.75rem;
}

.career-detail__section-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1d27;
}

.career-detail__section-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: #0057ff;
}

.career-detail__section-body p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #1b1d27;
}

.career-detail__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-detail__list--dot li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #1b1d27;
}

.career-detail__list--dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  background: #0057ff;
}

.career-detail__list--dot-dark li::before {
  background: #001489;
}

.career-detail__list--check li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #1b1d27;
}

.career-detail__check {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: #0057ff;
}

.career-detail__benefits {
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius-md);
  background: #dfe4f5;
}

.career-detail__benefits-title {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.career-detail__benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-detail__benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #1b1d27;
}

.career-detail__benefits-plus {
  flex-shrink: 0;
  font-weight: 700;
  color: #0057ff;
}

.career-detail__apply-heading {
  margin: 2.5rem 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.career-apply {
  padding: 2rem 2.25rem 2.25rem;
  border-radius: var(--radius-md);
  background: #dee3f5;
}

.career-apply__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.career-apply__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #001489;
}

.career-apply__role {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1d27;
}

.career-apply__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #001489;
}

.career-apply__close:hover {
  color: #0057ff;
}

.career-apply__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  color: #1b1d27;
}

.career-apply__form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.career-apply__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.career-apply__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.career-apply__field label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #1b1d27;
}

.career-apply__input,
.career-apply__textarea,
.career-detail-page .career-apply__field input[type="text"],
.career-detail-page .career-apply__field input[type="email"],
.career-detail-page .career-apply__field input[type="url"],
.career-detail-page .career-apply__field input[type="file"] {
  width: 100%;
  min-height: 2.77rem;
  padding: 0.65rem 1rem;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  line-height: 1.2;
  color: #1b1d27;
  background: #fff;
  box-shadow: none;
}

.career-apply__input--readonly,
.career-detail-page .career-apply__input--readonly {
  background: #eee;
  color: #1b1d27;
  cursor: default;
}

.career-apply__input::placeholder,
.career-apply__textarea::placeholder {
  color: #84898b;
}

.career-apply__textarea {
  min-height: 6.65rem;
  resize: vertical;
}

.career-apply__upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 9.45rem;
  padding: 1.25rem;
  border: 1px dashed #84898b;
  border-radius: var(--radius-md);
  background: transparent;
  text-align: center;
}

.career-apply__upload-icon {
  color: #84898b;
  transform: rotate(-90deg);
}

.career-apply__upload-text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #84898b;
}

.career-apply__file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: 0;
  border-radius: var(--radius-md);
}

.career-apply__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.career-apply__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.77rem;
  padding: 0.65rem 1.25rem;
  border: 0;
  border-radius: var(--radius-md);
  background: #001489;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: background 180ms ease;
}

.career-apply__submit:hover {
  background: #0057ff;
  color: #fff;
}

.career-apply__cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.77rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: #001489;
  white-space: nowrap;
}

.career-apply__cancel:hover {
  color: #0057ff;
}

@media (max-width: 960px) {
  .career-detail__layout {
    grid-template-columns: 1fr;
  }

  .career-detail__benefits {
    order: -1;
    margin-inline: 1.5rem;
  }

  .career-detail__main {
    margin-inline: 1.5rem;
  }
}

@media (max-width: 640px) {
  .career-detail-page .career-detail__inner {
    width: calc(100% - 2.5rem);
  }

  .career-apply__row,
  .career-apply__actions {
    grid-template-columns: 1fr;
  }

  .career-apply {
    padding: 1.5rem 1.25rem;
  }
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding: 0.62rem 0.92rem;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 87, 255, 0.28);
}

.btn-secondary {
  background: rgba(0, 87, 255, 0.08);
  color: var(--primary);
}

.btn-danger {
  background: #fee4e2;
  color: var(--danger);
}

.flash-stack {
  padding-top: 1rem;
}

.site-body > .flash-stack {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  width: min(360px, calc(100vw - 2.5rem));
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.site-body > .flash-stack .flash {
  pointer-events: auto;
  margin: 0;
  padding: 0.85rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: site-toast-enter 0.35s ease;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.site-body > .flash-stack .flash.is-hiding {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes site-toast-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .site-body > .flash-stack {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
  }
}

.flash {
  margin-bottom: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
}

.flash-success {
  background: var(--success-bg);
  color: var(--success-text);
}

.flash-error {
  background: var(--error-bg);
  color: var(--error-text);
}

.errorlist {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
  color: var(--danger);
}

details summary {
  cursor: pointer;
  font-weight: 700;
  margin-top: 0.8rem;
}

.js [data-reveal] {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 650ms ease, translate 650ms ease;
}

.js [data-reveal="left"] {
  translate: 36px 0;
}

.js [data-reveal="right"] {
  translate: -36px 0;
}

.js [data-reveal="up"] {
  translate: 0 30px;
}

.js [data-reveal].is-visible {
  opacity: 1;
  translate: none;
}

@keyframes brand-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroChartCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes heroBarPulse {
  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0.82);
  }
}

@media (max-width: 1190px) {
  .hero-grid,
  .values-grid,
  .expertise-grid,
  .careers-grid,
  .contact-shell,
  .two-column {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    height: auto;
  }

  .expertise-visual,
  .expertise-copy,
  .career-visual-panel,
  .career-copy {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .expertise-copy {
    padding-right: 0;
  }

  .expertise-visual,
  .career-visual-panel {
    max-width: min(100%, 32rem);
    margin-inline: auto;
    max-height: clamp(11.25rem, 32vw, 17.5rem);
    aspect-ratio: 16 / 10;
  }

  .expertise-copy,
  .career-copy {
    display: block;
  }

  .js [data-reveal="left"],
  .js [data-reveal="right"] {
    translate: 0 26px;
  }

  .expertise-copy .feature-list {
    flex: none;
  }

  .contact-grid {
    flex: none;
    grid-template-rows: none;
    gap: 1.85rem;
  }

  .contact-card {
    height: auto;
  }

  .contact-form-card {
    height: auto;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem clamp(1.5rem, 4vw, 3rem);
  }

  .hero-home .hero-grid {
    gap: var(--hero-grid-gap);
    min-width: 0;
  }

  .hero-home .hero-copy,
  .hero-visual {
    min-width: 0;
  }

  .hero-visual {
    justify-content: center;
  }

  @media (min-width: 641px) {
    .hero-visual__stage {
      --hero-stage-scale: min(1, calc((100vw - 2.5rem) / 677px));
      width: 677px;
      max-width: 100%;
      height: auto;
      margin-inline: auto;
      transform: scale(var(--hero-stage-scale));
      transform-origin: top center;
      margin-bottom: calc(331px * (var(--hero-stage-scale) - 1));
    }

    .hero-visual {
      height: min(331px, calc((100vw - 2.5rem) * 331 / 677));
    }

    @supports (width: 1cqw) {
      .hero-visual__stage {
        --hero-stage-scale: min(1, calc(100cqw / 677px));
      }

      .hero-visual {
        height: min(331px, calc(100cqw * 331 / 677));
      }
    }
  }

  .home-page .hero-copy,
  .home-page .hero-lead,
  .home-page .hero-actions {
    margin-inline: auto;
    justify-content: center;
    text-align: center;
  }

  .hero-home .hero-lead {
    max-width: min(37rem, 100%);
  }

  .hero-home__title,
  .hero-home__title-accent,
  .hero-home__title-end {
    margin-inline: auto;
  }

  .hero:not(.hero-home) h1 {
    font-size: clamp(1.95rem, 5.2vw, 2.85rem);
  }

  .values-copy h2 {
    max-width: 100%;
  }

  .home-page .values-copy,
  .home-page .expertise-copy {
    text-align: center;
  }

  .home-page .values-copy h2 {
    margin-inline: auto;
  }

  .home-page .expertise-copy .feature-list {
    padding-left: 0;
    list-style-position: inside;
  }

}

@media (min-width: 1191px) {
  .values-grid {
    align-items: stretch;
  }

  .values-cards {
    height: 100%;
    grid-auto-rows: 1fr;
    align-self: stretch;
  }

  .values-grid .value-card {
    min-height: 0;
    align-self: stretch;
  }

  .expertise-grid,
  .careers-grid {
    align-items: stretch;
  }

  .expertise-visual,
  .career-visual-panel {
    max-width: none;
    margin-inline: 0;
    max-height: none;
    aspect-ratio: auto;
    height: 100%;
  }

  .hero-home .hero-copy {
    max-width: min(39rem, 100%);
  }

  .hero-home__title,
  .hero-home__title-accent,
  .hero-home__title-end {
    margin-inline: 0;
  }

  .home-page .hero-copy,
  .home-page .hero-lead,
  .home-page .hero-actions {
    margin-inline: 0;
    text-align: start;
    justify-content: flex-start;
  }

  .hero-visual {
    justify-content: flex-end;
    height: auto;
  }

  .hero-visual__stage {
    width: var(--hero-visual-w);
    transform: none;
    margin-bottom: 0;
  }

  .hero:not(.hero-home) h1 {
    max-width: 11ch;
  }

  .values-copy h2 {
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .hero-home .hero-grid {
    gap: clamp(2rem, 3vw, 3rem);
  }
}

@media (max-width: 1190px) and (min-width: 641px) {
  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .hero,
  .section {
    padding: 4.35rem 0;
  }

  .product-detail-page .section.product-detail {
    padding-top: 1.75rem;
  }

  .contact-section {
    padding-top: 1.75rem;
    padding-bottom: 3rem;
  }

  #why-work {
    padding-bottom: 5rem;
  }

  .contact-curve {
    margin-top: -1.5rem;
  }

  .contact-curve__image {
    height: clamp(9rem, 17vw, 11.5rem);
  }

  .section-heading {
    margin-bottom: 1.7rem;
  }

  .hero-grid,
  .values-grid,
  .expertise-grid,
  .careers-grid,
  .contact-shell,
  .two-column {
    gap: 1.75rem;
  }

  .card-grid,
  .card-grid.thirds,
  .card-grid.quarters,
  .service-grid,
  .values-cards,
  .contact-grid {
    gap: 1.15rem;
  }

  .hero-copy,
  .values-copy,
  .expertise-copy,
  .career-copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-actions .btn,
  .career-copy__actions .btn,
  .contact-social-link,
  .brand-pill,
  .footer-nav-list a {
    min-height: 44px;
  }

  .footer-nav-list a {
    display: inline-flex;
    align-items: center;
  }

  .footer-social-link {
    width: 3.1rem;
    height: 3.1rem;
  }

  .footer-subscribe {
    min-height: 3.25rem;
  }
}

@media (min-width: 1191px) and (max-width: 1440px) {
  .site-header .brand-logo {
    width: clamp(200px, 20vw, 280px);
  }

  .site-nav {
    gap: clamp(1rem, 1.5vw, 1.65rem);
  }

  .nav-actions {
    gap: 0.45rem;
  }
}

@media (max-width: 1190px) {
  .nav-row {
    justify-content: space-between;
    text-align: left;
  }

  html:not(.js) .nav-panel {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    padding-top: 0.75rem;
  }

  html:not(.js) .site-nav,
  html:not(.js) .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  html:not(.js) .site-nav a:not(.btn),
  html:not(.js) .nav-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    white-space: normal;
  }

  body.nav-open {
    touch-action: none;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(27, 29, 39, 0.55);
  }

  body.nav-open .site-header {
    z-index: 60;
    background: rgba(247, 243, 244, 0.55);
    border-bottom-color: transparent;
    backdrop-filter: blur(12px);
  }

  .js .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .js .nav-panel {
    display: none;
  }

  .js .nav-row.menu-open .nav-panel {
    display: flex;
  }

  .nav-panel {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    padding-top: 0.75rem;
  }

  .js .nav-row.menu-open {
    flex-wrap: nowrap;
    position: relative;
    z-index: 61;
  }

  .js .nav-row.menu-open .nav-panel {
    position: fixed;
    top: var(--nav-bar-height, 4.5rem);
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 2rem), 400px);
    max-width: calc(100% - 2rem);
    margin-inline: 0;
    margin-top: 0.25rem;
    z-index: 61;
    max-height: calc(100dvh - var(--nav-bar-height, 4.5rem) - 1.25rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.15rem 1rem 1.2rem;
    gap: 0.65rem;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
      0 28px 64px rgba(0, 20, 137, 0.14),
      0 1px 0 rgba(255, 255, 255, 0.85) inset;
  }

  .js .nav-row.menu-open .nav-toggle {
    background: #fff;
    border-color: rgba(0, 20, 137, 0.1);
    color: var(--primary);
    box-shadow: 0 10px 26px rgba(0, 20, 137, 0.12);
  }

  .site-nav,
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .js .nav-row.menu-open .site-nav,
  .js .nav-row.menu-open .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions {
    margin-left: 0;
  }

  .nav-actions .language-switcher {
    align-self: center;
  }

  .site-nav a:not(.btn),
  .nav-actions a:not(.nav-meta-link--icon) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    white-space: normal;
  }

  .site-nav a:not(.btn) {
    background: rgba(255, 255, 255, 0.78);
    color: var(--primary-dark);
  }

  .js .nav-row.menu-open .site-nav a:not(.btn) {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.98rem;
    padding: 0.92rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 20, 137, 0.06);
    box-shadow:
      0 8px 22px rgba(0, 20, 137, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.95) inset;
  }

  .nav-meta-link {
    background: rgba(0, 87, 255, 0.08);
    color: var(--primary);
  }

  .js .nav-row.menu-open .nav-meta-link:not(.nav-meta-link--icon) {
    background: linear-gradient(180deg, #eef2ff 0%, #e4e9fc 100%);
    color: var(--accent);
    font-weight: 800;
    font-size: 0.96rem;
    padding: 0.92rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 87, 255, 0.16);
    box-shadow: 0 6px 18px rgba(0, 87, 255, 0.1);
  }

  .nav-actions a.nav-meta-link--icon {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-self: center;
    margin-inline: auto;
    padding: 0;
  }

  .site-header .nav-meta-link--icon {
    margin-inline-end: 0;
  }

  .js .nav-row.menu-open .nav-actions a.nav-meta-link--icon {
    font-weight: 400;
    font-size: inherit;
    padding: 0;
  }

  .js .nav-row.menu-open .nav-actions .btn-primary.btn-small {
    min-height: 52px;
    padding: 0.95rem 1.1rem;
    font-size: 0.96rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    white-space: normal;
    background: linear-gradient(90deg, #1a52e0 0%, var(--accent) 42%, var(--primary) 100%);
    box-shadow: 0 14px 34px rgba(0, 20, 137, 0.32);
  }

  .site-nav a:not(.btn)::after,
  .nav-meta-link::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero,
  .section {
    padding: 4rem 0;
  }

  .product-detail-page .section.product-detail {
    padding-top: 1.5rem;
  }

  .footer-brand-block,
  .footer-column,
  .footer-contact-block {
    justify-items: center;
    text-align: center;
  }

  .footer-brand-block {
    margin-top: 0;
  }

  .footer-grid {
    gap: 2.5rem 0;
  }

  .footer-column {
    padding-top: 0.75rem;
  }

  .footer-grid h4 {
    margin-bottom: 1.25rem;
  }

  .footer-copy {
    margin: 1.75rem 0 2.75rem;
  }

  .footer-contact-column .footer-socials {
    margin-top: 1.5rem;
  }

  .footer-bottom {
    margin-top: 2rem;
  }

  .footer-copy,
  .footer-subscribe {
    margin-inline: auto;
  }

  .footer-nav-list,
  .footer-contact-list {
    justify-items: center;
  }

  .footer-nav-list--company {
    justify-items: start;
    margin-inline: auto;
  }

  .footer-contact-item,
  .footer-socials {
    justify-content: center;
  }

  .footer-contact-item {
    align-items: center;
    text-align: center;
  }

  .card-grid,
  .card-grid.thirds,
  .card-grid.quarters,
  .service-grid,
  .values-cards,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.1rem;
  }

}

@media (max-width: 767px) {
  .js [data-reveal="left"],
  .js [data-reveal="right"] {
    translate: 0 26px;
  }
}

@media (max-width: 640px) {
  .expertise-visual,
  .career-visual-panel {
    max-height: clamp(10rem, 46vw, 14rem);
  }

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .contact-section__header.container {
    width: min(90rem, calc(100% - 1.25rem));
  }

  .contact-curve {
    margin-top: -1.25rem;
  }

  .contact-curve__image {
    height: clamp(8.25rem, 19vw, 10.25rem);
  }

  #why-work {
    padding-bottom: 4rem;
  }

  .hero-copy,
  .section-heading,
  .values-copy,
  .expertise-copy,
  .career-copy,
  .solution-body,
  .service-card,
  .contact-card,
  .contact-form-heading {
    text-align: center;
  }

  .hero-copy,
  .values-copy,
  .expertise-copy,
  .career-copy {
    margin-inline: auto;
  }

  .values-copy h2 {
    margin-inline: auto;
  }

  .career-copy__title {
    align-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .career-copy__title-line {
    margin-inline: auto;
    text-align: center;
  }

  .career-copy__lead {
    margin-inline: auto;
  }

  .career-copy__actions {
    justify-content: center;
  }

  .feature-list {
    padding-left: 0;
    list-style-position: inside;
  }

  .button-row {
    align-items: stretch;
  }

  .hero h1 {
    max-width: 100%;
    line-height: 1.12;
  }

  .hero-home .hero-home__title {
    max-width: 100%;
    font-size: clamp(1.6rem, 6.5vw, 2.35rem);
    line-height: 1.28;
    text-wrap: pretty;
  }

  .hero-home .hero-lead {
    font-size: clamp(0.88rem, 2.8vw, 0.95rem);
    line-height: 1.45;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    margin-top: 1.1rem;
  }

  .site-header .brand-logo {
    width: min(70vw, 220px);
    height: auto;
    max-height: 56px;
  }

  .footer-brand-logo {
    max-height: 5.5rem;
    max-width: min(100%, 20rem);
    width: auto;
  }

  .site-footer {
    padding: 2.75rem 0 1.5rem;
  }

  .footer-nav-list--company {
    column-gap: 2.5rem;
    row-gap: 1rem;
  }

  .footer-contact-list {
    gap: 1rem;
  }

  .hero-home .hero-visual {
    width: min(92vw, 20.5rem);
    max-width: 20.5rem;
    margin-inline: auto;
    margin-top: 0.35rem;
  }

  .hero-visual__stage {
    width: 100%;
    max-width: 20.5rem;
    margin-inline: auto;
    transform: none;
    margin-bottom: 0;
    aspect-ratio: 677 / 380;
  }

  .hero-visual {
    height: auto;
    overflow: visible;
    padding-bottom: 0.85rem;
  }

  .hero-visual__stage {
    overflow: visible;
  }

  .hero-visual-card--main {
    top: 19%;
    height: 78%;
  }

  .hero-visual-card__body {
    padding: 0.75rem 0.65rem 1.25rem;
  }

  .hero-visual-card--main h3 {
    font-size: 0.9rem;
  }

  .hero-visual-card--main p {
    font-size: clamp(0.58rem, 2.4vw, 0.68rem);
    line-height: 1.33;
  }

  .hero-visual-card--services {
    top: auto;
    bottom: -10%;
    max-width: 64%;
    padding: 0.4rem 0.6rem;
  }

  .hero-visual-card--services p {
    font-size: clamp(0.54rem, 2.5vw, 0.68rem);
  }

  .hero-visual-card--team {
    top: auto;
    right: 0;
    bottom: -10%;
    max-width: 48%;
  }

  .hero-visual__avatars li {
    width: clamp(1.15rem, 4.8vw, 1.65rem);
    height: clamp(1.15rem, 4.8vw, 1.65rem);
    margin-left: clamp(-0.32rem, -1.6vw, -0.5rem);
  }

  .hero-visual__avatars li.is-plus {
    font-size: clamp(0.65rem, 2.8vw, 0.8rem);
  }

  .hero-home .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 100%;
    margin-top: 0.9rem;
    gap: 0.5rem;
  }

  .hero-home .hero-actions .btn {
    width: auto;
    flex: 0 1 auto;
  }

  .hero-home__btn {
    min-width: 0;
    min-height: 2.25rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    border-radius: var(--radius-md);
  }

  .career-copy__actions,
  .footer-subscribe {
    flex-direction: column;
    align-items: stretch;
  }

  .career-copy__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 2rem 1.65rem;
    text-align: center;
  }

  .contact-card-body {
    display: grid;
    justify-items: center;
  }

  .contact-section .contact-card-label::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-socials {
    justify-content: center;
  }

  .brand-marquee-stack {
    gap: 1rem;
  }

  .brand-marquee {
    mask-image: none;
  }

  .partner-section .partner-logo {
    max-width: 210px;
    height: 64px;
  }

  .footer-subscribe {
    max-width: none;
    min-height: 3.25rem;
    border-radius: var(--radius-md);
  }

  .footer-subscribe-button {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 3.25rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

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

  .contact-form-card,
  .card,
  .solution-card,
  .value-card {
    padding: 1.2rem;
    border-radius: var(--radius-md);
  }

  .contact-card {
    padding: 2rem 1.65rem;
    border-radius: var(--radius-lg);
  }

  .service-card {
    padding: 4.8rem 1.2rem 1.2rem;
  }

  .service-badge {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .hero-home {
    --hero-pad-top: clamp(1.5rem, 6vw, 2.25rem);
    --hero-pad-bottom: clamp(1.5rem, 5vw, 2.25rem);
    --hero-grid-gap: 0.85rem;
  }

  .hero-home .hero-home__title {
    font-size: clamp(1.4rem, 7.2vw, 1.85rem);
    line-height: 1.28;
  }

  .hero-home .hero-actions {
    gap: 0.45rem;
  }

  .hero-home__btn {
    padding: 0.48rem 0.75rem;
    font-size: 0.76rem;
  }

  .hero-visual {
    padding-bottom: 1rem;
  }

  .hero-visual-card--services,
  .hero-visual-card--team {
    bottom: -12%;
  }
}

@media (min-width: 641px) and (max-width: 1190px) {
  .hero-home .hero-actions {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 28rem;
  }

  .hero-home .hero-actions .btn {
    flex: 0 1 auto;
    width: auto;
    min-width: min(10.5rem, 48%);
  }
}

@media (max-height: 520px) and (orientation: landscape) and (max-width: 900px) {
  .hero-home {
    --hero-pad-top: 0.75rem;
    --hero-pad-bottom: 1.25rem;
    --hero-grid-gap: 1rem;
  }

  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-home .hero-home__title {
    font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  }

  .hero-home .hero-lead {
    margin-top: 0.65rem;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .hero-home .hero-actions {
    margin-top: 0.75rem;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
  }

  .hero-visual {
    height: auto;
  }

  .hero-visual__stage {
    --hero-stage-scale: min(1, calc(45cqw / 677px));
    margin-bottom: calc(331px * (var(--hero-stage-scale) - 1));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-visual-card--chart-sm {
    animation-duration: 4.5s !important;
    animation-iteration-count: infinite !important;
  }

  .hero-visual-card--progress {
    animation-duration: 5.25s !important;
    animation-iteration-count: infinite !important;
  }
}
