/* Derui Silicone homepage — index.css */

html {
  scroll-behavior: smooth;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.scroll-reveal[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

.scroll-reveal[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

.scroll-reveal[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

.scroll-reveal[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

.scroll-reveal[data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

html,
body,
div,
section,
article,
header,
footer,
nav,
main,
aside,
form,
label,
input,
textarea,
button,
img,
a,
ul,
ol,
li,
h1,
h2,
h3,
h4,
p,
span,
figure {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.index-body {
  font-family: "Hanken Grotesk", "Segoe UI", Tahoma, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

.index-wrap {
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
}

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

/* Header */
.index-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.index-header-fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.7);
}

.index-header-sticky {
  position: sticky;
  background: #ffffff;
}


.index-header-inner {
  width: min(1600px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.index-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.index-logo-img {
  width: auto;
  max-width: 192px;
  height: auto;
  object-fit: contain;
}

.index-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.index-menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #111827;
}

.index-nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.index-nav-link {
  display: inline-block;
  padding: 4px 0 6px;
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  border-bottom: 2px solid transparent;
}

.index-nav-active {
  color: #ff8c3c;
  font-weight: 600;
  border-bottom-color: #ff8c3c;
}

.index-nav-link:hover {
  color: #ff8c3c;
}

.index-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.index-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff8c3c;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.index-phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.index-phone-text {
  color: inherit;
}

.index-lang-wrap {
  position: relative;
}

.index-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
}

.index-lang-text {
  color: inherit;
}

.index-lang-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.index-lang-wrap.is-open .index-lang-icon {
  transform: rotate(180deg);
}

.index-lang-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 200;
  width: min(520px, calc(100vw - 32px));
  max-height: min(70vh, 420px);
  overflow: auto;
  padding: 16px 20px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.index-lang-panel[hidden] {
  display: none !important;
}

.index-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 20px;
}

.index-lang-option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: #4b5563;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease;
}

.index-lang-option:hover,
.index-lang-option.is-active {
  color: #111827;
  font-weight: 500;
}

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

body.index-body {
  top: 0 !important;
}

.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important;
}

@media (max-width: 600px) {
  .index-lang-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-lang-panel {
    right: -8px;
  }
}

.index-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.index-search-icon {
  width: 19px;
  height: 19px;
}

/* Hero */
.index-hero {
  position: relative;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.index-hero-swiper {
  width: 100%;
  /* height: 100vh; */
  /* min-height: 680px; */
}

.index-hero-slide {
  position: relative;
  height: auto;
}

.index-hero-picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.index-hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.index-hero-link {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.index-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  pointer-events: none;
}

.index-hero-content > * {
  width: min(1216px, calc(100% - 32px));
  pointer-events: auto;
}

.index-hero-eyebrow,
.index-hero-title,
.index-hero-desc {
  max-width: 100%;
}

.index-hero-eyebrow p,
.index-hero-title h1,
.index-hero-desc p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.index-hero-eyebrow {
  color: #ff8c3c;
  font-size: clamp(16px, 2.2vw, 36px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.index-hero-title {
  font-size: clamp(22px, 3.5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.index-hero-desc {
  font-size: clamp(14px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.45;
  max-width: min(900px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.index-hero-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 3;
}

.index-hero-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 8px;
  margin: 0 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  vertical-align: middle;
}

.index-hero-pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: #ffffff;
}

/* Section shared */
.index-section-head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}

.index-watermark {
  display: block;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff6f0;
  line-height: 1;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}

.index-watermark-lg {
  color: rgba(255, 246, 240, 0.35);
}

.index-section-title {
  position: relative;
  margin-top: -28px;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  color: #111827;
  text-transform: uppercase;
  line-height: 1.2;
}

.index-section-light {
  color: #ffffff;
}

.index-section-desc {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.index-section-desc-light {
  color: rgba(255, 255, 255, 0.85);
}

.index-section-sub {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.index-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 28px;
  background: #ff8c3c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.index-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  min-width: 187px;
  padding: 12px 32px;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  border: 0;
  border-radius: 31px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services */
.index-services {
  padding: 80px 0 72px;
  background: #ffffff;
  overflow-x: clip;
  overflow-y: visible;
}

.index-services-swiper {
  overflow-x: clip;
  overflow-y: visible;
  padding: 5px;
}

.index-services-swiper .swiper-wrapper {
  align-items: flex-start;
}

.index-services-swiper .swiper-slide {
  height: 282px;
  box-sizing: border-box;
}

.index-svc-card {
  position: relative;
  display: block;
  width: 100%;
  height: 282px;
  border-radius: 13px;
  text-align: center;
  color: #111827;
  background-color: #ffffff;
  background-image: url("../images/svc-card-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 5.5px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.25s ease;
  box-sizing: border-box;
}

.index-svc-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 34px 22px 28px;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.index-svc-card:has(.index-svc-card-inner).is-active,
.index-svc-card:has(.index-svc-card-inner):hover,
.index-svc-card:has(.index-svc-card-inner):focus-visible {
  box-shadow: 0 8px 24px rgba(255, 140, 60, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .index-svc-card:has(.index-svc-card-inner):hover,
  .index-svc-card:has(.index-svc-card-inner):focus-visible {
    z-index: 2;
  }
}

.index-svc-card:has(.index-svc-card-inner).is-active {
  z-index: 2;
}

.index-svc-card:has(.index-svc-card-inner).is-active .index-svc-card-front,
.index-svc-card:has(.index-svc-card-inner):hover .index-svc-card-front,
.index-svc-card:has(.index-svc-card-inner):focus-visible .index-svc-card-front {
  opacity: 0;
  pointer-events: none;
}

.index-svc-card-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 34px 22px 28px;
  border-radius: 13px;
  box-sizing: border-box;
  color: #ffffff;
  background-image: linear-gradient(180deg, #ffbf60 0%, #ff9a03 100%);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.25s ease;
}

.index-svc-card:has(.index-svc-card-inner).is-active .index-svc-card-inner,
.index-svc-card:has(.index-svc-card-inner):hover .index-svc-card-inner,
.index-svc-card:has(.index-svc-card-inner):focus-visible .index-svc-card-inner {
  opacity: 1;
  pointer-events: auto;
}

.index-svc-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 140, 60, 0.1);
  flex-shrink: 0;
}

.index-svc-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.index-svc-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.index-svc-title h3 {
  margin: 0;
}

.index-svc-text,
.index-svc-inner-text {
  font-size: 14px;
  line-height: 1.6;
}

.index-svc-text {
  color: #6b7280;
  margin-top: 12px;
}

.index-svc-text p,
.index-svc-inner-text p {
  margin: 0;
}

.index-svc-inner-text {
  color: rgba(255, 255, 255, 0.95);
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}

.index-services-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.index-services-prev,
.index-services-next {
  flex: none;
  width: 36px;
  height: 36px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  padding: 0;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.index-services-prev::before,
.index-services-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #374151;
  border-right: 2px solid #374151;
  transition: border-color 0.2s ease;
}

.index-services-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.index-services-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.index-services-prev:hover,
.index-services-next:hover {
  border-color: #ff8c3c;
}

.index-services-prev:hover::before,
.index-services-next:hover::before {
  border-color: #ff8c3c;
}

.index-services-prev.swiper-button-disabled,
.index-services-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.index-services-pagination.swiper-pagination-progressbar {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.index-services-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ff8c3c;
  border-radius: 999px;
}

/* Products */
.index-products {
  position: relative;
  padding: 88px 0 80px;
  overflow: hidden;
}

.index-products-bg {
  position: absolute;
  inset: 0;
  background: url("../images/raw-1.png") center / cover no-repeat;
  z-index: 0;
}

.index-products .index-wrap {
  position: relative;
  z-index: 1;
}

.index-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.index-prod-card {
  display: block;
  width: 32%;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  margin-bottom: 28px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

.index-prod-link {
  cursor: pointer;
}

.index-prod-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

.index-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.index-prod-card:hover .index-prod-img {
  transform: scale(1.08);
}

.index-prod-badge {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 47px;
  height: 47px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.index-prod-badge-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.index-prod-body {
  padding: 20px 18px 24px;
}

.index-prod-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.index-prod-title h3 {
  margin: 0;
  font: inherit;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-prod-card:hover .index-prod-title {
  color: #ff8c3c;
}

.index-prod-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #6b7280;
  margin-bottom: 16px;
  min-height: calc(1.55em * 2);
}

.index-prod-desc p {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-prod-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ff8c3c;
}

.index-products-cta {
  text-align: center;
  margin-top: 40px;
}

/* Why */
.index-why {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.index-why-bg {
  position: absolute;
  inset: 0;
  background: url("../images/raw-13.png") center / cover no-repeat;
  z-index: 0;
}

.index-why .index-wrap {
  position: relative;
  z-index: 1;
}

.index-why-row {
  display: flex;
  align-items: center;
  gap: 4%;
  margin-bottom: 64px;
}

.index-why-row:nth-of-type(even) {
  flex-direction: row-reverse;
}

.index-why-row:last-child {
  margin-bottom: 0;
}

.index-why-media {
  width: 48%;
  flex-shrink: 0;
  border-radius: 0 clamp(48px, 12vw, 138px) 0 clamp(48px, 12vw, 138px);
  overflow: hidden;
  min-height: 280px;
  background: #f3f4f6;
}

.index-why-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: inherit;
}

.index-why-copy {
  width: 48%;
  flex-shrink: 0;
  color: #111827;
}

.index-why-label {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.index-why-text {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 14px;
}

.index-why-text p {
  margin: 0 0 14px;
}

.index-why-text p:last-child {
  margin-bottom: 0;
}

/* About */
.index-about {
  padding: 88px 0;
  background: #ffffff;
}

.index-about-grid {
  display: flex;
  align-items: center;
  gap: 4%;
}

.index-about-copy {
  width: 48%;
  flex-shrink: 0;
}

.index-about-title {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.index-about-text {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 36px;
  max-width: 560px;
}

.index-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.index-stat {
  width: 23.5%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.index-stat-num {
  font-size: 30px;
  font-weight: 700;
  color: #ff8c3c;
  line-height: 1.2;
}

.index-stat-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.index-about-media {
  position: relative;
  width: 48%;
  flex-shrink: 0;
  padding-left: clamp(12px, 2.8vw, 18px);
  box-sizing: border-box;
}

.index-about-accent {
  position: absolute;
  left: 0;
  top: 1.8%;
  width: 78.4%;
  height: 98.2%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
  z-index: 0;
}

.index-about-frame {
  position: relative;
  z-index: 1;
  height: 0;
  padding-top: 67.77%;
}

.index-about-clip {
  position: absolute;
  /* left: -3.19%; */
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../images/about-mask.svg");
  mask-image: url("../images/about-mask.svg");
  -webkit-mask-size: 80.42% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: 2.56% 0;
  mask-position: 2.56% 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.index-about-img {
  position: absolute;
  /* left: -7.78%; */
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.index-about-player,
.index-about-embed {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: #000000;
}

.index-about-embed {
  display: none;
  border: 0;
}

.index-about-frame.is-playing .index-about-embed {
  display: block;
}

.index-about-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.index-about-frame.is-playing .index-about-poster,
.index-about-frame.is-paused .index-about-poster {
  display: none;
}

.index-about-frame.is-playing .index-play {
  display: none;
}

.index-about-frame.is-playing:hover .index-play,
.index-about-frame.is-paused .index-play {
  display: block;
}

.index-play-icon--pause {
  display: none;
}

.index-about-frame.is-playing .index-play-icon--play {
  display: none;
}

.index-about-frame.is-playing .index-play-icon--pause {
  display: block;
}

@media (hover: none) {
  .index-about-frame.is-playing .index-play {
    display: block;
  }
}

a.index-play {
  text-decoration: none;
}

.about-play {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

a.about-play {
  text-decoration: none;
}

.index-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 144px;
  height: 144px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3;
}

.index-play-icon {
  width: 144px;
  height: 144px;
  max-width: none;
}

/* Advantage */
.index-advantage {
  position: relative;
  padding: 88px 0 100px;
  overflow: hidden;
}

.index-advantage-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.92) 100%),
    url("../images/raw-5.png") center / cover no-repeat;
  z-index: 0;
}

.index-advantage .index-wrap {
  position: relative;
  z-index: 1;
}

.index-adv-layout {
  display: flex;
  align-items: stretch;
  gap: 2%;
}

.index-adv-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex: 1;
  min-width: 0;
}

.index-adv-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.index-adv-left .index-adv-item {
  justify-content: flex-end;
  text-align: right;
}

.index-adv-right .index-adv-item {
  justify-content: flex-start;
  text-align: left;
}

.index-adv-copy {
  max-width: 250px;
}

.index-adv-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.index-adv-text {
  font-size: 12px;
  line-height: 1.45;
  color: #6b7280;
}

.index-adv-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff8c3c;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.index-adv-center-wrap {
  flex: 0 0 214px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-adv-center {
  width: 214px;
  height: 214px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.index-adv-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}

/* Clients */
.index-clients {
  padding: 80px 0 72px;
  background: #ffffff;
}

.index-clients-swiper {
  overflow: hidden;
  height: auto;
  padding-bottom: 40px;
}

.index-clients-swiper .swiper-wrapper {
  height: auto !important;
}

.index-clients-swiper .swiper-slide {
  height: auto;
}

.index-client-card {
  height: auto;
  min-height: 122px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.index-client-img {
  max-width: 85%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.index-clients-pagination {
  position: static;
  margin-top: 8px;
  text-align: center;
}

.index-clients-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #d9d9d9;
  opacity: 1;
  border-radius: 50%;
  vertical-align: middle;
}

.index-clients-pagination .swiper-pagination-bullet-active {
  background: #ff8c3c;
  box-shadow: 0 0 0 3px rgba(255, 140, 60, 0.25);
}

/* News */
.index-news {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
}

.index-news-bg {
  position: absolute;
  inset: 0;
  background: url("../images/raw-18.png") center / cover no-repeat;
  z-index: 0;
}

.index-news .index-wrap {
  position: relative;
  z-index: 1;
}

.index-news-swiper {
  overflow: hidden;
  padding-bottom: 40px;
}

.index-news-swiper .swiper-slide {
  height: auto;
}

.index-news-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
}

.index-news-media {
  height: 180px;
  overflow: hidden;
  background: #e5e7eb;
}

.index-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.index-news-card:hover .index-news-img {
  transform: scale(1.08);
}

.index-news-body {
  padding: 14px 16px 18px;
}

.index-news-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a7a;
  transition: color 0.3s ease;
}

.index-news-card:hover .index-news-title {
  color: #ff8c3c;
}

.index-news-pagination {
  position: static;
  margin-top: 28px;
  text-align: center;
}

.index-news-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #d9d9d9;
  opacity: 1;
  border-radius: 50%;
  vertical-align: middle;
}

.index-news-pagination .swiper-pagination-bullet-active {
  background: #ff8c3c;
  box-shadow: 0 0 0 3px rgba(255, 140, 60, 0.25);
}

/* Contact */
.index-contact {
  padding: 80px 0 88px;
  background: #ffffff;
}

.index-contact-inner {
  max-width: 900px;
}

.index-form {
  margin-top: 8px;
}

.index-form-row {
  display: flex;
  gap: 3%;
  margin-bottom: 24px;
}

.index-field {
  display: block;
  width: 48.5%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.index-field-full {
  width: 100%;
  margin-bottom: 24px;
}

.index-input,
.index-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  padding: 12px 16px;
  outline: none;
}

.index-input {
  height: 46px;
}

.index-textarea {
  min-height: 106px;
  resize: vertical;
}

.index-input:focus,
.index-textarea:focus {
  border-color: #ff8c3c;
}

.index-form-actions {
  text-align: center;
}

.index-btn-submit {
  min-width: 170px;
  text-transform: uppercase;
}

/* Footer */
.index-footer {
  background: #1e293b;
  color: #9ca3af;
  padding: 64px 0 0;
}

.index-footer-grid {
  display: flex;
  gap: 2%;
  padding-bottom: 36px;
}

.index-footer-col {
  width: 23.5%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.index-footer-col:first-child {
  width: 25%;
}

.index-footer-col:nth-child(3) {
  width: 26%;
}

.index-footer-logo {
  display: block;
  margin-bottom: 16px;
}

.index-footer-info {
  font-size: 14px;
  line-height: 1.6;
}

.index-footer-heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.index-footer-list {
  font-size: 14px;
  line-height: 1.9;
}

.index-footer-list a:hover {
  color: #ff8c3c;
}

.index-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.index-social-link {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.index-qr {
  width: 95px;
  height: 94px;
  object-fit: cover;
  background: #ffffff;
  border-radius: 4px;
}

.index-friendship {
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 20px;
}

.index-friendship a {
  color: inherit;
  text-decoration: none;
}

.index-friendship a:hover {
  color: #ff8c3c;
}

.index-copyright {
  border-top: 1px solid #374151;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  padding: 18px 0 24px;
}

/* Float sidebar */
.index-float {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.index-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.index-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.18);
}

.index-float-btn img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1100px) {
  .index-nav-list {
    gap: 16px;
  }

  .index-nav-link {
    font-size: 14px;
  }

  .index-products-grid .index-prod-card {
    width: 49%;
  }

  .index-clients-swiper {
    height: auto;
  }

  .index-adv-layout {
    flex-direction: column;
    gap: 32px;
  }

  .index-adv-col {
    width: 100%;
  }

  .index-adv-left .index-adv-item,
  .index-adv-right .index-adv-item {
    justify-content: flex-start;
    text-align: left;
  }

  .index-adv-left .index-adv-item {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .index-adv-center-wrap {
    order: -1;
    flex: 0 0 auto;
    width: 100%;
  }

  .index-footer-grid {
    flex-wrap: wrap;
    gap: 28px 4%;
  }

  .index-footer-col,
  .index-footer-col:first-child,
  .index-footer-col:nth-child(3) {
    width: 48%;
  }

  .index-hero-eyebrow {
    font-size: clamp(14px, 2vw, 28px);
    margin-bottom: 12px;
  }

  .index-hero-title {
    font-size: clamp(20px, 3vw, 44px);
    margin-bottom: 16px;
  }

  .index-hero-desc {
    font-size: clamp(13px, 1.6vw, 22px);
  }
}

@media (max-width: 900px) {
  .index-menu-btn {
    display: flex;
    order: 2;
  }

  .index-header-actions {
    order: 1;
    margin-left: auto;
  }

  .index-phone-text {
    display: none;
  }

  .index-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 16px 20px;
    display: none;
  }

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

  .index-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .index-nav-link {
    display: block;
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid #f3f4f6;
  }

  .index-nav-active {
    border-bottom-color: #ff8c3c;
  }

  .index-why-row,
  .index-why-row:nth-of-type(even),
  .index-about-grid {
    flex-direction: column;
    gap: 28px;
  }

  .index-why-media,
  .index-why-copy,
  .index-about-copy,
  .index-about-media {
    width: 100%;
  }

  .index-about-media {
    padding-left: 0;
  }

  .index-about-accent {
    display: none;
  }

  .index-about-frame {
    border-radius: 16px;
    overflow: hidden;
  }

  .index-about-clip {
    left: 0;
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .index-about-img {
    left: 0;
  }

  .index-stats .index-stat {
    width: 49%;
    margin-bottom: 12px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .index-header-inner {
    min-height: 64px;
  }

  .index-logo-img {
    max-width: 120px;
  }

  .index-hero-swiper {
    /* min-height: 560px; */
    /* height: 100vh; */
  }

  .index-hero-content {
    padding: 40px 16px 52px;
  }

  .index-hero-content > * {
    width: 100%;
  }

  .index-hero-eyebrow {
    font-size: clamp(11px, 3.2vw, 16px);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }

  .index-hero-title {
    font-size: clamp(16px, 5.2vw, 24px);
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .index-hero-desc {
    font-size: clamp(12px, 3.4vw, 15px);
    line-height: 1.5;
  }

  .index-hero-pagination {
    bottom: 16px;
  }

  .index-float {
    right: 10px;
    gap: 10px;
  }

  .index-float-btn {
    width: 42px;
    height: 42px;
  }

  .index-float-btn img {
    width: 20px;
    height: 20px;
  }

  .index-services,
  .index-products,
  .index-why,
  .index-about,
  .index-advantage,
  .index-clients,
  .index-news,
  .index-contact {
    padding: 56px 0;
  }

  .index-section-head {
    margin-bottom: 32px;
  }

  .index-watermark {
    font-size: 36px;
  }

  .index-section-title {
    margin-top: -18px;
    font-size: 22px;
  }

  .index-products-grid {
    gap: 12px;
  }

  .index-products-grid .index-prod-card {
    width: calc(50% - 6px);
    margin-bottom: 0;
  }

  .index-form-row {
    flex-direction: column;
    gap: 16px;
  }

  .index-form-row .index-field {
    width: 100%;
  }

  .index-footer-col,
  .index-footer-col:first-child,
  .index-footer-col:nth-child(3) {
    width: 100%;
  }

  .index-clients-swiper {
    height: auto;
  }

  .index-prod-media {
    height: 0;
    padding-bottom: 100%;
    border-radius: 8px;
  }

  .index-prod-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
  }

  .index-prod-body {
    padding: 10px 10px 16px;
  }

  .index-prod-title {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #050505;
  }

  .index-prod-title h3 {
    line-height: 18px;
  }

  .index-prod-desc {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 10px;
    min-height: calc(1.45em * 2);
  }

  .index-prod-more {
    font-size: 12px;
  }

  .index-adv-copy {
    max-width: none;
  }

  .index-play {
    width: 88px;
    height: 88px;
  }

  .index-play-icon {
    width: 88px;
    height: 88px;
  }
}

/* =========================================================================
   Subpages (merged) — page prefixes avoid collisions with homepage
   Header: .index-header-fixed (home) / .index-header-sticky (other pages)
   ========================================================================= */

/* ----- about.css ----- */
/* About page — about.css */

.about-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #111827;
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.35) 100%);
}

.about-crumb {
  padding: 28px 0 8px;
  font-size: 14px;
  color: #6b7280;
}

.about-crumb-link {
  color: #6b7280;
}

.about-crumb-link:hover {
  color: #ff8c3c;
}

.about-crumb-sep {
  margin: 0 6px;
}

.about-crumb-current {
  color: #111827;
  font-weight: 600;
}

/* Intro */
.about-intro {
  padding: 48px 0 72px;
  background: #ffffff;
}

.about-intro-grid {
  display: flex;
  align-items: center;
  gap: 4%;
}

.about-intro-media {
  width: 52%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 clamp(24px, 6vw, 80px) 0 clamp(24px, 6vw, 80px);
}

.about-intro-copy {
  width: 44%;
  flex-shrink: 0;
}

.about-intro-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-intro-eyebrow {
  font-size: 18px;
  color: #ff8c3c;
  margin-bottom: 10px;
}

.about-intro-title {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

.about-intro-text {
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
}

/* Video */
.about-video {
  padding: 0 0 40px;
  background: #ffffff;
}

.about-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #e5e7eb;
  aspect-ratio: 1270 / 590;
  /* min-height: 320px; */
}

.about-video-player,
.about-video-embed {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.about-video-embed {
  display: none;
  border: 0;
}

.about-video-frame.is-playing .about-video-embed {
  display: block;
}

.about-video-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.45);
}

.about-video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.about-video-frame.is-playing .about-video-poster {
  display: none;
}

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

.about-video-frame > .about-video-img {
  position: absolute;
  inset: 0;
}

.about-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 131px;
  height: 131px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.about-play-icon {
  width: 131px;
  height: 131px;
  max-width: none;
}

.about-video-gallery {
  padding: 40px 0 80px;
  background: #f3f4f6;
}

.about-video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.about-video-gallery-item {
  margin: 0;
}

.about-video-gallery-media {
  width: 100%;
}

.about-video-gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 410 / 274;
  object-fit: cover;
  background: #e5e7eb;
}

.about-video-gallery-caption {
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: #374151;
}

/* Advantages */
.about-adv {
  position: relative;
  padding: 88px 0 100px;
  overflow: hidden;
}

.about-adv-bg {
  position: absolute;
  inset: 0;
  background: url("../images/about-adv-bg.jpeg") center / cover no-repeat;
  z-index: 0;
}

.about-adv .index-wrap {
  position: relative;
  z-index: 1;
}

.about-adv-head {
  text-align: center;
  margin-bottom: 56px;
}

.about-watermark {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #000;
  line-height: 1.1;
}

.about-adv-desc {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-adv-row {
  display: flex;
  align-items: center;
  gap: 4%;
  margin-bottom: 72px;
}

.about-adv-row:last-child {
  margin-bottom: 0;
}

.about-adv-media {
  width: 48%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 clamp(48px, 12vw, 138px) 0 clamp(48px, 12vw, 138px);
}

.about-adv-copy {
  width: 48%;
  flex-shrink: 0;
}

.about-adv-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.about-adv-label {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-adv-label h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.about-adv-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}

.about-adv-copy .index-btn-solid {
  margin-top: 12px;
}

/* Stories */
.about-stories {
  padding: 88px 0 96px;
  background: #ffffff;
}

.about-stories-head {
  margin-bottom: 48px;
}

.about-stories-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ff8c3c;
  margin-bottom: 16px;
}
.about-stories-lead {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #111827;
}

.about-stories-layout {
  display: flex;
  align-items: flex-start;
  gap: 4%;
}

.about-stories-left {
  width: 30%;
  flex-shrink: 0;
}

.about-story-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.about-stories-right {
  width: 66%;
  min-width: 0;
  flex-shrink: 0;
}

.about-timeline {
  max-height: 730px;
  overflow-y: auto;
  padding-right: 20px;
}

.about-story {
  display: flex;
  align-items: flex-start;
  gap: 4%;
  margin-bottom: 36px;
}

.about-story:last-child {
  margin-bottom: 0;
}

.about-story-year {
  display: flex;
  align-items: center;
  width: 18%;
  flex-shrink: 0;
  gap: 12px;
  min-height: 28px;
  box-sizing: border-box;
}

.about-story-line,
.about-story-mark {
  display: block;
  width: 60%;
  height: 4px;
  flex-shrink: 0;
}

.about-story-line {
  background: #ff8c3c;
}

.about-story-mark {
  background: transparent;
}

.about-story-num {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  text-align: left;
  flex-shrink: 0;
}

.about-story-text {
  width: 78%;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  box-sizing: border-box;
}

/* Culture */
.about-culture {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.about-culture-bg {
  position: absolute;
  inset: 0;
  background: url("../images/about-culture-section-bg.jpeg") center / cover no-repeat;
  z-index: 0;
}

.about-culture-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4%;
}

.about-culture-media {
  width: 55%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 clamp(24px, 5vw, 64px) 0 clamp(24px, 5vw, 64px);
}

.about-culture-copy {
  width: 41%;
  flex-shrink: 0;
}

.about-culture-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-culture-title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.about-culture-text {
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
}

/* Honor */
.about-honor {
  padding: 88px 0 72px;
  background: #ffffff;
}

.about-honor-head {
  text-align: center;
  margin-bottom: 48px;
}

.about-honor-title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  color: #111827;
}

.about-honor-swiper {
  overflow: hidden;
  /* padding-bottom: 40px; */
}

.about-honor-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.about-honor-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-honor-pagination {
  position: static;
  margin-top: 28px;
  text-align: center;
}

.about-honor-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #d9d9d9;
  opacity: 1;
  border-radius: 50%;
  vertical-align: middle;
}

.about-honor-pagination .swiper-pagination-bullet-active {
  background: #ff8c3c;
  box-shadow: 0 0 0 3px rgba(255, 140, 60, 0.25);
}

/* Tablet */
@media (max-width: 1100px) {
  .about-banner {
    height: 320px;
  }

  .about-intro-grid,
  .about-adv-row,
  .about-culture-grid,
  .about-stories-layout {
    flex-direction: column;
    gap: 28px;
  }

  .about-intro-media,
  .about-intro-copy,
  .about-adv-media,
  .about-adv-copy,
  .about-culture-media,
  .about-culture-copy,
  .about-stories-left,
  .about-stories-right {
    width: 100%;
  }

  .about-adv-reverse .about-adv-media {
    order: -1;
  }

  .about-story {
    gap: 3%;
  }

  .about-story-year {
    width: 22%;
    gap: 8px;
  }

  .about-story-text {
    width: 75%;
  }

  .about-story-line,
  .about-story-mark {
    width: 48%;
  }

  .about-intro-img,
  .about-culture-img {
    min-height: 280px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .about-banner {
    height: 240px;
  }

  .about-intro,
  .about-adv,
  .about-stories,
  .about-culture,
  .about-honor {
    padding: 56px 0;
  }

  .about-video {
    padding-bottom: 56px;
  }

  .about-video-gallery {
    padding-bottom: 56px;
  }

  .about-video-gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-play,
  .about-play-icon {
    width: 88px;
    height: 88px;
  }

  .about-timeline {
    max-height: 480px;
    padding-right: 12px;
  }

  .about-adv-media {
    border-radius: 0 48px 0 48px;
  }
}

/* ----- products.css ----- */
.products-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #e8eef5;
}

.products-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.products-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.22) 100%);
}

.products-crumb {
  padding: 28px 0 8px;
  font-size: 14px;
  color: #6b7280;
}

.products-crumb-link {
  color: #6b7280;
}

.products-crumb-link:hover {
  color: #ff8c3c;
}

.products-crumb-sep {
  margin: 0 6px;
}

.products-crumb-current {
  color: #4b5563;
}

.products-main {
  padding: 24px 0 80px;
  background: #ffffff;
}

.products-layout {
  display: flex;
  align-items: flex-start;
  gap: 4%;
}

.products-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 22%;
  flex-shrink: 0;
}

.products-content {
  width: 74%;
  min-width: 0;
  flex-shrink: 0;
}

.products-panel {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 18px 16px 12px;
}

.products-panel-title {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 12px;
}

.products-cat {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #f4f4f4;
}

.products-cat li {
  border-bottom: 1px solid #f4f4f4;
}

.products-cat-link {
  display: block;
  padding: 10px 0;
  font-size: 12px;
  line-height: 20px;
  color: #6b6b6b;
}

.products-cat-link:hover,
.products-cat-active {
  color: #ff8c3c;
}

.products-inquiry {
  padding-bottom: 18px;
}

.products-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-field {
  display: block;
}

.products-input,
.products-textarea {
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: #f2f2f2;
  font-family: inherit;
  font-size: 12px;
  color: #111827;
  padding: 8px 10px;
  box-sizing: border-box;
}

.products-input {
  height: 31px;
}

.products-textarea {
  height: 60px;
  resize: vertical;
  padding-top: 8px;
}

.products-input::placeholder,
.products-textarea::placeholder {
  color: #c0c0c0;
}

.products-submit {
  width: 100%;
  height: 39px;
  border: 0;
  border-radius: 4px;
  background: #ff8c3c;
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  margin-top: 4px;
}

.products-submit:hover {
  background: #f07a28;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.products-card {
  display: block;
  width: 33.333%;
  padding: 0 8px 24px;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

.products-card-media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f4f6;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.products-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.products-card:hover .products-card-img {
  transform: scale(1.08);
}

.products-card-title {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #050505;
  transition: color 0.3s ease;
}

.products-card:hover .products-card-title {
  color: #ff8c3c;
}

.products-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.products-page {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 16px;
  line-height: 42px;
  text-align: center;
}

.products-page:hover {
  color: #ff8c3c;
}

.products-page-active {
  background: #ff8c3c;
  color: #ffffff;
}

.products-page-active:hover {
  color: #ffffff;
}

.products-page-nav {
  color: #c9ccd3;
  background: #f3f4f6;
}

@media (max-width: 1100px) {
  .products-aside {
    width: 28%;
  }

  .products-content {
    width: 68%;
  }

  .products-card-title {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 900px) {
  .products-layout {
    flex-direction: column;
  }

  .products-aside,
  .products-content {
    width: 100%;
  }

  .products-aside {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .products-aside .products-panel {
    width: 48%;
    box-sizing: border-box;
  }

  .products-card {
    width: 50%;
  }
}

@media (max-width: 640px) {
  .products-banner {
    height: 240px;
  }

  .products-aside .products-panel {
    width: 100%;
  }

  .products-card {
    width: 50%;
    padding-bottom: 16px;
  }

  .products-card-title {
    margin-top: 10px;
    font-size: 14px;
    line-height: 18px;
  }

  .products-pager {
    margin-top: 36px;
    gap: 6px;
  }

  .products-page {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }
}

/* ----- details.css ----- */
.details-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #e8eef5;
}

.details-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.details-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.22) 100%);
}

.details-crumb {
  padding: 28px 0 8px;
  font-size: 14px;
  color: #6b7280;
}

.details-crumb-link {
  color: #6b7280;
}

.details-crumb-link:hover {
  color: #ff8c3c;
}

.details-crumb-sep {
  margin: 0 6px;
}

.details-crumb-current {
  color: #4b5563;
  text-transform: uppercase;
}

.details-product {
  padding: 32px 0 48px;
  background: #ffffff;
}

.details-product-layout {
  display: flex;
  align-items: flex-start;
}

.details-gallery {
  display: flex;
  align-items: flex-start;
  width: 50%;
  padding-right: 40px;
  box-sizing: border-box;
  /* min-height: 538px; */
}

.details-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 62px;
  flex-shrink: 0;
  height: 538px;
  max-height: 538px;
}

