:root {
  --navy: #1a2b4a;
  --navy-deep: #142238;
  --navy-mid: #243a5c;
  --gold: #c4a35a;
  --gold-hover: #b8944a;
  --gold-soft: #d4b872;
  --text: #2c3e50;
  --text-muted: #6b7c8f;
  --text-light: #8a9aab;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --border: #e2e6ec;
  --wa: #25d366;
  --wechat: #09b83e;
  --header-h: 78px;
  --container: 1180px;
  --font: "Montserrat", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.synergi-home .container,
.synergi-home .features .container,
.synergi-home .products .container,
.synergi-home .approach-wrap .container,
.synergi-home .cta-bar .container,
.synergi-home .footer > .container,
.footer > .container,
.footer > .footer__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 1px 0 var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  max-width: min(360px, 42vw);
}

.logo__img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo__mark {
  width: 48px;
  height: 48px;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo__mark svg { width: 28px; height: 28px; }

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}

.logo__tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__item {
  position: relative;
}

.nav__link {
  position: relative;
  padding: 28px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav__link:hover,
.nav__item:hover > .nav__link,
.nav__item.is-open > .nav__link {
  color: var(--gold);
}

.nav__link.is-active {
  color: var(--gold);
}

.nav__link.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--gold);
}

/* Account clone for mobile drawer only (≤900px) */
.nav__member-mobile {
  display: none;
}

.nav__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.nav__chevron--side {
  transform: rotate(-45deg);
  margin-left: auto;
}

.nav__item.is-open > .nav__link .nav__chevron:not(.nav__chevron--side) {
  transform: rotate(225deg) translateY(-1px);
}

