:root {
  --fm-red: #0e5a6f;
  --fm-red-dark: #0a4656;
  --fm-red-soft: #2a9d8f;
  --fm-cream: #e9f3f2;
  --fm-cream-strong: #d7e8e6;
  --fm-surface: #f7fbfa;
  --fm-white: #ffffff;
  --fm-ink: #1e2b2f;
  --fm-body: #4e6267;
  --fm-muted: #7c9196;
  --fm-line: rgba(30, 43, 47, 0.12);
  --fm-shadow: 0 18px 50px rgba(16, 45, 52, 0.12);
  --fm-shadow-lg: 0 28px 80px rgba(16, 45, 52, 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(14, 90, 111, 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(246, 239, 231, 0.96) 0%, rgba(246, 239, 231, 0.92) 100%);
  backdrop-filter: blur(18px);
}

.fm-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(54, 35, 25, 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: #fff4f1;
  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(38, 34, 31, 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(14, 90, 111, 0.22);
  background: #fff4f1;
}

.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(38, 34, 31, 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: #fffdfa;
  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(21, 15, 11, 0.62) 0%, rgba(21, 15, 11, 0.28) 48%, rgba(21, 15, 11, 0.24) 100%),
    linear-gradient(180deg, rgba(21, 15, 11, 0.12) 0%, rgba(21, 15, 11, 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, 253, 249, 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(38, 34, 31, 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(30, 43, 47, 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(23, 17, 13, 0.08) 0%, rgba(23, 17, 13, 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(247, 251, 250, 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(14, 90, 111, 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, #fff8f3 0%, #f2dfd0 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(244, 249, 248, 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(14, 90, 111, 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(14, 90, 111, 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(244,249,248,0.92) 100%);
  border: 1px solid rgba(14, 90, 111, 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-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(14, 90, 111, 0.16), rgba(14, 90, 111, 0.4), rgba(14, 90, 111, 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(6, 11, 25, 0.82) 0%, rgba(6, 11, 25, 0.42) 54%, rgba(6, 11, 25, 0.2) 100%),
    radial-gradient(circle at 72% 16%, rgba(42, 157, 143, 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(244,249,248,0.96) 100%);
  border: 1px solid rgba(14, 90, 111, 0.08);
  box-shadow: var(--fm-shadow);
}

.fm-catalogue-intro__copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(14, 90, 111, 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(14, 90, 111, 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(14, 90, 111, 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(233, 243, 242, 0.88) 0%, rgba(247, 251, 250, 0.88) 100%);
  border: 1px solid rgba(14, 90, 111, 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(16, 45, 52, 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(14, 90, 111, 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(16, 45, 52, 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(244,249,248,0.96) 100%);
  border: 1px solid rgba(14, 90, 111, 0.08);
  box-shadow: var(--fm-shadow);
}

.fm-detail-summary span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(14, 90, 111, 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(38, 34, 31, 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: #fffcf8;
  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(244,249,248,0.96) 100%);
  border: 1px solid rgba(14, 90, 111, 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(38, 34, 31, 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(38, 34, 31, 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(38, 34, 31, 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(38, 34, 31, 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(38, 34, 31, 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: #0e5a6f;
  --fmb-header-cream: rgba(233, 243, 242, 0.96);
  --fmb-header-border: rgba(30, 43, 47, 0.08);
  --fmb-header-text: #1e2b2f;
  --fmb-header-muted: #7c9196;
  --fmb-header-shadow: 0 22px 48px rgba(16, 45, 52, 0.14);
  --fmb-header-shadow-lg: 0 26px 60px rgba(16, 45, 52, 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(18, 10, 8, 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: #fff;
}

.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: #fff;
  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: #fff;
}

.fmb-submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 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(244, 67, 54, 0.08);
  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: #fff;
}

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

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

.fmb-button--white:hover,
.fmb-button--white:focus-visible {
  background: #fff2ee;
  color: #d6362b;
}

.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: #fff;
  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(38, 34, 31, 0.12);
  border-radius: 999px;
  background: #fffdfa;
  color: var(--fmb-header-text);
}

.fmb-search__close {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(38, 34, 31, 0.12);
  background: #fff6f4;
  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(16, 12, 11, 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: #fff3f0;
    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(38, 34, 31, 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: #fff3f0;
    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(244, 67, 54, 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: #fff5f1;
    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: #fff;
  }

  .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: #fff8f6;
    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(15, 11, 10, 0.72) 0%, rgba(15, 11, 10, 0.34) 56%, rgba(15, 11, 10, 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: #fff;
  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-subnav {
  padding: 24px 0 0;
  background: #fff;
}

.fm-subnav-panel {
  padding: 18px 22px;
  border-radius: 18px;
  background: #f8f2ea;
  border: 1px solid rgba(47, 41, 38, 0.08);
}

.fm-subnav-links a {
  background: transparent;
  border: 1px solid rgba(47, 41, 38, 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: #f8f2ea;
}

.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: #5f554c;
  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(47, 41, 38, 0.08);
  box-shadow: none;
  background: #fff;
}

.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: #efe5d7;
}

.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(47, 41, 38, 0.08);
  box-shadow: none;
  background: #fff;
}

.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: #fff;
}

.fm-btn.primary {
  background: #fff;
  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: #f8f2ea;
  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;
  }
}

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

@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: #0e5a6f;
  --be-dark: #0f171a;
  --be-cream: #e9f3f2;
  --be-text: #1e2b2f;
  --be-shadow: 0 18px 40px rgba(16, 45, 52, 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(247, 251, 250, 0.96);
  box-shadow: 0 16px 34px rgba(16, 45, 52, 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: #fff;
  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-language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.be-language-switch--inline {
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.be-language-switch__trigger,
.be-language-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.be-language-switch__trigger {
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.be-language-switch__menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 24;
  display: grid;
  gap: 6px;
  min-width: 168px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--be-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.be-language-switch--dropdown:hover .be-language-switch__menu,
.be-language-switch--dropdown:focus-within .be-language-switch__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.be-language-switch--inline .be-language-switch__link {
  min-width: 52px;
  color: #fff;
}

.be-language-switch--inline .be-language-switch__link:hover,
.be-language-switch--inline .be-language-switch__link.is-active {
  background: #fff;
  color: var(--be-red);
}

.be-language-switch__menu .be-language-switch__link {
  justify-content: flex-start;
  min-height: 40px;
  padding: 0 12px;
  color: var(--be-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.be-language-switch__menu .be-language-switch__link:hover,
.be-language-switch__menu .be-language-switch__link.is-active {
  background: rgba(14, 90, 111, 0.08);
  color: var(--be-red);
}

.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: #fff;
}

.be-header__action--solid {
  background: #fff;
  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(14, 90, 111, 0.08);
  color: var(--be-red);
}

.be-header.is-scrolled .be-header__action--outline {
  border-color: rgba(14, 90, 111, 0.22);
  color: var(--be-red);
}

.be-header.is-scrolled .be-language-switch--inline {
  border-color: rgba(14, 90, 111, 0.16);
  background: rgba(14, 90, 111, 0.04);
}

.be-header.is-scrolled .be-language-switch--inline .be-language-switch__link {
  color: var(--be-red);
}

.be-header.is-scrolled .be-language-switch--inline .be-language-switch__link:hover,
.be-header.is-scrolled .be-language-switch--inline .be-language-switch__link.is-active {
  background: var(--be-red);
  color: #fff;
}

.be-header.is-scrolled .be-language-switch__trigger {
  border-color: rgba(14, 90, 111, 0.18);
  background: rgba(14, 90, 111, 0.04);
  color: var(--be-red);
}

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

.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(14, 90, 111, 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, #2a9d8f 0%, #0e5a6f 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 6px 12px rgba(15, 11, 10, 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: #f4e7da;
  box-shadow: 0 24px 52px rgba(15, 11, 10, 0.24);
  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, #e6513d 0%, #d84735 100%);
  box-shadow: 0 12px 20px rgba(15, 11, 10, 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: #fff;
  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(96, 17, 10, 0.12);
}

.be-header__promo-copy p {
  max-width: 15ch;
  margin: 10px 0 0;
  color: rgba(255, 248, 244, 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: #fff;
  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(63, 18, 14, 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(15, 11, 10, 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(63, 18, 14, 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: #0b1325;
}

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

.be-hero__overlay {
  background:
    linear-gradient(110deg, rgba(6, 11, 25, 0.9) 0%, rgba(6, 11, 25, 0.54) 45%, rgba(6, 11, 25, 0.18) 100%),
    radial-gradient(circle at 68% 18%, rgba(42, 157, 143, 0.18), transparent 34%);
}

.be-hero__texture {
  background:
    radial-gradient(circle at 54% 30%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
  opacity: 0.42;
  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: var(--be-red);
  font-size: clamp(60px, 6.8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: none;
  text-wrap: balance;
}

.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.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(244, 250, 249, 0.14) 0%, rgba(244, 250, 249, 0.06) 100%);
  box-shadow: 0 28px 56px rgba(6, 12, 26, 0.26);
  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: #fff;
  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: #fff;
  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(15, 11, 10, 0.28);
}

.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: #fff;
  border-color: #fff;
}

.be-hero__nav {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(11, 19, 37, 0.3);
  color: #fff;
  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: #fff;
  background: rgba(14, 90, 111, 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, #1d7f95 0%, var(--be-red) 100%);
  color: #fff;
  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(15, 30, 36, 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(4, 10, 22, 0.12) 0%, rgba(4, 10, 22, 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: #fff;
}

.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(15, 30, 36, 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(14, 90, 111, 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(14, 90, 111, 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(247, 237, 224, 0) 100%);
}

.be-brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--be-cream) 0%, rgba(247, 237, 224, 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(46, 28, 13, 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(46, 28, 13, 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: #fff;
}

.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: #f8f2ea;
}

.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(15, 11, 10, 0.72) 0%, rgba(15, 11, 10, 0.32) 58%, rgba(15, 11, 10, 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: #fff;
  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: #1a1210;
}

.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(15, 11, 10, 0.84) 0%, rgba(15, 11, 10, 0.62) 46%, rgba(15, 11, 10, 0.3) 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: #fff;
  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: #fff;
  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, #2a9d8f 0%, #0e5a6f 100%);
  color: #fff;
  box-shadow: 0 22px 44px rgba(15, 11, 10, 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: #fff;
}

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

.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: #fff;
}

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

.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: #fff;
  font-size: 28px;
  font-weight: 700;
}

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

.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(47, 41, 38, 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;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--be-shadow);
    transform: translateX(-50%);
  }

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

  .be-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1650;
    display: block;
    background: rgba(14, 12, 12, 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: #fff;
    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;
    border-radius: 999px;
    background: #fff0ec;
  }

  .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(47, 41, 38, 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;
    border-radius: 999px;
    background: #fff0ec;
  }

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

  .be-mobile-panel__group--lang {
    margin-top: 18px;
  }

  .be-mobile-panel__language-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--be-text);
    font-size: 18px;
    font-weight: 800;
  }

  .be-mobile-panel__language-label em {
    font-style: normal;
    color: var(--be-red);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .be-mobile-panel__submenu--language a.active {
    color: var(--be-red);
  }

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

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

  .be-mobile-language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .be-mobile-language-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(14, 90, 111, 0.14);
    border-radius: 999px;
    color: var(--be-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .be-mobile-language-list a.active {
    border-color: var(--be-red);
    background: var(--be-red);
    color: #fff;
  }

  .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: #fff;
  }

  .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, #2a9d8f 0%, #0e5a6f 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 14px 26px rgba(15, 11, 10, 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(15, 11, 10, 0.22);
  }

  .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: #c4d7e2;
  --be-map-hover: #77b8d5;
  --be-map-active: #0e5a6f;
  --be-map-disabled: #7f96a4;
  --be-map-stroke: #f6fbff;
  --be-map-label: #f8fcff;
  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, #eef5f8 0%, #dce8ef 54%, #ccdce6 100%);
}

.be-delivery::before {
  content: "";
  position: absolute;
  inset: auto -10% -42% 38%;
  height: 62%;
  background: radial-gradient(circle, rgba(124, 184, 211, 0.24) 0, rgba(124, 184, 211, 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(176, 215, 232, 0.14) 0, transparent 42%),
    linear-gradient(180deg, #f7fafc 0%, #eef5f9 48%, #e6eff5 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(12, 81, 108, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.be-delivery__copy h2 {
  max-width: 7.5ch;
  color: #102634;
  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(16, 38, 52, 0.65);
  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(16, 38, 52, 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(137, 183, 206, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(16, 61, 82, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(35, 62, 81, 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(137, 183, 206, 0.22);
  box-shadow: 0 8px 20px rgba(35, 62, 81, 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(149, 191, 212, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 28px rgba(35, 62, 81, 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(149, 191, 212, 0.12);
  box-shadow: 0 10px 24px rgba(35, 62, 81, 0.05);
}

.be-delivery__stat strong {
  color: #0f2027;
  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(16, 49, 66, 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(15, 32, 39, 0.85) 0%, rgba(32, 58, 67, 0.8) 50%, rgba(44, 83, 100, 0.85) 100%);
  box-shadow: 0 26px 58px rgba(15, 32, 39, 0.3), 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(15, 32, 39, 0.78) 0%, rgba(32, 58, 67, 0.72) 50%, rgba(44, 83, 100, 0.78) 100%);
  box-shadow: 0 20px 40px rgba(15, 32, 39, 0.2), 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: #8fd1e6;
}

.be-delivery__summary-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(173, 219, 236, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(232, 246, 252, 0.82);
  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(223, 239, 247, 0.82);
  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(173, 219, 236, 0.16);
  color: rgba(207, 227, 236, 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(6, 29, 42, 0.06) 0%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(145deg, #f6fbff 0%, #e2edf4 52%, #cfdee8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 28px 64px rgba(43, 73, 94, 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(14, 165, 233, 0.14) 0, transparent 42%),
    radial-gradient(circle at 78% 24%, rgba(14, 165, 233, 0.1) 0, transparent 38%),
    radial-gradient(circle at 50% 90%, rgba(14, 90, 111, 0.08) 0, transparent 50%),
    linear-gradient(180deg, #111f28 0%, #0c171e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 28px 56px rgba(0, 0, 0, 0.24), 0 8px 24px rgba(0, 0, 0, 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(121, 191, 221, 0.34) 0, rgba(121, 191, 221, 0) 30%),
    radial-gradient(circle at 82% 78%, rgba(14, 90, 111, 0.18) 0, rgba(14, 90, 111, 0) 26%);
}

.be-delivery--global .be-delivery__canvas-atmosphere {
  inset: -5%;
  background:
    radial-gradient(circle at 16% 20%, rgba(14, 165, 233, 0.18) 0, transparent 38%),
    radial-gradient(circle at 78% 18%, rgba(14, 165, 233, 0.14) 0, transparent 36%),
    radial-gradient(circle at 82% 78%, rgba(14, 90, 111, 0.16) 0, transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 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, #000 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%, #000 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(16, 81, 108, 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: #13354a;
  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(14, 165, 233, 0.16);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.4;
  filter: drop-shadow(0 10px 20px rgba(14, 165, 233, 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(14, 165, 233, 0.36);
  stroke: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 14px 28px rgba(14, 165, 233, 0.35));
}

.be-delivery--global .be-delivery__region.is-active .be-delivery__region-shape {
  fill: rgba(14, 165, 233, 0.55);
  stroke: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 14px 28px rgba(14, 165, 233, 0.45));
}

.be-delivery--global .be-delivery__region-label {
  font-size: 4.8px;
  letter-spacing: 0.14em;
  stroke: rgba(8, 29, 42, 0.15);
  fill: rgba(248, 252, 255, 0.92);
}

.be-delivery--global .be-delivery__pin {
  z-index: 5;
}

.be-delivery--global .be-delivery__pin::before {
  background: radial-gradient(circle, rgba(111, 198, 227, 0.46) 0, rgba(111, 198, 227, 0) 70%);
}

.be-delivery--global .be-delivery__pin::after {
  background: linear-gradient(180deg, rgba(136, 213, 238, 0.96) 0%, rgba(26, 115, 139, 0.96) 100%);
  box-shadow: 0 10px 20px rgba(11, 67, 84, 0.35);
}

.be-delivery__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 24px 40px rgba(28, 58, 76, 0.16));
}

.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(43, 76, 96, 0.12));
}

.be-delivery__region-hit {
  fill: rgba(0, 0, 0, 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(246, 251, 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(29, 84, 112, 0.3));
}

.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(14, 90, 111, 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(8, 29, 42, 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(87, 184, 214, 0.32) 0, rgba(87, 184, 214, 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(126, 197, 226, 0.76) 0%, rgba(14, 90, 111, 0.86) 100%);
  box-shadow: 0 10px 24px rgba(14, 90, 111, 0.24);
}

.be-delivery__pin-core {
  inset: 5px;
  background: #f8fcff;
  box-shadow: 0 0 0 1px rgba(14, 90, 111, 0.12);
}

.be-delivery__pin.is-active::before {
  opacity: 1;
}

.be-delivery__pin.is-active::after {
  box-shadow: 0 12px 26px rgba(14, 90, 111, 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(14, 90, 111, 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(173, 219, 236, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 31, 45, 0.96) 0%, rgba(14, 53, 74, 0.92) 100%);
  box-shadow: 0 26px 48px rgba(12, 31, 43, 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(239, 248, 252, 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: #f7fbff;
  font-size: 22px;
  line-height: 1.06;
}

.be-delivery__popup-copy p {
  margin: 0;
  color: rgba(220, 238, 246, 0.82);
  font-size: 14px;
  line-height: 1.64;
}

.be-delivery__panel p {
  margin: 0;
  color: rgba(60, 42, 30, 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, #54b8da 0%, #0e5a6f 100%);
  color: #fff;
  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: #16364a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(35, 62, 81, 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, 251, 246, 0.9);
  box-shadow: 0 18px 36px rgba(37, 26, 19, 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(60, 42, 30, 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, #f3e4ce 0%, #e9d4b6 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(157, 41, 32, 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;
  }
}

/* lbpcmsfmpen 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, #fbfdff 0%, #eff5f8 46%, #e7eef3 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: #112f3f;
  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(17, 47, 63, 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(26, 84, 110, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 255, 0.92) 100%);
  box-shadow: 0 16px 34px rgba(31, 60, 79, 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(29, 107, 134, 0.9) 0%, rgba(114, 192, 223, 0.45) 100%);
}

.be-delivery--global .be-delivery__summary-kicker {
  color: #1d6b86;
}

.be-delivery--global .be-delivery__summary-status {
  min-height: 30px;
  padding: 0 14px;
  border-color: rgba(29, 107, 134, 0.12);
  background: rgba(29, 107, 134, 0.06);
  color: rgba(29, 107, 134, 0.74);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.be-delivery--global .be-delivery__summary strong {
  color: #102f3e;
  font-size: 24px;
  line-height: 0.95;
}

.be-delivery--global .be-delivery__summary p {
  color: rgba(24, 58, 76, 0.72);
  font-size: 14px;
  line-height: 1.58;
}

.be-delivery--global .be-delivery__summary-foot {
  padding-top: 10px;
  border-top: 1px solid rgba(26, 84, 110, 0.08);
  color: rgba(35, 74, 96, 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(17, 64, 87, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 22%, rgba(124, 191, 220, 0.16) 0, rgba(124, 191, 220, 0) 33%),
    radial-gradient(circle at 79% 18%, rgba(124, 191, 220, 0.12) 0, rgba(124, 191, 220, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 52%, #eef4f8 100%);
  box-shadow: 0 24px 48px rgba(31, 60, 79, 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(124, 191, 220, 0.16) 0, transparent 34%),
    radial-gradient(circle at 79% 18%, rgba(124, 191, 220, 0.13) 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(20, 65, 88, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 65, 88, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.42;
  mask-image: radial-gradient(circle at center, #000 58%, transparent 94%);
}

.be-delivery--global .be-delivery__canvas-orbit {
  border-color: rgba(32, 96, 124, 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(197, 220, 231, 0.92);
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 1.6;
  opacity: 1;
  filter: drop-shadow(0 10px 18px rgba(124, 174, 197, 0.16));
}

.be-delivery--global .be-delivery__region.is-empty .be-delivery__region-shape {
  fill: rgba(205, 221, 229, 0.82);
  stroke: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.be-delivery--global .be-delivery__region.is-hover .be-delivery__region-shape {
  fill: rgba(109, 188, 220, 0.72);
  stroke: rgba(255, 255, 255, 1);
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 14px 24px rgba(113, 184, 213, 0.24));
}

.be-delivery--global .be-delivery__region.is-active .be-delivery__region-shape {
  fill: #2a89a8;
  stroke: rgba(255, 255, 255, 1);
  transform: translateY(-1px) scale(1.012);
  filter: drop-shadow(0 16px 26px rgba(42, 137, 168, 0.24));
}

.be-delivery--global .be-delivery__region-label {
  fill: rgba(27, 63, 82, 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(92, 178, 209, 0.36) 0, rgba(92, 178, 209, 0) 72%);
}

.be-delivery--global .be-delivery__pin::after {
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.98);
  background: linear-gradient(180deg, #7cc7e4 0%, #2a89a8 100%);
  box-shadow: 0 10px 18px rgba(42, 137, 168, 0.16);
}

.be-delivery--global .be-delivery__pin-core {
  inset: 4px;
  background: #ffffff;
}

.be-delivery--global .be-delivery__popup {
  border: 1px solid rgba(26, 84, 110, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 42px rgba(31, 60, 79, 0.14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.be-delivery--global .be-delivery__popup-close {
  background: rgba(17, 47, 63, 0.08);
  color: rgba(17, 47, 63, 0.7);
}

.be-delivery--global .be-delivery__popup-copy strong {
  color: #102f3e;
}

.be-delivery--global .be-delivery__popup-copy p {
  color: rgba(24, 58, 76, 0.72);
}

.be-delivery--global .be-delivery__popup-link {
  background: linear-gradient(180deg, #7cc7e4 0%, #2a89a8 100%);
  box-shadow: 0 10px 18px rgba(42, 137, 168, 0.14);
}

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

/* lbpcmsfmpen 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, #fbfdff 0%, #eff5f8 46%, #e7eef3 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(17, 47, 63, 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(26, 84, 110, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 255, 0.92) 100%);
  box-shadow: 0 16px 34px rgba(31, 60, 79, 0.06);
}

.be-delivery--global .be-delivery__summary::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(228, 102, 82, 0.95) 0%, rgba(228, 102, 82, 0.32) 100%);
}

.be-delivery--global .be-delivery__summary-kicker {
  color: #1c6783;
  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(17, 64, 87, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 24%, rgba(232, 214, 179, 0.28) 0, rgba(232, 214, 179, 0) 28%),
    linear-gradient(180deg, #fffdf9 0%, #f9f4eb 100%);
  box-shadow: 0 20px 36px rgba(133, 118, 90, 0.08);
}

.be-delivery--global .be-delivery__canvas-atmosphere {
  background:
    radial-gradient(circle at 18% 22%, rgba(232, 214, 179, 0.26) 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(111, 91, 57, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 91, 57, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.38;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0, rgba(0, 0, 0, 0.14) 100%);
}

.be-delivery--global .be-delivery__canvas-orbit {
  border-color: rgba(173, 154, 122, 0.16);
}

.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: #eadfc8;
  filter: none;
}

.be-delivery--global .be-delivery__region.is-empty .be-delivery__region-shape {
  fill: rgba(233, 223, 200, 0.66);
}

.be-delivery--global .be-delivery__region.is-hover .be-delivery__region-shape {
  fill: #e0d0b2;
  filter: drop-shadow(0 10px 18px rgba(193, 162, 111, 0.12));
}

.be-delivery--global .be-delivery__region.is-active .be-delivery__region-shape {
  fill: #df8a6c;
  filter: drop-shadow(0 12px 20px rgba(223, 138, 108, 0.16));
}

.be-delivery--global .be-delivery__region-label {
  fill: rgba(41, 63, 76, 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(223, 138, 108, 0.3) 0, rgba(223, 138, 108, 0) 72%);
}

.be-delivery--global .be-delivery__pin::after {
  background: linear-gradient(180deg, #efab91 0%, #df8a6c 100%);
  box-shadow: 0 10px 18px rgba(223, 138, 108, 0.16);
}

.be-delivery--global .be-delivery__popup-link {
  background: linear-gradient(180deg, #efab91 0%, #df8a6c 100%);
  box-shadow: 0 10px 18px rgba(223, 138, 108, 0.14);
}

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