:root {
  --fm-red: #0b3c5d;
  --fm-red-dark: #0b3c5d;
  --fm-red-soft: #3fa34d;
  --fm-cream: #f5f5f5;
  --fm-cream-strong: #f5f5f5;
  --fm-surface: #ffffff;
  --fm-white: #ffffff;
  --fm-ink: #0b3c5d;
  --fm-body: rgba(11, 60, 93, 0.82);
  --fm-muted: rgba(11, 60, 93, 0.68);
  --fm-line: rgba(11, 60, 93, 0.12);
  --fm-shadow: 0 18px 50px rgba(11, 60, 93, 0.12);
  --fm-shadow-lg: 0 28px 80px rgba(11, 60, 93, 0.18);
  --fm-radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fm-body);
  background: var(--fm-surface);
  font-family: "Manrope", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--fm-ink);
  font-family: "Sora", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

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

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

button {
  border: 0;
  background: transparent;
}

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

video {
  display: block;
  width: 100%;
}

input,
textarea,
button {
  font: inherit;
}

input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid rgba(11, 60, 93, 0.35);
  outline-offset: 3px;
}

.fm-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--fm-red);
  color: var(--fm-white);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.fm-skip-link:focus {
  transform: translateY(0);
}

.fm-section {
  padding: 96px 0;
}

.fm-section--cream {
  background: var(--fm-cream);
}

.fm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--fm-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fm-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.fm-kicker.light {
  color: rgba(255, 255, 255, 0.84);
}

.fm-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.fm-section-head h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.98;
  max-width: 760px;
}

.fm-section-head p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
}

.fm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

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

.fm-btn.primary {
  background: var(--fm-white);
  color: var(--fm-red);
}

.fm-btn.primary:hover {
  background: var(--fm-cream);
}

.fm-btn.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--fm-white);
}

.fm-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fm-btn.dark {
  background: var(--fm-red);
  color: var(--fm-white);
}

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

.fm-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fm-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fm-inline-link:hover {
  color: var(--fm-red-dark);
}

.fm-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 12px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
  backdrop-filter: blur(18px);
}

.fm-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(11, 60, 93, 0.08);
}

.fm-header-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 94px;
}

.fm-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.fm-brand img {
  width: auto;
  max-height: 52px;
}

.fm-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fm-brand-copy strong {
  color: var(--fm-ink);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.fm-brand-copy span {
  color: var(--fm-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fm-nav-wrap {
  flex: 1;
}

.menu > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 12px 18px;
  list-style: none;
  border-radius: 30px;
  background: var(--fm-red);
  box-shadow: var(--fm-shadow);
}

.menu > ul > li {
  position: relative;
}

.menu > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu > ul > li > a.active,
.menu > ul > li > a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--fm-white);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  min-width: 220px;
  padding: 12px;
  border-radius: 22px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
}

.sub-menu-item + .sub-menu-item {
  margin-top: 6px;
}

.sub-menu-item a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--fm-body);
  font-size: 14px;
}

.sub-menu-item a:hover {
  background: var(--fm-cream);
  color: var(--fm-red);
}

.fm-tool-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fm-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: var(--fm-red);
  color: var(--fm-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--fm-shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.fm-cta-link:hover {
  transform: translateY(-1px);
  background: var(--fm-red-dark);
  color: var(--fm-white);
}

.fm-cta-link.secondary {
  background: var(--fm-white);
  color: var(--fm-red);
}

.fm-cta-link.secondary:hover {
  background: #f5f5f5;
  color: var(--fm-red-dark);
}

.fm-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(11, 60, 93, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--fm-ink);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.fm-tool:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 60, 93, 0.22);
  background: #f5f5f5;
}

.fm-tool svg,
.fm-tool img {
  width: 18px;
  height: 18px;
}

.menu-mobile {
  display: none;
}

.menu-mobile .close-icon {
  display: none;
}

.menu-mobile.open .open-icon {
  display: none;
}

.menu-mobile.open .close-icon {
  display: block;
}

.lang-wrapper {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(11, 60, 93, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--fm-ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 168px;
  padding: 12px;
  border-radius: 20px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
}

.lang-wrapper:hover .lang-dropdown {
  display: block;
}

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

.lang-dropdown li + li {
  margin-top: 6px;
}

.lang-dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--fm-body);
  font-size: 13px;
}

.lang-dropdown a:hover {
  background: var(--fm-cream);
  color: var(--fm-red);
}

.search-wrapper {
  position: absolute;
  inset: calc(100% + 8px) 0 auto 0;
  display: none;
  padding: 18px 0 0;
}

.search-wrapper.show {
  display: block;
}

.search-wrapper-content {
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow-lg);
}

.search-input {
  flex: 1;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--fm-ink);
}

.search-submit {
  min-height: 60px;
  padding: 0 22px;
  border-radius: 18px;
  background: var(--fm-red);
  color: var(--fm-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-close {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--fm-cream);
  cursor: pointer;
}

.fm-hero {
  position: relative;
}

.fm-hero .swiper-slide {
  position: relative;
  min-height: calc(100svh - 106px);
}

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

.fm-hero-media img,
.fm-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 60, 93, 0.62) 0%, rgba(11, 60, 93, 0.28) 48%, rgba(11, 60, 93, 0.24) 100%),
    linear-gradient(180deg, rgba(11, 60, 93, 0.12) 0%, rgba(11, 60, 93, 0.5) 100%);
}

.fm-hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: 34px;
  padding: clamp(128px, 14vw, 180px) 0 72px;
}

.fm-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--fm-white);
  font-size: clamp(54px, 7vw, 102px);
  line-height: 0.92;
}

.fm-hero-copy p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.85;
}

.fm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fm-hero-summary {
  align-self: end;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--fm-shadow-lg);
}

.fm-summary-eyebrow {
  color: var(--fm-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fm-hero-summary h2 {
  margin: 10px 0 20px;
  font-size: 30px;
  line-height: 1.05;
}

.fm-summary-list {
  display: grid;
  gap: 14px;
}

.fm-summary-list article {
  padding: 14px 0;
  border-top: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-summary-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fm-ink);
  font-size: 16px;
}

.fm-summary-list span {
  display: block;
  color: var(--fm-muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.fm-summary-metrics div,
.fm-metric-card,
.fm-feature-card,
.fm-capability-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--fm-white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--fm-shadow);
}

.fm-summary-metrics strong,
.fm-metric-card strong {
  display: block;
  color: var(--fm-red);
  font-size: 28px;
  line-height: 1;
}

.fm-summary-metrics span,
.fm-metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--fm-body);
  font-size: 13px;
  line-height: 1.6;
}

.fm-metric-card strong small {
  font-size: 18px;
  font-weight: 700;
}

.main-slider__nav {
  position: absolute;
  right: 48px;
  bottom: 42px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.main-slider__nav .swiper-button-prev,
.main-slider__nav .swiper-button-next {
  position: static;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--fm-white);
  backdrop-filter: blur(6px);
}

.main-slider__nav .swiper-button-prev::after,
.main-slider__nav .swiper-button-next::after {
  display: none;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.54);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--fm-white);
}

.fm-product-gateway,
.fm-feature-grid,
.fm-brand-grid,
.fm-path-grid,
.fm-news-grid,
.fm-search-grid,
.fm-product-list-grid,
.fm-contact-grid,
.fm-capability-grid,
.fm-metrics-grid {
  display: grid;
  gap: 22px;
}

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

.fm-product-gateway-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--fm-shadow-lg);
}

.fm-product-gateway-media,
.fm-product-gateway-card::after {
  position: absolute;
  inset: 0;
}

.fm-product-gateway-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.fm-product-gateway-card::after {
  content: "";
  background: linear-gradient(180deg, rgba(11, 60, 93, 0.08) 0%, rgba(11, 60, 93, 0.72) 100%);
}

.fm-product-gateway-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  color: var(--fm-white);
}

.fm-product-gateway-copy span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fm-product-gateway-copy h3 {
  color: var(--fm-white);
  font-size: 34px;
  line-height: 0.98;
}

.fm-product-gateway-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.fm-product-gateway-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fm-product-gateway-card:hover .fm-product-gateway-media img {
  transform: scale(1.05);
}

.fm-feature-grid,
.fm-capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

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

.fm-feature-card strong,
.fm-capability-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--fm-ink);
  font-size: 22px;
  line-height: 1.08;
}

.fm-feature-card p,
.fm-capability-card p {
  color: var(--fm-body);
  line-height: 1.75;
}

.fm-feature-grid--editorial .fm-feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 245, 245, 0.96) 100%);
}

.fm-feature-grid--editorial .fm-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--fm-red-soft) 0%, var(--fm-red) 100%);
}

.fm-feature-grid--editorial .fm-feature-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(11, 60, 93, 0.55);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fm-market-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.fm-market-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 0.98;
}

.fm-market-copy p {
  font-size: 17px;
  line-height: 1.82;
}

.fm-market-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.fm-market-list article {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--fm-cream);
}

.fm-market-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--fm-ink);
  font-size: 18px;
}

.fm-market-list span {
  color: var(--fm-body);
  font-size: 14px;
}

.fm-map-card {
  position: relative;
  min-height: 440px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: var(--fm-shadow-lg);
}

.fm-map-svg {
  width: 100%;
  height: 100%;
}

.fm-map-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
  color: var(--fm-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fm-map-chip.au {
  left: 18%;
  bottom: 20%;
}

.fm-map-chip.asia {
  left: 47%;
  top: 18%;
}

.fm-map-chip.na {
  right: 10%;
  top: 10%;
}

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

.fm-brand-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
  box-shadow: var(--fm-shadow-lg);
}

.fm-brand-card-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.fm-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  min-width: 110px;
  height: 78px;
  padding: 14px;
  border-radius: 20px;
  background: var(--fm-cream);
}

.fm-brand-card h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.fm-brand-card small {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(11, 60, 93, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fm-brand-card p {
  line-height: 1.7;
}

.fm-brand-product {
  overflow: hidden;
  border-radius: 22px;
}

.fm-brand-product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.fm-brand-card__foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-brand-card__foot span,
.fm-brand-card__foot a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.fm-brand-card__foot span {
  color: var(--fm-muted);
  text-transform: uppercase;
}

.fm-brand-card__foot a {
  color: var(--fm-red);
}

.fm-brand-hero-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(245,245,245,0.92) 100%);
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-brand-hero-note strong {
  color: var(--fm-ink);
  font-size: 18px;
}

.fm-brand-hero-note p {
  max-width: 62ch;
  color: var(--fm-body);
  line-height: 1.72;
}

.fm-logo-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.fm-logo-rail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 24px;
  border-radius: 22px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
}

.fm-logo-rail-item img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.fm-logo-rail-link,
.fm-brand-marquee__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.fm-section-head--stacked {
  display: grid;
  justify-content: start;
  gap: 10px;
}

.fm-section-head--stacked p {
  max-width: 760px;
}

.fm-section--partner-marquee {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.58), transparent 22%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.44), transparent 26%),
    radial-gradient(circle at 42% 70%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(180deg, #f8efe0 0%, #fbf6ed 100%);
}

.fm-partner-marquee__copy {
  position: relative;
  z-index: 2;
}

.fm-partner-marquee__header-top {
  padding-bottom: 18px;
}

.fm-partner-marquee__header-top .fm-kicker {
  color: var(--fm-red);
}

.fm-partner-marquee__header-top .fm-kicker::before {
  background: #0b3c5d;
}

.fm-partner-marquee__copy--middle {
  padding-top: 12px;
  padding-bottom: 12px;
}

.fm-partner-marquee__header-middle {
  display: grid;
  gap: 10px;
}

.fm-partner-marquee__header-middle h2 {
  max-width: 760px;
  margin: 0;
  color: var(--fm-ink);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.98;
}

.fm-partner-marquee__header-middle p {
  max-width: 760px;
  margin: 0;
  color: rgba(11, 60, 93, 0.76);
  font-size: 16px;
  line-height: 1.8;
}

.fm-brand-marquee {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
  padding: 8px 0 10px;
}

.fm-brand-marquee__row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.fm-brand-marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: fmBrandMarqueeTop 46s linear infinite;
  will-change: transform;
}

.fm-brand-marquee__row--bottom .fm-brand-marquee__track {
  animation-name: fmBrandMarqueeBottom;
  animation-duration: 52s;
}

@media (hover: hover) and (pointer: fine) {
  .fm-brand-marquee:hover .fm-brand-marquee__track {
    animation-play-state: paused;
  }
}

.fm-brand-marquee__item {
  flex: 0 0 clamp(220px, 17vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  padding: 18px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(11, 60, 93, 0.06);
  backdrop-filter: blur(8px);
}

.fm-brand-marquee__item img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

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

.fm-path-grid--supply {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fm-path-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: var(--fm-cream);
}

.fm-path-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--fm-red);
  color: var(--fm-white);
  font-size: 20px;
  font-weight: 800;
}

.fm-path-card h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.fm-path-card p {
  line-height: 1.8;
}

.fm-path-grid--linked {
  position: relative;
  gap: 18px;
}

.fm-path-grid--linked::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(11, 60, 93, 0.16), rgba(11, 60, 93, 0.4), rgba(11, 60, 93, 0.16));
}

.fm-final-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 30px;
  border-radius: 28px;
  background: var(--fm-ink);
  box-shadow: var(--fm-shadow-lg);
}

.fm-final-callout h2 {
  color: var(--fm-white);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
}

.fm-final-callout .fm-hero-actions {
  justify-content: flex-end;
}

.fm-page-hero {
  position: relative;
  min-height: 420px;
  padding-top: 36px;
  overflow: hidden;
}

.fm-page-hero-media,
.fm-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.fm-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-page-hero-overlay {
  background:
    linear-gradient(110deg, rgba(11, 60, 93, 0.82) 0%, rgba(11, 60, 93, 0.42) 54%, rgba(11, 60, 93, 0.2) 100%),
    radial-gradient(circle at 72% 16%, rgba(63, 163, 77, 0.18), transparent 32%);
}

.fm-page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 154px 0 68px;
}

.fm-page-hero-copy h1 {
  max-width: 760px;
  color: var(--fm-white);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.93;
}

.fm-page-hero-copy p {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

.fm-catalogue-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
  margin-bottom: 34px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(245,245,245,0.96) 100%);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--fm-shadow);
}

.fm-catalogue-intro__copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(11, 60, 93, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fm-catalogue-intro__copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--fm-ink);
  font-size: 28px;
  line-height: 1.08;
}

.fm-catalogue-intro__copy p {
  max-width: 62ch;
  line-height: 1.76;
}

.fm-catalogue-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fm-catalogue-intro__stats article {
  display: grid;
  align-content: center;
  min-height: 120px;
  padding: 18px;
  border-radius: 20px;
  background: var(--fm-cream);
}

.fm-catalogue-intro__stats b {
  display: block;
  margin-bottom: 8px;
  color: var(--fm-red);
  font-size: 34px;
  line-height: 1;
}

.fm-catalogue-intro__stats span {
  color: var(--fm-body);
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fm-subnav {
  padding: 18px 0 0;
}

.fm-subnav-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 24px;
  background: var(--fm-cream);
}

.fm-subnav-links,
.fm-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.fm-subnav-links a,
.fm-breadcrumbs a,
.fm-breadcrumbs span {
  font-size: 13px;
}

.fm-subnav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--fm-body);
}

.fm-subnav-links a.active,
.fm-subnav-links a:hover {
  background: var(--fm-red);
  color: var(--fm-white);
}

.fm-breadcrumbs {
  color: var(--fm-muted);
}

.fm-line-grid {
  display: grid;
  gap: 30px;
}

.fm-line-card,
.fm-rich-panel,
.fm-detail-panel,
.fm-inquiry-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow-lg);
}

.fm-line-card {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-line-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.fm-line-content {
  padding: 30px;
}

.fm-line-content h2 {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.02;
}

.fm-line-content > p {
  margin-bottom: 18px;
  line-height: 1.78;
}

.fm-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.fm-line-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 60, 93, 0.08);
  color: var(--fm-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fm-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

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

.fm-sub-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.88) 0%, rgba(245, 245, 245, 0.88) 100%);
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-sub-card h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.fm-sub-card > p {
  margin-bottom: 16px;
  line-height: 1.72;
}

.fm-sample-list {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.fm-sample-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fm-sample-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11, 60, 93, 0.12);
}

.fm-sample-thumb {
  overflow: hidden;
  border-radius: 14px;
}

.fm-sample-thumb img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.fm-sample-copy h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.fm-sample-copy p {
  font-size: 13px;
  line-height: 1.6;
}

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

.fm-product-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
  border: 1px solid rgba(11, 60, 93, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fm-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(11, 60, 93, 0.16);
}

.fm-product-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.fm-product-copy {
  padding: 20px;
}

.fm-product-copy small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--fm-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fm-product-copy h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.fm-product-copy p {
  margin-bottom: 14px;
  line-height: 1.72;
}

.fm-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.fm-detail-summary article {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(245,245,245,0.96) 100%);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--fm-shadow);
}

.fm-detail-summary span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(11, 60, 93, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fm-detail-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fm-ink);
  font-size: 20px;
  line-height: 1.12;
}

.fm-detail-summary p {
  color: var(--fm-body);
  line-height: 1.68;
}

