﻿@charset "utf-8";

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

.remote-mower-template {
  padding-top: 0;
  background: var(--rm-bg);
  color: var(--rm-ink);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-hero-bg {
  position: absolute;
  inset: 0;
}

.rm-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/jiyou/premium-hero.png") center right/cover no-repeat;
}

.rm-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/jiyou/premium-factory-line.png") center right/cover no-repeat;
}

.rm-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%);
}

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

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

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

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

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

.rm-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%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-hero-panel {
  padding: 34px;
  color: var(--rm-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-dark {
  color: var(--rm-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%);
}

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

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

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

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

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

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

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

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

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

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

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

.rm-product-grid-data,
#rmListProducts,
#rmCmsArticles,
#rmCmsDownloads {
  display: none;
}

.rm-product {
  display: block;
  min-height: 100%;
  padding: 20px;
  color: var(--rm-ink);
  background: #ffffff;
  border: 1px solid var(--rm-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;
}

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

.rm-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/jiyou/jy-c550-blue.jpg") center/cover no-repeat;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-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/jiyou/premium-hero.png") center right/cover no-repeat;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-news-list-page .rm-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%);
}

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

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

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

.rm-news-list-page .rm-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/jiyou/premium-factory-line.png") right center/auto 100% no-repeat;
  box-shadow: 0 28px 70px rgba(7, 31, 58, .09);
}

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

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

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

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

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

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

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

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

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

.rm-product-showroom-page .rm-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%);
}

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

.rm-product-showroom-page .rm-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);
}

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

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

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

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

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

.rm-product-showroom-page .rm-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/jiyou/product-series-banner.png") center right/cover no-repeat;
  border: 0;
  box-shadow: 0 28px 72px rgba(7, 31, 58, .18);
}

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

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

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

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

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

.rm-product-showroom-page .rm-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;
}

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

.rm-product-showroom-page .rm-product::before {
  content: "JIYOU 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;
}

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

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

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

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

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

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

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

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

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

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

.rm-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/jiyou/product-series-banner.png") center/cover no-repeat;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.rm-product-thumbs button {
  height: 116px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-article-grid article,
.rm-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(--rm-line);
  color: inherit;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-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(--rm-deep), #0e4f8d);
  box-shadow: 0 30px 80px rgba(7, 31, 58, .12);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-article-detail-page .rm-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/jiyou/product-series-banner.png") center right/cover no-repeat;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rm-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(--rm-blue);
  text-decoration: none;
  font-weight: 900;
}

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

.rm-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(--rm-line);
}

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

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

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

.rm-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(--rm-line);
  box-shadow: 0 16px 38px rgba(7, 31, 58, .05);
}

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

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

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

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

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

.rm-download-view,
.rm-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;
}

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

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

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

.rm-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(--rm-line);
}

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

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

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

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

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

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

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