:root {
  --blue: #379cf3;
  --blue-dark: #238fe9;
  --text: #404040;
  --muted: #888;
  --red: #e52635;
  --footer: #3f3f3f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.desktop-header {
  height: 94px;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 400px;
}

.brand img {
  width: 100px;
  height: 49px;
  margin-right: 10px;
  object-fit: cover;
}

.brand strong {
  color: #252525;
  font-size: 18px;
}

.brand-copy {
  padding: 4px 0 4px 18px;
  border-left: 1px dotted #ccc;
  color: #999;
  font-size: 14px;
  line-height: 1.7;
}

.language-switch {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
  margin-right: 65px;
  font-size: 13px;
}

.language-switch span {
  width: 1px;
  height: 13px;
  background: #999;
}

.language-switch .active {
  position: relative;
  color: #e32435;
}

.language-switch .active::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #e32435;
  content: "";
}

.hotline {
  display: flex;
  align-items: center;
  color: #999;
  line-height: 1.35;
}

.hotline img {
  width: 52px;
  height: 52px;
  margin-right: 12px;
}

.hotline span {
  display: flex;
  flex-direction: column;
}

.hotline strong {
  color: #2492ee;
  font-size: 22px;
  letter-spacing: 0;
}

.mobile-header {
  display: none;
}

.main-nav {
  position: relative;
  z-index: 20;
  height: 50px;
  background: var(--blue);
}

.nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.nav-inner a {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  transition: background-color .2s ease;
}

.nav-inner a:hover,
.nav-inner a.active {
  background: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #e8eef5;
  aspect-ratio: 2500 / 651;
}

.hero-slides,
.hero-slide,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slides {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 1;
  transform: translate3d(100%, 0, 0);
  transition: transform 1s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
}

.hero-slide.active {
  transform: translate3d(0, 0, 0);
}

.hero-slide.prev {
  transform: translate3d(-100%, 0, 0);
}

.hero-slide img {
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  top: 31%;
  left: max(calc((100% - 1200px) / 2 + 50px), 8%);
  display: flex;
  flex-direction: column;
  width: 510px;
  padding: 17px 14px 15px;
  border-radius: 6px;
  background: linear-gradient(105deg, rgba(55, 158, 250, .95), rgba(41, 220, 224, .88));
  color: #fff;
  text-align: center;
  animation: hero-copy-in .9s .15s ease both;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-copy > strong {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .9);
  font-size: 36px;
  line-height: 1.35;
}

.hero-copy > span {
  padding-top: 8px;
  font-size: 32px;
  line-height: 1.35;
}

.hero-copy span strong {
  font-size: 46px;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  opacity: .95;
}

.hero-dots button.active {
  outline: 5px solid rgba(70, 70, 70, .45);
}

.advantages {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr 250px 1fr 1fr;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  min-height: 120px;
  margin: -16px auto 0;
  background: #fff url("/static/upload/genlanda/wave.jpg") bottom center / 100% auto no-repeat;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
}

.advantage-item img,
.advantage-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.advantage-icon {
  display: grid;
  place-items: center;
  border: 2px solid #1570b7;
  border-radius: 50%;
  color: #1570b7;
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}

.advantage-title {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 17px;
  background: url("/static/upload/genlanda/202411/20241120042552c29885.png") center top / 250px 125px no-repeat;
  color: #fff;
}

.advantage-title strong {
  font-size: 24px;
}

.advantage-title span {
  margin-top: 4px;
  font-size: 14px;
}

.section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  padding: 72px 0 66px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #404040;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

.section-heading span {
  display: block;
  width: 24px;
  height: 4px;
  margin: 8px auto 0;
  background: #3f9bff;
}

.services-layout {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 54px;
  padding-bottom: 105px;
}

.services-intro {
  position: relative;
  min-width: 0;
}

.services-intro h3 {
  margin: 0;
  color: #666;
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
}

.services-intro i {
  display: block;
  width: 20px;
  height: 3px;
  margin: 25px 0 39px;
  background: #777;
}

.services-intro p {
  margin: 0;
  color: #555;
}

.services-intro a {
  color: #268ff5;
  font-size: 19px;
}

