/*
Theme Name: FBC Landing
Theme URI: https://github.com/vladimirgs/fbc-md-host-ru
Author: Vladimir
Description: Custom WordPress theme for the FBC one-page site.
Version: 0.1.0
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 8.3
Text Domain: fbc-landing
*/

:root {
  --fbc-page-bg: #ffffff;
  --fbc-light-bg: #ffffff;
  --fbc-bg: #111318;
  --fbc-surface: #1a1d22;
  --fbc-surface-light: #f2f4f6;
  --fbc-text: #2b2e34;
  --fbc-text-muted: #6b7280;
  --fbc-text-inverse: #d8dbe0;
  --fbc-accent: #ff6a00;
  --fbc-border: rgba(255, 255, 255, 0.12);
  --fbc-max-width: 1440px;
  --fbc-content-width: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--fbc-text);
  background: var(--fbc-page-bg);
  line-height: 1.4;
  overflow-x: hidden;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

body.fbc-theme-alt {
  --fbc-page-bg: #e7eaee;
  --fbc-light-bg: #e2e6eb;
  --fbc-bg: #d9dfe5;
  --fbc-surface: #edf1f5;
  --fbc-surface-light: #f3f5f7;
  --fbc-text: #212a34;
  --fbc-text-muted: #5f6a77;
  --fbc-text-inverse: #54606d;
  --fbc-border: rgba(25, 33, 42, 0.12);
}

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

img {
  max-width: 100%;
  height: auto;
}

.fbc-site-shell {
  min-height: 100vh;
}

body.fbc-menu-open {
  overflow: hidden;
}

.fbc-js .fbc-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--fbc-reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--fbc-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.fbc-js .fbc-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fbc-js .fbc-hero__content .fbc-reveal,
.fbc-js .fbc-site-header .fbc-reveal {
  transform: translate3d(0, 0px, 0);
}

.fbc-js .fbc-product-card.fbc-reveal,
.fbc-js .fbc-application-card.fbc-reveal,
.fbc-js .fbc-target-group-card.fbc-reveal,
.fbc-js .fbc-feature-card.fbc-reveal,
.fbc-js .fbc-blog-card.fbc-reveal {
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.fbc-js .fbc-product-card.fbc-reveal.is-visible,
.fbc-js .fbc-application-card.fbc-reveal.is-visible,
.fbc-js .fbc-target-group-card.fbc-reveal.is-visible,
.fbc-js .fbc-feature-card.fbc-reveal.is-visible,
.fbc-js .fbc-blog-card.fbc-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.fbc-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--fbc-bg);
}

.fbc-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fbc-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: #fff;
}

.fbc-site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
  pointer-events: none;
}

.fbc-site-header--overlay::after {
  background: rgba(10, 12, 16, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.fbc-site-header--overlay.is-scrolled::after,
.fbc-site-header--overlay.is-menu-open::after {
  opacity: 1;
}

.fbc-site-header--solid {
  color: var(--fbc-text);
}

.fbc-site-header--solid::after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(18px);
}

.fbc-site-header__inner,
.fbc-section__inner,
.fbc-footer__inner,
.fbc-hero__content {
  width: min(calc(100% - 48px), var(--fbc-content-width));
  margin: 0 auto;
}

.fbc-site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 116px;
  padding: 18px 0;
}

.fbc-site-header__panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 18px;
  margin-left: auto;
}

.fbc-site-header__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 16px;
}

.fbc-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.fbc-logo__image {
  display: block;
  width: auto;
  height: 112px;
  max-width: 192px;
  max-height: 112px;
  object-fit: contain;
}

.fbc-site-header.is-scrolled .fbc-site-header__inner {
  min-height: 84px;
  padding: 12px 0;
}

.fbc-site-header.is-scrolled .fbc-logo {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.fbc-site-header--overlay.is-scrolled .fbc-logo__image {
  height: 78px;
  max-width: 134px;
  max-height: 78px;
  filter: brightness(0) invert(1);
}

.fbc-nav {
  font-size: 13px;
}

.fbc-nav__menu,
.fbc-footer__menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fbc-nav__menu li,
.fbc-footer__menu li {
  position: relative;
  margin: 0;
  list-style: none;
}

.fbc-nav__item-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  white-space: nowrap;
}