.fm-detail-shell {
  display: block;
}

.fm-detail-panel {
  padding: 28px;
}

.fm-gallery .gallery-top {
  overflow: hidden;
  border-radius: 28px;
}

.fm-gallery .gallery-top img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gallery-thumbs {
  margin-top: 12px;
}

.gallery-thumbs .swiper-slide {
  overflow: hidden;
  border-radius: 18px;
  opacity: 0.68;
  cursor: pointer;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-thumbs img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.fm-detail-copy {
  padding: 8px 0;
}

.fm-detail-copy h2 {
  margin-bottom: 12px;
  font-size: 42px;
}

.fm-detail-copy > p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.82;
}

.fm-detail-meta-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.fm-detail-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--fm-cream);
}

.fm-detail-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fm-ink);
  font-size: 15px;
}

.fm-detail-note span {
  display: block;
  line-height: 1.7;
}

.fm-rich-panel {
  margin-top: 26px;
  padding: 28px;
}

.fm-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: var(--fm-cream);
}

.fm-tabs-item {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--fm-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.fm-tabs-item.active {
  background: var(--fm-red);
  color: var(--fm-white);
}

.fm-tab-body {
  margin-top: 24px;
}

.fm-rich-content {
  color: var(--fm-body);
  line-height: 1.9;
  font-size: 16px;
}

.fm-rich-content img {
  border-radius: 22px;
  margin: 18px 0;
}

.fm-rich-content h1,
.fm-rich-content h2,
.fm-rich-content h3,
.fm-rich-content h4 {
  margin: 20px 0 12px;
}

.fm-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.fm-story-card,
.fm-contact-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
}

.fm-story-card h2,
.fm-contact-card h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 0.98;
}

.fm-story-card p,
.fm-contact-card p {
  line-height: 1.82;
}

.fm-story-card p + p {
  margin-top: 14px;
}

.fm-story-media {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--fm-shadow-lg);
}

.fm-story-media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.fm-metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

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

.fm-contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.fm-contact-list article {
  padding-top: 14px;
  border-top: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--fm-ink);
  font-size: 14px;
}

.fm-contact-list span {
  display: block;
  color: var(--fm-body);
  line-height: 1.7;
}

.fm-contact-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.fm-contact-form input,
.fm-contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--fm-ink);
}

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

.fm-form-note {
  color: var(--fm-muted);
  font-size: 14px;
}

.fm-map-board {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--fm-shadow-lg);
}

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

.fm-article-card,
.fm-search-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
}

.fm-article-thumb img,
.fm-search-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.fm-article-copy,
.fm-search-card > div:last-child {
  padding: 20px;
}

.fm-search-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: stretch;
}

.fm-search-thumb {
  overflow: hidden;
}

.fm-search-thumb img {
  height: 100%;
}

.fm-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--fm-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fm-article-meta--detail {
  margin-bottom: 18px;
}

.fm-article-copy h3,
.fm-search-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.04;
}

.fm-article-copy p,
.fm-search-card p {
  margin-bottom: 14px;
  line-height: 1.74;
}

.fm-editorial-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  padding: 18px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(245,245,245,0.96) 100%);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--fm-shadow);
}

.fm-editorial-note strong {
  color: var(--fm-ink);
  font-size: 18px;
}

.fm-editorial-note p {
  max-width: 64ch;
  color: var(--fm-body);
  line-height: 1.74;
}

.fm-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-tag-row strong {
  color: var(--fm-ink);
  font-size: 14px;
}

.fm-tag-row a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--fm-cream);
  color: var(--fm-red);
  font-size: 13px;
  font-weight: 600;
}

.next-prev {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.next-prev-item {
  display: block;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--fm-cream);
}

.next-prev-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--fm-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-prev-item strong {
  display: block;
  color: var(--fm-ink);
  font-size: 16px;
  line-height: 1.5;
}

.next-prev-item.disabled {
  opacity: 0.64;
}

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

.fm-download-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
}

.fm-download-item h3 {
  margin-bottom: 6px;
  font-size: 24px;
}

.fm-download-item p {
  color: var(--fm-muted);
  font-size: 14px;
}

.fm-footer-cta {
  padding: 60px 0 0;
}

.fm-footer-cta-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  background: var(--fm-red);
  color: var(--fm-white);
  box-shadow: var(--fm-shadow-lg);
}

.fm-footer-cta-shell h2 {
  max-width: 640px;
  margin-bottom: 14px;
  color: var(--fm-white);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.fm-footer-cta-shell p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.82;
}

.fm-footer-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 48%;
}

.fm-footer-action-card {
  display: block;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--fm-white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.fm-footer-action-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  color: var(--fm-white);
}

.fm-footer-action-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.fm-footer-action-card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.7;
}

.fm-footer-main {
  padding: 32px 0 44px;
  background: var(--fm-cream);
}

.fm-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 40px 0 24px;
}

.fm-footer-brand img {
  max-height: 58px;
  margin-bottom: 18px;
}

.fm-footer-brand p {
  max-width: 360px;
  line-height: 1.8;
}

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

.fm-footer-metrics strong {
  display: block;
  color: var(--fm-red);
  font-size: 24px;
}

.fm-footer-metrics span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
}

.fm-footer-grid h4 {
  margin-bottom: 16px;
  font-size: 18px;
}

.fm-footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fm-footer-grid li + li {
  margin-top: 10px;
}

.fm-footer-grid li a,
.fm-footer-copy a {
  color: var(--fm-body);
}

.fm-footer-grid li a:hover,
.fm-footer-copy a:hover {
  color: var(--fm-red);
}

.fm-footer-qr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.fm-footer-qr-item {
  width: 92px;
}

.fm-footer-qr-item img {
  border-radius: 18px;
}

.fm-footer-qr-item p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.fm-footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 60, 93, 0.12);
  color: var(--fm-muted);
  font-size: 13px;
}

.fm-footer-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.page-pagination .pagination,
.page-pagination a,
.page-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin: 0 4px;
  padding: 0 12px;
  border-radius: 14px;
  background: var(--fm-cream);
  color: var(--fm-body);
}

.page-pagination .active,
.page-pagination a:hover {
  background: var(--fm-red);
  color: var(--fm-white);
}

.fm-empty-state {
  padding: 36px;
  border-radius: 24px;
  background: var(--fm-cream);
  text-align: center;
}

.fm-empty-state p {
  margin-bottom: 16px;
}

.fm-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
}

.fm-inquiry-card {
  padding: 28px;
}

.fm-inquiry-card h2 {
  margin-bottom: 10px;
  font-size: 40px;
}

.fm-inquiry-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-inquiry-thumb {
  overflow: hidden;
  border-radius: 18px;
  background: var(--fm-cream);
}

.fm-inquiry-thumb img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.fm-inquiry-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 86px;
  color: var(--fm-muted);
  font-size: 12px;
}

.fm-inquiry-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fm-ink);
}

.fm-inquiry-copy span {
  display: block;
  color: var(--fm-muted);
  font-size: 13px;
}

.fm-inquiry-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(11, 60, 93, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.fm-inquiry-qty button {
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.fm-inquiry-qty input {
  width: 54px;
  height: 38px;
  border: 0;
  text-align: center;
}

.fm-inquiry-price {
  color: var(--fm-red);
  font-weight: 700;
}

.fm-inquiry-remove {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--fm-cream);
  color: var(--fm-red);
  cursor: pointer;
}

.fm-inquiry-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 60, 93, 0.12);
}

.fm-inquiry-total strong {
  color: var(--fm-red);
  font-size: 28px;
}

@media (max-width: 1399px) {
  .fm-product-gateway,
  .fm-product-list-grid,
  .fm-news-grid,
  .fm-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1199px) {
  .fm-header-shell {
    flex-wrap: wrap;
  }

  .fm-nav-wrap {
    order: 3;
    width: 100%;
  }

  .menu > ul {
    justify-content: flex-start;
  }

  .fm-hero-grid,
  .fm-market-shell,
  .fm-story-grid,
  .fm-line-card,
  .fm-inquiry-grid,
  .fm-footer-cta-shell {
    grid-template-columns: 1fr;
    display: grid;
  }

  .fm-hero-summary {
    max-width: 520px;
  }

  .fm-contact-grid,
  .fm-metrics-grid,
  .fm-feature-grid,
  .fm-capability-grid,
  .fm-path-grid,
  .fm-brand-grid,
  .fm-product-gateway,
  .fm-sub-grid--directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fm-header {
    padding-top: 10px;
  }

  .fm-header-shell {
    min-height: 82px;
  }

  .menu-mobile {
    display: inline-flex;
  }

  .fm-cta-link {
    display: none;
  }

  .menu > ul {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
  }

  .menu > ul.show-on-mobile {
    display: flex;
  }

  .menu > ul > li > a {
    width: 100%;
    justify-content: space-between;
  }

  .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

  .fm-hero .swiper-slide,
  .fm-hero-grid {
    min-height: auto;
  }

  .fm-hero-grid {
    padding: 128px 0 60px;
  }

  .main-slider__nav {
    right: 22px;
    bottom: 24px;
  }

  .fm-line-card,
  .fm-contact-grid,
  .fm-metrics-grid,
  .fm-feature-grid,
  .fm-capability-grid,
  .fm-path-grid,
  .fm-brand-grid,
  .fm-product-gateway,
  .fm-sub-grid,
  .fm-product-list-grid,
  .fm-news-grid,
  .fm-search-grid,
  .fm-logo-rail,
  .fm-footer-grid,
  .fm-footer-actions {
    grid-template-columns: 1fr;
  }

  .fm-search-card {
    grid-template-columns: 1fr;
  }

  .fm-search-thumb img {
    height: 220px;
  }

  .next-prev {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .fm-section {
    padding: 72px 0;
  }

  .fm-header-shell {
    gap: 12px;
  }

  .fm-brand-copy {
    display: none;
  }

  .fm-tool-group {
    gap: 8px;
  }

  .lang-wrapper {
    display: none;
  }

  .fm-hero-copy h1,
  .fm-page-hero-copy h1 {
    font-size: clamp(40px, 14vw, 64px);
  }

  .fm-summary-metrics {
    grid-template-columns: 1fr;
  }

  .fm-product-gateway-copy,
  .fm-product-gateway-card {
    min-height: 340px;
  }

  .fm-detail-panel,
  .fm-rich-panel,
  .fm-contact-card,
  .fm-story-card,
  .fm-inquiry-card {
    padding: 22px;
  }

  .fm-gallery .gallery-top img {
    height: 360px;
  }

  .fm-inquiry-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .fm-download-item,
  .fm-footer-copy {
    flex-direction: column;
    align-items: flex-start;
  }
}

:root {
  --fmb-header-offset: 108px;
  --fmb-mobile-offset: 88px;
  --fmb-header-red: #0b3c5d;
  --fmb-header-cream: rgba(245, 245, 245, 0.96);
  --fmb-header-border: rgba(11, 60, 93, 0.08);
  --fmb-header-text: #0b3c5d;
  --fmb-header-muted: rgba(11, 60, 93, 0.64);
  --fmb-header-shadow: 0 22px 48px rgba(11, 60, 93, 0.14);
  --fmb-header-shadow-lg: 0 26px 60px rgba(11, 60, 93, 0.22);
}

body.fmb-lock {
  overflow: hidden;
}

main {
  padding-top: var(--fmb-header-offset);
}

main > .fm-hero:first-child {
  margin-top: calc(-1 * var(--fmb-header-offset));
}

main > .fm-hero:first-child .swiper-slide,
main > .fm-hero:first-child .fm-hero-grid {
  min-height: 100svh;
}

.fm-page-hero {
  padding-top: 0;
  min-height: 360px;
}

.fm-page-hero-copy {
  padding: 116px 0 56px;
}

.fm-subnav {
  padding-top: 20px;
}

.fm-header.fmb-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1400;
  padding: 34px 0 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  box-shadow: none;
  transition: padding 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.fm-header.fmb-header.is-scrolled {
  padding-top: 0;
  background: var(--fmb-header-red);
  border-bottom: none;
  box-shadow: 0 16px 36px rgba(11, 60, 93, 0.18);
}

.fmb-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 104px;
}

.fmb-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  max-width: 380px;
}

.fmb-brand__media {
  position: relative;
  width: min(188px, 28vw);
  flex: 0 0 auto;
}

.fmb-brand__logo {
  width: 100%;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.fmb-brand__logo--solid {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: brightness(0) invert(1);
}

.fmb-header.is-scrolled .fmb-brand__logo--overlay {
  opacity: 0;
}

.fmb-header.is-scrolled .fmb-brand__logo--solid {
  opacity: 1;
}

.fmb-header.is-scrolled .fmb-brand__copy strong,
.fmb-header.is-scrolled .fmb-brand__copy small {
  color: #ffffff;
}

.fmb-brand__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.fmb-brand__copy strong {
  color: var(--fmb-header-red);
  font-family: "Rubik", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.fmb-brand__copy small {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.35;
}

.fmb-header.is-scrolled .fmb-brand__copy small {
  color: var(--fmb-header-muted);
}

.fmb-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 18px;
  background: var(--fmb-header-red);
  box-shadow: none;
}

.fmb-header.is-scrolled .fmb-nav {
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.fmb-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fmb-nav__item {
  position: relative;
  flex: 0 0 auto;
}

.fmb-nav__item > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: #ffffff;
  font-family: "Rubik", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fmb-nav__item > a:hover,
.fmb-nav__item > a.active {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.fmb-submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(11, 60, 93, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fmb-submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--fmb-header-text);
  font-size: 14px;
  font-weight: 600;
}

.fmb-submenu a:hover,
.fmb-submenu a.active {
  background: rgba(63, 163, 77, 0.12);
  color: var(--fmb-header-red);
}

.fmb-nav__item.has-children:hover .fmb-submenu,
.fmb-nav__item.has-children:focus-within .fmb-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fmb-nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
}

.fmb-header.is-scrolled .fmb-nav__cta {
  padding-left: 14px;
}

.fmb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: "Rubik", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fmb-button:hover,
.fmb-button:focus-visible {
  transform: translateY(-1px);
}

.fmb-button--compact {
  min-height: 42px;
  padding-inline: 15px;
}

.fmb-button--dark {
  border-color: rgba(255, 255, 255, 0.92);
  background: transparent;
  color: #ffffff;
}

.fmb-button--dark:hover,
.fmb-button--dark:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.fmb-button--white {
  max-width: 116px;
  background: #ffffff;
  color: var(--fmb-header-red);
}

.fmb-button--white:hover,
.fmb-button--white:focus-visible {
  background: #f5f5f5;
  color: #0b3c5d;
}

.fmb-mobile-dock,
.fmb-mobile-backdrop,
.fmb-mobile-panel {
  display: none;
}

.fmb-search {
  position: absolute;
  inset: calc(100% + 8px) 0 auto 0;
  padding: 0 0 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fmb-search.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fmb-search__bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--fmb-header-shadow-lg);
}

.fmb-search__form {
  display: flex;
  gap: 12px;
}

.fmb-search__input {
  flex: 1;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(11, 60, 93, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--fmb-header-text);
}

.fmb-search__close {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(11, 60, 93, 0.12);
  background: #f5f5f5;
  cursor: pointer;
}

.fmb-search__close::before,
.fmb-search__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--fmb-header-red);
}

.fmb-search__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.fmb-search__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1399px) {
  .fmb-header__inner {
    gap: 18px;
  }

  .fmb-brand__media {
    width: min(168px, 24vw);
  }

  .fmb-nav {
    gap: 10px;
    padding-inline: 10px;
  }

  .fmb-nav__item > a {
    padding-inline: 11px;
    font-size: 13px;
  }

  .fmb-nav__cta {
    gap: 8px;
    padding-left: 2px;
  }

  .fmb-button--compact {
    padding-inline: 12px;
    font-size: 12px;
  }
}

@media (max-width: 1199px) {
  .fmb-header__inner {
    gap: 14px;
  }

  .fmb-brand__copy strong {
    font-size: 18px;
  }

  .fmb-brand__copy small {
    font-size: 11px;
  }

  .fmb-nav__item > a {
    padding-inline: 10px;
    font-size: 12px;
  }

  .fmb-button--compact {
    min-height: 40px;
    padding-inline: 10px;
  }
}