.services-intro > img {
  position: absolute;
  right: -15px;
  bottom: 0;
  width: 345px;
  height: 278px;
  object-fit: contain;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 38px;
}

.service-grid article {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-grid article > a {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.service-grid img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  transition: transform .45s ease;
}

.service-grid h3 {
  margin: 9px 0 14px;
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 400;
  transition: color .25s ease;
}

.service-grid .detail-link,
.service-grid article > a > span {
  display: grid;
  width: 59px;
  height: 40px;
  border: 1px solid #aaa;
  color: #999;
  font-size: 12px;
  place-items: center;
  transition: background-color .25s ease, color .25s ease;
}

@media (min-width: 901px) {
  .service-grid article:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgba(214, 213, 213, .95);
  }

  .service-grid article:hover img {
    transform: translateY(-8px) scale(1.04);
  }

  .service-grid article:hover h3 {
    color: #d52935;
  }

  .service-grid article:hover > a > span {
    border-color: #999;
    background: rgb(213, 41, 53);
    color: #fff;
  }
}

.about-section {
  padding: 90px 0;
  background: #f7f7f7;
}

.about-inner {
  display: grid;
  grid-template-columns: 378px 1fr;
  gap: 84px;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.about-photo {
  width: 378px;
  height: 378px;
  object-fit: cover;
}

.about-copy {
  position: relative;
  min-height: 310px;
  padding: 15px 0 0;
}

.about-copy::before {
  position: absolute;
  inset: 0;
  background: url("/static/upload/genlanda/world-map.jpg") center / contain no-repeat;
  content: "";
  opacity: .8;
  pointer-events: none;
}

.about-copy > * {
  position: relative;
}

.about-copy h2 {
  margin: 0;
  color: #555;
  font-size: 32px;
  font-weight: 400;
}

.about-copy i {
  display: block;
  width: 32px;
  height: 2px;
  margin: 9px 0 29px;
  background: #df3340;
}

.about-copy p {
  margin: 0 0 18px;
  color: #595959;
  line-height: 1.8;
}

.outline-button {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-grid;
  min-width: 110px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 5px;
  color: var(--red);
  font-size: 13px;
  place-items: center;
  transition: color .3s ease, border-color .3s ease;
}

.outline-button::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  background: rgb(213, 41, 53);
  content: "";
  transition: inset .3s ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  border-color: rgb(213, 41, 53);
  color: #fff;
}

.outline-button:hover::before,
.outline-button:focus-visible::before {
  inset: 0;
}

.partners-section {
  padding-bottom: 90px;
}

.partner-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}

.partner-group h3 {
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 35px 22px;
  min-height: 265px;
  padding: 35px 0 20px;
}

.partner-grid img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.partner-grid a,
.cooperation-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.partners-more {
  display: grid;
  width: 110px;
  margin: 18px auto 0;
}

footer {
  color: #bdbdbd;
  background: var(--footer);
}

.footer-main {
  display: grid;
  grid-template-columns: 4fr 6fr 2fr;
  gap: 0;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 205px;
  margin: 0 auto;
}

.footer-about {
  min-height: 116px;
  padding: 0 35px 0 0;
  border-right: 1px dotted #777;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-about strong {
  font-size: 16px;
  font-weight: 400;
}

.footer-about nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-about nav a {
  display: inline-flex;
  align-items: center;
  height: 28px;
  margin: 0;
  padding: 0 12px;
  border-right: 1px solid #aaa;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
}

.footer-about nav a:first-child,
.footer-about nav a:nth-child(5) {
  padding-left: 0;
}

.footer-about nav a:nth-child(4),
.footer-about nav a:last-child {
  border-right: 0;
}

.footer-about nav a:first-child::before {
  content: "网站";
}

.footer-main address {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 35px;
  font-size: 16px;
  font-style: normal;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 14px;
  color: #bfbfbf;
  line-height: 1.5;
}

.footer-contact .contact-item img {
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.footer-logo {
  width: 140px;
  height: 69px;
  justify-self: center;
  object-fit: cover;
}

.copyright {
  height: 57px;
  padding: 0 max(calc((100% - 1180px) / 2), 20px);
  background: #262626;
  color: #999;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.copyright-text {
  min-width: 0;
}

.copyright-icp {
  flex: 0 0 auto;
  color: #999;
  text-decoration: none;
  transition: color .2s ease;
}

.copyright-icp:hover,
.copyright-icp:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.mobile-actions {
  display: none;
}

.inner-hero {
  max-height: none;
}

.contact-page {
  overflow: hidden;
}

.contact-page .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 38px 0 70px;
}