.details-thumbs-prev,
.details-thumbs-next {
  position: static;
  width: 28px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  background: none;
  color: #9ca3af;
}

.details-thumbs-prev::after,
.details-thumbs-next::after {
  font-size: 14px;
  font-weight: 700;
  color: #9ca3af;
}

.details-thumbs-prev {
  transform: rotate(90deg);
}

.details-thumbs-next {
  transform: rotate(90deg);
}

.details-thumbs-prev:hover::after,
.details-thumbs-next:hover::after {
  color: #ff8c3c;
}

.details-thumbs-prev.swiper-button-disabled,
.details-thumbs-next.swiper-button-disabled {
  opacity: 0.35;
}

.details-thumbs-swiper {
  width: 62px;
  height: 486px;
  flex: none;
  overflow: hidden;
}

.details-thumbs-swiper.swiper-initialized,
.details-thumbs-swiper.swiper-vertical {
  height: 486px;
}

.details-thumbs-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.details-thumbs-swiper .swiper-slide {
  width: 62px;
  height: 63px;
  box-sizing: border-box;
  opacity: 0.7;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.details-thumbs-swiper .swiper-slide:last-child {
  margin-bottom: 0;
}

.details-thumbs-swiper .swiper-slide-thumb-active,
.details-thumbs-swiper .details-thumb-active {
  opacity: 1;
}

.details-thumb {
  width: 62px;
  height: 63px;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: #d9d9d9;
  box-sizing: border-box;
}

.details-thumbs-swiper .swiper-slide-thumb-active .details-thumb,
.details-thumbs-swiper .details-thumb-active .details-thumb {
  border-color: #ff8c3c;
}

.details-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-main-swiper {
  width: calc(100% - 62px);
  padding-left: 12px;
  box-sizing: border-box;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  align-self: flex-start;
}

.details-main-swiper .swiper-slide {
  height: auto;
}

.details-main {
  overflow: hidden;
  border-radius: 8px;
  background: #f3f4f6;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.details-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-info {
  width: 50%;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background: #ffffff;
  padding: 28px 24px 24px;
  min-height: 538px;
  box-sizing: border-box;
}

.details-info-title {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 28px;
}

.details-info-line {
  height: 1px;
  background: #d9d9d9;
  margin: 12px 0 16px;
}

.details-info-desc {
  font-size: 14px;
  line-height: 26px;
  color: #656565;
  margin-bottom: 18px;
}

.details-contact-box {
  margin-bottom: 18px;
}

.details-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 30px;
  color: #000000;
}

