@charset "utf-8";

:root {
  --fk-deep: #071f3a;
  --fk-forest: #1767b1;
  --fk-green: #1f8fd1;
  --fk-lime: #f5c84c;
  --fk-blue: #1374c9;
  --fk-ink: #152235;
  --fk-muted: #657386;
  --fk-line: #dbe6f2;
  --fk-bg: #f4f8fc;
  --fk-white: #ffffff;
}

.forklift-template {
  padding-top: 0;
  background: var(--fk-bg);
  color: var(--fk-ink);
}

.forklift-template .l-wrap {
  width: 100%;
  max-width: 1840px;
  padding-right: clamp(32px, 4.2vw, 96px);
  padding-left: clamp(32px, 4.2vw, 96px);
  margin-right: auto;
  margin-left: auto;
}

.fk-site-header .l-wrap,
.fk-hero .l-wrap,
.fk-strip .l-wrap {
  max-width: none;
}

.fk-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--fk-white);
  box-shadow: 0 10px 32px rgba(7, 31, 58, .1);
}

.fk-topbar {
  color: rgba(255, 255, 255, .84);
  background: var(--fk-deep);
}

.fk-topbar .l-wrap,
.fk-nav .l-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.fk-topbar .l-wrap {
  min-height: 42px;
  max-width: 1840px;
}

.fk-topbar a {
  margin-left: 18px;
  color: #fff;
  text-decoration: none;
}

.fk-language {
  position: relative;
  flex: 0 0 auto;
}

.fk-language-current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.fk-language-current img,
.fk-language-panel img {
  width: 22px;
  height: 15px;
  object-fit: cover;
}

.fk-language-current span {
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fk-language-current::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.fk-language-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 168px;
  padding: 8px;
  border: 1px solid var(--fk-line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 31, 58, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.fk-language:hover .fk-language-panel,
.fk-language:focus-within .fk-language-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fk-language-panel a,
.fk-language-panel > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 10px;
  color: var(--fk-ink);
  text-decoration: none;
}

.fk-language-panel > span {
  cursor: default;
}

.fk-language-panel a:hover,
.fk-language-panel > span:hover {
  color: var(--fk-blue);
  background: #f2f7fd;
}

.fk-nav {
  background: var(--fk-white);
}

.fk-nav .l-wrap {
  min-height: 92px;
  max-width: 1840px;
}

.fk-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fk-deep);
  text-decoration: none;
}

.fk-brand-logo {
  display: block;
  width: 132px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.fk-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--fk-deep);
  background: var(--fk-lime);
  font-weight: 900;
}

.fk-brand strong {
  font-size: 18px;
  letter-spacing: 0;
  white-space: nowrap;
}

.fk-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 0;
}

.fk-menu a,
.fk-menu-item > a {
  display: inline-flex;
  align-items: center;
  height: 92px;
  padding: 0 13px;
  color: var(--fk-ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.fk-menu a:hover,
.fk-menu-item:hover > a {
  color: var(--fk-forest);
}

.fk-menu-item {
  position: relative;
  display: inline-flex;
}

.fk-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 35;
  min-width: 245px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  background: var(--fk-white);
  box-shadow: 0 22px 44px rgba(7, 31, 58, .16);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.fk-menu-item:hover .fk-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.fk-submenu a {
  display: flex;
  height: auto;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--fk-ink);
  text-transform: none;
  border-bottom: 1px solid var(--fk-line);
}

.fk-submenu a:last-child {
  border-bottom: 0;
}

.fk-submenu a:hover {
  color: var(--fk-deep);
  background: #eef6ff;
}

.fk-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 44px;
  padding: 0 22px;
  border: 0;
  color: var(--fk-deep);
  background: var(--fk-lime);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.fk-mobile-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.fk-mobile-toggle span {
  position: absolute;
  right: 4px;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--fk-blue);
  transition: top .2s ease, width .2s ease, transform .2s ease, opacity .2s ease;
}

.fk-mobile-toggle span:nth-child(1) {
  top: 11px;
}

.fk-mobile-toggle span:nth-child(2) {
  top: 20px;
}

.fk-mobile-toggle span:nth-child(3) {
  top: 29px;
}

.fk-mobile-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.fk-mobile-toggle.is-open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.fk-mobile-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

@media (max-width: 1440px) {
  .fk-site-header .l-wrap {
    padding-right: 48px;
    padding-left: 48px;
  }
  .fk-brand strong {
    display: none;
  }
  .fk-menu a,
  .fk-menu-item > a {
    height: 82px;
    padding: 0 9px;
    font-size: 13px;
  }
  .fk-nav .l-wrap {
    min-height: 82px;
    gap: 16px;
  }
  .fk-nav-cta {
    min-width: 104px;
    height: 42px;
  }
}

.fk-hero {
  position: relative;
  width: 100vw;
  min-height: 760px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: var(--fk-deep);
}

.fk-hero-swiper,
.fk-hero-slide {
  min-height: 760px;
}

.fk-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.fk-hero-bg-a {
  background:
    linear-gradient(90deg, rgba(7, 31, 58, .98) 0%, rgba(7, 31, 58, .86) 39%, rgba(7, 31, 58, .34) 72%, rgba(7, 31, 58, .08) 100%),
    url("../images/forklift/forklift-hero.webp") center right/cover no-repeat;
}

.fk-hero-bg-b {
  background:
    linear-gradient(90deg, rgba(7, 31, 58, .98) 0%, rgba(7, 31, 58, .82) 42%, rgba(7, 31, 58, .28) 76%, rgba(7, 31, 58, .1) 100%),
    url("../images/forklift/forklift-factory.webp") center right/cover no-repeat;
}

.fk-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 58, .1), rgba(7, 31, 58, .36)),
    radial-gradient(circle at 78% 45%, rgba(19, 116, 201, .22), transparent 32%);
}

.fk-hero::after {
  content: "";
  position: absolute;
  left: -9%;
  bottom: -24%;
  width: 42%;
  aspect-ratio: 1;
  border: 70px solid rgba(19, 116, 201, .18);
  border-radius: 50%;
}

.fk-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 390px);
  gap: clamp(54px, 6vw, 112px);
  align-items: center;
  min-height: 760px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.fk-hero-pagination {
  position: absolute;
  left: 50%;
  bottom: 76px;
  z-index: 5;
  display: flex;
  gap: 10px;
  width: auto;
  transform: translateX(-50%);
}

.fk-hero-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 4px;
  margin: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .42);
  opacity: 1;
}

.fk-hero-pagination .swiper-pagination-bullet-active {
  background: var(--fk-lime);
}

.fk-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  background: rgba(7, 31, 58, .42);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.fk-hero-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.fk-hero-prev::before {
  transform: rotate(-45deg);
}

.fk-hero-next::before {
  transform: rotate(135deg);
}

.fk-hero-prev {
  left: 34px;
}

.fk-hero-next {
  right: 34px;
}

.fk-hero-arrow:hover {
  color: var(--fk-deep);
  border-color: var(--fk-lime);
  background: var(--fk-lime);
}

.fk-hero-copy {
  max-width: 720px;
  color: var(--fk-white);
}

.fk-kicker,
.fk-section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  color: #fff;
  background: var(--fk-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fk-hero h1 {
  margin: 24px 0 24px;
  color: var(--fk-white);
  font-size: 58px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.fk-hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.8;
}

.fk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.fk-btn-primary {
  color: #fff;
  background: var(--fk-blue);
  box-shadow: 0 18px 34px rgba(19, 116, 201, .28);
}

.fk-btn-ghost {
  color: var(--fk-white);
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .08);
}

.fk-hero-panel {
  padding: 34px;
  color: var(--fk-white);
  border: 1px solid rgba(255, 255, 255, .24);
  background: linear-gradient(145deg, rgba(7, 31, 58, .86), rgba(11, 52, 94, .76));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.fk-hero-panel strong {
  display: block;
  color: var(--fk-lime);
  font-size: 58px;
  line-height: 1;
}

.fk-hero-panel span,
.fk-hero-panel em {
  display: block;
}

.fk-hero-panel span {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 800;
}

.fk-hero-panel em {
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  line-height: 1.65;
}

.fk-strip {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-top: -62px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.fk-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1640px;
  margin: 0 auto;
  background: var(--fk-white);
  border: 1px solid rgba(219, 230, 242, .86);
  box-shadow: 0 30px 80px rgba(7, 31, 58, .16);
}

.fk-strip-grid div {
  min-height: 128px;
  padding: 30px;
  border-right: 1px solid var(--fk-line);
}

.fk-strip-grid div:last-child {
  border-right: 0;
}

.fk-strip-grid strong,
.fk-strip-grid span {
  display: block;
}

.fk-strip-grid strong {
  color: var(--fk-blue);
  font-size: 30px;
  line-height: 1.1;
}

.fk-strip-grid span {
  margin-top: 9px;
  color: var(--fk-muted);
  line-height: 1.5;
}

.fk-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 124px 0;
}

.fk-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .78fr);
  gap: clamp(64px, 5.4vw, 108px);
  align-items: center;
}

.fk-photo-card {
  position: relative;
  padding: 16px;
  background: var(--fk-white);
  border: 1px solid rgba(219, 230, 242, .88);
  box-shadow: 0 30px 80px rgba(7, 31, 58, .14);
}