.contact-info {
  min-width: 0;
}

.contact-info h2 {
  margin: 0 0 30px;
  color: #333;
  font-size: 18px;
  font-weight: 400;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 58px;
}

.contact-row img {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-top: 1px;
  object-fit: contain;
}

.contact-row p {
  margin: 0 0 20px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.contact-animated {
  opacity: 0;
  transform: translate3d(0, 70px, 0);
  transition: opacity .8s ease, transform .8s ease;
}

.contact-animated.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.contact-map.contact-animated {
  transform: translate3d(100px, 0, 0);
}

.contact-map.contact-animated.is-visible {
  transform: translate3d(0, 0, 0);
}

.breadcrumb {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0 11px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.content-page {
  min-height: 510px;
  padding: 38px 50px 70px;
}

.content-page > h1 {
  margin: 0;
  color: #595959;
  font-size: 21px;
  font-weight: 400;
  text-align: center;
}

.content-rule {
  width: 18px;
  height: 2px;
  margin: 8px auto 24px;
  background: #5c9be7;
}

.content-body {
  color: #555;
  line-height: 1.9;
}

.content-body p {
  margin: 0 0 20px;
}

.content-body img {
  height: auto;
}

.content-body .about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 45px;
}

.content-body .about-gallery img {
  width: 100%;
  aspect-ratio: 1166 / 785;
  object-fit: cover;
}

.content-body .cooperation-block + .cooperation-block {
  margin-top: 52px;
}

.content-body .cooperation-block h2 {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 400;
}

.content-body .cooperation-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px 15px;
  align-items: center;
}

.content-body .cooperation-grid img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.content-body .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 38px 0;
}

.content-body .contact-info h2 {
  margin: 0 0 45px;
  color: #333;
  font-size: 18px;
  font-weight: 400;
}

.content-body .contact-info p {
  margin-bottom: 24px;
  color: #666;
  font-size: 16px;
}

.content-body .contact-map {
  width: 100%;
  aspect-ratio: 659 / 445;
  object-fit: cover;
}

.products-page {
  min-height: 760px;
  padding: 32px 30px 95px;
}

.category-tabs {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding-bottom: 35px;
}

.category-tabs a {
  display: grid;
  min-width: 98px;
  height: 34px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 5px;
  color: #666;
  place-items: center;
  transition: background-color .2s ease, color .2s ease;
}

.category-tabs a:hover,
.category-tabs a:focus-visible,
.category-tabs a.active {
  background: var(--red);
  color: #fff;
}

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

.product-card {
  border: 1px solid #e5e5e5;
}

.product-card a {
  display: flex;
  min-height: 360px;
  padding: 54px 20px 30px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.product-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.product-card h2 {
  margin: 25px 0 0;
  color: #333;
  font-size: 17px;
  font-weight: 400;
}

.product-card span {
  color: #999;
  font-size: 12px;
}

.product-detail {
  min-height: 900px;
  padding: 35px 10px 75px;
}

.product-detail > h1 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 400;
}

.inquiry-button {
  display: grid;
  width: 205px;
  height: 48px;
  margin-bottom: 70px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.product-image {
  display: grid;
  min-height: 600px;
  margin-bottom: 48px;
  background: #f5f5f5;
  place-items: center;
}

.product-image img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.product-detail > h2 {
  margin: 0 0 30px;
  padding-left: 14px;
  border-left: 5px solid var(--red);
  font-size: 16px;
  font-weight: 400;
}

.inquiry-modal[hidden] {
  display: none;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  padding: 20px;
  background: rgba(0, 0, 0, .55);
  place-items: center;
}

.inquiry-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 28px 32px 32px;
  background: #fff;
}

.inquiry-panel h2 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 400;
}

.inquiry-close {
  position: absolute;
  top: 8px;
  right: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #666;
  font-size: 30px;
  cursor: pointer;
}