.fbc-nav a,
.fbc-nav__menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1;
  transition: color 180ms ease;
}

.fbc-site-header--solid .fbc-nav a,
.fbc-site-header--solid .fbc-nav__menu a {
  color: rgba(43, 46, 52, 0.72);
}

.fbc-nav a:hover,
.fbc-nav a:focus-visible,
.fbc-nav__menu a:hover,
.fbc-nav__menu a:focus-visible {
  color: #fff;
}

.fbc-site-header--solid .fbc-nav a:hover,
.fbc-site-header--solid .fbc-nav a:focus-visible,
.fbc-site-header--solid .fbc-nav__menu a:hover,
.fbc-site-header--solid .fbc-nav__menu a:focus-visible {
  color: var(--fbc-text);
}

.fbc-nav__submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.fbc-nav__submenu-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.fbc-nav .menu-item.is-open > .fbc-nav__item-wrap .fbc-nav__submenu-toggle::before,
.fbc-nav .menu-item:hover > .fbc-nav__item-wrap .fbc-nav__submenu-toggle::before,
.fbc-nav .menu-item:focus-within > .fbc-nav__item-wrap .fbc-nav__submenu-toggle::before {
  transform: rotate(225deg) translateY(-1px);
}

.fbc-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: grid;
  gap: 6px;
  min-width: 220px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: rgba(10, 12, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.fbc-site-header--solid .fbc-nav .sub-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(17, 19, 24, 0.08);
}

.fbc-nav .menu-item:hover > .sub-menu,
.fbc-nav .menu-item:focus-within > .sub-menu,
.fbc-nav .menu-item.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fbc-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.fbc-nav .sub-menu a:hover,
.fbc-nav .sub-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.fbc-site-header--solid .fbc-nav .sub-menu a:hover,
.fbc-site-header--solid .fbc-nav .sub-menu a:focus-visible {
  background: rgba(17, 19, 24, 0.06);
}

.fbc-language-dropdown {
  position: relative;
}

.fbc-language-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 76px;
  min-height: 40px;
  padding: 8px 14px;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.fbc-site-header--solid .fbc-language-dropdown__toggle {
  border-color: rgba(17, 19, 24, 0.12);
}

.fbc-language-dropdown__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.fbc-language-dropdown.is-open .fbc-language-dropdown__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.fbc-language-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 6px;
  min-width: 188px;
  padding: 12px;
  background: rgba(10, 12, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.fbc-site-header--solid .fbc-language-dropdown__menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(17, 19, 24, 0.08);
}

.fbc-language-dropdown.is-open .fbc-language-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fbc-language-dropdown__link {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.fbc-site-header--solid .fbc-language-dropdown__link {
  color: rgba(43, 46, 52, 0.82);
}

.fbc-language-dropdown__link:hover,
.fbc-language-dropdown__link:focus-visible,
.fbc-language-dropdown__link.is-current {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.fbc-site-header--solid .fbc-language-dropdown__link:hover,
.fbc-site-header--solid .fbc-language-dropdown__link:focus-visible,
.fbc-site-header--solid .fbc-language-dropdown__link.is-current {
  background: rgba(17, 19, 24, 0.06);
  color: var(--fbc-text);
}

.fbc-language-dropdown__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
}

.fbc-site-header--solid .fbc-language-dropdown__code {
  border-color: rgba(17, 19, 24, 0.1);
}

.fbc-language-dropdown__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.fbc-menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.fbc-menu-toggle__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fbc-menu-toggle__icon {
  display: inline-grid;
  gap: 5px;
}

.fbc-menu-toggle__icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.fbc-site-header.is-menu-open .fbc-menu-toggle__icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fbc-site-header.is-menu-open .fbc-menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.fbc-site-header.is-menu-open .fbc-menu-toggle__icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fbc-header__cta,
.fbc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 40px;
  padding: 8px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.fbc-header__cta,
.fbc-button--primary {
  background: var(--fbc-accent);
  color: #fff;
}

.fbc-header__cta:hover,
.fbc-button--primary:hover,
.fbc-button--secondary:hover {
  transform: translateY(-1px);
}

.fbc-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.fbc-button--ghost {
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}

.fbc-hero__content {
  position: relative;
  z-index: 2;
  padding: 212px 0 96px;
}

.fbc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--fbc-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.fbc-eyebrow__bar {
  width: 48px;
  height: 2px;
  background: var(--fbc-accent);
}

.fbc-hero h1,
.fbc-section h2,
.fbc-page-content h1,
.fbc-page-content h2,
.fbc-page-content h3 {
  font-family: "Montserrat", Arial, sans-serif;
}

.fbc-hero h1 {
  max-width: 920px;
  margin: 28px 0 0;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.fbc-hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--fbc-text-inverse);
  font-size: 18px;
  line-height: 1.65;
}