.fk-photo-card::before {
  content: "";
  position: absolute;
  inset: 42px -22px -22px 42px;
  z-index: -1;
  background: linear-gradient(135deg, var(--fk-blue), var(--fk-lime));
}

.fk-photo-card img,
.fk-product-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.fk-about-photo-wide img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.fk-copy-block h2,
.fk-section-head h2,
.fk-spec-copy h2,
.fk-inquiry h2 {
  margin: 18px 0 18px;
  color: var(--fk-deep);
  font-size: clamp(40px, 2.55vw, 56px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.fk-copy-block p,
.fk-spec-copy p,
.fk-inquiry p {
  margin: 0;
  color: var(--fk-muted);
  font-size: 16px;
  line-height: 1.85;
}

.fk-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fk-check-grid span {
  position: relative;
  padding: 14px 14px 14px 40px;
  color: var(--fk-ink);
  background: var(--fk-white);
  border: 1px solid var(--fk-line);
  box-shadow: 0 12px 28px rgba(7, 31, 58, .05);
}

.fk-check-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 10px;
  height: 10px;
  background: var(--fk-blue);
}

.fk-dark {
  color: var(--fk-white);
  background:
    linear-gradient(135deg, rgba(5, 19, 38, .98), rgba(7, 31, 58, .94) 48%, rgba(19, 116, 201, .88)),
    radial-gradient(circle at 82% 18%, rgba(245, 200, 76, .22), transparent 34%);
}

.fk-dark .fk-section-head h2 {
  color: var(--fk-white);
}

.fk-section-head {
  max-width: 920px;
  margin-bottom: 44px;
}

.fk-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fk-scenario-grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  box-shadow: 0 22px 52px rgba(0, 0, 0, .18);
}

.fk-scenario-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--fk-blue);
  font-weight: 900;
}

.fk-scenario-grid h3 {
  margin: 26px 0 12px;
  color: var(--fk-white);
  font-size: 23px;
}

.fk-scenario-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.fk-products {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.fk-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.fk-text-link {
  flex: 0 0 auto;
  color: var(--fk-forest);
  font-weight: 800;
  text-decoration: none;
}

.fk-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.fk-product-grid-data {
  display: grid;
}

.fk-product {
  display: block;
  min-height: 100%;
  padding: 20px;
  color: var(--fk-ink);
  background: #ffffff;
  border: 1px solid var(--fk-line);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(7, 31, 58, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fk-product:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 116, 201, .28);
  box-shadow: 0 26px 62px rgba(7, 31, 58, .14);
}

.fk-product-img {
  aspect-ratio: 4 / 3.05;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 31, 58, .08), rgba(245, 200, 76, .12)),
    url("../images/forklift/electric-forklift.webp") center/cover no-repeat;
}

.fk-product-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fk-product strong {
  display: block;
  margin-top: 20px;
  color: var(--fk-deep);
  font-size: 21px;
  line-height: 1.35;
}

.fk-product p {
  min-height: 88px;
  margin: 10px 0 14px;
  color: var(--fk-muted);
  line-height: 1.65;
}

.fk-product span {
  color: var(--fk-blue);
  font-weight: 800;
}

.fk-product-static {
  background: linear-gradient(180deg, #ffffff, #f1f7ff);
}

.fk-home-cases {
  background: #ffffff;
}

.fk-home-case-grid {
  align-items: stretch;
}

.fk-spec {
  background:
    linear-gradient(90deg, rgba(244, 248, 252, .98), rgba(244, 248, 252, .9) 48%, rgba(244, 248, 252, .72)),
    url("../images/forklift/forklift-factory.webp") center/cover fixed;
}

.fk-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.1fr);
  gap: clamp(64px, 5vw, 104px);
  align-items: start;
}

.fk-spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--fk-line);
  border: 1px solid var(--fk-line);
}

.fk-spec-table div {
  min-height: 118px;
  padding: 22px;
  background: var(--fk-white);
}

.fk-spec-table span,
.fk-spec-table strong {
  display: block;
}

.fk-spec-table span {
  color: var(--fk-muted);
}

.fk-spec-table strong {
  margin-top: 12px;
  color: var(--fk-deep);
  font-size: 21px;
  line-height: 1.25;
}

.fk-inquiry {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 74px 0;
  background: var(--fk-deep);
}

.fk-inquiry-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.fk-inquiry h2 {
  color: var(--fk-white);
}

.fk-inquiry p {
  max-width: 820px;
  color: rgba(255, 255, 255, .72);
}

.fk-site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: rgba(255, 255, 255, .76);
  background: var(--fk-deep);
}

.fk-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 48px;
  padding: 66px 0;
}

.fk-footer-brand {
  margin-bottom: 18px;
  color: #fff;
}

.fk-site-footer p {
  max-width: 520px;
  margin: 0;
  line-height: 1.8;
}

.fk-site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
}

.fk-site-footer a,
.fk-site-footer span {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  line-height: 1.6;
}

.fk-site-footer a:hover {
  color: var(--fk-lime);
}

.fk-footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
}

.fk-floating-contact {
  position: fixed;
  right: 22px;
  top: 42%;
  z-index: 50;
  display: grid;
  gap: 8px;
}

.fk-floating-contact a,
.fk-floating-contact button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 46px;
  border: 0;
  color: var(--fk-deep);
  background: var(--fk-lime);
  box-shadow: 0 14px 34px rgba(7, 31, 58, .18);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.fk-mobile-contactbar {
  display: none;
}

.fk-product-detail-page .fk-floating-contact {
  top: auto;
  bottom: 24px;
}

.fk-inquiry-open {
  overflow: hidden;
}

.fk-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(4, 20, 38, .72);
}

.fk-inquiry-modal.is-open {
  display: flex;
}

.fk-inquiry-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: 36px;
  background: #fff;
  border: 1px solid rgba(22, 123, 214, .22);
  box-shadow: 0 34px 80px rgba(4, 20, 38, .34);
}

.fk-inquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--fk-line);
  color: var(--fk-deep);
  background: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.fk-inquiry-head {
  margin-bottom: 24px;
  padding-right: 48px;
}

.fk-inquiry-head span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  color: #fff;
  background: var(--fk-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-inquiry-head h2 {
  margin: 0;
  color: var(--fk-deep);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.fk-inquiry-head p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--fk-muted);
  font-size: 16px;
  line-height: 1.7;
}

.fk-inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fk-inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--fk-deep);
  font-size: 13px;
  font-weight: 900;
}

.fk-inquiry-form input,
.fk-inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--fk-line);
  background: #f7fbff;
  color: var(--fk-ink);
  font: inherit;
  font-size: 15px;
}

.fk-inquiry-form input {
  height: 48px;
  padding: 0 14px;
}

.fk-inquiry-form textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.fk-inquiry-form input:focus,
.fk-inquiry-form textarea:focus {
  border-color: var(--fk-blue);
  outline: 2px solid rgba(22, 123, 214, .14);
}

.fk-inquiry-wide,
.fk-inquiry-form button {
  grid-column: 1 / -1;
}

.fk-inquiry-form button {
  justify-self: start;
  min-width: 170px;
  height: 52px;
  border: 0;
  color: #fff;
  background: var(--fk-blue);
  box-shadow: 0 16px 36px rgba(22, 123, 214, .24);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.fk-inner {
  background: var(--fk-bg);
}

.fk-page-titlebar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #eef2f6;
  border-bottom: 1px solid var(--fk-line);
}

.fk-page-titlebar .l-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fk-page-titlebar h1 {
  margin: 0;
  color: var(--fk-deep);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-page-path {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--fk-ink);
  font-size: 14px;
  white-space: nowrap;
}

.fk-page-path a,
.fk-page-path em {
  color: var(--fk-ink);
  font-style: normal;
  text-decoration: none;
}

.fk-page-path a:hover {
  color: var(--fk-blue);
}

.fk-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--fk-line);
}

.fk-breadcrumb .l-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  color: var(--fk-muted);
}

.fk-breadcrumb a,
.fk-breadcrumb em {
  color: var(--fk-ink);
  font-style: normal;
  text-decoration: none;
}

.fk-breadcrumb a:hover {
  color: var(--fk-forest);
}

.fk-inner-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 140px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 31, 58, .95), rgba(7, 31, 58, .68), rgba(7, 31, 58, .2)),
    url("../images/forklift/forklift-hero.webp") center right/cover no-repeat;
}