.inquiry-panel form,
.inquiry-panel label {
  display: flex;
  flex-direction: column;
}

.inquiry-panel form {
  gap: 14px;
}

.inquiry-panel label {
  gap: 6px;
  color: #555;
}

.inquiry-panel input,
.inquiry-panel textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: 10px 12px;
  color: #333;
  font: inherit;
}

.inquiry-panel textarea {
  resize: vertical;
}

.inquiry-panel form > button {
  height: 42px;
  border: 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .desktop-header,
  .main-nav {
    display: none;
  }

  .mobile-header {
    position: relative;
    z-index: 60;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    height: 48px;
    padding: 0 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
  }

  .menu-toggle {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 7px 4px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-toggle span {
    width: 23px;
    height: 2px;
    background: #1476d6;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    justify-self: center;
    min-width: 0;
  }

  .mobile-brand img {
    width: 66px;
    height: 30px;
    margin-right: 8px;
    object-fit: contain;
  }

  .mobile-brand strong {
    color: #303030;
    font-size: 19px;
    white-space: nowrap;
  }

  .mobile-language {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 5px;
    border: 0;
    background: transparent;
    color: #1976d2;
    place-items: center;
    cursor: pointer;
  }

  .mobile-language svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .mobile-language-wrap {
    position: relative;
    justify-self: end;
  }

  .language-menu {
    position: absolute;
    top: 42px;
    right: -2px;
    z-index: 120;
    display: flex;
    width: 112px;
    padding: 7px 0;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
  }

  .language-menu[hidden] {
    display: none;
  }

  .language-menu::before {
    position: absolute;
    top: -7px;
    right: 14px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    background: #fff;
    content: "";
    transform: rotate(45deg);
  }

  .language-menu a {
    height: 34px;
    padding: 0 14px;
    color: #1976d2;
    font-size: 14px;
    line-height: 34px;
  }

  .main-nav {
    position: fixed;
    top: 48px;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: block;
    width: 50%;
    height: auto;
    overflow-y: auto;
    background: #1e88e5;
    box-shadow: inset -5px 0 10px rgba(0, 0, 0, .12);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .35s ease, visibility 0s linear .35s;
  }

  .main-nav.open {
    position: fixed;
    top: 48px;
    left: 0;
    display: block;
    width: 50%;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .main-nav.open .nav-inner {
    display: flex;
    height: auto;
    flex-direction: column;
  }

  .main-nav.open a {
    display: flex;
    height: 48px;
    margin: 0 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    color: #f1f5f8;
    font-size: 15px;
    animation: mobile-nav-in .45s ease both;
  }

  .main-nav.open a:nth-child(2) { animation-delay: .04s; }
  .main-nav.open a:nth-child(3) { animation-delay: .08s; }
  .main-nav.open a:nth-child(4) { animation-delay: .12s; }
  .main-nav.open a:nth-child(5) { animation-delay: .16s; }

  @keyframes mobile-nav-in {
    from { opacity: 0; transform: translateX(-18px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .nav-backdrop {
    position: fixed;
    inset: 48px 0 0;
    z-index: 40;
    display: none;
    background: rgba(0, 0, 0, .18);
  }

  .nav-backdrop.open {
    display: block;
  }

  body.nav-is-open {
    overflow: hidden;
  }

  .hero {
    overflow: visible;
    aspect-ratio: auto;
    background: #fff;
  }

  .inner-hero {
    max-height: none;
  }

  .hero-slides {
    position: relative;
    height: auto;
    aspect-ratio: 2500 / 651;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 151px;
    padding: 15px 10px 12px;
    border-radius: 5px;
  }

  .hero-copy > strong {
    padding: 0 0 20px;
    font-size: 25px;
    text-align: left;
  }

  .hero-copy > strong strong {
    font-size: 44px;
  }

  .hero-copy > span {
    padding-top: 4px;
    font-size: 23px;
    text-align: right;
  }

  .hero-copy span strong {
    font-size: 44px;
  }

  .hero-dots {
    top: calc((100vw * .2604) - 29px);
    bottom: auto;
  }

  .advantages {
    display: flex;
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding-top: 12px;
    background-position: center 510px;
    background-size: auto 38px;
    flex-direction: column;
  }

  .advantage-item {
    width: 100%;
    min-height: 245px;
    gap: 8px;
    font-size: 16px;
  }

  .advantage-item img,
  .advantage-icon {
    width: 190px;
    height: 190px;
  }

  .advantage-icon {
    border-width: 5px;
    font-size: 104px;
  }

  .advantage-title {
    width: 100%;
    min-height: 95px;
    padding-top: 10px;
    background-size: 390px 195px;
    background-position: center top;
    order: 0;
  }

  .advantage-title strong {
    font-size: 24px;
  }

  .section,
  .about-inner {
    width: 100%;
  }

  .section-heading {
    padding: 75px 10px 65px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .services-layout {
    display: block;
    padding: 0 10px 75px;
  }

  .services-intro h3 {
    font-size: 18px;
  }

  .services-intro i {
    margin: 24px 0 40px;
  }

  .services-intro > img {
    position: static;
    width: 100%;
    height: auto;
    margin: 15px auto 45px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px 20px;
  }

  .service-grid img {
    width: min(150px, 42vw);
    height: min(150px, 42vw);
  }

  .service-grid h3 {
    margin-top: 14px;
    font-size: 15px;
  }

  .service-grid .detail-link,
  .service-grid article > a > span {
    width: 100px;
    height: 34px;
  }

  .service-grid article > a {
    width: 100%;
    height: auto;
  }

  .about-section {
    padding: 40px 0 0;
  }

  .about-inner {
    display: flex;
    gap: 0;
    flex-direction: column;
  }

  .about-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .about-copy {
    width: 100%;
    padding: 54px 12px 55px;
  }

  .about-copy h2 {
    font-size: 31px;
  }

  .about-copy p {
    font-size: 15px;
    line-height: 1.8;
  }

  .partners-section {
    padding-bottom: 45px;
  }

  .partner-columns {
    display: block;
    padding: 0 10px;
  }

  .partner-group + .partner-group {
    margin-top: 35px;
  }

  .partner-grid {
    min-height: 0;
    gap: 18px 8px;
    padding: 34px 0 10px;
  }

  .partner-grid img {
    height: 80px;
  }

  .partners-more {
    margin-top: 30px;
  }

  .footer-main {
    display: none;
  }

  .copyright {
    min-height: 70px;
    height: auto;
    padding: 16px 10px 18px;
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    text-align: center;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 58px;
    border-top: 1px solid #eee;
    background: rgba(255, 255, 255, .97);
  }

  .mobile-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #666;
    font-size: 11px;
    line-height: 1.2;
  }

  .mobile-actions svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #707070;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  body {
    padding-bottom: 58px;
  }

  .breadcrumb {
    width: 100%;
    padding: 10px 12px;
  }

  .content-page {
    min-height: 0;
    padding: 36px 12px 60px;
  }

  .content-body .about-gallery,
  .content-body .contact-layout {
    grid-template-columns: 1fr;
  }

  .content-body .about-gallery {
    gap: 18px;
  }

  .content-body .cooperation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 8px;
  }

  .content-body .contact-layout {
    gap: 28px;
    padding-top: 10px;
  }

  .contact-page .contact-layout {
    display: block;
    padding: 28px 0 45px;
  }

  .contact-row {
    gap: 12px;
  }

  .contact-row p {
    font-size: 15px;
  }

  .contact-map.contact-animated {
    margin-top: 18px;
    transform: translate3d(0, 28px, 0);
  }

  .contact-map.contact-animated.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .products-page {
    min-height: 0;
    padding: 34px 10px 70px;
  }

  .category-tabs {
    gap: 8px 50px;
    flex-wrap: wrap;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-card a {
    min-height: 250px;
    padding: 18px 8px 20px;
  }

  .product-card img {
    width: min(150px, 38vw);
    height: min(150px, 38vw);
  }

  .product-detail {
    min-height: 0;
    padding: 30px 10px 65px;
  }

  .inquiry-button {
    width: 200px;
    margin-bottom: 35px;
  }

  .product-image {
    min-height: 420px;
  }
}

@media (max-width: 380px) {
  .mobile-brand strong {
    font-size: 17px;
  }

  .mobile-brand img {
    width: 58px;
  }
}