@media (max-width: 1023px) {
  main {
    padding-top: var(--fmb-mobile-offset);
  }

  main > .fm-hero:first-child {
    margin-top: calc(-1 * var(--fmb-mobile-offset));
  }

  .fm-header.fmb-header {
    padding-top: 10px;
  }

  .fm-header.fmb-header.is-scrolled {
    padding-top: 0;
  }

  .fmb-header__inner {
    grid-template-columns: 1fr;
    min-height: var(--fmb-mobile-offset);
  }

  .fmb-nav {
    display: none;
  }

  .fmb-brand {
    max-width: calc(100% - 16px);
  }

  .fmb-brand__media {
    width: min(152px, 44vw);
  }

  .fmb-brand__copy small {
    color: var(--fmb-header-muted);
  }

  .fmb-mobile-dock {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 66px;
    padding: 8px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--fmb-header-shadow);
    transform: translateX(-50%);
  }

  .fmb-mobile-dock img {
    max-height: 42px;
    width: auto;
  }

  .fmb-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1480;
    background: rgba(11, 60, 93, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .fmb-mobile-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 96px;
    z-index: 1490;
    display: block;
    max-height: min(76vh, 720px);
    overflow: auto;
    padding: 22px 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--fmb-header-shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .fmb-header.is-open .fmb-mobile-backdrop,
  .fmb-header.is-open .fmb-mobile-panel {
    opacity: 1;
    pointer-events: auto;
  }

  .fmb-header.is-open .fmb-mobile-panel {
    transform: translateY(0);
  }

  .fmb-mobile-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
  }

  .fmb-mobile-panel__eyebrow {
    color: var(--fmb-header-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .fmb-mobile-close {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f5f5f5;
    cursor: pointer;
  }

  .fmb-mobile-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    background: var(--fmb-header-red);
  }

  .fmb-mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .fmb-mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

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

  .fmb-mobile-nav__item {
    border-bottom: 1px solid rgba(11, 60, 93, 0.08);
    padding-bottom: 10px;
  }

  .fmb-mobile-nav__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .fmb-mobile-nav__row a {
    display: block;
    padding: 4px 0;
    color: var(--fmb-header-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
  }

  .fmb-mobile-nav__row a.active {
    color: var(--fmb-header-red);
  }

  .fmb-mobile-submenu-toggle {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #f5f5f5;
    cursor: pointer;
  }

  .fmb-mobile-submenu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    background: var(--fmb-header-red);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
  }

  .fmb-mobile-submenu-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .fmb-mobile-nav__item.is-open .fmb-mobile-submenu-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .fmb-mobile-submenu {
    display: none;
    gap: 6px;
    padding: 12px 0 2px 12px;
  }

  .fmb-mobile-nav__item.is-open .fmb-mobile-submenu {
    display: grid;
  }

  .fmb-mobile-submenu a {
    display: block;
    padding: 9px 0;
    color: var(--fm-body);
    font-size: 14px;
    font-weight: 600;
  }

  .fmb-mobile-submenu a.active {
    color: var(--fmb-header-red);
  }

  .fmb-mobile-cta {
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }

  .fmb-mobile-cta .fmb-button {
    width: 100%;
    max-width: none;
    min-height: 48px;
  }

  .fmb-mobile-cta .fmb-button--dark {
    background: var(--fmb-header-red);
    border-color: var(--fmb-header-red);
  }

  .fmb-mobile-cta .fmb-button--white {
    border: 1px solid rgba(11, 60, 93, 0.16);
  }

  .fmb-mobile-tools,
  .fmb-mobile-language-list {
    display: grid;
    gap: 10px;
  }

  .fmb-mobile-tools {
    margin-top: 16px;
  }

  .fmb-mobile-tool {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    background: #f5f5f5;
    color: var(--fmb-header-text);
    font-size: 14px;
    font-weight: 700;
  }

  .fmb-mobile-tool--cart {
    color: var(--fmb-header-text);
  }

  .fmb-mobile-tool .cart-count {
    position: static;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    line-height: 24px;
    background: var(--fmb-header-red);
    color: #ffffff;
  }

  .fmb-mobile-languages {
    margin-top: 18px;
  }

  .fmb-mobile-languages strong {
    display: block;
    margin-bottom: 12px;
    color: var(--fmb-header-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

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

  .fmb-mobile-language-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 14px;
    background: #f5f5f5;
    color: var(--fmb-header-text);
    font-size: 13px;
    font-weight: 700;
  }

  .fmb-search {
    position: fixed;
    inset: var(--fmb-mobile-offset) 0 auto 0;
    padding: 12px 14px 0;
  }

  .fmb-search__bar,
  .fmb-search__form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .fmb-search__form {
    gap: 10px;
  }
}

.fm-page-hero {
  position: relative;
  min-height: 360px;
  margin-top: -118px;
  padding-top: 0;
  overflow: hidden;
}

.fm-page-hero::after {
  content: none;
  display: none;
}

.fm-page-hero-media,
.fm-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.fm-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-page-hero-overlay {
  background: linear-gradient(90deg, rgba(11, 60, 93, 0.78) 0%, rgba(11, 60, 93, 0.4) 56%, rgba(11, 60, 93, 0.12) 100%);
}

.fm-page-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 360px;
  padding: 156px 0 38px;
}

.fm-page-hero-copy h1 {
  max-width: 880px;
  color: #ffffff;
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: 0.94;
}

.fm-page-hero-copy p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.fm-page-hero--compact-en {
  min-height: 100svh;
  margin-top: -118px;
  background: #0b3c5d;
}

.fm-page-hero--compact-en .fm-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fm-page-hero--compact-en .fm-page-hero-media img {
  filter: saturate(1.08) brightness(1.12) contrast(1.03);
}

.fm-page-hero--compact-en .fm-page-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(11, 60, 93, 0.56) 0%, rgba(11, 60, 93, 0.28) 45%, rgba(11, 60, 93, 0.08) 100%),
    radial-gradient(circle at 68% 18%, rgba(63, 163, 77, 0.12), transparent 34%);
}

.fm-page-hero--compact-en::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 54% 30%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 108px 108px, 108px 108px;
  opacity: 0.14;
  mix-blend-mode: screen;
}

.fm-page-hero-copy--compact-en {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 210px 0 70px;
}

.fm-page-hero--compact-en .fm-kicker {
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.fm-page-hero--compact-en .fm-kicker::before {
  width: 52px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
}

.fm-page-hero--compact-en .fm-page-hero-copy h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(60px, 6.8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-shadow: 0 10px 30px rgba(11, 60, 93, 0.24);
}

.fm-page-hero--compact-en .fm-page-hero-copy p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.fm-page-hero--product-landing .fm-page-hero-media img {
  object-position: 50% 38%;
}

.fm-subnav--compact-en {
  padding-top: 12px;
}

.fm-section--after-hero {
  padding-top: 40px;
}

.fm-subnav {
  padding: 24px 0 0;
  background: #ffffff;
}

.fm-subnav-panel {
  padding: 18px 22px;
  border-radius: 18px;
  background: #f5f5f5;
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.fm-subnav-links a {
  background: transparent;
  border: 1px solid rgba(11, 60, 93, 0.08);
  color: var(--be-text);
  font-weight: 700;
}

.fm-subnav-links a.active,
.fm-subnav-links a:hover {
  background: var(--be-red);
  border-color: var(--be-red);
}

.fm-section {
  padding: 88px 0;
}

.fm-section--cream {
  background: #f5f5f5;
}

.fm-section-head h2,
.fm-market-copy h2,
.fm-inquiry-card h2 {
  font-size: clamp(34px, 3.7vw, 60px);
  line-height: 0.98;
}

.fm-section-head p,
.fm-rich-content,
.fm-feature-card p,
.fm-capability-card p,
.fm-contact-card p,
.fm-story-card p,
.fm-detail-copy p,
.fm-article-copy p,
.fm-search-card p {
  color: rgba(11, 60, 93, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.fm-rich-panel,
.fm-story-card,
.fm-contact-card,
.fm-detail-panel,
.fm-sub-card,
.fm-line-card,
.fm-brand-card,
.fm-product-card,
.fm-article-card,
.fm-download-item,
.fm-search-card,
.fm-inquiry-card,
.fm-empty-state,
.next-prev-item {
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: none;
  background: #ffffff;
}

.fm-article-card,
.fm-product-card,
.fm-search-card,
.fm-brand-card,
.fm-line-card,
.fm-sub-card {
  border-radius: 20px;
  overflow: hidden;
}

.fm-article-thumb,
.fm-product-thumb,
.fm-search-thumb,
.fm-line-media,
.fm-brand-product {
  background: #f5f5f5;
}

.fm-article-thumb img,
.fm-product-thumb img,
.fm-search-thumb img,
.fm-line-media img,
.fm-brand-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-article-copy,
.fm-product-copy,
.fm-search-card > div {
  padding: 24px;
}

.fm-article-copy h3,
.fm-product-copy h3,
.fm-brand-card h3,
.fm-sub-card h3,
.fm-capability-card h3,
.fm-feature-card strong {
  font-size: 28px;
  line-height: 1.05;
}

.fm-detail-copy h2 {
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 0.98;
}

.fm-detail-meta-grid,
.fm-contact-list,
.fm-summary-list,
.fm-market-list,
.fm-download-list {
  gap: 14px;
}

.fm-detail-note,
.fm-contact-list article,
.fm-market-list article,
.fm-summary-metrics div,
.fm-metric-card,
.fm-feature-card,
.fm-capability-card {
  border-radius: 18px;
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: none;
  background: #ffffff;
}

.fm-tabs-item.active,
.page-pagination .active,
.page-pagination a:hover,
.fm-subnav-links a.active,
.fm-btn.dark,
.search-submit {
  background: var(--be-red);
  color: #ffffff;
}

.fm-btn.primary {
  background: #ffffff;
  color: var(--be-red);
  border-color: transparent;
}

.fm-btn.secondary {
  border-color: rgba(255, 255, 255, 0.4);
}

.next-prev-item {
  border-radius: 18px;
}

.fm-tag-row a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--be-text);
}

@media (max-width: 1023px) {
  .fm-page-hero {
    margin-top: -86px;
    min-height: 320px;
  }

  .fm-page-hero::after {
    display: none;
  }

  .fm-page-hero-copy {
    min-height: 320px;
    padding: 128px 0 32px;
  }

  .fm-page-hero--compact-en {
    min-height: 100svh;
    margin-top: -86px;
  }

  .fm-page-hero-copy--compact-en {
    min-height: 100svh;
    padding: 140px 0 50px;
  }

  .fm-page-hero--compact-en .fm-page-hero-copy h1 {
    font-size: clamp(52px, 8.4vw, 86px);
  }

  .fm-page-hero--compact-en .fm-page-hero-copy p {
    font-size: clamp(18px, 2.6vw, 24px);
  }

  .fm-subnav--compact-en {
    padding-top: 10px;
  }

  .fm-section--after-hero {
    padding-top: 32px;
  }
}

@media (max-width: 767px) {
  .fmb-header__inner {
    min-height: 76px;
  }

  .fmb-brand__copy {
    display: none;
  }

  .fmb-brand__media {
    width: min(146px, 48vw);
  }

  .fmb-mobile-dock {
    width: 148px;
    height: 60px;
    bottom: 14px;
  }

  .fmb-mobile-panel {
    left: 10px;
    right: 10px;
    bottom: 82px;
    padding: 18px 16px 18px;
  }

  .fmb-mobile-nav__row a {
    font-size: 18px;
  }

  .fmb-mobile-language-list {
    grid-template-columns: 1fr;
  }

  .fm-page-hero-copy {
    padding: 100px 0 48px;
  }

  .fm-page-hero--compact-en {
    min-height: 100svh;
  }

  .fm-page-hero-copy--compact-en {
    min-height: 100svh;
    padding: 120px 0 42px;
  }

  .fm-page-hero--compact-en .fm-kicker {
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .fm-page-hero--compact-en .fm-kicker::before {
    width: 36px;
    height: 2px;
  }

  .fm-page-hero--compact-en .fm-page-hero-copy h1 {
    font-size: clamp(44px, 12vw, 72px);
    line-height: 0.94;
  }

  .fm-page-hero--compact-en .fm-page-hero-copy p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.58;
  }

  .fm-subnav--compact-en {
    padding-top: 8px;
  }

  .fm-section--after-hero {
    padding-top: 24px;
  }
}

@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;
  }
}

:root {
  --be-red: #0b3c5d;
  --be-dark: #0b3c5d;
  --be-cream: #f5f5f5;
  --be-text: #0b3c5d;
  --be-shadow: 0 18px 40px rgba(11, 60, 93, 0.16);
}

body.be-lock {
  overflow: hidden;
}

main {
  padding-top: 118px;
}

.be-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1600;
}

.be-header__bar {
  padding-top: 32px;
  transition: padding 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.be-header.is-scrolled .be-header__bar {
  padding-top: 0;
  background: rgba(245, 245, 245, 0.96);
  box-shadow: 0 16px 34px rgba(11, 60, 93, 0.12);
}

.be-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 0 56px;
}

.be-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
}

.be-header__brand img {
  display: block;
  width: auto;
}

.be-header__brand-default img {
  height: 56px;
}

.be-header__brand-scrolled {
  display: none;
  align-items: center;
  gap: 18px;
}

.be-header__brand-scrolled img:first-child {
  height: 46px;
}

.be-header__brand-scrolled img:last-child {
  height: 54px;
}

.be-header.is-scrolled .be-header__brand-default {
  display: none;
}

.be-header.is-scrolled .be-header__brand-scrolled {
  display: inline-flex;
}

.be-header__mobile-trigger {
  display: none;
}

.be-header__right {
  position: relative;
  margin-left: auto;
}

.be-header__nav-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 12px 0 18px;
  border-radius: 22px;
  background: var(--be-red);
}