.fk-inner-hero span {
  display: inline-flex;
  padding: 6px 12px;
  color: #fff;
  background: var(--fk-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-inner-hero h1 {
  max-width: 980px;
  margin: 18px 0;
  color: #fff;
  font-size: clamp(44px, 2.8vw, 64px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.fk-inner-hero p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.8;
}

.fk-inner-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 112px 0;
}

.fk-catalog-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.fk-content-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.fk-product-sidebar {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 22px;
}

.fk-side-block {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 16px 42px rgba(7, 31, 58, .07);
}

.fk-side-block h2 {
  margin: 0 0 16px;
  color: var(--fk-deep);
  font-size: 24px;
  line-height: 1.25;
}

.fk-product-section-links {
  display: none;
}

.fk-product-category-fallback .fk-news-section-links {
  display: none;
}

.fk-product-category-fallback .fk-product-section-links {
  display: block;
}

.fk-side-block a:not(.fk-btn),
.fk-demo-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  margin-bottom: 8px;
  color: var(--fk-ink);
  background: #f5f9fd;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
}

.fk-side-block a:not(.fk-btn)::after,
.fk-demo-categories a::after {
  content: ">";
  color: var(--fk-forest);
}

.fk-side-block a.active,
.fk-side-block a:not(.fk-btn):hover,
.fk-demo-categories a:hover {
  color: var(--fk-deep);
  border-color: var(--fk-lime);
  background: #fff7d6;
}

.fk-side-quote {
  color: rgba(255, 255, 255, .78);
  background: var(--fk-deep);
  border-color: var(--fk-deep);
}

.fk-side-quote h2 {
  color: #fff;
}

.fk-side-quote p {
  margin: 0 0 22px;
  line-height: 1.8;
}

.fk-catalog-main {
  min-width: 0;
}

.fk-news-list-page .fk-inner-section {
  background:
    radial-gradient(circle at 84% 0%, rgba(27, 131, 218, .12), transparent 32%),
    linear-gradient(180deg, #f5f9fd 0%, #ffffff 46%, #eef4fa 100%);
}

.fk-news-list-page .fk-news-sidebar {
  position: static;
}

.fk-news-list-page .fk-side-block {
  box-shadow: 0 26px 64px rgba(7, 31, 58, .1);
}

.fk-news-list-page .fk-side-quote {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(7, 31, 58, .96), rgba(19, 116, 201, .86)),
    url("../images/forklift/forklift-factory.webp") center/cover no-repeat;
}

.fk-news-list-page .fk-catalog-toolbar {
  align-items: center;
  margin-bottom: 38px;
  padding: 42px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .98), rgba(244, 249, 253, .94)),
    url("../images/forklift/forklift-factory.webp") right center/auto 100% no-repeat;
  box-shadow: 0 28px 70px rgba(7, 31, 58, .09);
}

.fk-news-list-page .fk-catalog-toolbar h2 {
  max-width: 720px;
  font-size: clamp(40px, 2.55vw, 56px);
}

.fk-catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--fk-line);
}

.fk-catalog-toolbar h2 {
  margin: 14px 0 0;
  color: var(--fk-deep);
  font-size: 42px;
  line-height: 1.2;
}

.fk-catalog-toolbar p {
  max-width: 520px;
  margin: 0;
  color: var(--fk-muted);
  line-height: 1.7;
}

.fk-pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--fk-line);
}

.fk-pages ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fk-pages li {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fk-pages a,
.fk-pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  color: var(--fk-ink);
  background: #f5f9fd;
  text-decoration: none;
}

.fk-pages a:hover,
.fk-pages .active,
.fk-pages span {
  color: var(--fk-deep);
  background: var(--fk-lime);
}

.fk-product-showroom-page .fk-inner-section {
  background:
    radial-gradient(circle at 78% 8%, rgba(27, 131, 218, .14), transparent 34%),
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 44%, #edf4fb 100%);
}

.fk-product-showroom-page .fk-catalog-layout {
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 64px;
}

.fk-product-showroom-page .fk-side-block {
  padding: 38px;
  background: rgba(255, 255, 255, .96);
  border-color: rgba(219, 230, 242, .9);
  box-shadow: 0 30px 76px rgba(7, 31, 58, .13);
}

.fk-product-showroom-page .fk-side-block h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.fk-product-showroom-page .fk-side-block a:not(.fk-btn),
.fk-product-showroom-page .fk-demo-categories a {
  min-height: 60px;
  padding: 0 20px;
  margin-bottom: 10px;
  background: #f3f8fd;
}

.fk-product-showroom-page .fk-side-block a.active,
.fk-product-showroom-page .fk-side-block a:not(.fk-btn):hover,
.fk-product-showroom-page .fk-demo-categories a:hover {
  color: #fff;
  border-color: var(--fk-blue);
  background: var(--fk-blue);
}

.fk-product-showroom-page .fk-side-block a.active::after,
.fk-product-showroom-page .fk-side-block a:not(.fk-btn):hover::after,
.fk-product-showroom-page .fk-demo-categories a:hover::after {
  color: #fff;
}

.fk-product-showroom-page .fk-side-quote {
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(7, 31, 58, .98), rgba(19, 116, 201, .88)),
    url("../images/forklift/forklift-factory.webp") center/cover no-repeat;
}

.fk-product-showroom-page .fk-catalog-toolbar {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  align-items: center;
  margin-bottom: 42px;
  padding: 44px 56px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(7, 31, 58, .98) 0%, rgba(7, 31, 58, .9) 40%, rgba(7, 31, 58, .42) 100%),
    url("../images/forklift/forklift-hero.webp") center right/cover no-repeat;
  border: 0;
  box-shadow: 0 28px 72px rgba(7, 31, 58, .18);
}

.fk-product-showroom-page .fk-catalog-toolbar::after {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 44px;
  width: 240px;
  height: 3px;
  background: linear-gradient(90deg, var(--fk-yellow), rgba(255, 255, 255, .08));
}

.fk-product-showroom-page .fk-catalog-toolbar .fk-section-label {
  background: var(--fk-blue);
}

.fk-product-showroom-page .fk-catalog-toolbar h2 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(38px, 2.6vw, 56px);
  line-height: 1.08;
}

.fk-product-showroom-page .fk-catalog-toolbar p {
  max-width: 460px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.fk-product-showroom-page .fk-inner-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.fk-product-showroom-page .fk-product {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(219, 230, 242, .88);
  box-shadow: 0 34px 86px rgba(7, 31, 58, .13);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fk-product-showroom-page .fk-product:hover {
  border-color: rgba(27, 131, 218, .45);
  box-shadow: 0 44px 108px rgba(7, 31, 58, .18);
  transform: translateY(-6px);
}

.fk-product-showroom-page .fk-product::before {
  content: "BEIJUN MODEL";
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(7, 31, 58, .86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.fk-product-showroom-page .fk-product::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fk-blue), var(--fk-lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.fk-product-showroom-page .fk-product:hover::after {
  transform: scaleX(1);
}

.fk-product-showroom-page .fk-product-img {
  position: relative;
  aspect-ratio: 16 / 10.2;
  background: #dfe8ef;
}

.fk-product-showroom-page .fk-product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 31, 58, .2) 100%);
  pointer-events: none;
}

.fk-product-showroom-page .fk-product strong,
.fk-product-showroom-page .fk-product p,
.fk-product-showroom-page .fk-product span {
  margin-right: 38px;
  margin-left: 38px;
}

.fk-product-showroom-page .fk-product strong {
  margin-top: 34px;
  font-size: 30px;
  line-height: 1.22;
}

.fk-product-showroom-page .fk-product p {
  min-height: 82px;
  margin-top: 16px;
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 1.75;
}

.fk-product-showroom-page .fk-product span {
  display: block;
  margin-bottom: 38px;
  color: var(--fk-blue);
  font-size: 17px;
  line-height: 1.5;
}

.fk-product-detail {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 112px 0;
  background: #fff;
}

.fk-product-detail-page .fk-product-detail {
  padding: 0;
}

.fk-product-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 31, 58, .96) 0%, rgba(7, 31, 58, .88) 44%, rgba(7, 31, 58, .52) 100%),
    url("../images/forklift/forklift-hero.webp") center/cover no-repeat;
}

.fk-product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  gap: clamp(42px, 6vw, 108px);
  align-items: center;
  min-height: 560px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.fk-product-hero h1 {
  margin: 18px 0;
  color: #fff;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 1.04;
  font-weight: 900;
}

.fk-product-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.8;
}

.fk-product-hero .fk-detail-badges span {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .26);
}

.fk-hero-spec-card {
  padding: 36px;
  background: rgba(5, 24, 45, .74);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
}

.fk-hero-spec-card strong,
.fk-hero-spec-card span,
.fk-hero-spec-card em {
  display: block;
}

.fk-hero-spec-card strong {
  color: var(--fk-lime);
  font-size: 58px;
  line-height: 1;
}

.fk-hero-spec-card span {
  margin-top: 22px;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-hero-spec-card em {
  margin-top: 10px;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  line-height: 1.35;
}

.fk-product-main {
  padding: 80px 0 42px;
}

.fk-product-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 34px;
  align-items: start;
}

.fk-product-visual,
.fk-product-summary,
.fk-product-story,
.fk-product-sidebar .fk-side-block {
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 24px 70px rgba(7, 31, 58, .08);
}

.fk-product-visual {
  padding: 18px;
  background: linear-gradient(145deg, #061b33, #0b345e);
}

.fk-product-main-image {
  position: relative;
  overflow: hidden;
  min-height: auto;
  aspect-ratio: 16 / 9;
  background: #071f3a;
}

.fk-product-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.fk-product-main-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #061b33;
}

.fk-product-main-image .fk-litpic-fallback {
  display: none;
}

.fk-product-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(7, 31, 58, .82) 100%),
    linear-gradient(90deg, rgba(7, 31, 58, .18), transparent 44%);
  pointer-events: none;
}

.fk-gallery-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.fk-gallery-caption span,
.fk-gallery-caption strong {
  display: block;
}