.details-contact-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.details-contact-label {
  flex-shrink: 0;
}

.details-contact-value {
  font-weight: 500;
  color: #000000;
}

.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.details-btn-inquiry,
.details-btn-related {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 194px;
  height: 41px;
  border-radius: 21px;
  font-size: 14px;
  line-height: 30px;
}

.details-btn-inquiry {
  background: #ff8c3c;
  color: #ffffff;
}

.details-btn-inquiry:hover {
  background: #f07a28;
}

.details-btn-related {
  background: #ffffff;
  color: #ff8c3c;
  border: 1px solid #ff8c3c;
  box-sizing: border-box;
}

.details-btn-related:hover {
  background: #fff6f0;
}

.details-btn-icon {
  width: 14px;
  height: 14px;
}

.details-cta {
  font-size: 14px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 18px;
}

.details-meta {
  margin-bottom: 14px;
}

.details-meta-label {
  font-size: 14px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 4px;
}

.details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.details-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 5px;
  background: #f4f4f4;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
}

.details-tag-muted {
  color: #525252;
}

.details-desc {
  padding: 24px 0 72px;
  background: #ffffff;
}

.details-tabs {
  margin-bottom: 0;
}

.details-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 101px;
  height: 38px;
  padding: 0 14px;
  border-radius: 5px 5px 0 0;
  font-size: 16px;
  color: #6b7280;
  background: #f3f4f6;
}