.fbc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.fbc-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  margin-top: 64px;
  color: var(--fbc-text-inverse);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fbc-section {
  padding: 104px 0;
  scroll-margin-top: 112px;
}

.fbc-section--light {
  background: var(--fbc-light-bg);
  color: var(--fbc-text);
}

.fbc-section--dark {
  background: var(--fbc-bg);
  color: #fff;
}

.fbc-section h2 {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.fbc-section p {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: inherit;
}

.fbc-section--light p {
  color: var(--fbc-text-muted);
}

.fbc-section--dark p {
  color: var(--fbc-text-inverse);
}

.fbc-about,
.fbc-logistics,
.fbc-contact,
.fbc-section__header,
.fbc-section__footnote {
  display: flex;
  gap: 40px;
}

.fbc-about,
.fbc-logistics,
.fbc-contact {
  align-items: stretch;
  justify-content: space-between;

}

.fbc-about__copy,
.fbc-logistics__copy,
.fbc-contact__copy {
  flex: 1 1 0;
  min-width: 0;
}

.fbc-about__media,
.fbc-logistics__media {
  flex: 0 0 min(44%, 560px);
}

.fbc-about__media img,
.fbc-logistics__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fbc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--fbc-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fbc-text-link--inverse {
  color: #fff;
}

.fbc-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.fbc-feature-card {
  position: relative;
  padding: 32px;
  border-right: 1px solid #e5e7eb;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.fbc-feature-card::after,
.fbc-product-card::after,
.fbc-application-card::after,
.fbc-target-group-card::after,
.fbc-blog-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fbc-accent) 0%, rgba(255, 106, 0, 0.18) 100%);
  transform: scaleX(0.18);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.fbc-feature-card:last-child {
  border-right: 0;
}

.fbc-feature-card:hover,
.fbc-feature-card:focus-within {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 26px 44px rgba(17, 19, 24, 0.1);
}

.fbc-feature-card:hover::after,
.fbc-feature-card:focus-within::after,
.fbc-product-card:hover::after,
.fbc-product-card:focus-within::after,
.fbc-application-card:hover::after,
.fbc-application-card:focus-within::after,
.fbc-target-group-card:hover::after,
.fbc-target-group-card:focus-within::after,
.fbc-blog-card:hover::after,
.fbc-blog-card:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.fbc-feature-card__num {
  color: var(--fbc-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.fbc-feature-card h3,
.fbc-product-card h3,
.fbc-application-card h3 {
  margin: 18px 0 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.fbc-feature-card p,
.fbc-product-card p,
.fbc-application-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
}

.fbc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
}

.fbc-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fbc-chip--active {
  background: var(--fbc-accent);
  border-color: var(--fbc-accent);
  color: #fff;
}

.fbc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.fbc-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--fbc-surface);
  border: 1px solid var(--fbc-border);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.fbc-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.fbc-product-card:hover,
.fbc-product-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.24);
}

.fbc-product-card:hover img,
.fbc-product-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.fbc-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px 24px 28px;
}

.fbc-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fbc-product-card h3 {
  color: #fff;
}

.fbc-product-card p {
  color: var(--fbc-text-inverse);
}

.fbc-section__footnote {
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.fbc-section__header {
  align-items: end;
  justify-content: space-between;
}

.fbc-section__header-copy {
  max-width: 420px;
  margin: 0 !important;
}

.fbc-section--applications h2 {
  max-width: 620px;
  text-transform: uppercase;
}

.fbc-section--applications .fbc-section__header-copy {
  max-width: 452px;
  color: #454b55;
}

.fbc-applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.fbc-target-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.fbc-target-group-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--fbc-border);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.fbc-target-group-card:hover,
.fbc-target-group-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0.025) 100%);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.18);
}