.fk-gallery-caption span {
  color: var(--fk-lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-gallery-caption strong {
  max-width: 520px;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.15;
}

.fk-product-thumbs-shell {
  position: relative;
  margin-top: 16px;
  padding: 0 42px;
}

.fk-product-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.fk-product-thumbs::-webkit-scrollbar {
  display: none;
}

.fk-product-thumbs button {
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 176px;
  height: 116px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  scroll-snap-align: start;
}

.fk-product-thumbs button.is-active,
.fk-product-thumbs button:hover {
  border-color: var(--fk-lime);
  background: rgba(197, 241, 68, .14);
}

.fk-product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fk-thumb-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 32px;
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  background: rgba(7, 31, 58, .84);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.fk-thumb-nav:hover {
  border-color: var(--fk-lime);
  color: #071f3a;
  background: var(--fk-lime);
}

.fk-thumb-prev {
  left: 0;
}

.fk-thumb-next {
  right: 0;
}

.fk-thumb-nav.is-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.fk-product-thumbs .fk-video-thumb {
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(7, 31, 58, .82), rgba(23, 126, 211, .48)),
    url("../images/forklift/forklift-hero.webp") center / cover;
}

.fk-product-thumbs .fk-video-thumb::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 203, 61, .95);
  box-shadow: 0 10px 30px rgba(7, 31, 58, .24);
}

.fk-product-thumbs .fk-video-thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 10px);
  transform: translate(-36%, -50%);
  border-left: 13px solid #071f3a;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.fk-product-thumbs .fk-video-thumb span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  text-align: center;
}

.fk-product-summary {
  position: sticky;
  top: 96px;
  padding: 34px;
}

.fk-product-summary h2,
.fk-product-story h2,
.fk-product-sidebar h2 {
  margin: 0 0 16px;
  color: var(--fk-deep);
  font-size: 30px;
  line-height: 1.22;
}

.fk-product-summary p {
  margin: 0;
  color: var(--fk-muted);
  font-size: 16px;
  line-height: 1.75;
}

.fk-summary-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.fk-summary-list div {
  padding: 18px;
  background: #f6faff;
  border: 1px solid var(--fk-line);
}

.fk-summary-list span,
.fk-summary-list strong {
  display: block;
}

.fk-summary-list span {
  color: var(--fk-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-summary-list strong {
  margin-top: 6px;
  color: var(--fk-deep);
  line-height: 1.45;
}

.fk-product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
  gap: 34px;
  align-items: start;
}

.fk-product-story {
  padding: clamp(28px, 4vw, 54px);
}

.fk-product-story p {
  color: var(--fk-muted);
  font-size: 17px;
  line-height: 1.85;
}

.fk-product-detail-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 42px;
  background: #071f3a;
}

.fk-showcase-copy {
  padding: clamp(30px, 4vw, 52px);
  color: #fff;
}

.fk-showcase-copy h2 {
  color: #fff;
  font-size: clamp(32px, 3vw, 48px);
}

.fk-showcase-copy p {
  color: rgba(255, 255, 255, .72);
}

.fk-showcase-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.fk-showcase-points div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

.fk-showcase-points strong,
.fk-showcase-points span {
  display: block;
}

.fk-showcase-points strong {
  color: var(--fk-lime);
  font-size: 17px;
}

.fk-showcase-points span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.fk-showcase-media {
  min-height: 430px;
}

.fk-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fk-feature-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0;
  border: 1px solid var(--fk-line);
}

.fk-feature-ribbon div {
  padding: 28px;
  background: #f7fbff;
  border-right: 1px solid var(--fk-line);
}

.fk-feature-ribbon div:last-child {
  border-right: 0;
}

.fk-feature-ribbon span,
.fk-feature-ribbon strong,
.fk-feature-ribbon em {
  display: block;
}

.fk-feature-ribbon span {
  color: var(--fk-blue);
  font-weight: 900;
}

.fk-feature-ribbon strong {
  margin-top: 12px;
  color: var(--fk-deep);
  font-size: 22px;
}

.fk-feature-ribbon em {
  margin-top: 8px;
  color: var(--fk-muted);
  font-style: normal;
  line-height: 1.6;
}

.fk-product-section {
  margin-top: 56px;
  scroll-margin-top: 132px;
}

.fk-parameter-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--fk-line);
  border-left: 1px solid var(--fk-line);
}

.fk-parameter-table div {
  display: grid;
  grid-template-columns: minmax(130px, .45fr) minmax(0, 1fr);
  min-height: 68px;
  border-right: 1px solid var(--fk-line);
  border-bottom: 1px solid var(--fk-line);
}

.fk-parameter-table span,
.fk-parameter-table strong {
  display: flex;
  align-items: center;
  padding: 16px 18px;
}

.fk-parameter-table span {
  color: var(--fk-muted);
  background: #f4f8fc;
  font-weight: 800;
}

.fk-parameter-table strong {
  color: var(--fk-deep);
  background: #fff;
  line-height: 1.45;
}

.fk-fit-panel {
  padding: clamp(28px, 3.4vw, 46px);
  background: linear-gradient(135deg, #f6faff 0%, #fff 58%, #eef7ff 100%);
  border: 1px solid var(--fk-line);
}

.fk-product-detail-page .fk-product-parameter-top {
  padding: 46px 0;
}

.fk-product-detail-page .fk-product-detail-content-section {
  padding-top: 46px;
}

.fk-product-parameter-top .fk-product-section {
  margin-top: 0;
}

.fk-product-parameter-top .fk-fit-panel {
  padding: clamp(22px, 2.2vw, 32px);
}

.fk-product-parameter-top .fk-section-head {
  max-width: none;
  margin-bottom: 24px;
}

.fk-product-parameter-top .fk-section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.fk-product-parameter-top .fk-parameter-table div {
  min-height: 58px;
}

.fk-product-parameter-top .fk-parameter-table span,
.fk-product-parameter-top .fk-parameter-table strong {
  padding: 13px 16px;
}

.fk-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 24px;
}

.fk-parameter-table-featured {
  background: #fff;
  box-shadow: 0 20px 50px rgba(7, 31, 58, .07);
}

.fk-product-story .fk-fit-grid {
  grid-template-columns: 1fr;
}

.fk-product-story .fk-parameter-table-featured {
  grid-template-columns: 1fr;
}

.fk-product-story .fk-parameter-table-featured div {
  grid-template-columns: minmax(170px, .34fr) minmax(0, 1fr);
}

.fk-fit-note {
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 31, 58, .96), rgba(12, 61, 107, .94)),
    url("../images/forklift/forklift-factory.webp") center/cover no-repeat;
}

.fk-fit-note .fk-section-label {
  background: var(--fk-lime);
  color: var(--fk-deep);
}

.fk-fit-note h3 {
  margin: 18px 0 14px;
  color: #fff;
  font-size: 30px;
  line-height: 1.22;
}

.fk-fit-note p,
.fk-fit-note li {
  color: rgba(255, 255, 255, .76);
  line-height: 1.72;
}

.fk-fit-note ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fk-fit-note li {
  position: relative;
  padding-left: 22px;
}

.fk-fit-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  background: var(--fk-lime);
}

.fk-detail-longcopy {
  padding: clamp(28px, 3.4vw, 46px);
  background: #fff;
  border: 1px solid var(--fk-line);
}

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

.fk-product-story .fk-longcopy-grid {
  grid-template-columns: 1fr;
}

.fk-longcopy-grid div {
  padding: 28px;
  background: #f7fbff;
  border: 1px solid var(--fk-line);
}

.fk-longcopy-grid h3 {
  margin: 0 0 12px;
  color: var(--fk-deep);
  font-size: 26px;
  line-height: 1.25;
}

.fk-longcopy-grid p {
  margin: 0 0 14px;
}

.fk-longcopy-grid p:last-child {
  margin-bottom: 0;
}

.fk-spec-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--fk-line);
  border: 1px solid var(--fk-line);
}

.fk-product-story .fk-spec-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fk-spec-matrix article {
  padding: 26px;
  background: #fff;
}

.fk-spec-matrix span,
.fk-spec-matrix strong {
  display: block;
}

.fk-spec-matrix span {
  color: var(--fk-blue);
  font-size: 13px;
  font-weight: 900;
}

.fk-spec-matrix strong {
  margin-top: 12px;
  color: var(--fk-deep);
  font-size: 21px;
  line-height: 1.28;
}

.fk-spec-matrix p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.fk-application-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.fk-application-cards article {
  background: #fff;
  border: 1px solid var(--fk-line);
}

.fk-application-cards img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fk-application-cards strong {
  display: block;
  padding: 22px 22px 0;
  color: var(--fk-deep);
  font-size: 21px;
  line-height: 1.3;
}

.fk-application-cards p {
  margin: 10px 0 0;
  padding: 0 22px 24px;
  font-size: 15px;
  line-height: 1.72;
}

.fk-product-quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: #fff;
  background: var(--fk-deep);
}

.fk-product-quote-band h2,
.fk-product-quote-band p {
  color: #fff;
}

.fk-product-quote-band p {
  margin: 0;
  opacity: .72;
}

.fk-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  background: var(--fk-line);
  border: 1px solid var(--fk-line);
}

.fk-process-grid div {
  padding: 28px;
  background: #fff;
}

.fk-process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--fk-blue);
  font-weight: 900;
}

.fk-process-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--fk-deep);
  font-size: 20px;
  line-height: 1.3;
}

.fk-process-grid p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.fk-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .78fr);
  gap: clamp(64px, 5vw, 108px);
  align-items: center;
}

.fk-detail-gallery {
  padding: 20px;
  background: var(--fk-bg);
  border: 1px solid var(--fk-line);
  box-shadow: 0 28px 70px rgba(7, 31, 58, .12);
}