.details-tab-active {
  background: #ff8c3c;
  color: #ffffff;
}

.details-tabs::after {
  content: "";
  display: block;
  height: 2px;
  background: #ff8c3c;
  margin-top: -2px;
  max-width: 604px;
}

.details-desc-media {
  margin-top: 28px;
  max-width: 599px;
  overflow: hidden;
  background: #f3f4f6;
}

.details-desc-img {
  width: 100%;
  height: auto;
  max-height: 555px;
  object-fit: cover;
}

.details-desc-heading {
  margin-top: 36px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
}

.details-desc-line {
  height: 3px;
  max-width: 604px;
  background: #d9d9d9;
  margin: 16px 0 18px;
}

.details-desc-list {
  max-width: 602px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: #525252;
}

.details-series {
  padding: 72px 0 80px;
  background: #f5f5f5;
}

.details-series .index-watermark {
  color: #ffffff;
}

.details-series-wrap {
  position: relative;
}

.details-series-swiper {
  margin-bottom: 0;
}

.details-series-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.details-series-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .details-product-layout {
    flex-direction: column;
  }

  .details-gallery {
    width: 100%;
    max-width: 640px;
    padding-right: 0;
    padding-bottom: 28px;
  }

  .details-info {
    width: 100%;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .details-banner {
    height: 240px;
  }

  .details-gallery {
    flex-direction: column;
    width: 100%;
  }

  .details-thumbs {
    flex-direction: row;
    width: 100%;
    max-height: none;
    height: auto;
    align-items: center;
    order: 2;
    margin-top: 12px;
  }

  .details-thumbs-swiper,
  .details-thumbs-swiper.swiper-initialized,
  .details-thumbs-swiper.swiper-vertical,
  .details-thumbs-swiper.swiper-horizontal {
    width: calc(100% - 56px);
    flex: 1;
    height: 63px;
  }

  .details-thumbs-swiper .swiper-slide {
    width: 62px;
    height: 63px;
    margin-bottom: 0;
    margin-right: 0;
  }

  .details-thumbs-swiper .swiper-slide:last-child {
    margin-right: 0;
  }

  .details-main-swiper {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    order: 1;
  }

  .details-thumbs-prev,
  .details-thumbs-next {
    transform: none;
  }

  .details-actions {
    flex-direction: column;
  }

  .details-btn-inquiry,
  .details-btn-related {
    width: 100%;
  }
}