.be-header.is-scrolled .be-header__nav-shell {
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.be-header__nav {
  flex: 1;
}

.be-header__menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.be-header__item {
  position: relative;
}

.be-header__item > a {
  display: inline-flex;
  align-items: center;
  padding: 24px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.be-header__item > a.is-active {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.be-header__submenu {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  z-index: 18;
  display: grid;
  gap: 2px;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--be-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.be-header__submenu a {
  display: block;
  padding: 10px 16px;
  color: var(--be-text);
  font-size: 14px;
}

.be-header__item:hover .be-header__submenu,
.be-header__item:focus-within .be-header__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.be-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 10px 8px;
}

.be-header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.be-header__action--outline {
  border: 2px solid rgba(255, 255, 255, 0.96);
  color: #ffffff;
}

.be-header__action--solid {
  background: #ffffff;
  color: var(--be-red);
}

.be-header.is-scrolled .be-header__item > a {
  color: var(--be-text);
}

.be-header.is-scrolled .be-header__item > a.is-active {
  background: rgba(11, 60, 93, 0.08);
  color: var(--be-red);
}

.be-header.is-scrolled .be-header__action--outline {
  border-color: rgba(11, 60, 93, 0.22);
  color: var(--be-red);
}

.be-header.is-scrolled .be-header__action--solid {
  background: var(--be-red);
  color: #ffffff;
}

.fm-nav-mega {
  left: 50%;
  right: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-width: min(76vw, 960px);
  max-width: min(76vw, 960px);
  padding: 18px;
  transform: translateX(-50%) translateY(8px);
}

.fm-nav-family {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.fm-nav-family__title {
  display: block;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(11, 60, 93, 0.08);
  color: var(--be-red) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fm-nav-family__child {
  padding-left: 14px !important;
}

.be-header__item:hover .fm-nav-mega,
.be-header__item:focus-within .fm-nav-mega {
  transform: translateX(-50%) translateY(0);
}

.be-header__promo {
  position: absolute;
  top: 100%;
  right: 56px;
  width: clamp(320px, 25vw, 380px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.has-be-promo.be-promo-docked .be-header__promo {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.be-header.is-submenu-open .be-header__promo {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.be-header__promo-tab {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  margin: 0;
  padding: 3px 16px 5px;
  border: 0;
  border-radius: 0 0 48px 48px;
  background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 6px 12px rgba(11, 60, 93, 0.1);
  cursor: pointer;
  transition: border-radius 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.be-promo-card {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f5f5;
  box-shadow: 0 24px 52px rgba(11, 60, 93, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.be-promo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.be-header__promo-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-top: -1px;
  border-radius: 12px;
  background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
  box-shadow: 0 12px 20px rgba(11, 60, 93, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.995);
  transform-origin: top right;
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.be-header__promo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(112px, 0.8fr);
  gap: 10px;
  align-items: stretch;
  padding: 14px 14px 12px;
}

.be-header__promo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 8px 0 4px 6px;
}

.be-header__promo-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
  text-shadow: 0 3px 10px rgba(11, 60, 93, 0.12);
}

.be-header__promo-copy p {
  max-width: 15ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.24;
}

.be-header__promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
}

.be-header__promo-visual {
  display: flex;
  align-items: flex-start;
}

.be-header__promo-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 8px 14px rgba(11, 60, 93, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.be-header__promo-card:hover,
.be-header__promo-card:focus-visible {
  box-shadow: 0 14px 24px rgba(11, 60, 93, 0.16);
}

.be-header__promo-card:hover .be-header__promo-cta,
.be-header__promo-card:focus-visible .be-header__promo-cta {
  background: rgba(255, 255, 255, 0.08);
}

.be-header__promo-card:hover .be-header__promo-visual img,
.be-header__promo-card:focus-visible .be-header__promo-visual img {
  transform: none;
  box-shadow: 0 8px 14px rgba(11, 60, 93, 0.1);
}

.be-header__promo.is-expanded .be-header__promo-tab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.be-header__promo.is-expanded .be-header__promo-card {
  opacity: 1;
  pointer-events: auto;
  margin-top: -32px;
  transform: translateY(0) scale(1);
}

.be-mobile-promo {
  display: none;
}

.be-mobile-backdrop,
.be-mobile-panel {
  display: none;
}

.be-hero {
  position: relative;
  min-height: 100svh;
  margin-top: -118px;
  overflow: hidden;
  background: #0b3c5d;
}

.be-hero__swiper,
.be-hero__swiper .swiper-wrapper,
.be-hero__slide {
  min-height: inherit;
}

.be-hero__slide {
  position: relative;
  overflow: hidden;
}

.be-hero__media,
.be-hero__texture,
.be-hero__overlay {
  position: absolute;
  inset: 0;
}

.be-hero__video,
.be-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) brightness(1.14) contrast(1.03);
}

.be-hero__overlay {
  background:
    linear-gradient(110deg, rgba(11, 60, 93, 0.52) 0%, rgba(11, 60, 93, 0.24) 45%, rgba(11, 60, 93, 0.06) 100%),
    radial-gradient(circle at 68% 18%, rgba(63, 163, 77, 0.12), transparent 34%);
}

.be-hero__texture {
  background:
    radial-gradient(circle at 54% 30%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 108px 108px, 108px 108px;
  opacity: 0.14;
  mix-blend-mode: screen;
}

.be-hero__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 210px 56px 70px;
}

.fm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: end;
  gap: 38px;
  min-height: calc(100svh - 280px);
}

.be-hero__text {
  max-width: 760px;
  padding-top: 150px;
}

.be-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.be-hero__eyebrow::before {
  content: "";
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.be-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(60px, 6.8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(11, 60, 93, 0.2);
}

.be-hero__lead {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.fm-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fm-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.fm-hero-summary {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(245, 245, 245, 0.1) 100%);
  box-shadow: 0 28px 56px rgba(11, 60, 93, 0.18);
  backdrop-filter: blur(18px);
}

.fm-summary-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fm-summary-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.fm-hero-summary h2 {
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.14;
}

.fm-summary-list {
  display: grid;
  gap: 10px;
}

.fm-summary-item {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.fm-summary-item strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.fm-summary-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.fm-summary-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.6;
}

.be-hero__promo {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: min(26vw, 440px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.be-hero__promo .be-promo-card {
  width: 100%;
  animation: bePromoIntro 0.7s cubic-bezier(0.22, 1, 0.36, 1) both 0.18s;
}

.has-be-promo.be-promo-docked .be-hero__promo {
  opacity: 0;
  pointer-events: none;
  transform: translateY(26px) scale(0.96);
}

@keyframes bePromoIntro {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }

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

.be-hero__promo .be-promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(11, 60, 93, 0.22);
}

.be-hero__promo .be-promo-card:focus-visible,
.be-header__promo-card:focus-visible,
.be-header__promo-tab:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: 4px;
}

.be-hero__promo .be-promo-card:focus-visible,
.be-header__promo-card:focus-visible {
  outline-offset: 6px;
}

.be-hero__controls {
  position: absolute;
  left: 56px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}

.be-hero__pagination {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.be-hero__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: transparent;
  opacity: 1;
}

.be-hero__pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  border-color: #ffffff;
}

.be-hero__nav {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(11, 60, 93, 0.3);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  pointer-events: auto;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.be-hero__nav:hover,
.be-hero__nav:focus-visible {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: rgba(11, 60, 93, 0.72);
}

.has-be-promo.be-promo-docked .be-hero__promo .be-promo-card {
  animation: none;
}

@media (max-width: 1360px) and (min-width: 1024px) {
  .be-header__promo {
    width: clamp(300px, 24vw, 350px);
    right: 42px;
  }

  .be-header__promo-panel {
    gap: 9px;
    padding: 12px 12px 10px;
  }

  .be-header__promo-copy {
    padding-left: 4px;
  }

  .be-header__promo-copy h3 {
    font-size: clamp(16px, 1.45vw, 21px);
  }

  .be-header__promo-copy p {
    margin-top: 8px;
    font-size: 10px;
  }

  .be-header__promo-cta {
    min-width: 96px;
    min-height: 36px;
    margin-top: 12px;
    padding: 0 15px;
    font-size: 15px;
  }
}

.be-hero__promo img {
  width: 100%;
}

.be-products {
  display: grid;
  grid-template-columns: minmax(320px, 0.34fr) minmax(0, 0.66fr);
  gap: 36px;
  padding: 96px 56px 74px;
  background: var(--be-cream);
}

.be-products__intro p {
  color: var(--be-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.02;
  text-transform: uppercase;
}

.be-products__intro h2 {
  margin: 22px 0 34px;
  color: var(--be-text);
  font-size: clamp(24px, 2.2vw, 42px);
  line-height: 1.08;
}

.be-products__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3fa34d 0%, var(--be-red) 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.be-product-card {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(11, 60, 93, 0.14);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.be-product-card img,
.be-product-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.be-product-card img {
  object-fit: cover;
}

.be-product-card__overlay {
  background: linear-gradient(180deg, rgba(11, 60, 93, 0.12) 0%, rgba(11, 60, 93, 0.7) 100%);
}

.be-product-card__copy {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  color: #ffffff;
}

.be-product-card__copy em {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.be-product-card__copy strong {
  color: var(--be-card-accent);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.02;
}

.be-product-card__copy span {
  max-width: 24ch;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.be-product-card__copy i {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.be-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(11, 60, 93, 0.2);
}

.be-product-card:hover img {
  transform: scale(1.04);
}

.be-products__support {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  grid-column: 2;
  margin-top: 4px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.be-products__support-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--be-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.be-products__support-copy p {
  max-width: 62ch;
  color: var(--fm-body);
  line-height: 1.7;
}

.be-products__support-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.be-products__support-stats b {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 60, 93, 0.08);
  color: var(--be-red);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.be-brand-showcase {
  padding: 84px 56px 90px;
  background: var(--be-cream);
}

.be-brand-showcase__inner {
  display: grid;
  gap: 52px;
}

.be-brand-showcase__group {
  display: grid;
  gap: 24px;
}

.be-brand-showcase__heading {
  color: var(--be-red);
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 800;
  line-height: 1.04;
}

.be-brand-marquee {
  overflow: hidden;
  position: relative;
}

.be-brand-marquee::before,
.be-brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(8vw, 80px);
  z-index: 2;
  pointer-events: none;
}

.be-brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--be-cream) 0%, rgba(245, 245, 245, 0) 100%);
}

.be-brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--be-cream) 0%, rgba(245, 245, 245, 0) 100%);
}

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

.be-brand-marquee__lane {
  display: flex;
  align-items: center;
  gap: 72px;
  flex-shrink: 0;
  padding-right: 72px;
}

.be-brand-marquee__slide {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.be-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}

.be-brand-grid__item {
  min-width: 0;
}

.be-brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 116px;
  padding: 20px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 48px rgba(11, 60, 93, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.be-brand-tile:hover,
.be-brand-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 56px rgba(11, 60, 93, 0.12);
}

.be-brand-tile--marquee {
  min-width: clamp(180px, 14vw, 250px);
}

.be-brand-tile--static {
  min-height: 122px;
}

.be-brand-tile img {
  width: 100%;
  max-width: 220px;
  max-height: 74px;
  object-fit: contain;
}

@keyframes be-brand-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.be-proof {
  padding: 82px 0 96px;
  background: #ffffff;
}

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

.be-proof__grid article {
  padding: 28px;
  border-radius: 24px;
  background: #f5f5f5;
}

.be-proof__grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--be-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.be-proof__grid h3 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.05;
}

.be-proof__grid p {
  font-size: 16px;
  line-height: 1.7;
}

.be-page-hero {
  position: relative;
  min-height: 420px;
  margin-top: -118px;
  overflow: hidden;
}

.be-page-hero__media,
.be-page-hero__overlay {
  position: absolute;
  inset: 0;
}

.be-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.be-page-hero__overlay {
  background: linear-gradient(90deg, rgba(11, 60, 93, 0.78) 0%, rgba(11, 60, 93, 0.36) 58%, rgba(11, 60, 93, 0.1) 100%);
}

.be-page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  min-height: 420px;
  padding: 190px 0 54px;
}

.be-page-hero__eyebrow {
  color: var(--be-red);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.be-page-hero h1 {
  margin: 10px 0 18px;
  color: #ffffff;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.94;
  text-transform: uppercase;
}

.be-page-hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  font-weight: 700;
}

.be-page-hero__promo {
  width: min(26vw, 420px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--be-shadow);
}

.be-page-hero__promo img {
  width: 100%;
}

.be-promo-page-hero {
  position: relative;
  min-height: 86svh;
  margin-top: -118px;
  overflow: hidden;
  background: #0b3c5d;
}

.be-promo-page-hero__media,
.be-promo-page-hero__overlay {
  position: absolute;
  inset: 0;
}

.be-promo-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.be-promo-page-hero__overlay {
  background: linear-gradient(100deg, rgba(11, 60, 93, 0.86) 0%, rgba(11, 60, 93, 0.62) 46%, rgba(11, 60, 93, 0.28) 100%);
}

.be-promo-page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: end;
  min-height: 86svh;
  padding: 200px 0 64px;
}

.be-promo-page-hero__copy h1 {
  margin: 12px 0 22px;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(56px, 6vw, 104px);
  line-height: 0.94;
  text-transform: uppercase;
}

.be-promo-page-hero__lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.12;
}

.be-promo-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.be-promo-page-hero__actions .be-header__action {
  min-height: 54px;
  padding: 0 22px;
}

.be-promo-page-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.be-promo-page-hero__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.be-promo-page-hero__visual {
  justify-self: end;
  width: min(36vw, 520px);
}

.be-promo-page-hero__visual .be-promo-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.be-promo-page__body-copy {
  max-width: 640px;
}

.be-promo-page__body-copy p {
  font-size: 18px;
  line-height: 1.8;
}

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

.be-menu-highlight-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(11, 60, 93, 0.16);
}

.be-menu-highlight-card__price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.be-menu-highlight-card h3 {
  margin: 0;
  font-size: 34px;
  line-height: 0.98;
}

.be-menu-highlight-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.be-menu-highlight-card span {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.be-promo-cta {
  padding: 0 0 96px;
  background: #ffffff;
}

.be-promo-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 40px;
  border-radius: 28px;
  background: var(--be-red);
  color: #ffffff;
}

.be-promo-cta__inner h2 {
  margin: 10px 0 14px;
  max-width: 620px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 0.98;
}

.be-promo-cta__inner p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
}

.be-promo-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.be-promo-cta__actions .be-header__action {
  min-width: 180px;
  min-height: 54px;
  padding: 0 20px;
}

.be-footer__cta {
  padding: 0 0 30px;
  background: #ffffff;
}

.be-footer__cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 40px;
  border-radius: 22px;
  background: var(--be-red);
  color: #ffffff;
}

.be-footer__cta-copy p {
  max-width: 360px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.02;
}

.be-footer__cta-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 360px;
}

.be-footer__cta-links a {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.be-footer__main {
  padding: 48px 0 32px;
  background: #f5f5f5;
}

.be-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.be-footer__brand img {
  height: 54px;
  margin-bottom: 16px;
}

.be-footer__brand p {
  max-width: 340px;
  line-height: 1.7;
}

.be-footer__grid h4 {
  margin-bottom: 16px;
  font-size: 20px;
}

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

.be-footer__grid li + li {
  margin-top: 10px;
}

.be-footer__copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(11, 60, 93, 0.12);
  font-size: 14px;
}

.be-footer__copy > div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .be-header__inner,
  .be-hero__content,
  .be-products {
    padding-left: 24px;
    padding-right: 24px;
  }

  .be-products {
    grid-template-columns: 1fr;
  }

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

  .be-hero__controls {
    left: 24px;
  }
}

@media (max-width: 1023px) {
  main {
    padding-top: 86px;
  }

  .be-hero,
  .be-page-hero,
  .be-promo-page-hero {
    margin-top: -86px;
  }

  .be-header__bar {
    padding-top: 0;
    background: var(--be-red);
  }

  .be-header__inner {
    align-items: center;
    min-height: 86px;
    padding: 0 16px;
  }

  .be-header__brand-default,
  .be-header__right {
    display: none;
  }

  .be-header__brand-scrolled {
    display: inline-flex;
  }

  .be-header__brand-scrolled img:first-child {
    height: 40px;
  }

  .be-header__brand-scrolled img:last-child {
    height: 42px;
  }

  .be-header__mobile-trigger {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 1700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 68px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: #ffffff;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: var(--be-shadow);
    cursor: pointer;
    transform: translateX(-50%);
  }

  .be-header__mobile-trigger img {
    height: 52px;
  }

  .be-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1650;
    display: block;
    background: rgba(11, 60, 93, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .be-mobile-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 98px;
    z-index: 1660;
    display: block;
    max-height: 78vh;
    overflow: auto;
    padding: 20px 18px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--be-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .be-header.is-open .be-mobile-backdrop,
  .be-header.is-open .be-mobile-panel {
    opacity: 1;
    pointer-events: auto;
  }

  .be-header.is-open .be-mobile-panel {
    transform: translateY(0);
  }

  .be-mobile-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
  }

  .be-mobile-panel__head img {
    width: 110px;
  }

  .be-mobile-panel__close {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f5f5f5;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .be-mobile-panel__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--be-red);
  }

  .be-mobile-panel__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .be-mobile-panel__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .be-mobile-panel__group {
    border-bottom: 1px solid rgba(11, 60, 93, 0.08);
    padding: 10px 0;
  }

  .be-mobile-panel__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
  }

  .be-mobile-panel__row a {
    color: var(--be-text);
    font-size: 22px;
    font-weight: 800;
  }

  .be-mobile-submenu-toggle {
    position: relative;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f5f5f5;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .be-mobile-submenu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--be-red);
    transform: translate(-50%, -50%);
  }

  .be-mobile-submenu-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .be-mobile-panel__group.is-open .be-mobile-submenu-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .be-mobile-panel__submenu {
    display: none;
    padding: 12px 0 0 10px;
  }

  .be-mobile-panel__group.is-open .be-mobile-panel__submenu {
    display: grid;
    gap: 10px;
  }

  .be-mobile-panel__submenu a {
    color: var(--fm-body);
    font-size: 14px;
    font-weight: 600;
  }

  .fm-mobile-submenu-heading {
    margin-top: 6px;
    color: var(--fm-red) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .fm-mobile-submenu-child {
    padding-left: 14px;
  }

  .be-mobile-panel__actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .be-mobile-panel__actions .be-header__action {
    width: 100%;
    min-height: 50px;
  }

  .be-mobile-panel__actions .be-header__action--outline {
    border-color: var(--be-red);
    color: var(--be-red);
  }

  .be-mobile-panel__actions .be-header__action--solid {
    background: var(--be-red);
    color: #ffffff;
  }

  .be-hero__content {
    padding: 140px 16px 50px;
  }

  .be-hero__text {
    padding-top: 110px;
  }

  .be-hero__promo {
    display: none;
  }

  .be-hero__controls {
    left: 16px;
    bottom: 22px;
  }

  .be-hero__nav {
    display: none;
  }

  .be-mobile-promo {
    position: fixed;
    top: 90px;
    left: 16px;
    right: 16px;
    z-index: 1680;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .has-be-promo.be-promo-docked .be-mobile-promo {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .be-mobile-promo__toggle {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 14px 26px rgba(11, 60, 93, 0.18);
  }

  .be-mobile-promo__panel {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.24s ease, margin-top 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
  }

  .be-mobile-promo.is-expanded .be-mobile-promo__panel {
    max-height: 70vh;
    margin-top: 10px;
    opacity: 1;
    transform: translateY(0);
  }

  .be-mobile-promo .be-promo-card {
    border-radius: 24px;
    box-shadow: 0 18px 32px rgba(11, 60, 93, 0.18);
  }

  .be-products,
  .be-proof,
  .be-promo-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .be-products__grid,
  .be-proof__grid,
  .be-footer__grid,
  .be-menu-highlights__grid {
    grid-template-columns: 1fr;
  }

  .be-page-hero__inner {
    padding: 150px 0 42px;
  }

  .be-page-hero__promo {
    display: none;
  }

  .be-promo-page-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 144px 0 46px;
  }

  .be-promo-page-hero__visual {
    justify-self: start;
    width: min(100%, 420px);
  }

  .be-promo-page-hero__actions,
  .be-promo-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .be-promo-page-hero__actions .be-header__action,
  .be-promo-cta__actions .be-header__action {
    width: 100%;
  }

  .be-promo-cta {
    padding-bottom: 72px;
  }

  .be-promo-cta__inner {
    flex-direction: column;
    padding: 30px 24px;
  }

  .be-footer__cta-inner,
  .be-footer__copy {
    flex-direction: column;
  }

  .be-footer__cta-links {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .be-brand-marquee__track {
    animation: none;
  }
}

.be-delivery {
  --be-map-fill: rgba(11, 60, 93, 0.12);
  --be-map-hover: rgba(63, 163, 77, 0.38);
  --be-map-active: #0b3c5d;
  --be-map-disabled: rgba(11, 60, 93, 0.22);
  --be-map-stroke: #ffffff;
  --be-map-label: #0b3c5d;
  position: relative;
  overflow: hidden;
  padding: 82px 24px 90px;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.18) 28%, transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 54%, #f5f5f5 100%);
}

.be-delivery::before {
  content: "";
  position: absolute;
  inset: auto -10% -42% 38%;
  height: 62%;
  background: radial-gradient(circle, rgba(63, 163, 77, 0.14) 0, rgba(63, 163, 77, 0) 68%);
  pointer-events: none;
}

.be-delivery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.08) 100%);
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}

.be-delivery--global {
  --be-presence-height: 460px;
  padding: 64px 24px 72px;
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.24) 28%, transparent 52%),
    radial-gradient(circle at 92% 80%, rgba(63, 163, 77, 0.1) 0, transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 48%, #f5f5f5 100%);
}