.fk-detail-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.fk-detail-copy h1 {
  margin: 18px 0;
  color: var(--fk-deep);
  font-size: clamp(42px, 2.55vw, 58px);
  line-height: 1.12;
  font-weight: 900;
}

.fk-detail-copy p {
  margin: 0;
  color: var(--fk-muted);
  font-size: 17px;
  line-height: 1.85;
}

.fk-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fk-detail-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--fk-deep);
  background: #eef6ff;
  border: 1px solid var(--fk-lime);
  font-weight: 800;
}

.fk-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fk-btn-dark {
  color: #fff;
  background: var(--fk-deep);
}

.fk-detail-content h2,
.fk-demo-article h2 {
  margin: 0 0 18px;
  color: var(--fk-deep);
  font-size: 38px;
  line-height: 1.2;
}

.fk-light-grid article {
  color: var(--fk-ink);
  border-color: var(--fk-line);
  background: #fff;
}

.fk-light-grid h3 {
  color: var(--fk-deep);
}

.fk-light-grid p {
  color: var(--fk-muted);
}

.fk-article-grid {
  display: grid;
  gap: 20px;
}

.fk-article-grid article,
.fk-article-grid > a {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--fk-line);
  color: inherit;
  text-decoration: none;
}

.fk-article-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fk-article-grid span {
  color: var(--fk-forest);
  font-weight: 900;
  text-transform: uppercase;
}

.fk-article-grid h2 {
  margin: 8px 0 10px;
  color: var(--fk-deep);
  font-size: 28px;
}

.fk-article-grid p,
.fk-demo-article p {
  margin: 0;
  color: var(--fk-muted);
  font-size: 16px;
  line-height: 1.85;
}

.fk-demo-article {
  max-width: 980px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--fk-line);
}

.fk-demo-article img {
  width: 100%;
  margin-bottom: 28px;
  object-fit: cover;
}

.fk-demo-article h2:not(:first-of-type) {
  margin-top: 34px;
}

.fk-detail-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.fk-detail-panels section {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 18px 42px rgba(7, 31, 58, .06);
}

.fk-detail-panels h2 {
  margin: 0 0 16px;
  color: var(--fk-deep);
  font-size: 26px;
}

.fk-detail-panels ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fk-detail-panels li {
  position: relative;
  padding-left: 24px;
  color: var(--fk-muted);
  line-height: 1.7;
}

.fk-detail-panels li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  background: var(--fk-green);
}

.fk-related {
  margin-top: 72px;
}

.fk-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.fk-news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--fk-ink);
  background: #fff;
  border: 1px solid var(--fk-line);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(7, 31, 58, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.fk-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(7, 31, 58, .12);
}

.fk-news-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 31, 58, .08), rgba(245, 200, 76, .12)),
    url("../images/forklift/forklift-factory.webp") center/cover no-repeat;
}

.fk-news-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fk-news-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 30px;
}

.fk-news-body span {
  color: var(--fk-forest);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-news-body h3 {
  margin: 12px 0;
  color: var(--fk-deep);
  font-size: 25px;
  line-height: 1.28;
}

.fk-news-body p {
  flex: 1 1 auto;
  margin: 0 0 20px;
  color: var(--fk-muted);
  line-height: 1.75;
}

.fk-news-body em {
  color: var(--fk-forest);
  font-style: normal;
  font-weight: 900;
}

.fk-video-list-page .fk-inner-section {
  padding-top: 72px;
}

.fk-video-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
  padding: 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--fk-deep), #0e4f8d);
  box-shadow: 0 30px 80px rgba(7, 31, 58, .12);
}

.fk-video-toolbar h2 {
  max-width: 720px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(32px, 2.5vw, 54px);
  line-height: 1.08;
  text-transform: uppercase;
}

.fk-video-toolbar p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.8;
}

.fk-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.fk-video-card {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  color: var(--fk-ink);
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 24px 70px rgba(7, 31, 58, .08);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.fk-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(7, 31, 58, .16);
}

.fk-video-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--fk-deep);
}

.fk-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.fk-video-card:hover .fk-video-poster img {
  transform: scale(1.05);
}

.fk-video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 31, 58, .08), rgba(7, 31, 58, .62));
}

.fk-video-poster i {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--fk-lime);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.fk-video-poster i::before {
  position: absolute;
  left: 25px;
  top: 20px;
  content: "";
  border-left: 18px solid var(--fk-deep);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.fk-video-body {
  display: block;
  min-height: 220px;
  padding: 28px;
}

.fk-video-body em {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--fk-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-video-body strong {
  display: block;
  color: var(--fk-deep);
  font-size: 24px;
  line-height: 1.22;
}

.fk-video-body small {
  display: block;
  margin-top: 14px;
  color: var(--fk-muted);
  font-size: 16px;
  line-height: 1.7;
}

.fk-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(7, 31, 58, .82);
}

.fk-video-modal.is-open {
  display: flex;
}

.fk-video-dialog {
  width: min(1120px, 96vw);
  background: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
}

.fk-video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: #fff;
  background: var(--fk-deep);
}

.fk-video-modal-head strong {
  font-size: 18px;
}

.fk-video-modal-head button {
  width: 36px;
  height: 36px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 0;
  cursor: pointer;
}

.fk-video-player {
  aspect-ratio: 16 / 9;
  background: #000;
}

.fk-video-player iframe,
.fk-video-player video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.fk-inline-video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fk-single-intro .fk-rich-content {
  max-height: 320px;
  overflow: hidden;
}

.fk-rich-content {
  color: var(--fk-muted);
  font-size: 17px;
  line-height: 1.85;
}

.fk-rich-content:empty {
  display: none;
}

.fk-rich-content p {
  margin: 0 0 16px;
}

.fk-rich-content img {
  max-width: 100%;
  height: auto;
}

.fk-article-hero {
  padding: 118px 0;
}

.fk-article-detail-page .fk-article-hero {
  padding: 108px 0 116px;
  background:
    linear-gradient(90deg, rgba(7, 31, 58, .96), rgba(7, 31, 58, .72), rgba(7, 31, 58, .22)),
    url("../images/forklift/forklift-hero.webp") center right/cover no-repeat;
}

.fk-article-detail-page .fk-article-hero h1 {
  max-width: 1120px;
}

.fk-article-detail-page .fk-inner-section {
  padding: 84px 0 112px;
}

.fk-article-detail-page .fk-content-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
}

.fk-article-detail {
  min-width: 0;
  padding: 46px;
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 24px 60px rgba(7, 31, 58, .08);
}

.fk-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--fk-muted);
  font-size: 14px;
}

.fk-article-cover {
  margin-bottom: 30px;
  overflow: hidden;
  background: var(--fk-bg);
}

.fk-article-cover img {
  display: block;
  width: 100%;
  height: clamp(360px, 34vw, 560px);
  object-fit: cover;
}

.fk-article-detail-page .fk-product-sidebar {
  top: 146px;
}

.fk-article-detail-page .fk-side-block {
  padding: 26px;
}

.fk-article-detail-page .fk-side-quote {
  box-shadow: 0 24px 54px rgba(7, 31, 58, .16);
}

.fk-demo-copy {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--fk-line);
}

.fk-demo-copy h2 {
  margin: 0 0 12px;
  color: var(--fk-deep);
  font-size: 34px;
  line-height: 1.25;
}

.fk-demo-copy p {
  margin: 0 0 22px;
  color: var(--fk-muted);
  font-size: 16px;
  line-height: 1.85;
}

.fk-detail-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.fk-detail-nav a {
  min-height: 92px;
  padding: 18px;
  color: var(--fk-ink);
  background: #f5f9fd;
  border: 1px solid var(--fk-line);
  text-decoration: none;
}

.fk-detail-nav a:hover {
  border-color: rgba(19, 116, 201, .35);
  background: #eef6ff;
}

.fk-demo-detail-nav {
  display: none;
}

.fk-article-detail-page .fk-detail-nav {
  gap: 20px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--fk-line);
}

.fk-article-detail-page .fk-detail-nav a {
  position: relative;
  min-height: 118px;
  padding: 24px 28px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(7, 31, 58, .06);
}

.fk-detail-nav span,
.fk-detail-nav strong {
  display: block;
}

.fk-detail-nav span {
  color: var(--fk-forest);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fk-detail-nav strong {
  margin-top: 8px;
  line-height: 1.45;
}

.fk-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1fr);
  gap: 46px;
  align-items: stretch;
}

.fk-contact-card,
.fk-contact-form {
  padding: 48px;
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 24px 60px rgba(7, 31, 58, .08);
}

.fk-contact-card {
  color: rgba(255, 255, 255, .78);
  background:
    linear-gradient(135deg, rgba(7, 31, 58, .96), rgba(23, 103, 177, .9)),
    url("../images/forklift/forklift-factory.webp") center/cover no-repeat;
  border-color: var(--fk-deep);
}

.fk-contact-card h2,
.fk-contact-form h2 {
  margin: 18px 0;
  font-size: 42px;
  line-height: 1.2;
}

.fk-contact-card h2 {
  color: #fff;
}

.fk-contact-card p {
  max-width: 560px;
  margin: 0;
  line-height: 1.85;
}

.fk-contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.fk-contact-lines a,
.fk-contact-lines span {
  display: block;
  padding: 14px 16px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  text-decoration: none;
}

.fk-contact-form form {
  display: grid;
  gap: 18px;
}