/* ----- news.css ----- */
/* News page — news.css */

.news-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #0b1c2c;
}

.news-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.28) 100%);
}

.news-main {
  padding: 24px 0 80px;
  background: #ffffff;
}

.news-layout {
  display: flex;
  align-items: flex-start;
}

.news-aside {
  width: 22%;
  padding-right: 40px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.news-content {
  width: 78%;
  min-width: 0;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.news-card {
  display: block;
  width: 33.333%;
  padding: 0 8px 36px;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

.news-card-media {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #f3f4f6;
  height: 0;
  padding-bottom: 74.8%;
  position: relative;
}

.news-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.08);
}

.news-card-title {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #333333;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
  color: #ff8c3c;
}

.news-card-excerpt {
  margin-top: 8px;
  font-size: 13px;
  line-height: 19px;
  color: #6b7280;
}

@media (max-width: 1100px) {
  .news-aside {
    width: 28%;
    padding-right: 24px;
  }

  .news-content {
    width: 72%;
  }

  .news-card {
    width: 50%;
  }
}

@media (max-width: 900px) {
  .news-layout {
    flex-direction: column;
  }

  .news-aside {
    width: 100%;
    padding-right: 0;
    padding-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .news-aside .products-panel {
    width: calc(50% - 8px);
    box-sizing: border-box;
  }

  .news-content {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .news-banner {
    height: 240px;
  }

  .news-aside {
    flex-direction: column;
  }

  .news-aside .products-panel {
    width: 100%;
  }

  .news-card {
    width: 100%;
    padding-bottom: 28px;
  }
}

/* ----- news-detail.css ----- */
.news-detail-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #0b1c2c;
}

.news-detail-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-detail-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.28) 100%);
}