/* Level 2 dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(26, 43, 74, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 120;
}

.nav__item:hover > .nav__dropdown,
.nav__item.is-open > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  position: relative;
}

.nav__dropdown-link,
.nav__submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav__dropdown-link:hover,
.nav__dropdown-item.is-open > .nav__dropdown-link,
.nav__submenu a:hover {
  background: #f5f7fa;
  color: var(--gold);
}

/* Level 3 submenu */
.nav__submenu {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 220px;
  margin: 0 0 0 1px;
  padding: 8px 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(26, 43, 74, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 130;
}

.nav__dropdown-item:hover > .nav__submenu,
.nav__dropdown-item.is-open > .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header__utils {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header__extra,
ul.xy-header-extra-nav.header__extra,
.synergi-home ul.xy-header-extra-nav {
  display: flex;
  align-items: center;
  gap: 14px !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Space language ↔ member ↔ search */
.synergi-home .header__utils > .header__extra {
  margin-right: 0;
}

.synergi-home .header__extra > li.xy-header-lang,
.synergi-home .header__extra > li.xy-member-nav,
.synergi-home .header__extra > li.xy-basket-nav,
.synergi-home .header__extra > li.xy-wishlist-nav {
  margin: 0 !important;
  padding: 0 !important;
}

.synergi-home .header__extra > li.xy-member-nav .xy-member-nav-login,
.synergi-home .header__extra > li.xy-member-nav .xy-member-nav-trigger {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--navy);
  transition: color 0.2s;
}

.synergi-home .header__extra > li.xy-member-nav .xy-member-nav-login:hover,
.synergi-home .header__extra > li.xy-member-nav .xy-member-nav-trigger:hover {
  color: var(--gold);
}

/* Language switcher — compact navy/gold (overrides GTranslate defaults) */
.synergi-home .xy-header-lang {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.synergi-home .xy-header-lang-switcher {
  line-height: 1 !important;
  overflow: visible !important;
  position: relative;
  z-index: 130;
}

.synergi-home .xy-header-lang-switcher #gt_float_wrapper {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  height: auto !important;
  z-index: 130 !important;
  display: block !important;
  overflow: visible !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher {
  position: relative !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  font-family: var(--font) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  color: var(--navy) !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected {
  background: transparent !important;
  float: none !important;
  cursor: pointer !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected .gt-current-lang {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  height: 36px !important;
  padding: 0 12px 0 10px !important;
  color: var(--navy) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.2s, color 0.2s, background 0.2s !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected .gt-current-lang:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: #fbf8f1 !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher img {
  width: 18px !important;
  height: 12px !important;
  max-width: 18px !important;
  max-height: 12px !important;
  margin: 0 !important;
  border-radius: 1px !important;
  vertical-align: middle !important;
  object-fit: cover !important;
  object-position: center !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 0 1px rgba(26, 43, 74, 0.08);
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
  position: static !important;
  top: auto !important;
  font-weight: 600 !important;
  min-width: 1.4em;
  text-align: center;
  letter-spacing: 0.06em;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
  display: inline-block !important;
  height: 10px !important;
  width: 10px !important;
  margin-left: 2px !important;
  vertical-align: middle !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 8px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' fill='%231a2b4a'/></svg>") !important;
  opacity: 0.7;
  transition: transform 0.2s, opacity 0.2s;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected .gt-current-lang:hover span.gt_float_switcher-arrow {
  opacity: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' fill='%23c4a35a'/></svg>") !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow.gt_arrow_rotate {
  transform: rotate(180deg);
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt_options {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  float: none !important;
  width: 320px !important;
  max-width: min(320px, calc(100vw - 24px)) !important;
  max-height: min(360px, 65vh) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: 10px 8px !important;
  margin: 0 !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 28px rgba(26, 43, 74, 0.12) !important;
  z-index: 200 !important;
  white-space: normal !important;
  transform: none !important;
  opacity: 1 !important;
  display: none !important;
  box-sizing: border-box !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-rows: min-content !important;
  align-content: start !important;
  gap: 2px 4px !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt_options.gt-open {
  display: grid !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt_options a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 10px !important;
  color: var(--text) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  text-transform: none !important;
  transition: background 0.15s, color 0.15s !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt_options a:hover {
  background: #f5f7fa !important;
  color: var(--gold) !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt_options a.gt-current {
  display: none !important;
}

.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt_options::-webkit-scrollbar {
  width: 4px;
}
.synergi-home .xy-header-lang-switcher .gt_float_switcher .gt_options::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.util-search {
  width: 36px;
  height: 36px;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background 0.2s;
}

.util-search:hover { background: var(--navy-mid); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: 0.25s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: clamp(420px, 62vh, 580px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  z-index: 0;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-deep);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 34, 56, 0.82) 0%, rgba(20, 34, 56, 0.55) 42%, rgba(20, 34, 56, 0.2) 70%, transparent 100%),
    linear-gradient(180deg, rgba(20, 34, 56, 0.25) 0%, transparent 40%, rgba(20, 34, 56, 0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  max-width: 640px;
  margin-left: max(24px, calc((100% - var(--container)) / 2));
  padding: 64px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.hero__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

.hero__dot:hover { background: rgba(255, 255, 255, 0.45); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

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

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-mid); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-hover); }

.btn__arrow {
  width: 14px;
  height: 10px;
  position: relative;
}

.btn__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.btn__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: background 0.2s, border-color 0.2s;
  background: rgba(0, 0, 0, 0.15);
}

.hero__nav:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: var(--white);
}

.hero__nav--prev { left: 16px; }
.hero__nav--next { right: 16px; }

.hero__nav svg { width: 14px; height: 14px; }

/* ========== FEATURES STRIP ========== */
.features {
  background: #0a1d37;
  color: var(--white);
  padding: 42px 0;
}

.features .container {
  width: min(100% - 40px, 1180px);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 28px;
  position: relative;
}

.feature:first-child { padding-left: 8px; }
.feature:last-child { padding-right: 8px; }

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: #c5a059;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature__body {
  min-width: 0;
}

.feature__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
  white-space: nowrap;
}

.feature__text {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

/* ========== PRODUCTS ========== */
.products {
  padding: 72px 0 80px;
  background: var(--white);
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head__title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head__desc {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid #e5e8ed;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
  box-shadow: 0 12px 32px rgba(26, 43, 74, 0.1);
  transform: translateY(-3px);
}

.product-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--off-white);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.product-card__body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.product-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
}

.product-card__icon svg {
  width: 20px;
  height: 20px;
}

.product-card__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.35;
  padding-top: 2px;
}

.product-card__text {
  font-size: 13px;
  color: #666666;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.product-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #c5a059;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}

.product-card__link:hover {
  color: var(--gold-hover);
  gap: 8px;
}

/* ========== APPROACH + MAP ========== */
.approach-wrap {
  background: #f3f4f6;
  padding: 56px 0 64px;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.block-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 2.5px solid #e08a3c;
  display: inline-block;
}

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

.value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 14px;
  position: relative;
}

.value:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: #d5dae2;
}

.value__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.value__icon svg { width: 36px; height: 36px; }

.value__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  white-space: nowrap;
}

.value__text {
  font-size: 12px;
  color: #7a8494;
  line-height: 1.45;
}

.map-panel {
  position: relative;
  background: transparent;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.map-panel img.map {
  width: 100%;
  height: auto;
  max-height: 220px;
  display: block;
}

.map-caption {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.35;
  max-width: 110px;
}

.map-caption--from {
  left: 0;
  top: 42%;
  text-align: left;
}

.map-caption--to {
  right: 0;
  top: 38%;
  text-align: right;
  max-width: 90px;
}

/* ========== FOOTER CTA ========== */
.cta-bar {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
}

.cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-bar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-bar__icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cta-bar__icon svg { width: 22px; height: 22px; }

.cta-bar__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cta-bar__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* PC / mobile flash (type flash vs app) — same markup, CSS swap */
.sy-hero--app {
  display: none;
}
@media (max-width: 900px) {
  .sy-hero--pc {
    display: none;
  }
  .sy-hero--app {
    display: block;
  }
  .sy-hero--app.is-empty {
    display: none !important;
  }
  .sy-hero--pc.is-fallback {
    display: block !important;
  }
}

/* ========== FLOATING SIDEBAR ========== */
/* Online: system .side_contact — see xy_online.css */

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 18px 0;
  font-size: 12px;
  text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav__link { padding: 28px 10px; font-size: 11px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__nav--next { right: 56px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  /* Mobile: header always pinned while scrolling */
  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
  }

  body {
    padding-top: var(--header-h);
  }

  body:not(.synergi-home) > .container {
    overflow: visible;
  }

  /* Keep utils lean; Account link is injected into #mainNav (.nav__member-mobile) */
  .synergi-home .header__extra > li.xy-member-nav,
  .header .xy-member-nav {
    display: none !important;
  }

  .synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected .gt-current-lang {
    height: 34px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
  }

  .synergi-home .xy-header-lang-switcher .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    max-width: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .synergi-home .xy-header-lang-switcher .gt_float_switcher .gt_options {
    width: min(300px, calc(100vw - 20px)) !important;
    right: -8px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/legacy */
  }

  .nav::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .nav.is-open { display: flex; }

  .nav__link {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    justify-content: space-between;
  }

  .nav__link.is-active::before {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
  }

  /* Member entry moved from crowded utils into drawer */
  .nav__member-mobile {
    display: flex;
    margin-top: 4px;
    border-top: 1px solid var(--border);
    font-weight: 600;
  }

  .nav__item {
    border-bottom: 1px solid var(--border);
  }

  .nav__item > .nav__link {
    border-bottom: none;
  }

  .nav__dropdown,
  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: #f7f8fa;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav__item.is-open > .nav__dropdown {
    max-height: 800px;
    padding: 4px 0 8px;
  }

  .nav__dropdown-item.is-open > .nav__submenu {
    max-height: 500px;
    padding: 2px 0 6px;
  }

  .nav__dropdown-link {
    padding: 12px 24px 12px 36px;
    white-space: normal;
  }

  .nav__submenu a {
    padding: 10px 24px 10px 52px;
    white-space: normal;
    font-size: 12px;
    color: var(--text-muted);
  }

  .nav__chevron--side {
    transform: rotate(45deg) translateY(-2px);
  }

  .nav__dropdown-item.is-open > .nav__dropdown-link .nav__chevron--side {
    transform: rotate(225deg) translateY(-1px);
  }

  .features__grid { grid-template-columns: 1fr; gap: 20px; }

  .feature {
    padding: 4px 0;
  }

  .feature:first-child,
  .feature:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .feature:not(:last-child)::after {
    display: none;
  }

  .feature:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .feature__title { white-space: normal; }

  .approach-grid { grid-template-columns: 1fr; gap: 40px; }

  .values { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }

  .value:nth-child(2n)::after { display: none; }

  .value:nth-child(-n+2) {
    padding-bottom: 24px;
  }

  .hero__content {
    margin-left: auto;
    margin-right: auto;
    width: min(100% - 48px, var(--container));
  }

  .hero__nav {
    width: 36px;
    height: 36px;
  }

  .hero__nav--prev { left: 8px; }
  .hero__nav--next { right: 8px; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }

  .logo__tag { display: none; }
  .logo__name { font-size: 13px; }
  .logo__mark { width: 40px; height: 40px; }

  .hero {
    min-height: 460px;
  }

  .hero__content { padding: 48px 0; }

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

  .btn { justify-content: center; }

  .products { padding: 48px 0 56px; }

  .products__grid { grid-template-columns: 1fr; gap: 20px; }

  .values { grid-template-columns: 1fr; gap: 20px; }

  .value:not(:last-child)::after { display: none; }

  .value:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #d5dae2;
  }

  .value__title { white-space: normal; }

  .cta-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-bar__left { align-items: flex-start; }
}

@media (max-width: 400px) {
  .synergi-home .container,
  .synergi-home .features .container,
  .synergi-home .products .container,
  .synergi-home .approach-wrap .container,
  .synergi-home .cta-bar .container,
  .synergi-home .footer > .container,
  .footer > .container,
  .footer > .footer__inner,
  .hero__content { width: min(100% - 32px, var(--container)); }
  .header__inner { width: min(100% - 24px, 1280px); }
}

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