.fk-contact-form input,
.fk-contact-form textarea {
  width: 100%;
  padding: 18px 18px;
  border: 1px solid var(--fk-line);
  color: var(--fk-ink);
  background: #f7fbff;
  outline: none;
}

.fk-contact-form input:focus,
.fk-contact-form textarea:focus {
  border-color: var(--fk-green);
  background: #fff;
}

.fk-contact-form button {
  min-height: 58px;
  border: 0;
  color: var(--fk-deep);
  background: var(--fk-lime);
  font-weight: 900;
  cursor: pointer;
}

.fk-contact-map {
  display: grid;
  grid-template-columns: minmax(320px, .58fr) minmax(0, 1fr);
  gap: 0;
  margin-top: 46px;
  border: 1px solid var(--fk-line);
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 31, 58, .08);
  overflow: hidden;
}

.fk-contact-map-info {
  padding: 42px;
  background: #f8fbff;
}

.fk-contact-map-info h2 {
  margin: 16px 0;
  font-size: 34px;
  line-height: 1.2;
}

.fk-contact-map-info p {
  margin: 0 0 24px;
  color: var(--fk-muted);
  line-height: 1.8;
}

.fk-contact-map-info a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--fk-deep);
  background: var(--fk-lime);
  font-weight: 900;
  text-decoration: none;
}

.fk-contact-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.fk-download-page .fk-inner-section {
  padding-top: 76px;
}

.fk-download-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.fk-download-aside {
  display: grid;
  gap: 24px;
}

.fk-download-help,
.fk-download-quote {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 18px 44px rgba(7, 31, 58, .06);
}

.fk-download-help span {
  display: block;
  margin-bottom: 18px;
  color: var(--fk-deep);
  font-size: 22px;
  font-weight: 900;
}

.fk-download-help a {
  display: flex;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 14px;
  align-items: center;
  color: var(--fk-ink);
  background: #f4f8fc;
  text-decoration: none;
  font-weight: 900;
}

.fk-download-help a + a {
  margin-top: 10px;
}

.fk-download-help a:after {
  content: ">";
  color: var(--fk-blue);
}

.fk-download-quote {
  background: var(--fk-deep);
}

.fk-download-quote h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
}

.fk-download-quote p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.fk-download-quote a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 24px;
  color: #fff;
  background: var(--fk-blue);
  text-decoration: none;
  font-weight: 900;
}

.fk-download-main {
  min-width: 0;
}

.fk-download-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--fk-line);
}

.fk-download-intro h2 {
  margin: 14px 0 0;
  color: var(--fk-deep);
  font-size: 38px;
  line-height: 1.15;
}

.fk-download-intro p {
  margin: 0;
  color: var(--fk-muted);
  line-height: 1.75;
}

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

.fk-download-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 16px 38px rgba(7, 31, 58, .05);
}

.fk-download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  color: #fff;
  background: var(--fk-blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
}

.fk-download-info strong {
  display: block;
  color: var(--fk-deep);
  font-size: 22px;
  line-height: 1.25;
}

.fk-download-info p {
  margin: 9px 0 10px;
  color: var(--fk-muted);
  line-height: 1.65;
}

.fk-download-info em {
  color: var(--fk-blue);
  font-style: normal;
  font-weight: 900;
}

.fk-download-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.fk-download-view,
.fk-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.fk-download-view {
  color: var(--fk-blue);
  background: #eef6ff;
  border: 1px solid #cde4fb;
}

.fk-download-btn {
  color: #fff;
  background: var(--fk-deep);
  border: 1px solid var(--fk-deep);
}

.fk-download-detail {
  padding: 44px;
  background: #fff;
  border: 1px solid var(--fk-line);
  box-shadow: 0 20px 54px rgba(7, 31, 58, .07);
}

.fk-download-file-head {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--fk-line);
}

.fk-download-file-head .fk-download-icon {
  width: 86px;
  height: 86px;
}

.fk-download-file-head h2 {
  margin: 12px 0 10px;
  color: var(--fk-deep);
  font-size: 38px;
  line-height: 1.16;
}

.fk-download-file-head p {
  margin: 0;
  color: var(--fk-muted);
  line-height: 1.7;
}

.fk-download-file-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.fk-product-sidebar .fk-side-quote,
.fk-news-sidebar .fk-side-quote,
.fk-download-aside .fk-side-quote {
  background: var(--fk-deep);
  border-color: var(--fk-deep);
  color: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 70px rgba(7, 31, 58, .18);
}

.fk-product-sidebar .fk-side-quote h2,
.fk-news-sidebar .fk-side-quote h2,
.fk-download-aside .fk-side-quote h2 {
  color: #fff;
}