.news-detail-crumb {
  padding: 28px 0 8px;
  font-size: 14px;
  color: #6b7280;
}

.news-detail-crumb-link {
  color: #6b7280;
}

.news-detail-crumb-link:hover {
  color: #ff8c3c;
}

.news-detail-crumb-sep {
  margin: 0 6px;
}

.news-detail-crumb-current {
  color: #4b5563;
}

.news-detail-article {
  padding: 24px 0 72px;
  background: #ffffff;
}

.news-detail-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 103px;
  height: 29px;
  padding: 0 16px;
  border-radius: 15px;
  background: #ff8c3c;
  color: #ffffff;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 18px;
}

.news-detail-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 20px;
  max-width: 100%;
}

.news-detail-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 36px;
  padding: 0 14px;
  border-radius: 5px;
  background: #eaeaea;
  color: #4b5563;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 28px;
}

.news-detail-line {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin-bottom: 28px;
}

.news-detail-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
  margin-bottom: 36px;
}

.news-detail-text {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
}

.news-detail-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

.news-detail-cal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e53935;
  color: #ffffff;
}

.news-detail-cal-day {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.news-detail-cal-month {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 4px;
}

.news-detail-photo {
  width: calc(100% - 108px);
  max-width: 946px;
  overflow: hidden;
  background: #f3f4f6;
}

.news-detail-photo-img {
  width: 100%;
  height: auto;
  max-height: 498px;
  object-fit: cover;
}

.news-detail-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.news-detail-nav-link {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
}

.news-detail-nav-link:hover {
  color: #ff8c3c;
}

@media (max-width: 900px) {
  .news-detail-media {
    flex-direction: column;
    align-items: center;
  }

  .news-detail-photo {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .news-detail-banner {
    height: 240px;
  }

  .news-detail-title {
    font-size: 22px;
  }

  .news-detail-text {
    font-size: 15px;
    line-height: 26px;
  }
}

/* ----- faq.css ----- */
.faq-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #e8eef5;
}

.faq-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.faq-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.22) 100%);
}