.fbc-target-group-card__eyebrow {
  margin: 0;
  color: var(--fbc-accent) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fbc-target-group-card__bullets {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.fbc-target-group-card__bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--fbc-text-inverse);
  font-size: 14px;
  line-height: 1.6;
}

.fbc-target-group-card__bullets li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--fbc-accent);
}

.fbc-application-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.fbc-application-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.fbc-application-card:hover,
.fbc-application-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(17, 19, 24, 0.14);
  box-shadow: 0 26px 44px rgba(17, 19, 24, 0.12);
}

.fbc-application-card:hover img,
.fbc-application-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.fbc-application-card__body {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 22px 26px;
}

.fbc-application-card p {
  color: var(--fbc-text-muted);
}

.fbc-application-card__copy {
  display: grid;
  gap: 10px;
}

.fbc-application-card__copy h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.fbc-application-card__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.fbc-application-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding-right: 18px;
  color: #d77741;
  border-right: 1px solid #ece6df;
}

.fbc-application-card__icon svg {
  width: 36px;
  height: 36px;
}

.fbc-application-card__image-placeholder {
  aspect-ratio: 5 / 3;
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.08), rgba(17, 19, 24, 0.02)),
    #eef1f4;
}

.fbc-logistics-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.fbc-logistics-stat {
  padding: 24px 24px 24px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.fbc-logistics-stat:first-child {
  border-left: 0;
}

.fbc-logistics-stat strong {
  display: block;
  color: var(--fbc-accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.fbc-logistics-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fbc-logistics__cta-wrap {
  margin-top: 48px;
}

.fbc-logistics__cta {
  min-width: 220px;
}

.fbc-logistics__cta.is-disabled {
  opacity: 0.46;
  cursor: not-allowed;
  pointer-events: none;
}

.fbc-section--certificates {
  overflow: hidden;
}

.fbc-certificates__hint {
  display: none;
}

.fbc-certificates__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.fbc-certificate-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 40px rgba(17, 19, 24, 0.08);
}

.fbc-certificate-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
}

.fbc-certificate-card:hover,
.fbc-certificate-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(17, 19, 24, 0.12);
}

.fbc-certificate-card--placeholder {
  min-height: 520px;
  border-style: dashed;
  border-color: rgba(17, 19, 24, 0.14);
  box-shadow: none;
}

.fbc-certificate-card__placeholder {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 246, 249, 0.95)),
    #fafbfd;
}

.fbc-certificate-card__placeholder-icon {
  position: relative;
  width: 84px;
  height: 112px;
  border: 2px solid rgba(17, 19, 24, 0.16);
  border-radius: 12px;
  background: #fff;
}

.fbc-certificate-card__placeholder-icon::before,
.fbc-certificate-card__placeholder-icon::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  height: 2px;
  background: rgba(17, 19, 24, 0.12);
}

.fbc-certificate-card__placeholder-icon::before {
  top: 34px;
  box-shadow: 0 18px 0 rgba(17, 19, 24, 0.12);
}

.fbc-certificate-card__placeholder-icon::after {
  top: 70px;
}