.fk-product-sidebar .fk-side-quote p,
.fk-news-sidebar .fk-side-quote p,
.fk-download-aside .fk-side-quote p {
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 1200px) {
  .fk-hero h1 {
    font-size: 52px;
  }
  .fk-product-grid,
  .fk-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .fk-hero,
  .fk-hero-swiper,
  .fk-hero-slide,
  .fk-hero-inner {
    min-height: auto;
  }
  .fk-hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 31, 58, .95), rgba(7, 31, 58, .78)),
      url("../images/forklift/forklift-hero.webp") center/cover no-repeat;
  }
  .fk-hero-inner,
  .fk-product-hero-grid,
  .fk-two-col,
  .fk-spec-layout,
  .fk-inquiry-inner,
  .fk-catalog-layout,
  .fk-content-layout,
  .fk-product-main-grid,
  .fk-product-detail-layout,
  .fk-product-detail-showcase,
  .fk-product-quote-band,
  .fk-fit-grid,
  .fk-longcopy-grid {
    grid-template-columns: 1fr;
  }
  .fk-hero-inner {
    padding-top: 82px;
    padding-bottom: 64px;
  }
  .fk-hero h1 {
    font-size: 38px;
  }
  .fk-strip {
    margin-top: 0;
  }
  .fk-strip-grid,
  .fk-product-grid,
  .fk-scenario-grid,
  .fk-news-grid,
  .fk-video-grid,
  .fk-contact-layout,
  .fk-download-layout,
  .fk-download-intro,
  .fk-download-row,
  .fk-download-file-head,
  .fk-download-list,
  .fk-spec-table,
  .fk-parameter-table,
  .fk-check-grid,
  .fk-detail-panels,
  .fk-detail-nav,
  .fk-feature-ribbon,
  .fk-application-cards,
  .fk-process-grid,
  .fk-spec-matrix {
    grid-template-columns: 1fr;
  }
  .fk-section {
    padding: 64px 0;
  }
  .fk-copy-block h2,
  .fk-section-head h2,
  .fk-spec-copy h2,
  .fk-inquiry h2 {
    font-size: 30px;
  }
  .fk-topbar .l-wrap,
  .fk-footer-grid,
  .fk-detail-grid,
  .fk-article-grid article,
  .fk-article-grid > a {
    display: block;
  }
  .fk-nav .l-wrap {
    display: flex;
    min-height: 64px;
    padding-right: 18px;
    padding-left: 18px;
    gap: 12px;
  }
  .fk-topbar {
    display: none;
  }
  .fk-mobile-toggle {
    display: block;
    flex: 0 0 42px;
  }
  .fk-nav-cta {
    display: none;
  }
  .fk-menu {
    position: fixed;
    left: 0;
    top: 64px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: calc(100vh - 64px);
    margin: 0;
    padding: 12px 22px 72px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    background: #fff;
    border-top: 1px solid var(--fk-line);
    box-shadow: 0 24px 52px rgba(7, 31, 58, .16);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .fk-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .fk-menu a,
  .fk-menu-item > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    min-height: 52px;
    margin: 0;
    padding: 0;
    color: var(--fk-deep);
    font-size: 17px;
    border-bottom: 1px solid var(--fk-line);
  }
  .fk-menu-item {
    display: block;
  }
  .fk-menu-item > a:after {
    content: "+";
    color: var(--fk-blue);
    font-size: 20px;
  }
  .fk-menu-item.is-open > a:after {
    content: "-";
  }
  .fk-submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 6px 14px;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: #fff;
  }
  .fk-menu-item:hover .fk-submenu {
    transform: none;
  }
  .fk-menu-item.is-open .fk-submenu {
    display: block;
  }
  .fk-submenu a {
    min-height: 42px;
    padding: 0;
    color: var(--fk-muted);
    font-size: 15px;
    border-bottom: 1px solid #eef3f8;
  }
  .fk-menu-open {
    overflow: hidden;
  }
  .fk-download-row {
    gap: 16px;
  }
  .fk-download-actions,
  .fk-download-file-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .fk-download-view,
  .fk-download-btn {
    width: 100%;
  }
  .fk-download-intro h2,
  .fk-download-file-head h2 {
    font-size: 30px;
  }
  .fk-inner-hero {
    padding: 74px 0;
  }
  .fk-page-titlebar .l-wrap {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .fk-page-path {
    flex-wrap: wrap;
    white-space: normal;
  }
  .fk-inner-hero h1,
  .fk-detail-copy h1 {
    font-size: 34px;
  }
  .fk-article-grid img {
    margin-bottom: 18px;
  }
  .fk-floating-contact {
    right: 10px;
    top: auto;
    bottom: 18px;
  }
  .fk-product-sidebar {
    position: static;
  }
  .fk-product-hero-grid {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .fk-product-hero h1 {
    font-size: 42px;
  }
  .fk-hero-spec-card strong {
    font-size: 44px;
  }
  .fk-product-main {
    padding-top: 42px;
  }
  .fk-product-summary {
    position: static;
  }
  .fk-product-main-image {
    min-height: auto;
  }
  .fk-product-main-image img {
    max-height: none;
  }
  .fk-showcase-media {
    min-height: 320px;
  }
  .fk-feature-ribbon div {
    border-right: 0;
    border-bottom: 1px solid var(--fk-line);
  }
  .fk-feature-ribbon div:last-child {
    border-bottom: 0;
  }
  .fk-catalog-toolbar {
    display: block;
  }
  .fk-video-toolbar {
    display: block;
    padding: 28px;
  }
  .fk-video-toolbar p {
    margin-top: 18px;
  }
  .fk-video-modal {
    padding: 16px;
  }
  .fk-article-detail {
    padding: 22px;
  }
  .fk-hero-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .forklift-template .l-wrap {
    width: min(100% - 28px, var(--fk-wrap));
  }
  .fk-topbar {
    font-size: 12px;
  }
  .fk-topbar .fk-contact {
    margin-top: 8px;
  }
  .fk-brand {
    gap: 10px;
  }
  .fk-brand img {
    max-width: 112px;
  }
  .fk-menu a,
  .fk-menu-item > a {
    margin: 0;
    font-size: 16px;
  }
  .fk-head-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .fk-text-link {
    max-width: 100%;
    white-space: normal;
  }
  .fk-product-story .fk-parameter-table-featured div {
    grid-template-columns: minmax(118px, .44fr) minmax(0, 1fr);
  }
  .fk-product-story .fk-parameter-table-featured span,
  .fk-product-story .fk-parameter-table-featured strong {
    padding: 14px 12px;
  }
  .fk-submenu {
    width: 100%;
  }
  .fk-menu-item:hover .fk-submenu {
    display: none;
  }
  .fk-menu-item.is-open .fk-submenu {
    display: block;
  }
  .fk-hero-inner {
    padding-top: 58px;
    padding-bottom: 48px;
  }
  .fk-hero h1 {
    font-size: 32px;
  }
  .fk-hero p,
  .fk-inner-hero p {
    font-size: 15px;
  }
  .fk-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .fk-hero-actions .fk-btn {
    width: 100%;
  }
  .fk-inner-hero {
    padding: 54px 0;
  }
  .fk-inner-hero h1,
  .fk-detail-copy h1 {
    font-size: 28px;
  }
  .fk-product-hero-grid {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .fk-product-hero h1 {
    font-size: 34px;
  }
  .fk-product-hero p {
    font-size: 15px;
  }
  .fk-hero-spec-card {
    padding: 24px;
  }
  .fk-hero-spec-card strong {
    font-size: 38px;
  }
  .fk-hero-spec-card em {
    font-size: 18px;
  }
  .fk-product-visual,
  .fk-product-summary,
  .fk-product-story,
  .fk-product-sidebar .fk-side-block {
    box-shadow: 0 16px 38px rgba(7, 31, 58, .08);
  }
  .fk-product-visual,
  .fk-product-summary,
  .fk-product-story {
    padding: 18px;
  }
  .fk-product-main-image {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
  .fk-product-main-image img {
    max-height: none;
  }
  .fk-gallery-caption {
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: block;
  }
  .fk-gallery-caption strong {
    margin-top: 6px;
    font-size: 22px;
  }
  .fk-product-thumbs {
    gap: 10px;
  }
  .fk-product-thumbs-shell {
    padding: 0 34px;
  }
  .fk-thumb-nav {
    width: 28px;
    font-size: 24px;
  }
  .fk-product-thumbs button {
    flex-basis: calc((100% - 10px) / 2);
    min-width: 142px;
    height: 86px;
  }
  .fk-product-summary h2,
  .fk-product-story h2,
  .fk-product-sidebar h2 {
    font-size: 25px;
  }
  .fk-feature-ribbon div {
    padding: 22px;
  }
  .fk-parameter-table div {
    grid-template-columns: 1fr;
  }
  .fk-parameter-table span,
  .fk-parameter-table strong {
    padding: 12px 14px;
  }
  .fk-application-cards strong {
    font-size: 19px;
  }
  .fk-product-quote-band {
    padding: 24px;
  }
  .fk-showcase-copy {
    padding: 24px;
  }
  .fk-showcase-media {
    min-height: 220px;
  }
  .fk-process-grid div {
    padding: 22px;
  }
  .fk-page-titlebar h1 {
    font-size: 20px;
  }
  .fk-section {
    padding: 48px 0;
  }
  .fk-strip-card,
  .fk-product,
  .fk-news-card,
  .fk-video-card,
  .fk-side-block,
  .fk-download-help,
  .fk-download-quote,
  .fk-download-intro,
  .fk-download-row,
  .fk-download-detail {
    padding: 22px;
  }
  .fk-product-img,
  .fk-news-img,
  .fk-video-poster {
    min-height: 190px;
  }
  .fk-product-showroom-page .fk-product-img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .fk-download-icon,
  .fk-download-file-head .fk-download-icon {
    width: 62px;
    height: 62px;
  }
  .fk-download-info strong {
    font-size: 19px;
  }
  .fk-download-intro h2,
  .fk-download-file-head h2 {
    font-size: 25px;
  }
  .fk-detail-nav a {
    padding: 20px;
  }
  .fk-article-cover img,
  .fk-rich-content img {
    max-width: 100%;
    height: auto;
  }
  .fk-video-dialog {
    width: 100%;
  }
  .fk-video-modal-head {
    padding: 14px 16px;
  }
  .fk-video-player {
    aspect-ratio: 16 / 9;
  }
  .fk-floating-contact {
    display: none;
  }
  .forklift-template {
    padding-bottom: 72px;
  }
  .fk-mobile-contactbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 60px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, .96);
    border-top: 2px solid var(--fk-blue);
    box-shadow: 0 -14px 38px rgba(7, 31, 58, .16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .fk-mobile-contactbar a,
  .fk-mobile-contactbar button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    min-height: 60px;
    padding: 7px 4px 6px;
    border: 0;
    color: var(--fk-deep);
    background: transparent;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
  }
  .fk-mobile-contactbar a + a,
  .fk-mobile-contactbar button {
    border-left: 1px solid #e1ebf5;
  }
  .fk-mobile-contactbar span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
    background: var(--fk-blue);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
  }
  .fk-mobile-contactbar a:first-child span {
    background: #25d366;
  }
  .fk-mobile-contactbar .fk-open-inquiry span {
    color: var(--fk-deep);
    background: var(--fk-lime);
  }
  .fk-mobile-contactbar button span {
    background: var(--fk-deep);
    font-size: 15px;
  }
  .fk-mobile-contactbar em {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: var(--fk-ink);
    font-size: 12px;
    font-style: normal;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .fk-inquiry-modal {
    align-items: flex-end;
    padding: 14px 14px calc(78px + env(safe-area-inset-bottom));
  }
  .fk-inquiry-dialog {
    max-height: calc(100vh - 102px);
    padding: 24px 18px 20px;
  }
  .fk-inquiry-close {
    top: 12px;
    right: 12px;
  }
  .fk-inquiry-head {
    margin-bottom: 18px;
    padding-right: 42px;
  }
  .fk-inquiry-head h2 {
    font-size: 28px;
  }
  .fk-inquiry-head p {
    font-size: 14px;
  }
  .fk-inquiry-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .fk-inquiry-form button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fk-topbar .l-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .fk-language-current {
    height: 28px;
    padding: 0 8px;
  }
  .fk-language-current span {
    max-width: 72px;
  }
  .fk-language-panel {
    right: 50%;
    transform: translate(50%, 8px);
  }
  .fk-language:hover .fk-language-panel,
  .fk-language:focus-within .fk-language-panel {
    transform: translate(50%, 0);
  }
  .fk-contact-map {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }
  .fk-contact-map-info {
    padding: 28px 22px;
  }
  .fk-contact-map-info h2 {
    font-size: 26px;
  }
  .fk-contact-map iframe {
    min-height: 320px;
  }
}

/* Forklift industry homepage */
.forklift-home{background:#f4f5f6;color:#202226}
.forklift-home main{overflow:hidden}
.fl-hero{position:relative;min-height:690px;background:#17191c;color:#fff}
.fl-hero-media{position:absolute;inset:0;background:linear-gradient(90deg,rgba(16,18,20,.98) 0%,rgba(16,18,20,.92) 38%,rgba(16,18,20,.42) 63%,rgba(16,18,20,.08) 100%),url('../images/forklift/forklift-hero.webp') center/cover no-repeat}
.fl-hero-inner{position:relative;z-index:2;min-height:690px;display:flex;align-items:center}
.fl-hero-copy{width:min(650px,55%);padding:78px 0 70px}
.fl-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:12px;font-weight:800;letter-spacing:.18em;color:#f58220;text-transform:uppercase}
.fl-eyebrow:before{content:"";width:34px;height:2px;background:#f58220}
.fl-hero h1{font-size:clamp(46px,5.2vw,76px);line-height:1.02;letter-spacing:-.035em;margin:22px 0 24px;color:#fff;max-width:720px}
.fl-hero-copy>p{font-size:18px;line-height:1.75;color:#d7d9dc;max-width:610px}
.fl-hero-actions{display:flex;gap:14px;margin-top:34px}
.fl-btn{min-height:52px;padding:0 26px;border:0;display:inline-flex;align-items:center;justify-content:center;font-size:14px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;cursor:pointer;transition:.25s}
.fl-btn-primary{background:#f58220;color:#151719}
.fl-btn-primary:hover{background:#ff9b45;color:#151719;transform:translateY(-2px)}
.fl-btn-outline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.45)}
.fl-btn-outline:hover{border-color:#fff;background:#fff;color:#151719}
.fl-btn-dark{background:#202226;color:#fff;margin-top:28px}
.fl-hero-points{display:grid;grid-template-columns:repeat(3,1fr);margin-top:52px;padding-top:28px;border-top:1px solid rgba(255,255,255,.2)}
.fl-hero-points li{display:flex;flex-direction:column;gap:4px;padding-right:18px}
.fl-hero-points strong{font-size:21px;color:#fff}.fl-hero-points span{font-size:12px;color:#aeb2b6;text-transform:uppercase;letter-spacing:.08em}
.fl-trustbar{background:#f58220;color:#161719}.fl-trustbar .l-wrap{min-height:76px;display:grid;grid-template-columns:repeat(4,1fr);align-items:center}
.fl-trustbar span{font-size:13px;font-weight:800;text-align:center;text-transform:uppercase;letter-spacing:.06em;border-right:1px solid rgba(0,0,0,.2)}
.fl-trustbar span:last-child{border:0}
.fl-section{padding:105px 0}
.fl-section-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:50px;margin-bottom:42px}
.fl-section-heading h2,.fl-capability-copy h2,.fl-selection h2{font-size:clamp(34px,4vw,52px);line-height:1.12;letter-spacing:-.025em;margin:12px 0 0;color:#1f2124}
.fl-section-heading>p{max-width:470px;font-size:16px;line-height:1.75;color:#696e74}
.fl-series{background:#f4f5f6}.fl-series-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.fl-series-card{display:block;background:#fff;color:#232528;box-shadow:0 12px 35px rgba(21,24,27,.08);transition:.3s}
.fl-series-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(21,24,27,.14)}
.fl-series-image{height:300px;overflow:hidden;background:#e9eaec}
.fl-series-image img{width:100%;height:100%;object-fit:cover;transition:.4s}.fl-series-card:hover img{transform:scale(1.035)}
.fl-series-body{padding:28px 30px 30px}.fl-series-body>span{font-size:11px;color:#f07816;font-weight:800;letter-spacing:.14em}
.fl-series-body h3{font-size:28px;margin:10px 0;color:#222529}.fl-series-body p{min-height:72px;font-size:14px;line-height:1.7;color:#6d7278}
.fl-series-body ul{border-top:1px solid #eceef0;border-bottom:1px solid #eceef0;margin:18px 0;padding:14px 0;display:grid;gap:8px}
.fl-series-body li{font-size:13px;color:#4b5055;padding-left:16px;position:relative}.fl-series-body li:before{content:"";position:absolute;left:0;top:7px;width:6px;height:6px;background:#f58220}
.fl-series-body strong,.fl-model-body strong{font-size:13px;color:#202226;text-transform:uppercase;letter-spacing:.05em}.fl-series-body i,.fl-model-body i{color:#f58220;font-style:normal;margin-left:7px}
.fl-models{background:#202226}.fl-models h2{color:#fff}.fl-models .fl-section-heading>p{color:#aeb2b6}
.fl-heading-row{align-items:flex-end}.fl-link{color:#f58220;font-size:13px;font-weight:800;text-transform:uppercase}
.fl-model-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.fl-model-card{background:#2b2e32;color:#fff;transition:.3s}
.fl-model-card:hover{background:#32363b;transform:translateY(-5px)}
.fl-model-image{height:285px;position:relative;overflow:hidden;background:#f2f2f2}.fl-model-image img{width:100%;height:100%;object-fit:cover}
.fl-model-image span{position:absolute;left:16px;top:16px;background:#f58220;color:#151719;padding:7px 11px;font-size:10px;font-weight:900;text-transform:uppercase}
.fl-model-body{padding:24px 26px 28px}.fl-model-body h3{font-size:21px;color:#fff;margin:0 0 12px}.fl-model-body p{font-size:13px;line-height:1.65;color:#aeb2b6;min-height:44px;margin-bottom:20px}.fl-model-body strong{color:#fff}
.fl-capability{background:#fff}.fl-capability-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:72px;align-items:center}
.fl-capability-image{position:relative}.fl-capability-image>img{width:100%;aspect-ratio:16/10;object-fit:cover}
.fl-capability-image>div{position:absolute;right:-24px;bottom:-24px;background:#f58220;color:#17191c;width:180px;height:150px;display:flex;flex-direction:column;justify-content:center;padding:22px}
.fl-capability-image>div strong{font-size:40px}.fl-capability-image>div span{font-size:12px;font-weight:800;text-transform:uppercase;line-height:1.45}
.fl-capability-copy>p{font-size:15px;line-height:1.75;color:#676c72;margin:22px 0 24px}
.fl-capability-list{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid #e4e6e8}
.fl-capability-list>div{display:flex;gap:14px;padding:18px 10px 18px 0;border-bottom:1px solid #e4e6e8}.fl-capability-list b{font-size:12px;color:#f58220}
.fl-capability-list span{display:flex;flex-direction:column}.fl-capability-list strong{font-size:14px}.fl-capability-list small{font-size:12px;line-height:1.5;color:#747980;margin-top:4px}
.fl-applications{background:#eceeef}.fl-application-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid #d5d8db}
.fl-application-grid article{min-height:260px;padding:32px;border-right:1px solid #d5d8db;background:#f5f6f7;transition:.25s}.fl-application-grid article:last-child{border:0}.fl-application-grid article:hover{background:#202226}
.fl-application-grid span{font-size:12px;color:#f58220;font-weight:800}.fl-application-grid h3{font-size:24px;margin:52px 0 14px}.fl-application-grid p{font-size:13px;line-height:1.7;color:#6d7278}.fl-application-grid article:hover h3{color:#fff}.fl-application-grid article:hover p{color:#b8bdc1}
.fl-selection{background:#17191c;color:#fff;padding:72px 0}.fl-selection>.l-wrap{display:grid;grid-template-columns:1.2fr 2fr auto;gap:45px;align-items:center}.fl-selection h2{font-size:34px;color:#fff}
.fl-selection ul{display:grid;grid-template-columns:1fr 1fr;gap:20px}.fl-selection li{display:flex;gap:12px}.fl-selection li>b{color:#f58220;font-size:11px}.fl-selection li span{display:flex;flex-direction:column}.fl-selection li strong{font-size:13px;color:#fff}.fl-selection li small{font-size:11px;color:#92979c;margin-top:4px}
@media(max-width:1100px){.fl-series-grid,.fl-model-grid{grid-template-columns:repeat(2,1fr)}.fl-capability-grid{gap:40px}.fl-selection>.l-wrap{grid-template-columns:1fr 1fr}.fl-selection .fl-btn{grid-column:1/-1;width:max-content}.fl-application-grid{grid-template-columns:repeat(2,1fr)}.fl-application-grid article:nth-child(2){border-right:0}.fl-application-grid article{border-bottom:1px solid #d5d8db}}
@media(max-width:768px){.fl-hero,.fl-hero-inner{min-height:650px}.fl-hero-media{background:linear-gradient(180deg,rgba(16,18,20,.68),rgba(16,18,20,.96) 63%,#101214),url('../images/forklift/forklift-hero.webp') 64% top/auto 55% no-repeat}.fl-hero-inner{align-items:flex-end}.fl-hero-copy{width:100%;padding:220px 0 44px}.fl-hero h1{font-size:40px}.fl-hero-copy>p{font-size:15px}.fl-hero-actions{flex-direction:column}.fl-btn{width:100%}.fl-hero-points{margin-top:30px}.fl-trustbar .l-wrap{grid-template-columns:1fr 1fr;padding:12px 15px}.fl-trustbar span{padding:11px 4px;border-bottom:1px solid rgba(0,0,0,.17)}.fl-trustbar span:nth-child(2){border-right:0}.fl-section{padding:68px 0}.fl-section-heading{display:block}.fl-section-heading>p{margin-top:16px}.fl-series-grid,.fl-model-grid,.fl-capability-grid{grid-template-columns:1fr}.fl-series-image,.fl-model-image{height:auto;aspect-ratio:4/3}.fl-capability-image>div{right:0;bottom:0;width:145px;height:112px}.fl-capability-grid{gap:40px}.fl-capability-list{grid-template-columns:1fr}.fl-application-grid{grid-template-columns:1fr}.fl-application-grid article{min-height:200px;border-right:0}.fl-application-grid h3{margin-top:35px}.fl-selection>.l-wrap{grid-template-columns:1fr}.fl-selection ul{grid-template-columns:1fr 1fr}.fl-selection .fl-btn{grid-column:auto;width:100%}}
@media(max-width:480px){.fl-hero h1{font-size:34px}.fl-hero-points strong{font-size:17px}.fl-hero-points span{font-size:10px}.fl-section-heading h2,.fl-capability-copy h2{font-size:31px}.fl-selection ul{grid-template-columns:1fr}.fl-series-body{padding:24px 22px}.fl-series-body h3{font-size:24px}}