.be-delivery__layout {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1560px;
  margin: 0 auto;
  align-items: stretch;
  gap: 38px;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
}

.be-delivery--global .be-delivery__layout {
  gap: 48px;
  align-items: stretch;
  grid-template-columns: minmax(310px, 420px) minmax(0, 1fr);
}

.be-delivery__copy {
  display: grid;
  gap: 24px;
  align-content: center;
  padding: 32px 0;
}

.be-delivery--global .be-delivery__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: var(--be-presence-height);
  gap: 28px;
  padding: 0;
}

.be-delivery__copy-head {
  display: grid;
  gap: 16px;
}

.be-delivery--global .be-delivery__copy-head {
  gap: 16px;
}

.be-delivery__eyebrow {
  margin: 0;
  color: rgba(11, 60, 93, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.be-delivery__copy h2 {
  max-width: 7.5ch;
  color: #0b3c5d;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.be-delivery--global .be-delivery__copy h2 {
  max-width: 12ch;
  font-size: clamp(32px, 3.2vw, 52px);
}

.be-delivery__description,
.be-delivery__hint {
  margin: 0;
  max-width: 31ch;
  color: rgba(11, 60, 93, 0.68);
  font-size: 16px;
  line-height: 1.66;
}

.be-delivery--global .be-delivery__description {
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.65;
}

.be-delivery__hint {
  max-width: 24ch;
  padding-left: 16px;
  border-left: 1px solid rgba(11, 60, 93, 0.16);
}

.be-delivery__focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.be-delivery--global .be-delivery__focus-list {
  gap: 10px;
}

.be-delivery__focus-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(11, 60, 93, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(11, 60, 93, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(11, 60, 93, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.be-delivery--global .be-delivery__focus-list span {
  min-height: 32px;
  padding: 0 14px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(11, 60, 93, 0.12);
  box-shadow: 0 8px 20px rgba(11, 60, 93, 0.06);
}

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

.be-delivery--global .be-delivery__stats {
  gap: 12px;
}

.be-delivery__stat {
  display: grid;
  gap: 6px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(11, 60, 93, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 28px rgba(11, 60, 93, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.be-delivery--global .be-delivery__stat {
  gap: 6px;
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(11, 60, 93, 0.1);
  box-shadow: 0 10px 24px rgba(11, 60, 93, 0.05);
}

.be-delivery__stat strong {
  color: #0b3c5d;
  font-family: "Outfit", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: 32px;
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.be-delivery--global .be-delivery__stat strong {
  font-size: 28px;
}

.be-delivery__stat span {
  color: rgba(11, 60, 93, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.be-delivery__summary {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(11, 60, 93, 0.88) 0%, rgba(11, 60, 93, 0.76) 50%, rgba(11, 60, 93, 0.66) 100%);
  box-shadow: 0 26px 58px rgba(11, 60, 93, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.be-delivery--global .be-delivery__summary {
  gap: 10px;
  padding: 20px 22px 18px;
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(155deg, rgba(11, 60, 93, 0.82) 0%, rgba(11, 60, 93, 0.72) 50%, rgba(11, 60, 93, 0.58) 100%);
  box-shadow: 0 20px 40px rgba(11, 60, 93, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin-top: auto;
}

.be-delivery__summary-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.be-delivery__summary-kicker,
.be-delivery__panel-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.be-delivery__summary-kicker {
  color: #3fa34d;
}

.be-delivery__summary-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(63, 163, 77, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.be-delivery__panel-kicker {
  color: var(--be-red);
}

.be-delivery__summary strong {
  color: #ffffff;
  font-family: "Outfit", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.be-delivery--global .be-delivery__summary strong {
  font-size: 20px;
}

.be-delivery__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.7;
}

.be-delivery--global .be-delivery__summary p {
  font-size: 13px;
  line-height: 1.55;
}

.be-delivery__summary-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(63, 163, 77, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.be-delivery--global .be-delivery__summary-foot {
  padding-top: 10px;
  font-size: 10px;
}

.be-delivery__map {
  display: flex;
  min-width: 0;
}

.be-delivery__canvas {
  position: relative;
  width: 100%;
  min-height: clamp(430px, 46vw, 640px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(11, 60, 93, 0.04) 0%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(145deg, #ffffff 0%, #f5f5f5 52%, #f5f5f5 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 28px 64px rgba(11, 60, 93, 0.18);
  overflow: hidden;
}

.be-delivery--global .be-delivery__canvas {
  display: block;
  width: 100%;
  aspect-ratio: 100 / 64;
  height: var(--be-presence-height);
  min-height: var(--be-presence-height);
  max-height: var(--be-presence-height);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(63, 163, 77, 0.12) 0, transparent 42%),
    radial-gradient(circle at 78% 24%, rgba(63, 163, 77, 0.08) 0, transparent 38%),
    radial-gradient(circle at 50% 90%, rgba(11, 60, 93, 0.08) 0, transparent 50%),
    linear-gradient(180deg, #0b3c5d 0%, #0b3c5d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 28px 56px rgba(11, 60, 93, 0.24), 0 8px 24px rgba(11, 60, 93, 0.12);
}

.be-delivery__canvas-atmosphere,
.be-delivery__canvas-grid,
.be-delivery__canvas-orbits {
  position: absolute;
  pointer-events: none;
}

.be-delivery__canvas-atmosphere {
  inset: -10%;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 78% 16%, rgba(63, 163, 77, 0.16) 0, rgba(63, 163, 77, 0) 30%),
    radial-gradient(circle at 82% 78%, rgba(11, 60, 93, 0.18) 0, rgba(11, 60, 93, 0) 26%);
}

.be-delivery--global .be-delivery__canvas-atmosphere {
  inset: -5%;
  background:
    radial-gradient(circle at 16% 20%, rgba(63, 163, 77, 0.12) 0, transparent 38%),
    radial-gradient(circle at 78% 18%, rgba(63, 163, 77, 0.12) 0, transparent 36%),
    radial-gradient(circle at 82% 78%, rgba(11, 60, 93, 0.16) 0, transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(63, 163, 77, 0.04) 0, transparent 65%);
}

.be-delivery__canvas-grid {
  inset: 18px;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
  mask-image: radial-gradient(circle at center, #ffffff 55%, transparent 92%);
}

.be-delivery--global .be-delivery__canvas-grid {
  inset: 0;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 75% 70% at 55% 45%, #ffffff 40%, transparent 90%);
}

.be-delivery__canvas-orbits {
  inset: 0;
}

.be-delivery__canvas-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0) 68%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: be-delivery-drift 8s ease-in-out infinite;
}

.be-delivery__canvas-orbit--north {
  top: 11%;
  left: 14%;
  width: 24%;
  aspect-ratio: 1;
}

.be-delivery__canvas-orbit--asia {
  top: 13%;
  right: 12%;
  width: 35%;
  aspect-ratio: 1;
  animation-delay: 1.6s;
}

.be-delivery__canvas-orbit--south {
  right: 11%;
  bottom: 9%;
  width: 22%;
  aspect-ratio: 1;
  animation-delay: 3.1s;
}

.be-delivery__map-note {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 460px;
}

.be-delivery--global .be-delivery__map-note {
  display: none;
  pointer-events: none;
}

.be-delivery__map-note span {
  color: rgba(11, 60, 93, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.be-delivery--global .be-delivery__map-note span {
  font-size: 10px;
}

.be-delivery__map-note strong {
  color: #0b3c5d;
  font-family: "Outfit", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.be-delivery--global .be-delivery__map-note strong {
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.04;
}

.be-delivery__stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: clamp(300px, 32vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.be-delivery--global .be-delivery__stage {
  position: absolute;
  inset: 16px 20px 18px;
  min-height: 0;
  max-height: none;
  z-index: 4;
}

.be-delivery--global .be-delivery__svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  transform: none;
}

.be-delivery--global .be-delivery__legend {
  display: none;
  pointer-events: none;
}

.be-delivery--global .be-delivery__region-shape {
  fill: rgba(11, 60, 93, 0.12);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.4;
  filter: drop-shadow(0 10px 20px rgba(11, 60, 93, 0.22));
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.be-delivery--global .be-delivery__region.is-empty .be-delivery__region-shape {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.15);
  opacity: 0.8;
}

.be-delivery--global .be-delivery__region.is-hover .be-delivery__region-shape {
  fill: rgba(63, 163, 77, 0.34);
  stroke: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 14px 28px rgba(63, 163, 77, 0.24));
}

.be-delivery--global .be-delivery__region.is-active .be-delivery__region-shape {
  fill: rgba(11, 60, 93, 0.78);
  stroke: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 14px 28px rgba(11, 60, 93, 0.28));
}

.be-delivery--global .be-delivery__region-label {
  font-size: 4.8px;
  letter-spacing: 0.14em;
  stroke: rgba(11, 60, 93, 0.15);
  fill: rgba(255, 255, 255, 0.92);
}

.be-delivery--global .be-delivery__pin {
  z-index: 5;
}

.be-delivery--global .be-delivery__pin::before {
  background: radial-gradient(circle, rgba(63, 163, 77, 0.22) 0, rgba(63, 163, 77, 0) 70%);
}

.be-delivery--global .be-delivery__pin::after {
  background: linear-gradient(180deg, rgba(63, 163, 77, 0.96) 0%, rgba(11, 60, 93, 0.96) 100%);
  box-shadow: 0 10px 20px rgba(11, 60, 93, 0.24);
}

.be-delivery__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 24px 40px rgba(11, 60, 93, 0.12));
}

.be-delivery__region {
  cursor: pointer;
}

.be-delivery__region-shape {
  fill: var(--be-map-fill);
  stroke: var(--be-map-stroke);
  stroke-width: 1.4;
  opacity: 0.96;
  transition: all 0.3s ease;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 12px 22px rgba(11, 60, 93, 0.12));
}

.be-delivery__region-hit {
  fill: rgba(11, 60, 93, 0.001);
  stroke: none;
  pointer-events: all;
}

.be-delivery__region-hit:focus,
.be-delivery__region-hit:focus-visible {
  outline: none;
}

.be-delivery__region-annotation {
  fill: none;
  stroke: rgba(255, 255, 255, 0.76);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.be-delivery__region-shape,
.be-delivery__region-label {
  pointer-events: none;
}

.be-delivery__region.is-empty .be-delivery__region-shape {
  fill: var(--be-map-disabled);
  opacity: 0.76;
}

.be-delivery__region.is-hover .be-delivery__region-shape {
  fill: var(--be-map-hover);
  transform: translateY(-2px) scale(1.015);
  opacity: 1;
  filter: drop-shadow(0 16px 26px rgba(11, 60, 93, 0.2));
}

.be-delivery__region.is-active .be-delivery__region-shape {
  fill: var(--be-map-active);
  transform: translateY(-1px) scale(1.012);
  opacity: 1;
  filter: drop-shadow(0 18px 28px rgba(11, 60, 93, 0.4));
}

.be-delivery__region-label {
  fill: var(--be-map-label);
  font-family: "Outfit", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: 4.35px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-anchor: middle;
  dominant-baseline: middle;
  paint-order: stroke;
  stroke: rgba(11, 60, 93, 0.12);
  stroke-width: 0.12;
}

.be-delivery__pins {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.be-delivery__pin[hidden] {
  display: none;
}

.be-delivery__pin {
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  appearance: none;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}

.be-delivery__pin::before,
.be-delivery__pin::after,
.be-delivery__pin-core {
  position: absolute;
  border-radius: 999px;
}

.be-delivery__pin::before,
.be-delivery__pin::after {
  content: "";
}

.be-delivery__pin::before {
  inset: -6px;
  background: radial-gradient(circle, rgba(63, 163, 77, 0.22) 0, rgba(63, 163, 77, 0) 70%);
  animation: be-delivery-pulse 2.8s ease-out infinite;
  opacity: 0.78;
}

.be-delivery__pin::after {
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.94);
  background: linear-gradient(180deg, rgba(63, 163, 77, 0.76) 0%, rgba(11, 60, 93, 0.86) 100%);
  box-shadow: 0 10px 24px rgba(11, 60, 93, 0.24);
}

.be-delivery__pin-core {
  inset: 5px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(11, 60, 93, 0.12);
}

.be-delivery__pin.is-active::before {
  opacity: 1;
}

.be-delivery__pin.is-active::after {
  box-shadow: 0 12px 26px rgba(11, 60, 93, 0.3);
}

.be-delivery__pin:focus-visible {
  outline: none;
}

.be-delivery__pin:focus-visible::after {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.54), 0 12px 26px rgba(11, 60, 93, 0.3);
}

.be-delivery__popup[hidden] {
  display: none;
}

.be-delivery__popup {
  position: absolute;
  z-index: 5;
  width: min(320px, calc(100% - 24px));
  padding: 20px 20px 18px;
  border: 1px solid rgba(11, 60, 93, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 60, 93, 0.96) 0%, rgba(11, 60, 93, 0.92) 100%);
  box-shadow: 0 26px 48px rgba(11, 60, 93, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.be-delivery__popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.be-delivery__popup.is-mobile {
  position: static;
  width: 100%;
  max-width: none;
  margin-top: 6px;
}

.be-delivery__popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1;
}

.be-delivery__popup-copy {
  display: grid;
  gap: 10px;
  padding-right: 30px;
}

.be-delivery__popup-copy strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.06;
}

.be-delivery__popup-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.64;
}

.be-delivery__panel p {
  margin: 0;
  color: rgba(11, 60, 93, 0.84);
  font-size: 14px;
  line-height: 1.62;
}

.be-delivery__popup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.be-delivery__legend {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.be-delivery__legend span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: #0b3c5d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(11, 60, 93, 0.08);
}

.be-delivery__panel {
  display: grid;
  gap: 10px;
  align-self: end;
  max-width: 220px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(11, 60, 93, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.be-delivery__panel-code {
  color: var(--be-text);
  font-family: "Outfit", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.94;
}

.be-delivery__panel-stats {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.be-delivery__panel-count {
  color: var(--be-text);
  font-family: "Outfit", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.98;
}

.be-delivery__panel-count-label {
  color: rgba(11, 60, 93, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.be-delivery--poster .be-delivery__layout {
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 36px;
}

.be-delivery--poster .be-delivery__copy {
  gap: 16px;
  align-content: start;
  padding: 16px 0;
}

.be-delivery--poster .be-delivery__copy h2 {
  max-width: 7ch;
  font-size: clamp(34px, 4.1vw, 60px);
}

.be-delivery--poster .be-delivery__description {
  max-width: 26ch;
}

.be-delivery--poster .be-delivery__hint {
  max-width: 24ch;
}

.be-delivery--poster .be-delivery__canvas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  grid-template-rows: minmax(0, 1fr);
  align-items: end;
  gap: 14px;
  min-height: clamp(380px, 47vw, 520px);
  padding: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42) 0, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.be-delivery--poster .be-delivery__stage {
  align-self: center;
}

.be-delivery--poster .be-delivery__svg {
  transform: translateX(-1%) scale(0.94);
  transform-origin: center center;
}

.be-delivery--poster .be-delivery__region.is-empty .be-delivery__region-shape {
  fill: var(--be-map-fill);
  opacity: 0.86;
}

.be-delivery--poster .be-delivery__region.is-empty.is-hover .be-delivery__region-shape,
.be-delivery--poster .be-delivery__region.is-hover .be-delivery__region-shape {
  fill: var(--be-map-hover);
  opacity: 1;
}

.be-delivery--poster .be-delivery__region.is-empty.is-active .be-delivery__region-shape,
.be-delivery--poster .be-delivery__region.is-active .be-delivery__region-shape {
  fill: var(--be-map-active);
  opacity: 1;
}

@keyframes be-delivery-pulse {
  0% {
    transform: scale(0.72);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes be-delivery-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .be-delivery__canvas-orbit,
  .be-delivery__pin::before {
    animation: none;
  }

  .be-delivery__region-shape,
  .be-delivery__popup {
    transition: none;
  }
}

@media (max-width: 1199px) {
  .be-delivery {
    padding-left: 20px;
    padding-right: 20px;
  }

  .be-delivery__layout,
  .be-delivery--poster .be-delivery__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .be-delivery__copy,
  .be-delivery--poster .be-delivery__copy {
    padding: 0;
  }

  .be-delivery__copy h2,
  .be-delivery--poster .be-delivery__copy h2 {
    max-width: none;
  }

  .be-delivery__description,
  .be-delivery__hint,
  .be-delivery--poster .be-delivery__description,
  .be-delivery--poster .be-delivery__hint {
    max-width: none;
  }

  .be-delivery__canvas {
    min-height: 0;
    padding: 24px;
  }

  .be-delivery--global {
    --be-presence-height: auto;
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .be-delivery--global .be-delivery__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .be-delivery--global .be-delivery__copy {
    min-height: 0;
    gap: 24px;
  }

  .be-delivery--global .be-delivery__canvas {
    display: grid;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
  }

  .be-delivery--global .be-delivery__map-note,
  .be-delivery--global .be-delivery__legend,
  .be-delivery--global .be-delivery__stage {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    bottom: auto;
  }

  .be-delivery--global .be-delivery__stage {
    min-height: 320px;
  }

  .be-delivery--global .be-delivery__svg {
    width: 100%;
    height: auto;
  }

  .be-delivery__stage {
    min-height: 320px;
  }

  .be-delivery--poster .be-delivery__canvas {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .be-delivery--poster .be-delivery__svg {
    transform: none;
  }

  .be-delivery__panel {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .be-delivery {
    padding: 58px 16px 64px;
  }

  .be-delivery--global {
    padding: 40px 16px 48px;
  }

  .be-delivery--global .be-delivery__copy {
    gap: 20px;
  }

  .be-delivery__copy {
    gap: 18px;
  }

  .be-delivery__copy h2,
  .be-delivery--poster .be-delivery__copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .be-delivery--global .be-delivery__copy h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .be-delivery__description,
  .be-delivery__hint,
  .be-delivery--poster .be-delivery__description,
  .be-delivery--poster .be-delivery__hint {
    font-size: 14px;
  }

  .be-delivery__focus-list {
    gap: 8px;
  }

  .be-delivery__focus-list span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

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

  .be-delivery--global .be-delivery__stats {
    gap: 10px;
  }

  .be-delivery__stat:last-child {
    grid-column: span 2;
  }

  .be-delivery__stat {
    padding: 14px 14px 12px;
  }

  .be-delivery--global .be-delivery__stat {
    padding: 14px 14px 12px;
  }

  .be-delivery__stat strong {
    font-size: 24px;
  }

  .be-delivery--global .be-delivery__stat strong {
    font-size: 22px;
  }

  .be-delivery__summary {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .be-delivery--global .be-delivery__summary {
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

  .be-delivery__summary strong {
    font-size: 24px;
  }

  .be-delivery--global .be-delivery__summary strong {
    font-size: 18px;
  }

  .be-delivery__summary p {
    font-size: 14px;
  }

  .be-delivery__summary-foot {
    font-size: 10px;
  }

  .be-delivery__canvas,
  .be-delivery--poster .be-delivery__canvas {
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
  }

  .be-delivery--global .be-delivery__canvas {
    padding: 18px;
    gap: 16px;
    border-radius: 20px;
  }

  .be-delivery__canvas-grid {
    inset: 14px;
    border-radius: 20px;
    background-size: 48px 48px;
  }

  .be-delivery__map-note strong {
    font-size: 22px;
  }

  .be-delivery--global .be-delivery__map-note {
    max-width: none;
  }

  .be-delivery--global .be-delivery__map-note strong {
    font-size: 18px;
  }

  .be-delivery__stage {
    min-height: 240px;
  }

  .be-delivery--poster .be-delivery__hint {
    padding-left: 14px;
  }

  .be-delivery__pin {
    width: 16px;
    height: 16px;
  }

  .be-delivery__pin-core {
    inset: 4px;
  }

  .be-delivery__popup {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .be-delivery__popup-copy strong {
    font-size: 18px;
  }

  .be-delivery__legend {
    gap: 8px;
  }

  .be-delivery__legend span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

  .be-delivery__panel {
    padding: 16px 16px 14px;
    border-radius: 20px;
  }

  .be-delivery__panel-code {
    font-size: 34px;
  }

  .be-delivery__panel-count {
    font-size: 24px;
  }
}

.fm-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
}

.fm-about-story__copy,
.fm-about-story__aside,
.fm-about-values__card,
.fm-about-partner-card {
  border-radius: 30px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow-lg);
}

.fm-about-story__copy,
.fm-about-story__aside {
  padding: 30px;
}

.fm-about-story__copy h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
}

.fm-about-story__copy .fm-rich-content p + p {
  margin-top: 16px;
}

.fm-about-story__aside {
  display: grid;
  gap: 18px;
}

.fm-about-story__media {
  overflow: hidden;
  border-radius: 24px;
}

.fm-about-story__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.fm-about-note-grid,
.fm-about-values,
.fm-about-partner-grid {
  display: grid;
  gap: 18px;
}

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

.fm-about-note {
  padding: 22px;
  border-radius: 22px;
  background: var(--fm-cream);
}

.fm-about-note strong,
.fm-about-values__card strong,
.fm-about-partner-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fm-ink);
  font-size: 22px;
  line-height: 1.08;
}

.fm-about-note p,
.fm-about-values__card p,
.fm-about-partner-card p {
  color: var(--fm-body);
  line-height: 1.75;
}

.fm-about-timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.fm-about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 110px;
  width: 2px;
  background: rgba(11, 60, 93, 0.14);
}

.fm-about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.fm-about-timeline__year {
  position: sticky;
  top: 110px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--fm-red);
  box-shadow: var(--fm-shadow);
  color: var(--fm-white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fm-about-timeline__card {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border-radius: 28px;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow-lg);
}

.fm-about-timeline__media {
  overflow: hidden;
  border-radius: 22px;
  background: var(--fm-cream);
}

.fm-about-timeline__media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.fm-about-timeline__copy h3 {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 1.02;
}

.fm-about-timeline__copy p {
  line-height: 1.78;
}

.fm-about-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.fm-about-values__card {
  padding: 26px;
}

.fm-about-brand-grid {
  margin-top: 28px;
}

.fm-about-brand-grid .fm-brand-card {
  height: 100%;
}

.fm-about-brand-grid .fm-brand-logo span {
  color: var(--fm-red);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.fm-about-partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.fm-about-partner-card {
  padding: 22px;
}

@media (max-width: 1199px) {
  .fm-hero-grid {
    grid-template-columns: 1fr;
  }

  .fm-hero-summary {
    max-width: 420px;
  }

  .be-products {
    grid-template-columns: 1fr;
  }

  .be-products__support {
    grid-column: auto;
  }

  .fm-catalogue-intro {
    grid-template-columns: 1fr;
  }

  .fm-brand-hero-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .fm-editorial-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .fm-path-grid--linked::before {
    display: none;
  }

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

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

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

  .fm-about-timeline::before {
    left: 32px;
  }

  .fm-about-timeline__item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

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

@media (max-width: 991px) {
  .fm-about-timeline__card {
    grid-template-columns: 1fr;
  }

  .fm-about-timeline__media img {
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  .be-hero__content {
    padding: 170px 24px 48px;
  }

  .be-hero__text {
    padding-top: 70px;
  }

  .fm-hero-tags {
    gap: 8px;
  }

  .fm-hero-tags span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .fm-hero-summary {
    padding: 18px;
  }

  .be-products__grid {
    grid-template-columns: 1fr;
  }

  .be-products__support {
    flex-direction: column;
    align-items: flex-start;
  }

  .be-products__support-stats {
    justify-content: flex-start;
  }

  .fm-catalogue-intro__stats {
    grid-template-columns: 1fr;
  }

  .fm-detail-summary {
    grid-template-columns: 1fr;
  }

  .fm-line-meta {
    gap: 8px;
  }

  .fm-feature-grid--four,
  .fm-path-grid--supply {
    grid-template-columns: 1fr;
  }

  .fm-final-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .fm-final-callout .fm-hero-actions {
    justify-content: flex-start;
  }

  .fm-about-story__copy,
  .fm-about-story__aside,
  .fm-about-values__card,
  .fm-about-partner-card,
  .fm-about-timeline__card {
    padding: 20px;
    border-radius: 24px;
  }

  .fm-about-note-grid,
  .fm-about-values,
  .fm-about-partner-grid {
    grid-template-columns: 1fr;
  }

  .fm-about-story__media img {
    height: 240px;
  }

  .fm-about-timeline::before {
    left: 24px;
  }

  .fm-about-timeline__item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .fm-about-timeline__year {
    position: relative;
    top: auto;
    min-height: 48px;
    font-size: 13px;
  }

  .fm-about-timeline__copy h3 {
    font-size: 26px;
  }
}

/* lbpcmsfpmhysen Global Presence rebuild */
.be-delivery--global {
  --be-presence-height: clamp(390px, 31vw, 446px);
  padding: 44px 24px 46px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.28) 28%, transparent 56%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 46%, #f5f5f5 100%);
}

.be-delivery--global .be-delivery__layout {
  max-width: 1480px;
  gap: 34px;
  align-items: stretch;
  grid-template-columns: minmax(290px, 346px) minmax(0, 1fr);
}

.be-delivery--global .be-delivery__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: var(--be-presence-height);
  gap: 18px;
  padding: 0;
}

.be-delivery--global .be-delivery__copy-head {
  gap: 16px;
}

.be-delivery--global .be-delivery__copy h2 {
  max-width: 5.8ch;
  color: #0b3c5d;
  font-size: clamp(42px, 4.15vw, 62px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.be-delivery--global .be-delivery__description {
  max-width: 19ch;
  color: rgba(11, 60, 93, 0.66);
  font-size: 15px;
  line-height: 1.62;
}

.be-delivery--global .be-delivery__summary {
  gap: 10px;
  margin-top: auto;
  padding: 18px 18px 16px;
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 245, 245, 0.92) 100%);
  box-shadow: 0 16px 34px rgba(11, 60, 93, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.be-delivery--global .be-delivery__summary::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(63, 163, 77, 0.92) 0%, rgba(63, 163, 77, 0.24) 100%);
}

.be-delivery--global .be-delivery__summary-kicker {
  color: #0b3c5d;
}

.be-delivery--global .be-delivery__summary-status {
  min-height: 30px;
  padding: 0 14px;
  border-color: rgba(11, 60, 93, 0.12);
  background: rgba(11, 60, 93, 0.06);
  color: rgba(11, 60, 93, 0.74);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.be-delivery--global .be-delivery__summary strong {
  color: #0b3c5d;
  font-size: 24px;
  line-height: 0.95;
}

.be-delivery--global .be-delivery__summary p {
  color: rgba(11, 60, 93, 0.72);
  font-size: 14px;
  line-height: 1.58;
}

.be-delivery--global .be-delivery__summary-foot {
  padding-top: 10px;
  border-top: 1px solid rgba(11, 60, 93, 0.08);
  color: rgba(11, 60, 93, 0.58);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.be-delivery--global .be-delivery__map {
  align-items: stretch;
}

.be-delivery--global .be-delivery__canvas {
  position: relative;
  width: 100%;
  height: var(--be-presence-height);
  min-height: var(--be-presence-height);
  max-height: var(--be-presence-height);
  padding: 0;
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 22%, rgba(63, 163, 77, 0.12) 0, rgba(63, 163, 77, 0) 33%),
    radial-gradient(circle at 79% 18%, rgba(11, 60, 93, 0.1) 0, rgba(11, 60, 93, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 52%, #f5f5f5 100%);
  box-shadow: 0 24px 48px rgba(11, 60, 93, 0.08);
  isolation: isolate;
}

.be-delivery--global .be-delivery__canvas-atmosphere,
.be-delivery--global .be-delivery__canvas-grid,
.be-delivery--global .be-delivery__canvas-orbits {
  pointer-events: none;
}

.be-delivery--global .be-delivery__canvas-atmosphere {
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(63, 163, 77, 0.12) 0, transparent 34%),
    radial-gradient(circle at 79% 18%, rgba(11, 60, 93, 0.1) 0, transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 28%);
}

.be-delivery--global .be-delivery__canvas-grid {
  inset: 0;
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(11, 60, 93, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 60, 93, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.42;
  mask-image: radial-gradient(circle at center, #ffffff 58%, transparent 94%);
}

.be-delivery--global .be-delivery__canvas-orbit {
  border-color: rgba(11, 60, 93, 0.11);
  background: transparent;
  box-shadow: none;
}

.be-delivery--global .be-delivery__canvas-orbit--north {
  top: 12%;
  left: 17%;
  width: 25%;
}

.be-delivery--global .be-delivery__canvas-orbit--asia {
  top: 16%;
  right: 13%;
  width: 34%;
}

.be-delivery--global .be-delivery__canvas-orbit--south {
  right: 15%;
  bottom: 14%;
  width: 18%;
  opacity: 0.68;
}

.be-delivery--global .be-delivery__map-note,
.be-delivery--global .be-delivery__legend {
  display: none;
}

.be-delivery--global .be-delivery__stage {
  position: absolute;
  inset: 22px 24px 18px 18px;
  z-index: 2;
  min-height: 0;
  display: block;
  pointer-events: auto;
}

.be-delivery--global .be-delivery__svg {
  display: block;
  width: 108%;
  height: 108%;
  max-width: 100%;
  max-height: 100%;
  overflow: visible;
  filter: none;
  transform: translate(-2%, -1%);
}

.be-delivery--global .be-delivery__region-shape {
  fill: rgba(11, 60, 93, 0.12);
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 1.6;
  opacity: 1;
  filter: drop-shadow(0 10px 18px rgba(11, 60, 93, 0.12));
}

.be-delivery--global .be-delivery__region.is-empty .be-delivery__region-shape {
  fill: rgba(11, 60, 93, 0.18);
  stroke: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.be-delivery--global .be-delivery__region.is-hover .be-delivery__region-shape {
  fill: rgba(63, 163, 77, 0.34);
  stroke: rgba(255, 255, 255, 1);
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 14px 24px rgba(63, 163, 77, 0.18));
}

.be-delivery--global .be-delivery__region.is-active .be-delivery__region-shape {
  fill: #0b3c5d;
  stroke: rgba(255, 255, 255, 1);
  transform: translateY(-1px) scale(1.012);
  filter: drop-shadow(0 16px 26px rgba(11, 60, 93, 0.18));
}

.be-delivery--global .be-delivery__region-label {
  fill: rgba(11, 60, 93, 0.86);
  font-size: 4.65px;
  font-weight: 800;
  letter-spacing: 0.1em;
  stroke: transparent;
}

.be-delivery--global .be-delivery__region.is-hover .be-delivery__region-label,
.be-delivery--global .be-delivery__region.is-active .be-delivery__region-label {
  fill: #ffffff;
}

.be-delivery--global .be-delivery__pin {
  width: 16px;
  height: 16px;
  z-index: 4;
}

.be-delivery--global .be-delivery__pin::before {
  inset: -5px;
  background: radial-gradient(circle, rgba(63, 163, 77, 0.24) 0, rgba(63, 163, 77, 0) 72%);
}

.be-delivery--global .be-delivery__pin::after {
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.98);
  background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
  box-shadow: 0 10px 18px rgba(11, 60, 93, 0.12);
}

.be-delivery--global .be-delivery__pin-core {
  inset: 4px;
  background: #ffffff;
}

.be-delivery--global .be-delivery__popup {
  border: 1px solid rgba(11, 60, 93, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 42px rgba(11, 60, 93, 0.14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.be-delivery--global .be-delivery__popup-close {
  background: rgba(11, 60, 93, 0.08);
  color: rgba(11, 60, 93, 0.7);
}

.be-delivery--global .be-delivery__popup-copy strong {
  color: #0b3c5d;
}

.be-delivery--global .be-delivery__popup-copy p {
  color: rgba(11, 60, 93, 0.72);
}

.be-delivery--global .be-delivery__popup-link {
  background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
  box-shadow: 0 10px 18px rgba(11, 60, 93, 0.12);
}

@media (max-width: 1199px) {
  .be-delivery--global {
    --be-presence-height: auto;
    padding: 42px 20px 44px;
  }

  .be-delivery--global .be-delivery__layout {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .be-delivery--global .be-delivery__copy {
    min-height: 0;
    gap: 18px;
  }

  .be-delivery--global .be-delivery__copy h2 {
    max-width: none;
    font-size: clamp(38px, 6vw, 50px);
  }

  .be-delivery--global .be-delivery__description {
    max-width: 30ch;
  }

  .be-delivery--global .be-delivery__canvas {
    height: auto;
    min-height: 340px;
    max-height: none;
    aspect-ratio: auto;
  }

  .be-delivery--global .be-delivery__stage {
    inset: 18px 18px 16px;
  }

  .be-delivery--global .be-delivery__svg {
    width: 100%;
    height: 100%;
    transform: none;
  }
}

@media (max-width: 767px) {
  .be-delivery--global {
    padding: 34px 16px 38px;
  }

  .be-delivery--global .be-delivery__copy {
    gap: 16px;
  }

  .be-delivery--global .be-delivery__copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .be-delivery--global .be-delivery__description {
    max-width: none;
    font-size: 14px;
  }

  .be-delivery--global .be-delivery__summary {
    padding: 16px 16px 14px;
    border-radius: 20px;
  }

  .be-delivery--global .be-delivery__summary strong {
    font-size: 18px;
  }

  .be-delivery--global .be-delivery__summary p {
    font-size: 14px;
  }

  .be-delivery--global .be-delivery__canvas {
    min-height: 280px;
    border-radius: 26px;
  }

  .be-delivery--global .be-delivery__canvas-grid {
    background-size: 24px 24px;
  }

  .be-delivery--global .be-delivery__stage {
    inset: 14px 14px 16px;
  }
}

/* lbpcmsfpmhysen Global Presence refined poster finish */
.be-delivery--global {
  --be-presence-height: clamp(390px, 31vw, 446px);
  padding: 44px 24px 46px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.28) 28%, transparent 56%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 46%, #f5f5f5 100%);
}

.be-delivery--global .be-delivery__layout {
  max-width: 1440px;
  gap: 34px;
  grid-template-columns: minmax(290px, 346px) minmax(0, 1fr);
}

.be-delivery--global .be-delivery__copy {
  gap: 18px;
}

.be-delivery--global .be-delivery__copy-head {
  gap: 16px;
  position: relative;
  z-index: 1;
}

.be-delivery--global .be-delivery__copy h2 {
  max-width: 5.8ch;
  font-size: clamp(42px, 4.15vw, 62px);
  line-height: 0.9;
  text-wrap: balance;
}

.be-delivery--global .be-delivery__description {
  max-width: 19ch;
  color: rgba(11, 60, 93, 0.66);
  font-size: 15px;
  line-height: 1.62;
}

.be-delivery--global .be-delivery__summary {
  gap: 8px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(11, 60, 93, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 245, 245, 0.92) 100%);
  box-shadow: 0 16px 34px rgba(11, 60, 93, 0.06);
}

.be-delivery--global .be-delivery__summary::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(63, 163, 77, 0.92) 0%, rgba(63, 163, 77, 0.22) 100%);
}

.be-delivery--global .be-delivery__summary-kicker {
  color: #0b3c5d;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.be-delivery--global .be-delivery__summary strong {
  font-size: 24px;
}

.be-delivery--global .be-delivery__summary p {
  font-size: 14px;
  line-height: 1.58;
}

.be-delivery--global .be-delivery__canvas {
  border-color: rgba(11, 60, 93, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 24%, rgba(63, 163, 77, 0.12) 0, rgba(63, 163, 77, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: 0 20px 36px rgba(11, 60, 93, 0.08);
}

.be-delivery--global .be-delivery__canvas-atmosphere {
  background:
    radial-gradient(circle at 18% 22%, rgba(63, 163, 77, 0.1) 0, transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0, rgba(255, 255, 255, 0) 28%);
}

.be-delivery--global .be-delivery__canvas-grid {
  background-image:
    linear-gradient(rgba(11, 60, 93, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 60, 93, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.38;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0, rgba(255, 255, 255, 0.14) 100%);
}

.be-delivery--global .be-delivery__canvas-orbit {
  border-color: rgba(11, 60, 93, 0.12);
}

.be-delivery--global .be-delivery__canvas-orbit--north {
  top: 14%;
  left: 18%;
  width: 23%;
}

.be-delivery--global .be-delivery__canvas-orbit--asia {
  top: 20%;
  right: 13%;
  width: 30%;
}

.be-delivery--global .be-delivery__canvas-orbit--south {
  display: none;
}

.be-delivery--global .be-delivery__stage {
  inset: 18px 18px 14px 12px;
}

.be-delivery--global .be-delivery__svg {
  width: 112%;
  height: 112%;
  transform: translate(-3.4%, -2.8%);
}

.be-delivery--global .be-delivery__region-shape {
  fill: rgba(11, 60, 93, 0.12);
  filter: none;
}

.be-delivery--global .be-delivery__region.is-empty .be-delivery__region-shape {
  fill: rgba(11, 60, 93, 0.18);
}

.be-delivery--global .be-delivery__region.is-hover .be-delivery__region-shape {
  fill: rgba(63, 163, 77, 0.28);
  filter: drop-shadow(0 10px 18px rgba(63, 163, 77, 0.14));
}

.be-delivery--global .be-delivery__region.is-active .be-delivery__region-shape {
  fill: #0b3c5d;
  filter: drop-shadow(0 12px 20px rgba(11, 60, 93, 0.16));
}

.be-delivery--global .be-delivery__region-label {
  fill: rgba(11, 60, 93, 0.84);
  font-size: 4.55px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.be-delivery--global .be-delivery__pin::before {
  background: radial-gradient(circle, rgba(63, 163, 77, 0.22) 0, rgba(63, 163, 77, 0) 72%);
}

.be-delivery--global .be-delivery__pin::after {
  background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
  box-shadow: 0 10px 18px rgba(11, 60, 93, 0.16);
}

.be-delivery--global .be-delivery__popup-link {
  background: linear-gradient(180deg, #3fa34d 0%, #0b3c5d 100%);
  box-shadow: 0 10px 18px rgba(11, 60, 93, 0.12);
}

@media (max-width: 1199px) {
  .be-delivery--global {
    padding: 38px 20px 40px;
  }

  .be-delivery--global .be-delivery__copy h2 {
    font-size: clamp(36px, 6vw, 46px);
  }

  .be-delivery--global .be-delivery__stage {
    inset: 18px 18px 16px;
  }

  .be-delivery--global .be-delivery__svg {
    width: 100%;
    height: 100%;
    transform: none;
  }
}

@media (max-width: 767px) {
  .be-delivery--global {
    padding: 30px 16px 34px;
  }

  .be-delivery--global .be-delivery__summary strong {
    font-size: 18px;
  }

  .be-delivery--global .be-delivery__canvas {
    min-height: 260px;
    border-radius: 26px;
  }

  .be-delivery--global .be-delivery__canvas-grid {
    background-size: 24px 24px;
  }

  .be-delivery--global .be-delivery__stage {
    inset: 14px 14px 16px;
  }
}

:root {
  --motion-distance: 52px;
  --motion-duration: 0.88s;
  --motion-delay: 0s;
  --motion-scale: 1.14;
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html.has-motion [data-motion] {
  --motion-shift-y: var(--motion-distance);
  --motion-local-scale: 1;
  --motion-blur: 0px;
  opacity: 0.001;
  transform: translate3d(0, var(--motion-shift-y), 0) scale(var(--motion-local-scale));
  filter: blur(var(--motion-blur));
  transition-property: opacity, transform, filter, box-shadow, border-color, background-color;
  transition-duration: var(--motion-duration), var(--motion-duration), var(--motion-duration), 0.22s, 0.22s, 0.22s;
  transition-timing-function: var(--motion-ease), var(--motion-ease), var(--motion-ease), ease, ease, ease;
  transition-delay: var(--motion-delay), var(--motion-delay), var(--motion-delay), 0s, 0s, 0s;
  will-change: transform, opacity, filter;
}

html.has-motion [data-motion].is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

html.has-motion [data-motion="hero-copy"] {
  --motion-shift-y: calc(var(--motion-distance) * 1.35);
  --motion-blur: 14px;
}

html.has-motion [data-motion="hero-panel"] {
  --motion-shift-y: calc(var(--motion-distance) * 1.05);
  --motion-local-scale: 0.94;
  --motion-blur: 16px;
}

html.has-motion [data-motion="image-reveal"]:not(img):not(video) {
  --motion-shift-y: calc(var(--motion-distance) * 0.95);
}

html.has-motion img[data-motion="image-reveal"],
html.has-motion video[data-motion="image-reveal"] {
  --motion-shift-y: calc(var(--motion-distance) * 0.82);
  --motion-local-scale: var(--motion-scale);
  --motion-blur: 10px;
  filter: blur(var(--motion-blur)) saturate(0.78) brightness(0.82);
}

html.has-motion [data-motion="image-reveal"]:not(img):not(video) img,
html.has-motion [data-motion="image-reveal"]:not(img):not(video) video {
  transform: translate3d(0, calc(var(--motion-parallax-y, 0px) + 24px), 0) scale(var(--motion-scale));
  filter: blur(10px) saturate(0.8) brightness(0.84);
  transition: transform var(--motion-duration) var(--motion-ease) var(--motion-delay), filter var(--motion-duration) var(--motion-ease) var(--motion-delay);
  will-change: transform, filter;
}

html.has-motion [data-motion="image-reveal"]:not(img):not(video).is-inview img,
html.has-motion [data-motion="image-reveal"]:not(img):not(video).is-inview video,
html.has-motion img[data-motion="image-reveal"].is-inview,
html.has-motion video[data-motion="image-reveal"].is-inview {
  transform: translate3d(0, var(--motion-parallax-y, 0px), 0) scale(1);
  filter: blur(0) saturate(1) brightness(1);
}

html.has-motion .be-hero__text[data-motion] > *,
html.has-motion .fm-page-hero-copy[data-motion] > *,
html.has-motion .fm-hero-summary[data-motion] > *,
html.has-motion .be-product-card[data-motion] .be-product-card__copy > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: transform 0.82s var(--motion-ease), opacity 0.82s var(--motion-ease);
}

html.has-motion .be-hero__text[data-motion].is-inview > *,
html.has-motion .fm-page-hero-copy[data-motion].is-inview > *,
html.has-motion .fm-hero-summary[data-motion].is-inview > *,
html.has-motion .be-product-card[data-motion].is-inview .be-product-card__copy > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.has-motion .be-hero__text[data-motion].is-inview > *:nth-child(1),
html.has-motion .fm-page-hero-copy[data-motion].is-inview > *:nth-child(1),
html.has-motion .be-product-card[data-motion].is-inview .be-product-card__copy > *:nth-child(1) {
  transition-delay: calc(var(--motion-delay) + 0.06s);
}

html.has-motion .be-hero__text[data-motion].is-inview > *:nth-child(2),
html.has-motion .fm-page-hero-copy[data-motion].is-inview > *:nth-child(2),
html.has-motion .fm-hero-summary[data-motion].is-inview > *:nth-child(1),
html.has-motion .be-product-card[data-motion].is-inview .be-product-card__copy > *:nth-child(2) {
  transition-delay: calc(var(--motion-delay) + 0.16s);
}

html.has-motion .be-hero__text[data-motion].is-inview > *:nth-child(3),
html.has-motion .fm-page-hero-copy[data-motion].is-inview > *:nth-child(3),
html.has-motion .fm-hero-summary[data-motion].is-inview > *:nth-child(2),
html.has-motion .be-product-card[data-motion].is-inview .be-product-card__copy > *:nth-child(3) {
  transition-delay: calc(var(--motion-delay) + 0.28s);
}

html.has-motion .be-hero__text[data-motion].is-inview > *:nth-child(4),
html.has-motion .fm-page-hero-copy[data-motion].is-inview > *:nth-child(4),
html.has-motion .fm-hero-summary[data-motion].is-inview > *:nth-child(3),
html.has-motion .be-product-card[data-motion].is-inview .be-product-card__copy > *:nth-child(4) {
  transition-delay: calc(var(--motion-delay) + 0.4s);
}

html.has-motion .fm-page-hero-media[data-motion="image-reveal"],
html.has-motion .fm-story-media[data-motion="image-reveal"],
html.has-motion .fm-brand-product[data-motion="image-reveal"],
html.has-motion .fm-article-thumb[data-motion="image-reveal"],
html.has-motion .fm-product-thumb[data-motion="image-reveal"],
html.has-motion .fm-search-thumb[data-motion="image-reveal"],
html.has-motion .fm-line-media[data-motion="image-reveal"],
html.has-motion .fm-sample-thumb[data-motion="image-reveal"] {
  position: relative;
  isolation: isolate;
}

html.has-motion .fm-page-hero-media[data-motion="image-reveal"] {
  position: absolute;
  inset: 0;
}

html.has-motion .fm-page-hero-media[data-motion="image-reveal"]::after,
html.has-motion .fm-story-media[data-motion="image-reveal"]::after,
html.has-motion .fm-brand-product[data-motion="image-reveal"]::after,
html.has-motion .fm-article-thumb[data-motion="image-reveal"]::after,
html.has-motion .fm-product-thumb[data-motion="image-reveal"]::after,
html.has-motion .fm-search-thumb[data-motion="image-reveal"]::after,
html.has-motion .fm-line-media[data-motion="image-reveal"]::after,
html.has-motion .fm-sample-thumb[data-motion="image-reveal"]::after {
  content: "";
  position: absolute;
  inset: -8% -18%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 26%, rgba(11, 60, 93, 0.38) 52%, rgba(11, 60, 93, 0.08) 74%, transparent 100%);
  transform: translate3d(-12%, 0, 0) skewX(-12deg);
  opacity: 1;
  transition: transform 1s var(--motion-ease) calc(var(--motion-delay) + 0.08s), opacity 0.9s var(--motion-ease) calc(var(--motion-delay) + 0.08s);
}

html.has-motion .fm-page-hero-media[data-motion="image-reveal"].is-inview::after,
html.has-motion .fm-story-media[data-motion="image-reveal"].is-inview::after,
html.has-motion .fm-brand-product[data-motion="image-reveal"].is-inview::after,
html.has-motion .fm-article-thumb[data-motion="image-reveal"].is-inview::after,
html.has-motion .fm-product-thumb[data-motion="image-reveal"].is-inview::after,
html.has-motion .fm-search-thumb[data-motion="image-reveal"].is-inview::after,
html.has-motion .fm-line-media[data-motion="image-reveal"].is-inview::after,
html.has-motion .fm-sample-thumb[data-motion="image-reveal"].is-inview::after {
  transform: translate3d(128%, 0, 0) skewX(-12deg);
  opacity: 0;
}

html.has-motion .be-product-card[data-motion="image-reveal"] {
  transform-origin: center bottom;
}

html.has-motion .be-product-card[data-motion="image-reveal"] .be-product-card__overlay {
  opacity: 0.84;
  transform: scale(1.08);
  transition: transform 0.95s var(--motion-ease) var(--motion-delay), opacity 0.95s var(--motion-ease) var(--motion-delay);
}

html.has-motion .be-product-card[data-motion="image-reveal"].is-inview .be-product-card__overlay {
  opacity: 1;
  transform: scale(1);
}

html.has-motion .fm-sample-item[data-motion].is-inview:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 18px 34px rgba(11, 60, 93, 0.12);
}

html.has-motion .fm-product-card[data-motion].is-inview:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 22px 42px rgba(11, 60, 93, 0.16);
}

html.has-motion .be-product-card[data-motion].is-inview:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 28px 64px rgba(11, 60, 93, 0.2);
}

html.has-motion .be-product-card[data-motion="image-reveal"]:hover img {
  transform: translate3d(0, var(--motion-parallax-y, 0px), 0) scale(1.04);
}

@media (max-width: 1023px) {
  :root {
    --motion-distance: 26px;
    --motion-duration: 0.65s;
    --motion-scale: 1.08;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.has-motion [data-motion],
  html.has-motion [data-motion].is-inview,
  html.has-motion [data-motion="image-reveal"]:not(img):not(video) img,
  html.has-motion [data-motion="image-reveal"]:not(img):not(video) video,
  html.has-motion img[data-motion="image-reveal"],
  html.has-motion video[data-motion="image-reveal"] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  html.has-motion .fm-page-hero-media[data-motion="image-reveal"]::after,
  html.has-motion .fm-story-media[data-motion="image-reveal"]::after,
  html.has-motion .fm-brand-product[data-motion="image-reveal"]::after,
  html.has-motion .fm-article-thumb[data-motion="image-reveal"]::after,
  html.has-motion .fm-product-thumb[data-motion="image-reveal"]::after,
  html.has-motion .fm-search-thumb[data-motion="image-reveal"]::after,
  html.has-motion .fm-line-media[data-motion="image-reveal"]::after,
  html.has-motion .fm-sample-thumb[data-motion="image-reveal"]::after {
    display: none !important;
  }
}

/* lbpcmsfpmhysen mobile optimization block */
body.be-lock {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
  top: calc(var(--be-lock-scroll, 0px) * -1);
}

.be-hero__mobile-summary {
  display: none;
}

@media (max-width: 1023px) {
  :root {
    --be-mobile-header: 86px;
    --be-mobile-gutter: 16px;
  }

  body {
    overflow-x: hidden;
  }

  main {
    padding-top: var(--be-mobile-header);
  }

  main .container {
    padding-left: var(--be-mobile-gutter);
    padding-right: var(--be-mobile-gutter);
  }

  .be-header__bar {
    padding-top: 0;
    background: transparent;
    transition: background 0.22s ease, box-shadow 0.22s ease;
  }

  .be-header.is-scrolled .be-header__bar,
  .be-header.is-open .be-header__bar {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(11, 60, 93, 0.12);
  }

  .be-header__inner {
    align-items: center;
    min-height: var(--be-mobile-header);
    padding: 0 var(--be-mobile-gutter);
  }

  .be-header__brand {
    min-width: 0;
    flex: 1;
  }

  .be-header__brand-default {
    display: inline-flex;
  }

  .be-header__brand-default img {
    height: 44px;
  }

  .be-header__brand-scrolled {
    display: none;
  }

  .be-header.is-scrolled .be-header__brand-default,
  .be-header.is-open .be-header__brand-default {
    display: none;
  }

  .be-header.is-scrolled .be-header__brand-scrolled,
  .be-header.is-open .be-header__brand-scrolled {
    display: inline-flex;
  }

  .be-header.is-scrolled .be-header__brand-scrolled img:first-child,
  .be-header.is-open .be-header__brand-scrolled img:first-child {
    height: 36px;
  }

  .be-header.is-scrolled .be-header__brand-scrolled img:last-child,
  .be-header.is-open .be-header__brand-scrolled img:last-child {
    height: 40px;
  }

  .be-header__right {
    display: none;
  }

  .be-header__mobile-trigger {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 1700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 196px;
    height: 72px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b3c5d 0%, #155a74 52%, #0e6f71 100%);
    color: #ffffff;
    box-shadow: 0 22px 48px rgba(11, 60, 93, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateX(-50%);
    isolation: isolate;
  }

  .be-header.is-open .be-header__mobile-trigger {
    box-shadow: 0 26px 56px rgba(11, 60, 93, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .be-header__mobile-trigger::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 52px;
    width: 154px;
    height: 38px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(180deg, rgba(14, 111, 113, 0.94) 0%, rgba(11, 60, 93, 0.96) 100%);
    box-shadow: 0 16px 30px rgba(11, 60, 93, 0.2);
    opacity: 0;
    transform: translateX(-50%) scaleY(0.72);
    transform-origin: bottom center;
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
    z-index: -1;
  }

  .be-header__mobile-trigger::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
    z-index: -1;
  }

  .be-header.is-open .be-header__mobile-trigger::before,
  .be-header.is-open .be-header__mobile-trigger::after {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }

  .be-header.is-open .be-header__mobile-trigger::after {
    transform: scale(1);
  }

  .be-header__mobile-trigger:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.76);
    outline-offset: 4px;
  }

  .be-header__mobile-trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
  }

  .be-header__mobile-trigger-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .be-header__mobile-trigger-chip--menu {
    width: 70px;
  }

  .be-header__mobile-trigger-chip--brand {
    flex: 1;
    min-width: 0;
  }

  .be-header__mobile-trigger-bars {
    display: inline-grid;
    gap: 5px;
  }

  .be-header__mobile-trigger-bars span {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
  }

  .be-header__mobile-trigger-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.18);
  }

  .be-header__mobile-trigger-chip--brand img {
    display: block;
    width: auto;
    height: 34px;
  }

  .be-mobile-backdrop {
    background: rgba(8, 27, 43, 0.2);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(6px) saturate(1.05);
  }

  .be-mobile-panel {
    top: auto;
    right: 16px;
    bottom: 94px;
    left: 16px;
    width: auto;
    height: auto;
    max-height: calc(100dvh - 146px);
    padding: 0;
    border-radius: 28px;
    border: 1px solid rgba(11, 60, 93, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 251, 0.98) 100%);
    box-shadow: 0 28px 72px rgba(11, 60, 93, 0.16), 0 8px 22px rgba(11, 60, 93, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(22px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease;
    overflow: hidden;
  }

  .be-header.is-open .be-mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .be-mobile-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 112px;
    background:
      linear-gradient(180deg, rgba(227, 239, 246, 0.72) 0%, rgba(255, 255, 255, 0) 100%),
      radial-gradient(circle at 85% 0%, rgba(63, 163, 77, 0.1), transparent 38%);
    pointer-events: none;
  }

  .be-mobile-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    pointer-events: none;
  }

  .be-mobile-panel__shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
    padding: 20px 20px 22px;
    max-height: inherit;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
  }

  .be-mobile-panel__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.72fr);
    gap: 20px;
    align-items: start;
  }

  .be-mobile-panel__nav {
    display: grid;
    gap: 2px;
    overflow: visible;
    padding-top: 0;
    padding-right: 0;
  }

  .be-mobile-panel__group {
    padding: 0;
    border-bottom: 0;
  }

  .be-mobile-panel__row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 68px;
    align-items: center;
  }

  .be-mobile-panel__row a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding-left: 18px;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .be-mobile-panel__row a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--be-red);
    transform: translateY(-50%);
    transition: width 0.2s ease, opacity 0.2s ease;
    opacity: 0.72;
  }

  .be-mobile-panel__row a.is-active {
    color: var(--be-red);
  }

  .be-mobile-panel__row a.is-active::before {
    width: 12px;
  }

  .be-mobile-submenu-toggle,
  .be-mobile-family__toggle {
    position: relative;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(11, 60, 93, 0.08);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .be-mobile-submenu-toggle span,
  .be-mobile-family__toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--be-text);
    transform: translate(-50%, -50%);
  }

  .be-mobile-submenu-toggle span:last-child,
  .be-mobile-family__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .be-mobile-panel__group.is-open .be-mobile-submenu-toggle span:last-child,
  .be-mobile-family.is-open .be-mobile-family__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .be-mobile-panel__submenu {
    display: grid;
    gap: 0;
    margin-top: -2px;
    padding: 2px 0 8px 18px;
  }

  .be-mobile-family {
    position: relative;
    padding-left: 14px;
  }

  .be-mobile-family::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, rgba(11, 60, 93, 0.14) 0%, rgba(11, 60, 93, 0.04) 100%);
  }

  .be-mobile-family__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 46px;
  }

  .be-mobile-family--leaf .be-mobile-family__row {
    grid-template-columns: 1fr;
  }

  .fm-mobile-submenu-heading {
    margin: 0 !important;
    color: rgba(11, 60, 93, 0.62) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
  }

  .be-mobile-family__panel {
    display: grid;
    gap: 8px;
    padding: 6px 0 16px 0;
  }

  .fm-mobile-submenu-child {
    padding: 0 0 0 14px;
    border-left: 0;
    color: rgba(11, 60, 93, 0.86);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
  }

  .be-mobile-panel__spotlight {
    align-self: start;
  }

  .be-mobile-panel__spotlight-card {
    display: grid;
    gap: 12px;
    padding: 10px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(232, 240, 245, 0.88) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(11, 60, 93, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    color: #111111;
    text-decoration: none;
  }

  .be-mobile-panel__spotlight-media {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(11, 60, 93, 0.14);
  }

  .be-mobile-panel__spotlight-card img {
    width: 100%;
    aspect-ratio: 0.78;
    object-fit: cover;
    border-radius: 0;
  }

  .be-mobile-panel__spotlight-copy {
    display: grid;
    gap: 8px;
  }

  .be-mobile-panel__spotlight-card span {
    color: rgba(11, 60, 93, 0.5);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .be-mobile-panel__spotlight-card strong {
    font-size: 19px;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .be-mobile-panel__spotlight-card p {
    color: rgba(11, 60, 93, 0.72);
    font-size: 12px;
    line-height: 1.45;
  }

  .be-mobile-panel__spotlight-card em {
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
  }

  .be-mobile-panel__foot {
    margin-top: 2px;
    padding-top: 4px;
    border-top: 0;
  }

  .be-mobile-panel__actions {
    display: grid;
    gap: 10px;
    margin-top: 0;
  }

  .be-mobile-panel__text-link {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
  }

  .be-mobile-panel__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 14px;
  }

  .be-mobile-panel__contact a {
    color: rgba(11, 60, 93, 0.78);
    font-size: 13px;
    font-weight: 600;
    word-break: break-all;
  }

  .be-hero {
    min-height: calc(100svh - var(--be-mobile-header));
    margin-top: calc(var(--be-mobile-header) * -1);
  }

  .be-hero__swiper,
  .be-hero__swiper .swiper-wrapper,
  .be-hero__slide {
    min-height: inherit;
  }

  .be-hero__content {
    min-height: calc(100svh - var(--be-mobile-header));
    padding: 118px var(--be-mobile-gutter) 28px;
  }

  .fm-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 0;
  }

  .be-hero__text {
    max-width: none;
    padding-top: 0;
  }

  .be-hero h1 {
    max-width: 12ch;
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.94;
  }

  .be-hero__lead {
    max-width: 32ch;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.55;
  }

  .fm-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 340px;
  }

  .fm-hero-actions .fm-btn {
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .fm-hero-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .fm-hero-tags span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .be-hero .fm-hero-summary:not(.fm-hero-summary--mobile) {
    display: none;
  }

  .be-hero__controls {
    left: var(--be-mobile-gutter);
    right: var(--be-mobile-gutter);
    bottom: 14px;
    justify-content: flex-start;
  }

  .be-hero__nav {
    display: none;
  }

  .be-hero__mobile-summary {
    display: block;
    padding: 0 0 18px;
    background: linear-gradient(180deg, rgba(11, 60, 93, 0.04) 0%, rgba(11, 60, 93, 0) 100%);
  }

  .be-hero__mobile-summary .container {
    position: relative;
  }

  .fm-hero-summary--mobile {
    margin-top: -18px;
    padding: 18px;
    border: 1px solid rgba(11, 60, 93, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(11, 60, 93, 0.12);
    backdrop-filter: none;
  }

  .fm-hero-summary--mobile .fm-summary-eyebrow {
    color: var(--be-red);
  }

  .fm-hero-summary--mobile h2 {
    margin: 10px 0 14px;
    color: var(--be-text);
    font-size: 24px;
  }

  .fm-hero-summary--mobile .fm-summary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fm-hero-summary--mobile .fm-summary-item {
    padding: 12px;
    border-radius: 18px;
    background: #f5f7f6;
  }

  .fm-hero-summary--mobile .fm-summary-item strong {
    color: var(--be-text);
    font-size: 16px;
  }

  .fm-hero-summary--mobile .fm-summary-item span,
  .fm-hero-summary--mobile .fm-summary-note {
    color: rgba(11, 60, 93, 0.72);
  }

  .fm-hero-summary--mobile .fm-summary-note {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .be-mobile-promo {
    display: none !important;
  }

  .be-products {
    gap: 24px;
    padding: 34px 16px 48px;
  }

  .be-products__intro h2 {
    margin: 12px 0 18px;
    font-size: 32px;
  }

  .be-products__intro > p:last-of-type {
    max-width: 38ch;
  }

  .be-products__cta {
    min-height: 48px;
    padding: 0 22px;
    font-size: 12px;
  }

  .be-products__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(260px, 74vw, 320px);
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 8px 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .be-products__grid::-webkit-scrollbar {
    display: none;
  }

  .be-product-card {
    min-height: 320px;
    scroll-snap-align: start;
  }

  .be-product-card__copy {
    padding: 22px;
  }

  .be-product-card__copy strong {
    font-size: 28px;
  }

  .be-product-card__copy span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .be-products__support {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
  }

  .be-products__support-stats {
    justify-content: flex-start;
  }

  .be-delivery {
    padding: 44px 16px;
  }

  .be-delivery__layout,
  .be-delivery--poster .be-delivery__layout,
  .be-delivery--global .be-delivery__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .be-delivery__copy,
  .be-delivery--poster .be-delivery__copy,
  .be-delivery--global .be-delivery__copy {
    max-width: none;
  }

  .be-delivery__copy h2,
  .be-delivery--poster .be-delivery__copy h2,
  .be-delivery--global .be-delivery__copy h2 {
    font-size: clamp(32px, 8vw, 44px);
  }

  .be-delivery__canvas,
  .be-delivery--poster .be-delivery__canvas,
  .be-delivery--global .be-delivery__canvas {
    min-height: 320px;
    padding: 18px;
    border-radius: 24px;
  }

  .be-delivery__canvas-grid,
  .be-delivery__canvas-orbits,
  .be-delivery__canvas-atmosphere {
    opacity: 0.45;
  }

  .be-delivery__panel,
  .be-delivery__summary {
    padding: 16px;
    border-radius: 20px;
  }

  .be-footer__cta {
    padding-bottom: 20px;
  }

  .be-footer__cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .be-footer__cta-copy p {
    max-width: none;
    font-size: 30px;
  }

  .be-footer__cta-links {
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .be-footer__cta-links a {
    padding-bottom: 10px;
    font-size: 18px;
  }

  .be-footer__main {
    padding: 36px 0 28px;
  }

  .be-footer__copy {
    flex-direction: column;
  }

  .fm-page-hero {
    min-height: clamp(320px, 58svh, 420px);
    margin-top: calc(var(--be-mobile-header) * -1);
    padding-top: 0;
  }

  .fm-page-hero-copy {
    display: flex;
    align-items: flex-end;
    min-height: inherit;
    padding: 118px 0 22px;
  }

  .fm-page-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(38px, 8.8vw, 54px);
    line-height: 0.96;
  }

  .fm-page-hero-copy p {
    max-width: 34ch;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.65;
  }

  .fm-page-hero--compact-en {
    min-height: clamp(320px, 72svh, 440px);
  }

  .fm-page-hero-copy--compact-en {
    display: flex;
    align-items: flex-end;
    min-height: clamp(320px, 72svh, 440px);
    padding: 118px 0 24px;
  }

  .fm-page-hero--compact-en .fm-page-hero-copy h1 {
    font-size: clamp(38px, 9vw, 56px);
  }

  .fm-page-hero--compact-en .fm-page-hero-copy p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
  }

  .fm-subnav {
    padding: 12px 0 0;
  }

  .fm-subnav-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .fm-subnav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .fm-subnav-links::-webkit-scrollbar {
    display: none;
  }

  .fm-subnav-links a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 16px;
    scroll-snap-align: start;
  }

  .fm-section {
    padding: 56px 0;
  }

  .fm-section--after-hero {
    padding-top: 20px;
  }

  .fm-section-head h2,
  .fm-market-copy h2,
  .fm-inquiry-card h2,
  .fm-detail-copy h2 {
    font-size: clamp(28px, 7.8vw, 40px);
  }

  .fm-story-grid,
  .fm-contact-grid,
  .fm-metrics-grid,
  .fm-market-shell,
  .fm-brand-grid,
  .fm-news-grid,
  .fm-search-grid,
  .fm-product-list-grid,
  .fm-feature-grid,
  .fm-capability-grid,
  .fm-sub-grid--directory {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fm-article-thumb,
  .fm-product-thumb,
  .fm-search-thumb {
    aspect-ratio: 16 / 10;
  }

  .fm-article-thumb img,
  .fm-product-thumb img,
  .fm-search-thumb img {
    height: 100%;
  }

  .fm-article-copy,
  .fm-product-copy,
  .fm-search-card > div {
    padding: 20px;
  }

  .fm-article-copy p,
  .fm-product-copy p,
  .fm-search-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

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

  .fm-line-card {
    grid-template-columns: 1fr;
    scroll-margin-top: 108px;
  }

  .fm-line-media {
    aspect-ratio: 16 / 10;
  }

  .fm-line-media img {
    min-height: 0;
    height: 100%;
  }

  .fm-line-content {
    padding: 22px;
  }

  .fm-line-content h2 {
    font-size: 32px;
  }

  .fm-line-content > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .fm-sub-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .fm-sub-card,
  .fm-story-card,
  .fm-contact-card,
  .fm-brand-card,
  .fm-feature-card,
  .fm-capability-card,
  .fm-path-card,
  .fm-final-callout,
  .fm-catalogue-intro {
    padding: 20px;
    border-radius: 24px;
  }

  .fm-story-media img {
    min-height: 320px;
  }

  .fm-contact-form input,
  .fm-contact-form textarea,
  .fm-contact-form button {
    min-height: 52px;
  }

  .fm-contact-form textarea {
    min-height: 140px;
  }

  .fm-sample-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .fm-sample-thumb img {
    height: 72px;
  }

  .fm-sample-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .fm-final-callout {
    gap: 16px;
  }

  .fm-final-callout h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
}

@media (max-width: 767px) {
  .be-header__brand-default img {
    height: 40px;
  }

  .be-header__mobile-trigger {
    width: 182px;
    height: 68px;
    bottom: 16px;
    padding: 0 16px;
  }

  .be-header__mobile-trigger::before {
    bottom: 50px;
    width: 146px;
    height: 34px;
  }

  .be-header__mobile-trigger-chip {
    height: 44px;
  }

  .be-header__mobile-trigger-chip--menu {
    width: 64px;
  }

  .be-header__mobile-trigger-chip--brand img {
    height: 34px;
  }

  .be-mobile-panel {
    top: auto;
    right: 12px;
    bottom: 88px;
    left: 12px;
    max-height: calc(100dvh - 126px);
  }

  .be-mobile-panel__shell {
    padding: 20px 16px 18px;
  }

  .be-mobile-panel__body {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 14px;
  }

  .be-mobile-panel__row {
    min-height: 58px;
  }

  .be-mobile-panel__row a {
    font-size: 18px;
    min-height: 48px;
    padding-left: 16px;
  }

  .be-mobile-panel__spotlight-card {
    padding: 8px;
    gap: 10px;
  }

  .be-mobile-panel__spotlight-card strong {
    font-size: 15px;
  }

  .be-mobile-panel__spotlight-card p {
    font-size: 11px;
  }

  .be-mobile-panel__spotlight-card em {
    font-size: 13px;
  }

  .be-hero__content {
    padding-top: 112px;
  }

  .be-hero h1 {
    max-width: 11ch;
    font-size: clamp(36px, 11.2vw, 48px);
  }

  .be-hero__lead {
    font-size: 15px;
  }

  .fm-hero-actions {
    max-width: none;
  }

  .fm-hero-summary--mobile .fm-summary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .be-products__grid {
    grid-auto-columns: 82vw;
  }

  .be-delivery__canvas-grid,
  .be-delivery__canvas-orbits,
  .be-delivery__canvas-atmosphere {
    display: none;
  }

  .be-footer__cta-copy p {
    font-size: 26px;
  }

  .fm-page-hero {
    min-height: clamp(320px, 52svh, 380px);
  }

  .fm-page-hero-copy {
    padding-top: 108px;
  }

  .fm-page-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(34px, 10.8vw, 48px);
  }

  .fm-page-hero--compact-en,
  .fm-page-hero-copy--compact-en {
    min-height: clamp(320px, 72svh, 400px);
  }

  .fm-subnav-links a {
    padding: 0 14px;
    font-size: 13px;
  }

  .fm-breadcrumbs {
    display: none;
  }

  .fm-catalogue-intro__stats {
    grid-template-columns: 1fr;
  }

  .fm-brand-card-head {
    flex-direction: column;
    gap: 14px;
  }

  .fm-brand-logo {
    width: 96px;
    min-width: 96px;
    height: 68px;
  }

  .fm-story-media img {
    min-height: 260px;
  }
}