.faq-crumb {
  padding: 28px 0 8px;
  font-size: 14px;
  color: #6b7280;
}

.faq-crumb-link {
  color: #6b7280;
}

.faq-crumb-link:hover {
  color: #ff8c3c;
}

.faq-crumb-sep {
  margin: 0 6px;
}

.faq-crumb-current {
  color: #4b5563;
  text-transform: uppercase;
}

.faq-main {
  padding: 24px 0 72px;
  background: #ffffff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 59px;
  padding: 12px 24px 12px 20px;
  border: 0;
  background: #e0e0e0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  box-sizing: border-box;
}

.faq-item-open .faq-trigger {
  background: #ff8c3c;
}

.faq-q-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-right: 14px;
}

.faq-q-bg,
.faq-a-bg {
  width: 22px;
  height: 22px;
}

.faq-q-letter {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.faq-item-open .faq-q-letter {
  color: #ff8c3c;
}

.faq-q-text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #6b6b6b;
}

.faq-item-open .faq-q-text {
  color: #ffffff;
}

.faq-arrow {
  width: 14px;
  height: 8px;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-panel {
  display: none;
  align-items: flex-start;
  padding: 18px 24px 8px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

.faq-item-open .faq-panel {
  display: flex;
}

.faq-a-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-right: 14px;
  margin-top: 3px;
}

.faq-a-letter {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.faq-a-text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 28px;
  color: #111827;
}

@media (max-width: 640px) {
  .faq-banner {
    height: 240px;
  }

  .faq-trigger {
    padding: 12px 14px;
  }

  .faq-q-text,
  .faq-a-text {
    font-size: 14px;
    line-height: 22px;
  }

  .faq-panel {
    padding: 14px 14px 6px;
  }
}

/* ----- search.css ----- */
.search-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #fff8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.search-hero-mask {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.search-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1075px, calc(100% - 32px));
}