.fbc-certificate-card__placeholder-label {
  color: var(--fbc-text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fbc-contact__form-wrap {
  flex: 0 0 min(42%, 520px);
}

.fbc-form-notice {
  margin-bottom: 16px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 12px;
}

.fbc-form-notice--success {
  color: #165c2f;
  background: #e6f7ec;
  border: 1px solid #b7e2c4;
}

.fbc-form-notice--error {
  color: #7c1d1d;
  background: #fdecec;
  border: 1px solid #f4c4c4;
}

.fbc-contact-details {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.fbc-contact-detail__label {
  display: block;
  margin-bottom: 6px;
  color: var(--fbc-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fbc-contact-detail strong {
  font-size: 18px;
  font-weight: 600;
}

.fbc-contact-form {
  display: grid;
  gap: 16px;
  padding: 36px;
  background: var(--fbc-surface);
  border: 1px solid var(--fbc-border);
  border-radius: 2px;
}

.fbc-contact-form__field {
  display: grid;
  gap: 8px;
}

.fbc-contact-form__field span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fbc-contact-form__field input,
.fbc-contact-form__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  color: #fff;
  background: rgba(17, 19, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  outline: none;
}

.fbc-contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.fbc-contact-form__field input::placeholder,
.fbc-contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.fbc-contact-form__submit {
  width: 100%;
}

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

.fbc-footer {
  background: var(--fbc-bg);
  color: #fff;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fbc-footer__inner {
  display: grid;
  gap: 28px;
}

.fbc-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.fbc-footer__brand {
  display: grid;
  gap: 18px;
}

.fbc-logo--footer {
  width: fit-content;
}

.fbc-logo--footer .fbc-logo__image {
  width: 90px;
  max-width: 90px;
  max-height: 90px;
}

.fbc-footer p {
  max-width: 440px;
  margin: 12px 0 0;
  color: var(--fbc-text-inverse);
  line-height: 1.7;
}

.fbc-footer__nav,
.fbc-footer__contact,
.fbc-footer__aside {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.fbc-footer__nav a,
.fbc-footer__menu a,
.fbc-footer__contact-item strong,
.fbc-footer__contact-item a {
  color: #fff;
}

.fbc-footer__menu {
  display: grid;
  gap: 12px;
}

.fbc-footer__nav a,
.fbc-footer__menu a {
  width: fit-content;
  font-size: 14px;
  transition: color 180ms ease;
}

.fbc-footer__nav a:hover,
.fbc-footer__nav a:focus-visible,
.fbc-footer__menu a:hover,
.fbc-footer__menu a:focus-visible {
  color: var(--fbc-accent);
}

.fbc-footer__contact-item {
  display: grid;
  gap: 6px;
}

.fbc-footer__contact-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fbc-footer__contact-item strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.fbc-footer__cta {
  width: fit-content;
}

.fbc-footer__theme-toggle {
  width: fit-content;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.fbc-footer__theme-toggle:hover,
.fbc-footer__theme-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.fbc-footer__languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fbc-footer__language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.fbc-footer__language:hover,
.fbc-footer__language:focus-visible,
.fbc-footer__language.is-current {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.fbc-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
  opacity: 1 !important;
  transform: none !important;
}

.fbc-footer__meta-primary,
.fbc-footer__meta-secondary {
  white-space: nowrap;
  opacity: 1 !important;
  transform: none !important;
}

.fbc-footer__legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: auto;
}

.fbc-footer__legal a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fbc-footer__legal a:hover,
.fbc-footer__legal a:focus-visible {
  color: var(--fbc-accent);
}

body.fbc-theme-alt .fbc-section--dark,
body.fbc-theme-alt .fbc-footer {
  color: var(--fbc-text);
}

body.fbc-theme-alt .fbc-section--dark p,
body.fbc-theme-alt .fbc-footer p,
body.fbc-theme-alt .fbc-logistics-stat span,
body.fbc-theme-alt .fbc-footer__contact-item span,
body.fbc-theme-alt .fbc-footer__meta,
body.fbc-theme-alt .fbc-footer__legal a,
body.fbc-theme-alt .fbc-footer__language {
  color: var(--fbc-text-muted);
}

body.fbc-theme-alt .fbc-section--dark .fbc-eyebrow,
body.fbc-theme-alt .fbc-section--dark .fbc-logistics-stat strong,
body.fbc-theme-alt .fbc-section--dark .fbc-footer__legal a:hover,
body.fbc-theme-alt .fbc-section--dark .fbc-footer__legal a:focus-visible {
  color: var(--fbc-accent);
}

body.fbc-theme-alt .fbc-target-group-card,
body.fbc-theme-alt .fbc-product-card,
body.fbc-theme-alt .fbc-contact-form,
body.fbc-theme-alt .fbc-cookie-banner {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(25, 33, 42, 0.1);
  box-shadow: 0 18px 34px rgba(25, 33, 42, 0.08);
}

body.fbc-theme-alt .fbc-product-card h3,
body.fbc-theme-alt .fbc-target-group-card h3,
body.fbc-theme-alt .fbc-footer__nav a,
body.fbc-theme-alt .fbc-footer__menu a,
body.fbc-theme-alt .fbc-footer__contact-item strong,
body.fbc-theme-alt .fbc-footer__contact-item a,
body.fbc-theme-alt .fbc-footer__meta-primary,
body.fbc-theme-alt .fbc-footer__meta-secondary {
  color: var(--fbc-text);
}

body.fbc-theme-alt .fbc-product-card p,
body.fbc-theme-alt .fbc-target-group-card__bullets li {
  color: var(--fbc-text-muted);
}

body.fbc-theme-alt .fbc-product-card__meta,
body.fbc-theme-alt .fbc-chip {
  color: rgba(33, 42, 52, 0.74);
  border-color: rgba(33, 42, 52, 0.12);
}

body.fbc-theme-alt .fbc-contact-form__field span {
  color: rgba(33, 42, 52, 0.68);
}

body.fbc-theme-alt .fbc-contact-form__field input,
body.fbc-theme-alt .fbc-contact-form__field textarea {
  color: var(--fbc-text);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(25, 33, 42, 0.12);
}

body.fbc-theme-alt .fbc-contact-form__field input::placeholder,
body.fbc-theme-alt .fbc-contact-form__field textarea::placeholder {
  color: rgba(95, 106, 119, 0.72);
}

body.fbc-theme-alt .fbc-logistics-stats,
body.fbc-theme-alt .fbc-logistics-stat,
body.fbc-theme-alt .fbc-footer,
body.fbc-theme-alt .fbc-footer__meta {
  border-color: rgba(25, 33, 42, 0.12);
}

body.fbc-theme-alt .fbc-footer__language,
body.fbc-theme-alt .fbc-footer__theme-toggle {
  border-color: rgba(25, 33, 42, 0.12);
}

body.fbc-theme-alt .fbc-footer__language:hover,
body.fbc-theme-alt .fbc-footer__language:focus-visible,
body.fbc-theme-alt .fbc-footer__language.is-current,
body.fbc-theme-alt .fbc-footer__theme-toggle:hover,
body.fbc-theme-alt .fbc-footer__theme-toggle:focus-visible {
  color: var(--fbc-text);
  background: rgba(25, 33, 42, 0.06);
  border-color: rgba(25, 33, 42, 0.2);
}

.fbc-footer__meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.fbc-cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: grid;
  gap: 14px;
  width: min(420px, calc(100vw - 32px));
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(10, 18, 30, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.fbc-cookie-banner__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
}

.fbc-cookie-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fbc-cookie-banner__links a {
  color: var(--fbc-accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fbc-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fbc-cookie-banner__button {
  min-width: 148px;
  cursor: pointer;
}

.fbc-cookie-banner .fbc-button--ghost {
  color: #eef2f7;
  border-color: rgba(255, 255, 255, 0.26);
  opacity: 1;
}

.fbc-cookie-banner .fbc-button--ghost:hover,
.fbc-cookie-banner .fbc-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.fbc-lightbox-open {
  overflow: hidden;
}

.fbc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(8, 10, 14, 0.86);
  backdrop-filter: blur(10px);
}

.fbc-lightbox[hidden] {
  display: none;
}

.fbc-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 980px);
  max-height: 88vh;
}

.fbc-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.fbc-lightbox__close,
.fbc-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
}

.fbc-lightbox__close {
  top: 24px;
  right: 24px;
  font-size: 28px;
}

.fbc-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
}

.fbc-lightbox__nav--prev {
  left: 24px;
}

.fbc-lightbox__nav--next {
  right: 24px;
}

.fbc-dev-note {
  max-width: 720px;
  margin: 96px auto;
  padding: 32px;
  border: 1px solid #e5e7eb;
}

.fbc-page-layout {
  min-height: 100vh;
  background: #fff;
  padding-top: 116px;
}

.fbc-page-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.fbc-page-content > * {
  margin-top: 0;
}

.fbc-page-content > * + * {
  margin-top: 24px;
}

.fbc-page-content .wp-block-image img {
  display: block;
}

.fbc-page-content .alignwide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.fbc-page-content .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.fbc-blog-layout {
  min-height: 100vh;
  background: #fff;
  padding-top: 116px;
}

.fbc-blog-shell {
  width: min(calc(100% - 48px), 960px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.fbc-blog-hero {
  display: grid;
  gap: 18px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
}

.fbc-blog-hero h1,
.fbc-post-article h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.fbc-blog-hero p,
.fbc-post-article p,
.fbc-post-article li,
.fbc-blog-card p {
  color: var(--fbc-text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.fbc-blog-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.fbc-blog-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 28px;
  background: #fff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.fbc-blog-card:hover,
.fbc-blog-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(17, 19, 24, 0.12);
  box-shadow: 0 26px 44px rgba(17, 19, 24, 0.1);
}

.fbc-blog-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.fbc-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--fbc-text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fbc-blog-empty {
  margin-top: 40px;
  padding: 28px;
  border: 1px dashed rgba(17, 19, 24, 0.16);
  border-radius: 24px;
  background: var(--fbc-surface-light);
}

.fbc-post-article {
  width: min(calc(100% - 48px), 860px);
  margin: 72px auto 104px;
}

.fbc-post-article > * {
  margin-top: 0;
}

.fbc-post-article > * + * {
  margin-top: 24px;
}

.fbc-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.fbc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.fbc-pagination .current {
  background: var(--fbc-bg);
  border-color: var(--fbc-bg);
  color: #fff;
}

@media (max-width: 768px) {
  .fbc-logo__image {
    width: auto;
    max-width: 128px;
    max-height: 84px;
  }

  .fbc-about,
  .fbc-logistics,
  .fbc-contact,
  .fbc-section__header,
  .fbc-section__footnote {
    flex-direction: column;
  }

  .fbc-about__media,
  .fbc-logistics__media {
    flex-basis: auto;
  }

  .fbc-features-grid,
  .fbc-products-grid,
  .fbc-applications-grid,
  .fbc-target-groups-grid,
  .fbc-logistics-stats {
    grid-template-columns: 1fr;
  }

  .fbc-contact__form-wrap {
    flex-basis: auto;
  }

  .fbc-contact-form {
    padding: 24px;
  }

  .fbc-feature-card {
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .fbc-feature-card:last-child {
    border-bottom: 0;
  }

  .fbc-logistics-stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-right: 0;
  }

  .fbc-logistics-stat:first-child {
    border-top: 0;
  }

  .fbc-site-header__inner,
  .fbc-section__inner,
  .fbc-footer__inner,
  .fbc-hero__content,
  .fbc-blog-shell,
  .fbc-post-article {
    width: min(calc(100% - 40px), var(--fbc-content-width));
  }

  .fbc-site-header__inner {
    min-height: 92px;
    padding: 12px 0;
  }

  .fbc-site-header.is-scrolled .fbc-site-header__inner {
    min-height: 72px;
    padding: 8px 0;
  }

  .fbc-logo {
    padding: 7px 9px;
    border-radius: 12px;
  }

  .fbc-logo__image {
    height: 78px;
    max-width: 132px;
    max-height: 78px;
  }

  .fbc-site-header.is-scrolled .fbc-logo {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .fbc-site-header--overlay.is-scrolled .fbc-logo__image {
    height: 54px;
    max-width: 96px;
    max-height: 54px;
  }

  .fbc-site-header__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 18px;
    padding: 22px;
    margin-left: 0;
    background: rgba(10, 12, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .fbc-site-header--solid .fbc-site-header__panel {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(17, 19, 24, 0.08);
  }

  .fbc-site-header.is-menu-open .fbc-site-header__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .fbc-nav,
  .fbc-site-header__actions {
    display: grid;
    gap: 14px;
    width: 100%;
  }

  .fbc-nav__menu {
    display: grid;
    gap: 14px;
    width: 100%;
  }

  .fbc-nav__item-wrap {
    justify-content: space-between;
    width: 100%;
    min-height: 28px;
  }

  .fbc-nav a,
  .fbc-nav__menu a {
    color: #fff;
    font-size: 15px;
  }

  .fbc-site-header--solid .fbc-nav a,
  .fbc-site-header--solid .fbc-nav__menu a {
    color: var(--fbc-text);
  }

  .fbc-nav .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 12px 0 0 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .fbc-nav .menu-item.is-open > .sub-menu {
    display: grid;
  }

  .fbc-nav .menu-item:hover > .sub-menu,
  .fbc-nav .menu-item:focus-within > .sub-menu {
    display: none;
  }

  .fbc-nav .menu-item.is-open:hover > .sub-menu,
  .fbc-nav .menu-item.is-open:focus-within > .sub-menu {
    display: grid;
  }

  .fbc-nav .sub-menu a {
    padding: 8px 0;
    border-radius: 0;
  }

  .fbc-nav .sub-menu a:hover,
  .fbc-nav .sub-menu a:focus-visible,
  .fbc-site-header--solid .fbc-nav .sub-menu a:hover,
  .fbc-site-header--solid .fbc-nav .sub-menu a:focus-visible {
    background: transparent;
    color: var(--fbc-accent);
  }

  .fbc-header__cta,
  .fbc-language-dropdown,
  .fbc-language-dropdown__toggle {
    width: 100%;
  }

  .fbc-header__cta {
    box-sizing: border-box;
  }

  .fbc-language-dropdown__menu {
    right: auto;
    left: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .fbc-menu-toggle {
    display: inline-flex;
  }

  .fbc-hero__content {
    padding: 152px 0 72px;
  }

  .fbc-hero__actions {
    gap: 12px;
  }

  .fbc-hero__stats {
    gap: 14px 24px;
    margin-top: 40px;
  }

  .fbc-hero h1 {
    max-width: 100%;
    font-size: clamp(29px, 10.2vw, 46px);
    line-height: 0.98;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .fbc-eyebrow {
    font-size: 11px;
  }

  .fbc-eyebrow__bar {
    width: 32px;
  }

  .fbc-hero__lead {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .fbc-section {
    padding: 72px 0;
  }

  .fbc-section p {
    font-size: 15px;
  }

  .fbc-section--applications .fbc-section__header-copy {
    max-width: 100%;
  }

  .fbc-application-card__body {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 18px 22px;
  }

  .fbc-application-card__icon {
    min-height: 54px;
    padding-right: 12px;
  }

  .fbc-application-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .fbc-logistics__cta {
    width: 100%;
    box-sizing: border-box;
  }

  .fbc-certificates__hint {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }

  .fbc-certificates__hint span {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(17, 19, 24, 0.16);
    box-shadow:
      -56px 0 0 rgba(17, 19, 24, 0.08),
      56px 0 0 rgba(17, 19, 24, 0.08);
  }

  .fbc-certificates__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    margin: 24px -20px 0;
    padding: 0 calc(12vw - 4px) 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .fbc-certificates__track::-webkit-scrollbar {
    display: none;
  }

  .fbc-certificate-card {
    flex: 0 0 76vw;
    min-width: 76vw;
    scroll-snap-align: center;
  }

  .fbc-footer {
    padding-top: 56px;
  }

  .fbc-footer__top {
    grid-template-columns: 1fr;
  }

  .fbc-footer__aside {
    width: 100%;
  }

  .fbc-footer__cta {
    width: 100%;
    box-sizing: border-box;
  }

  .fbc-footer__theme-toggle {
    width: 100%;
    box-sizing: border-box;
  }

  .fbc-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fbc-footer__meta-primary,
  .fbc-footer__meta-secondary {
    white-space: normal;
  }

  .fbc-footer__meta-separator {
    display: none;
  }

  .fbc-footer__legal {
    margin-left: 0;
  }

  .fbc-footer__menu {
    gap: 10px;
  }

  .fbc-cookie-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .fbc-cookie-banner__actions {
    display: grid;
  }

  .fbc-cookie-banner__button {
    width: 100%;
  }

  .fbc-lightbox {
    padding: 20px;
  }

  .fbc-lightbox__close {
    top: 16px;
    right: 16px;
  }

  .fbc-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .fbc-lightbox__nav--prev {
    left: 12px;
  }

  .fbc-lightbox__nav--next {
    right: 12px;
  }

  .fbc-page-content {
    padding: 48px 20px 72px;
  }

  .fbc-blog-shell,
  .fbc-post-article {
    padding-top: 48px;
    padding-bottom: 72px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .fbc-page-layout,
  .fbc-blog-layout {
    padding-top: 102px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .fbc-site-header__inner {
    min-height: 102px;
    gap: 18px;
  }

  .fbc-site-header__panel {
    gap: 12px;
  }

  .fbc-nav__menu {
    gap: 22px;
  }

  .fbc-logo__image {
    height: 96px;
    max-width: 164px;
    max-height: 96px;
  }

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

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

  .fbc-js .fbc-reveal,
  .fbc-js .fbc-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fbc-feature-card,
  .fbc-product-card,
  .fbc-application-card,
  .fbc-target-group-card,
  .fbc-blog-card,
  .fbc-product-card img,
  .fbc-application-card img {
    transition: none;
  }
}