.search-hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 24px;
  text-align: center;
}

.search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 82px;
  padding: 0 28px 0 32px;
  border-radius: 90px;
  background: #ffffff;
  box-sizing: border-box;
}

.search-bar-field {
  flex: 1;
  min-width: 0;
}

.search-bar-input {
  width: 100%;
  height: 48px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: #111827;
  outline: none;
}

.search-bar-input::placeholder {
  color: #ababab;
}

.search-bar-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.search-bar-icon {
  width: 30px;
  height: 30px;
}

.search-main {
  padding: 8px 0 80px;
  background: #ffffff;
}

.search-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 110px;
  margin-bottom: 36px;
}

.search-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 61px;
  padding: 0 28px;
  border: 0;
  border-radius: 49px;
  background: #ececec;
  color: #4b5563;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

.search-tab-active {
  background: #ff8c3c;
  color: #ffffff;
  font-weight: 800;
}

.search-panel[hidden] {
  display: none;
}

.search-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}

.search-card {
  display: block;
  width: 25%;
  padding: 0 6px 12px;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

.search-card-media {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 6px;
}

.search-card-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.search-card:hover .search-card-img {
  transform: scale(1.08);
}

.search-card-title {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #333333;
  transition: color 0.3s ease;
}

.search-card-title h3 {
  margin: 0;
  font: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-card:hover .search-card-title {
  color: #ff8c3c;
}

.search-main .products-pager {
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .search-tabs {
    gap: 40px;
  }

  .search-tab {
    font-size: 16px;
    min-height: 48px;
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .search-card {
    width: 50%;
  }

  .search-hero {
    height: 300px;
  }

  .search-bar {
    height: 64px;
    padding: 0 18px 0 20px;
  }
}

@media (max-width: 640px) {
  .search-hero {
    height: 260px;
  }

  .search-tabs {
    gap: 12px;
  }

  .search-tab {
    flex: 1;
    font-size: 14px;
    min-height: 44px;
    padding: 0 12px;
  }

  .search-card {
    width: 50%;
    padding-bottom: 8px;
  }

  .search-bar {
    height: 52px;
  }

  .search-bar-input {
    font-size: 14px;
  }

  .search-bar-icon {
    width: 22px;
    height: 22px;
  }
}

/* ----- contact.css ----- */
.contact-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #e8eef5;
}

.contact-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.contact-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.18) 100%);
}

.contact-crumb {
  padding: 28px 0 8px;
  font-size: 14px;
  color: #6b7280;
}

.contact-crumb-link {
  color: #6b7280;
}

.contact-crumb-link:hover {
  color: #ff8c3c;
}

.contact-crumb-sep {
  margin: 0 6px;
}

.contact-crumb-current {
  color: #4b5563;
  text-transform: uppercase;
}

.contact-main {
  padding: 40px 0 80px;
  background: #f3f3f3;
}

.contact-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #333333;
}

.contact-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 46px 4% 40px;
  background: #ffffff;
  border-radius: 130px 0 130px 0;
  box-sizing: border-box;
}

.contact-card-body {
  display: flex;
  align-items: flex-start;
  gap: 4%;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 42%;
  flex-shrink: 0;
}

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

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: #ff8c3c;
  border-radius: 20px;
}

.contact-icon-img {
  width: 35px;
  height: 35px;
}

.contact-row-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 4px;
}

.contact-row-label {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
}

.contact-row-value {
  font-size: 20px;
  line-height: 30px;
  color: #333333;
}

.contact-row-link {
  color: #333333;
  text-decoration: none;
}

.contact-row-link:hover {
  color: #ff8c3c;
}

.contact-media {
  position: relative;
  width: 54%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

.contact-media::before {
  content: "";
  display: block;
  padding-top: 73.6%;
}

.contact-media-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-note {
  margin-top: 36px;
  font-size: 20px;
  line-height: 30px;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .contact-title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .contact-card {
    border-radius: 80px 0 80px 0;
    padding: 36px 5% 32px;
  }

  .contact-card-body {
    flex-direction: column;
  }

  .contact-info,
  .contact-media {
    width: 100%;
  }

  .contact-media {
    order: -1;
  }

  .contact-row-label,
  .contact-row-value,
  .contact-note {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 640px) {
  .contact-banner {
    height: 240px;
  }

  .contact-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .contact-main {
    padding: 28px 0 56px;
  }

  .contact-card {
    border-radius: 48px 0 48px 0;
    padding: 28px 6% 24px;
  }

  .contact-info {
    gap: 24px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .contact-icon-img {
    width: 28px;
    height: 28px;
  }

  .contact-row {
    gap: 12px;
  }

  .contact-row-label,
  .contact-row-value,
  .contact-note {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-note {
    margin-top: 24px;
  }
}

.inquiry-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-feedback {
  margin: 12px 0 0;
  min-height: 22px;
  font-size: 14px;
  line-height: 22px;
}

.inquiry-feedback-ok {
  color: #1a7f37;
}

.inquiry-feedback-err {
  color: #c0392b;
}

.index-btn-submit:disabled,
.products-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 404 */
.index-error {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
  background: #f9fafb;
}

.index-error-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.index-error-code {
  margin: 0 0 12px;
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 700;
  line-height: 1;
  color: #e5e7eb;
  letter-spacing: -0.04em;
}

.index-error-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: #111827;
}

.index-error-desc {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 26px;
  color: #6b7280;
}

.index-error-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.index-error-actions .index-btn-solid,
.index-error-actions .index-btn-outline {
  min-width: 160px;
  text-align: center;
  text-decoration: none;
}

