:root {
  --navy: #082d6b;
  --navy-deep: #041e4e;
  --blue: #0d5bb8;
  --blue-soft: #eaf4ff;
  --cyan-soft: #e8f9fb;
  --orange: #ff5a1f;
  --orange-dark: #e64210;
  --green: #079c61;
  --green-dark: #057349;
  --ink: #102950;
  --muted: #62728b;
  --line: #dce6f1;
  --line-strong: #c8d7e8;
  --page: #ffffff;
  --soft: #f5f9fd;
  --soft-blue: #edf5ff;
  --shadow: 0 8px 24px rgba(15, 56, 110, 0.08);
  --shadow-hover: 0 14px 32px rgba(15, 56, 110, 0.15);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:has(.modal-backdrop),
body:has(.lightbox.open) {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke-width: 1.9;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading h2,
.center-heading h2,
.inline-section-title {
  margin: 0;
  color: var(--navy);
  font-size: 31px;
  line-height: 1.2;
  font-weight: 800;
}

.section-heading p,
.center-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading-action {
  flex: 0 0 auto;
}

.center-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.center-heading .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.inline-section-title {
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--orange);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(6, 40, 91, 0.18);
}

.button-quote {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.button-quote:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button-whatsapp {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.button-whatsapp:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.button-dark:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.button-outline-dark {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy);
}

.button-outline-dark:hover {
  background: var(--blue-soft);
}

.button-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
}

.icon-button:hover {
  border-color: var(--navy);
  background: var(--soft-blue);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(200, 215, 232, 0.92);
  background: rgba(255, 255, 255, 0.98);
}

.header-row {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--navy);
  line-height: 1;
}

.brand-title {
  display: block;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.65px;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  padding: 0 12px;
  color: #162747;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-actions .button {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 12px;
}

.language-wrap {
  position: relative;
}

.language-trigger {
  width: auto;
  min-width: 52px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 800;
}

.language-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: 148px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.language-menu.open {
  display: grid;
  gap: 2px;
}

.language-option {
  display: block;
  width: 100%;
  padding: 8px 9px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  text-align: left;
}

.language-option:hover,
.language-option.active {
  background: var(--soft-blue);
  color: var(--blue);
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

main {
  min-height: 300px;
}

.home-hero,
.factory-hero,
.case-hero,
.about-hero,
.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--navy);
}

.home-hero {
  min-height: 632px;
}

.hero-slides,
.hero-slide,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-wash {
  z-index: 1;
  background: rgba(246, 251, 255, 0.68);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 632px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 58px;
}

.hero-copy {
  width: min(650px, 100%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(8, 45, 107, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: 54px;
  line-height: 1.12;
  font-weight: 900;
}

.hero-copy p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #263b5d;
  font-size: 16px;
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  vertical-align: 1px;
}

.hero-actions,
.conversion-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(8, 45, 107, 0.27);
}

.hero-dot.active {
  background: var(--orange);
}

.feature-section {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 112px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.feature-item:first-child {
  border-left: 1px solid var(--line);
}

.feature-item > .icon {
  width: 31px;
  height: 31px;
  color: var(--blue);
  stroke-width: 1.7;
}

.feature-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
}

.feature-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.home-category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(14, 53, 103, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-category-card:hover {
  border-color: #aac6e5;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.home-category-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.home-category-card > div {
  padding: 12px 12px 14px;
  text-align: center;
}

.home-category-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
}

.home-category-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.custom-callout {
  padding: 24px 0;
  background: var(--cyan-soft);
  border-top: 1px solid #c6e9ec;
  border-bottom: 1px solid #c6e9ec;
}

.custom-callout-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px auto;
  align-items: center;
  gap: 26px;
  min-height: 190px;
}

.custom-callout h2 {
  margin: 5px 0 4px;
  color: var(--navy);
  font-size: 28px;
}

.custom-callout p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.custom-callout img {
  width: 260px;
  height: 160px;
  object-fit: contain;
}

.custom-callout-inner > .button {
  align-self: center;
  white-space: nowrap;
}

.custom-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.custom-points span,
.shipping-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.custom-points .icon {
  color: var(--blue);
  width: 16px;
  height: 16px;
}

.factory-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.factory-highlight-card,
.case-card,
.certificate-card,
.visit-card,
.production-card,
.stock-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(14, 53, 103, 0.04);
}

.factory-highlight-card,
.case-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.factory-highlight-card:hover,
.case-card:hover,
.visit-card:hover,
.stock-card:hover {
  border-color: #a9c4e2;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #f2f7fc;
  text-align: left;
}

.image-button img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  transition: transform 260ms ease;
}

.image-button:hover img {
  transform: scale(1.035);
}

.image-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(4, 30, 78, 0.78);
  color: #fff;
}

.image-zoom .icon {
  width: 15px;
  height: 15px;
}

.factory-highlight-card > div,
.case-card > div {
  padding: 14px 15px 16px;
}

.factory-highlight-card h3,
.case-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}

.factory-highlight-card p,
.case-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
}

.metric-band > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 9px;
  min-height: 82px;
  padding: 13px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.metric-band > div:last-child {
  border-right: 0;
}

.metric-band .icon {
  grid-row: 1 / 3;
  align-self: center;
  width: 29px;
  height: 29px;
  color: #d8ebff;
}

.metric-band strong {
  font-size: 20px;
  line-height: 1.15;
}

.metric-band span {
  color: #b8d2f5;
  font-size: 12px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-country {
  color: var(--blue) !important;
  font-weight: 800;
}

.certificate-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

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

.certificate-card {
  padding-bottom: 15px;
  text-align: center;
}

.certificate-card .image-button {
  background: #fbfcfe;
}

.certificate-card .image-button img {
  aspect-ratio: 1.45;
  object-fit: contain;
  padding: 10px;
}

.certificate-card h3 {
  margin: 10px 10px 0;
  color: var(--navy);
  font-size: 15px;
}

.certificate-card p {
  margin: 3px 10px 0;
  color: var(--muted);
  font-size: 12px;
}

.shipping-section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  background: #f0f7ff;
}

.shipping-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.shipping-layout h2 {
  max-width: 580px;
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.25;
}

.shipping-layout p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.shipping-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.shipping-tags span {
  padding: 5px 10px;
  border: 1px solid #c8dff4;
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
}

.shipping-visual {
  min-height: 250px;
  padding: 20px;
  border: 1px solid #c9ddf0;
  border-radius: 8px;
  background: #fff;
}

.world-disc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border: 1px solid #d5e8f7;
  border-radius: 50%;
  background: #e9f4ff;
}

.world-disc::before {
  width: 74%;
  height: 50%;
  border: 2px dotted #7db2e4;
  border-radius: 48% 52% 42% 58%;
  content: "";
  transform: rotate(-12deg);
}

.world-disc::after {
  position: absolute;
  width: 45%;
  height: 34%;
  border: 2px dotted #8fc5ec;
  border-radius: 50%;
  content: "";
  transform: translate(18px, 10px) rotate(20deg);
}

.world-disc > span {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

.world-disc > i {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--orange);
}

.world-disc > i:nth-of-type(1) { top: 39%; left: 37%; }
.world-disc > i:nth-of-type(2) { top: 49%; left: 61%; }
.world-disc > i:nth-of-type(3) { top: 57%; left: 48%; }
.world-disc > i:nth-of-type(4) { top: 31%; left: 70%; }

.shipping-legend {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.shipping-legend .icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.conversion-section {
  padding: 0 0 0;
  background: var(--page);
}

.conversion-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 142px;
  padding: 26px 34px;
  background: var(--navy);
  color: #fff;
}

.conversion-band h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.conversion-band p {
  margin: 7px 0 0;
  color: #bfd5f4;
  font-size: 13px;
}

.conversion-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  margin-top: 0;
  padding: 52px 0 0;
  background: var(--navy-deep);
  color: #d5e3f7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.72fr 0.82fr 1fr 150px;
  gap: 30px;
  padding-bottom: 34px;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-subtitle {
  color: #bcd2f3;
}

.footer-brand-block p {
  max-width: 270px;
  margin: 20px 0 16px;
  color: #b8cbe4;
  font-size: 12px;
}

.social-row {
  display: flex;
  gap: 8px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(215, 230, 252, 0.54);
  border-radius: 50%;
  color: #fff;
}

.social-row a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.social-row .icon {
  width: 15px;
  height: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
}

.footer-links a,
.footer-links span {
  overflow-wrap: anywhere;
  color: #b8cbe4;
  font-size: 12px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #b8cbe4;
  font-size: 11px;
  text-align: center;
}

.footer-qr img {
  width: 116px;
  height: 116px;
  padding: 7px;
  border-radius: 4px;
  background: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  border-top: 1px solid rgba(211, 227, 249, 0.18);
  color: #99b3d5;
  font-size: 11px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}

.floating-actions {
  position: fixed;
  z-index: 44;
  top: 50%;
  right: 14px;
  display: grid;
  gap: 7px;
  width: 76px;
  transform: translateY(-50%);
}

.floating-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 88px;
  padding: 8px 5px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 7px 16px rgba(3, 31, 76, 0.2);
}

.floating-action .icon {
  width: 24px;
  height: 24px;
}

.floating-action:hover {
  transform: translateX(-3px);
}

.floating-quote {
  background: var(--orange);
}

.floating-whatsapp {
  background: var(--green);
}

.floating-catalog {
  background: var(--navy);
}

.catalog-hero,
.custom-intro {
  padding: 56px 0 45px;
  background: var(--soft-blue);
  text-align: center;
}

.catalog-hero h1,
.custom-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: 43px;
  line-height: 1.2;
}

.catalog-hero p,
.custom-intro p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.catalog-category-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-icon-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.catalog-category {
  display: flex;
  flex: 0 0 102px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 92px;
  padding: 10px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.catalog-category .icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.6;
}

.catalog-category:hover {
  border-color: var(--line);
  background: var(--soft-blue);
}

.catalog-category.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.catalog-category.active .icon {
  color: #fff;
}

.catalog-section {
  padding: 34px 0 68px;
}

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

.catalog-filter-panel {
  position: sticky;
  top: 96px;
  padding: 18px 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.filter-panel-head,
.filter-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.filter-panel-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.filter-panel-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}

.filter-panel-head button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
}

.filter-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.filter-group:last-of-type {
  border-bottom: 0;
}

.filter-group-title h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 14px;
}

.filter-group-title .icon {
  width: 15px;
  height: 15px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: #344c70;
  font-size: 12px;
}

.filter-check input,
.privacy-check input,
.size-filter input,
.color-swatch input {
  accent-color: var(--navy);
}

.size-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.size-filter label {
  position: relative;
}

.size-filter input {
  position: absolute;
  opacity: 0;
}

.size-filter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 29px;
  padding: 0 7px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
}

.size-filter input:checked + span,
.size-filter label:first-child input:checked + span {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.color-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-swatch {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.color-swatch input {
  position: absolute;
  opacity: 0;
}

.color-swatch i {
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--swatch, #fff);
  box-shadow: 0 0 0 1px rgba(30, 57, 91, 0.14);
}

.color-swatch.selected i {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.color-swatch .all-colors {
  border: 1px dashed var(--navy);
  background: #fff;
}

.price-filter {
  display: grid;
  grid-template-columns: 1fr 12px 1fr;
  align-items: center;
  gap: 5px;
}

.price-filter input {
  width: 100%;
  min-width: 0;
  height: 34px;
  padding: 6px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink);
  font-size: 11px;
}

.price-filter span {
  color: var(--muted);
  text-align: center;
}

.filter-submit {
  width: 100%;
  margin-top: 18px;
}

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

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-toolbar strong {
  color: var(--navy);
  font-size: 18px;
}

.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.catalog-toolbar select {
  height: 36px;
  padding: 0 28px 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

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

.stock-card {
  min-width: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.stock-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fbfdff;
}

.stock-card-image > span {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.stock-card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform 220ms ease;
}

.stock-card:hover .stock-card-image img {
  transform: scale(1.04);
}

.stock-card-content {
  padding: 12px 12px 14px;
}

.sku {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.25px;
}

.stock-card h3 {
  min-height: 44px;
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.stock-spec {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.stock-price {
  margin: 7px 0 10px;
  color: var(--orange-dark);
  font-size: 16px;
  font-weight: 800;
}

.stock-price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.card-action {
  width: 100%;
  min-height: 36px;
  padding: 7px 8px;
  font-size: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
}

.page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
}

.page-button:hover,
.page-button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.page-button .icon {
  width: 15px;
  height: 15px;
}

.empty-products {
  grid-column: 1 / -1;
  padding: 54px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  text-align: center;
}

.empty-products h1,
.empty-products h2 {
  margin: 0;
  color: var(--navy);
}

.empty-products p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.support-strip {
  border-top: 1px solid var(--line);
  background: #fff;
}

.support-strip > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
}

.support-strip > .container > div,
.support-strip > .container > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.support-strip .icon {
  width: 29px;
  height: 29px;
  color: var(--blue);
}

.support-strip span {
  display: inline-flex;
  flex-direction: column;
  color: var(--navy);
  font-size: 12px;
}

.support-strip small {
  color: var(--muted);
  font-size: 11px;
}

.support-wa {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

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

.detail-section {
  padding: 70px 0 74px;
}

.product-detail-image {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.product-detail-image .image-button img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 32px;
}

.product-detail-copy {
  padding-top: 12px;
}

.detail-category {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.2;
}

.detail-sku {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.detail-price {
  margin: 18px 0 10px;
  color: var(--orange-dark);
  font-size: 29px;
  font-weight: 800;
}

.detail-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.product-detail-copy > p:not(.detail-category):not(.detail-sku):not(.detail-price) {
  color: var(--muted);
}

.detail-specs {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.detail-specs div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.detail-specs dt {
  color: var(--navy);
  font-weight: 800;
}

.detail-specs dd {
  margin: 0;
  color: var(--muted);
}

.detail-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 28px;
}

.detail-lower-grid h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 23px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
}

.size-table th,
.size-table td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.size-table th {
  background: var(--soft-blue);
  color: var(--navy);
}

.detail-inquiry .inquiry-form {
  margin: 0;
}

.inquiry-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.form-heading {
  margin-bottom: 20px;
}

.form-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.form-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.field b {
  color: var(--orange);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aabc0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 91, 184, 0.1);
}

.field.full,
.privacy-check.full {
  grid-column: 1 / -1;
}

.phone-field {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 7px;
}

.phone-field select {
  padding-right: 3px;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.privacy-check a {
  color: var(--blue);
  font-weight: 700;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.inquiry-selection {
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px solid #bcd7f2;
  border-radius: 5px;
  background: var(--soft-blue);
}

.inquiry-selection > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--navy);
  font-size: 12px;
}

.inquiry-selection > div:first-child span {
  color: var(--blue);
  font-size: 11px;
}

.inquiry-selection-list {
  display: grid;
  gap: 5px;
  margin-top: 7px;
}

.inquiry-selection-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.inquiry-selection-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.inquiry-selection-list button:hover {
  color: var(--orange);
}

.inquiry-selection-list .icon {
  width: 14px;
  height: 14px;
}

.custom-process-section {
  padding: 68px 0 72px;
  background: #fff;
}

.custom-process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.custom-step {
  position: relative;
  min-width: 0;
  text-align: center;
}

.custom-step:not(:last-child)::after {
  position: absolute;
  top: 52px;
  right: -22px;
  width: 18px;
  border-top: 2px dotted #6c91c2;
  content: "";
}

.step-index {
  display: block;
  margin-bottom: 5px;
  color: #aac6eb;
  font-size: 22px;
  font-weight: 800;
}

.custom-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 13px;
  border: 1px solid #d7e5f4;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 5px 15px rgba(20, 66, 123, 0.08);
}

.custom-step-icon .icon {
  width: 31px;
  height: 31px;
}

.custom-step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
}

.custom-step p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.faq-section {
  background: var(--soft-blue);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-item > button {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 68px;
  padding: 13px 16px;
  border: 0;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.faq-item > button > .icon {
  color: var(--blue);
}

.faq-item.open > button > .icon {
  transform: rotate(180deg);
}

.faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}

.faq-answer {
  display: none;
  padding: 0 16px 17px 53px;
  color: var(--muted);
  font-size: 12px;
}

.faq-item.open .faq-answer {
  display: block;
}

.custom-case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.custom-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.custom-case.reverse .image-button {
  order: 2;
}

.custom-case > div {
  padding: 20px 18px;
}

.custom-case h3 {
  margin: 7px 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.custom-case p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.custom-case dl {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.custom-case dl div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  padding: 4px 0;
}

.custom-case dt {
  color: var(--navy);
  font-weight: 700;
}

.custom-case dd {
  margin: 0;
}

.quote-section {
  padding: 70px 0;
  background: var(--soft-blue);
}

.quote-section-inner {
  max-width: 1020px;
}

.factory-hero {
  min-height: 620px;
  color: var(--navy);
}

.factory-hero > img,
.factory-hero-wash,
.case-hero > img,
.case-hero-wash,
.about-hero > img,
.about-hero-wash,
.contact-hero > img,
.contact-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.factory-hero > img,
.case-hero > img,
.about-hero > img,
.contact-hero > img {
  object-fit: cover;
}

.factory-hero > img {
  object-position: center;
}

.factory-hero-wash,
.case-hero-wash,
.about-hero-wash,
.contact-hero-wash {
  z-index: 1;
  background: rgba(246, 251, 255, 0.62);
}

.factory-hero-copy,
.case-hero-copy,
.about-hero-copy,
.contact-hero-copy {
  position: relative;
  z-index: 2;
}

.factory-hero-copy {
  min-height: 620px;
  padding-top: 72px;
  text-align: center;
}

.factory-hero-copy h1 {
  margin: 0 auto;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.18;
}

.factory-hero-copy > p {
  margin: 10px auto 0;
  color: #244879;
  font-size: 18px;
}

.factory-hero-copy .hero-actions {
  justify-content: center;
  margin-top: 25px;
}

.factory-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 70px auto 0;
}

.factory-hero-stats > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(183, 211, 238, 0.9);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
  box-shadow: 0 5px 15px rgba(15, 55, 105, 0.08);
}

.factory-hero-stats .icon {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.factory-hero-stats strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.1;
}

.factory-hero-stats span {
  color: var(--muted);
  font-size: 11px;
}

.process-section {
  background: var(--soft-blue);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.production-card {
  position: relative;
  text-align: center;
}

.production-card .image-button img {
  aspect-ratio: 1.65;
}

.production-card > span {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.production-card h3 {
  margin: 12px 8px 15px;
  color: var(--navy);
  font-size: 15px;
}

.factory-service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.factory-service-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.factory-service-strip span:last-child {
  border-right: 0;
}

.factory-service-strip .icon {
  color: var(--blue);
}

.case-hero {
  min-height: 452px;
}

.case-hero > img {
  object-position: center 38%;
}

.case-hero-copy {
  min-height: 452px;
  padding-top: 70px;
}

.case-hero-copy h1 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 47px;
  line-height: 1.13;
}

.case-hero-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.case-hero-copy p {
  max-width: 580px;
  margin: 18px 0 0;
  color: #273d60;
  font-size: 14px;
}

.benefit-section {
  padding: 0 0 20px;
  background: var(--page);
}

.case-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.case-benefit-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.case-benefit-grid > div:last-child {
  border-right: 0;
}

.case-benefit-grid .icon {
  width: 31px;
  height: 31px;
  color: var(--blue);
}

.case-benefit-grid span {
  display: flex;
  flex-direction: column;
}

.case-benefit-grid strong {
  color: var(--navy);
  font-size: 13px;
}

.case-benefit-grid small {
  color: var(--muted);
  font-size: 11px;
}

.visit-grid,
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.visit-card,
.about-photo-grid article {
  position: relative;
}

.visit-card .image-button img,
.about-photo-grid .image-button img {
  aspect-ratio: 1.58;
}

.visit-card > span,
.about-photo-grid article > span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 12px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.visit-card > span .icon {
  width: 16px;
  height: 16px;
}

.about-hero {
  min-height: 510px;
}

.about-hero > img {
  object-position: center;
}

.about-hero-copy {
  min-height: 510px;
  padding-top: 64px;
}

.about-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: 46px;
  line-height: 1.16;
}

.about-hero-copy h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 21px;
}

.about-hero-copy > p {
  max-width: 540px;
  margin: 18px 0 0;
  color: #273d60;
  font-size: 13px;
}

.about-hero-points,
.contact-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.about-hero-points span,
.contact-hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-hero-points .icon,
.contact-hero-benefits .icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 50px;
}

.about-overview h2,
.about-service-grid h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 26px;
}

.about-overview p,
.about-service-grid p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.mission-grid article {
  position: relative;
  min-height: 198px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mission-grid article:first-child {
  border-color: #f5cfc5;
  background: #fff9f7;
}

.mission-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
}

.mission-grid > article > .icon {
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 40px;
  height: 40px;
  color: var(--orange);
}

.mission-grid article:last-child > .icon {
  color: var(--navy);
}

.mission-grid p {
  max-width: 220px;
  margin-top: 28px;
  font-size: 12px;
}

.advantage-section {
  padding: 55px 0;
  background: var(--soft-blue);
}

.advantage-section h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 25px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.advantage-grid article {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 110px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.advantage-grid article:last-child {
  border-right: 0;
}

.advantage-grid article > .icon {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  color: var(--blue);
}

.advantage-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
}

.advantage-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  position: relative;
  gap: 0;
  padding-top: 18px;
}

.timeline::before {
  position: absolute;
  top: 35px;
  right: 4%;
  left: 4%;
  height: 2px;
  background: #c7d8ec;
  content: "";
}

.timeline article {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.timeline article > span {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.timeline article > i {
  display: block;
  width: 13px;
  height: 13px;
  margin: 8px auto 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.timeline p {
  max-width: 116px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.about-service-section {
  padding: 60px 0;
  background: #f4f9ff;
}

.about-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.market-points {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.market-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.market-points .icon {
  color: var(--blue);
}

.reason-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.reason-list .icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.metric-section {
  padding: 0 0 60px;
  background: #f4f9ff;
}

.contact-hero {
  min-height: 340px;
}

.contact-hero > img {
  object-position: 72% center;
}

.contact-hero-wash {
  background: rgba(246, 251, 255, 0.78);
}

.contact-hero-copy {
  min-height: 340px;
  padding-top: 55px;
}

.contact-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: 50px;
  line-height: 1.15;
}

.contact-hero-copy h2 {
  margin: 11px 0 0;
  color: var(--navy);
  font-size: 23px;
}

.contact-hero-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding-top: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr) minmax(205px, 0.62fr);
  align-items: start;
  gap: 16px;
}

.contact-form-panel,
.contact-info-panel,
.qr-panel,
.hours-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-form-panel {
  padding: 0;
}

.contact-form-panel .inquiry-form {
  border: 0;
}

.contact-info-panel {
  padding: 22px 20px;
}

.contact-info-panel h2,
.qr-panel h2,
.hours-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 23px;
}

.contact-list > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-list .icon {
  width: 23px;
  height: 23px;
  color: var(--blue);
}

.contact-list span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-list strong {
  color: var(--navy);
  font-size: 13px;
}

.contact-list small {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
}

.contact-side-column {
  display: grid;
  gap: 16px;
}

.qr-panel {
  padding: 20px;
  text-align: center;
}

.qr-panel p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.qr-panel img {
  width: min(100%, 170px);
  margin: 0 auto 15px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.qr-panel .button {
  width: 100%;
}

.hours-panel {
  padding: 20px;
}

.hours-panel h2 {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hours-panel h2 .icon {
  color: var(--blue);
}

.hours-panel p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hours-panel p + p {
  margin-top: 12px;
}

.hours-panel a {
  color: var(--green);
  font-weight: 700;
}

.process-contact-section {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.process-contact-section > .container {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 30px;
}

.process-contact-section h2,
.location-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
}

.process-contact-section p,
.location-layout p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-process-list article {
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 9px;
}

.contact-process-list article > .icon:first-child {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.contact-process-list article > .icon:last-child {
  width: 15px;
  height: 15px;
  color: #8aa7ca;
}

.contact-process-list span {
  display: flex;
  flex-direction: column;
}

.contact-process-list strong {
  color: var(--navy);
  font-size: 13px;
}

.contact-process-list small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.location-section {
  padding: 45px 0;
  background: var(--soft);
}

.location-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: stretch;
  gap: 25px;
}

.location-layout > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.location-layout > div:first-child > span {
  display: flex;
  gap: 7px;
  margin: 18px 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.location-layout > div:first-child > span .icon {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.location-map {
  position: relative;
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #c9dced;
  border-radius: 8px;
  background-color: #e3f0dc;
  background-image: linear-gradient(23deg, transparent 45%, rgba(255,255,255,.68) 46%, rgba(255,255,255,.68) 48%, transparent 49%), linear-gradient(115deg, transparent 39%, rgba(255,255,255,.72) 40%, rgba(255,255,255,.72) 42%, transparent 43%);
  background-size: 190px 120px, 230px 150px;
}

.location-map::before,
.location-map::after {
  position: absolute;
  border: 1px solid rgba(131, 164, 192, 0.38);
  border-radius: 50%;
  content: "";
}

.location-map::before {
  width: 380px;
  height: 160px;
}

.location-map::after {
  width: 210px;
  height: 90px;
  transform: rotate(-28deg);
}

.map-pin-large {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 91, 184, 0.26);
}

.location-map > strong {
  position: relative;
  z-index: 2;
  margin-left: 14px;
  padding: 11px 14px;
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  box-shadow: var(--shadow);
}

.location-map > strong small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.checkout-section {
  padding: 72px 0;
  background: var(--soft);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.checkout-product,
.checkout-help {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checkout-product {
  display: flex;
  align-items: center;
  gap: 22px;
}

.checkout-product img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  background: #fbfdff;
}

.checkout-product h1 {
  margin: 6px 0;
  color: var(--navy);
  font-size: 25px;
}

.checkout-product strong {
  color: var(--orange-dark);
  font-size: 22px;
}

.checkout-help h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.checkout-help p {
  color: var(--muted);
}

.legal-page {
  max-width: 820px;
}

.legal-page h1 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 36px;
}

.legal-page p {
  color: var(--muted);
}

.legal-page a {
  color: var(--blue);
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 21, 54, 0.64);
}

.quote-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 12, 37, 0.3);
}

.quote-modal .inquiry-form {
  border: 0;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
}

.modal-close:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.lightbox {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(2, 21, 54, 0.82);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1000px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 5px;
  background: transparent;
  color: #fff;
}

.toast {
  position: fixed;
  z-index: 130;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 48px));
  padding: 12px 16px;
  border-radius: 5px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 0;
  }

  .nav-link {
    padding: 0 8px;
    font-size: 13px;
  }

  .nav-link::after {
    right: 8px;
    left: 8px;
  }

  .header-row {
    gap: 13px;
  }

  .header-actions .button {
    padding: 9px 9px;
  }

  .home-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantage-grid article:nth-child(3) {
    border-right: 0;
  }

  .advantage-grid article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .stock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr 130px;
    gap: 20px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-command {
    display: none;
  }

  .mobile-menu-button,
  .mobile-nav {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .mobile-nav-inner {
    display: grid;
    gap: 2px;
    padding-top: 9px;
    padding-bottom: 16px;
  }

  .mobile-nav-link {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-nav-link.active {
    color: var(--blue);
  }

  .mobile-nav-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 13px;
  }

  .mobile-nav-actions .button {
    flex: 1 1 180px;
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-item:nth-child(4),
  .feature-item:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .feature-item:nth-child(3) {
    border-right: 0;
  }

  .custom-callout-inner {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .custom-callout-inner > .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .custom-callout img {
    width: 210px;
    height: 140px;
  }

  .factory-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shipping-layout,
  .about-overview,
  .about-service-grid {
    gap: 30px;
  }

  .catalog-layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.7fr);
  }

  .contact-side-column {
    grid-column: 2;
    grid-row: 1;
  }

  .contact-info-panel {
    grid-column: 1 / -1;
  }

  .contact-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-list > div {
    min-width: 0;
  }

  .process-contact-section > .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-layout {
    grid-template-columns: 210px 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 20px;
  }

  .section-heading-action {
    margin-top: 12px;
  }

  .section-heading h2,
  .center-heading h2,
  .inline-section-title {
    font-size: 26px;
  }

  .header-row {
    min-height: 68px;
  }

  .brand-title {
    font-size: 19px;
  }

  .brand-subtitle {
    font-size: 8px;
  }

  .home-hero {
    min-height: 560px;
  }

  .hero-content {
    min-height: 560px;
    align-items: flex-start;
    padding-top: 82px;
    padding-bottom: 54px;
  }

  .hero-copy h1 {
    max-width: 560px;
    font-size: 37px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero-dots {
    bottom: 23px;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .feature-item:nth-child(5) {
    grid-column: 1 / -1;
    border-left: 1px solid var(--line);
  }

  .home-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .custom-callout-inner {
    display: block;
  }

  .custom-callout-inner img {
    width: 100%;
    height: 180px;
    margin: 20px 0 12px;
    object-fit: contain;
  }

  .custom-callout-inner > .button {
    display: inline-flex;
  }

  .factory-highlight-grid,
  .case-grid,
  .certificate-grid,
  .visit-grid,
  .about-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-band > div:nth-child(2) {
    border-right: 0;
  }

  .metric-band > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255,255,255,.24);
  }

  .shipping-layout {
    grid-template-columns: 1fr;
  }

  .shipping-layout h2 {
    font-size: 26px;
  }

  .shipping-visual {
    min-height: 220px;
  }

  .conversion-band {
    display: block;
    padding: 24px 20px;
  }

  .conversion-actions {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .conversion-actions .button {
    flex: 1 1 170px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand-block,
  .footer-qr {
    grid-column: 1 / -1;
  }

  .footer-qr {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    display: block;
    padding: 14px 0;
    line-height: 1.7;
  }

  .footer-bottom span:last-child {
    gap: 14px;
    margin-top: 3px;
  }

  .floating-actions {
    top: auto;
    right: 10px;
    bottom: 12px;
    width: 60px;
    transform: none;
  }

  .floating-action {
    min-height: 58px;
    gap: 2px;
    border-radius: 7px;
    font-size: 9px;
  }

  .floating-action .icon {
    width: 19px;
    height: 19px;
  }

  .catalog-hero,
  .custom-intro {
    padding: 42px 0 32px;
  }

  .catalog-hero h1,
  .custom-intro h1 {
    font-size: 32px;
  }

  .catalog-hero p,
  .custom-intro p {
    font-size: 14px;
  }

  .category-icon-list {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .catalog-category {
    flex-basis: 78px;
    min-height: 78px;
    font-size: 10px;
  }

  .catalog-category .icon {
    width: 25px;
    height: 25px;
  }

  .catalog-layout {
    display: block;
  }

  .catalog-filter-panel {
    position: static;
    margin-bottom: 20px;
  }

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

  .catalog-toolbar {
    align-items: flex-start;
  }

  .catalog-toolbar label {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .support-strip > .container {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .support-strip > .container > div,
  .support-strip > .container > a {
    flex: 1 1 145px;
  }

  .product-detail-layout,
  .detail-lower-grid,
  .checkout-layout,
  .about-overview,
  .about-service-grid {
    grid-template-columns: 1fr;
  }

  .detail-section {
    padding: 46px 0 50px;
  }

  .product-detail-copy h1 {
    font-size: 31px;
  }

  .custom-process-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 12px;
  }

  .custom-step:not(:last-child)::after {
    display: none;
  }

  .faq-grid,
  .custom-case-list {
    grid-template-columns: 1fr;
  }

  .custom-case {
    grid-template-columns: 1fr 1fr;
  }

  .custom-case.reverse .image-button {
    order: 0;
  }

  .factory-hero {
    min-height: 590px;
  }

  .factory-hero-copy {
    min-height: 590px;
    padding-top: 52px;
  }

  .factory-hero-copy h1 {
    font-size: 35px;
  }

  .factory-hero-copy > p {
    font-size: 14px;
  }

  .factory-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 42px;
  }

  .factory-hero-stats > div {
    padding: 12px 10px;
  }

  .factory-hero-stats strong {
    font-size: 16px;
  }

  .production-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .factory-service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-service-strip span:nth-child(2) {
    border-right: 0;
  }

  .factory-service-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .case-hero {
    min-height: 470px;
  }

  .case-hero-copy {
    min-height: 470px;
    padding-top: 50px;
  }

  .case-hero-copy h1 {
    font-size: 35px;
  }

  .case-hero-copy h2 {
    font-size: 18px;
  }

  .case-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-benefit-grid > div:nth-child(2) {
    border-right: 0;
  }

  .case-benefit-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-hero {
    min-height: 545px;
  }

  .about-hero-copy {
    min-height: 545px;
    padding-top: 48px;
  }

  .about-hero-copy h1 {
    font-size: 35px;
  }

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

  .about-hero-copy > p {
    font-size: 13px;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid article:nth-child(2n) {
    border-right: 0;
  }

  .advantage-grid article:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .timeline {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 25px;
  }

  .timeline::before {
    display: none;
  }

  .timeline article > i {
    margin-bottom: 8px;
  }

  .contact-hero {
    min-height: 390px;
  }

  .contact-hero-copy {
    min-height: 390px;
    padding-top: 48px;
  }

  .contact-hero-copy h1 {
    font-size: 39px;
  }

  .contact-hero-copy h2 {
    font-size: 19px;
  }

  .contact-grid {
    display: block;
  }

  .contact-info-panel,
  .contact-side-column {
    margin-top: 16px;
  }

  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-contact-section {
    padding: 36px 0;
  }

  .contact-process-list {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .contact-process-list article > .icon:last-child {
    display: none;
  }

  .location-layout {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 190px;
  }

  .checkout-product {
    display: block;
  }

  .checkout-product img {
    width: 100%;
    height: 220px;
    margin-bottom: 18px;
  }

  .quote-modal {
    max-height: calc(100vh - 20px);
  }

  .quote-modal .inquiry-form {
    padding: 22px 16px 18px;
  }
}

@media (max-width: 460px) {
  .header-actions {
    gap: 5px;
  }

  .language-trigger {
    min-width: 45px;
    padding: 0 5px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-tags {
    gap: 6px 10px;
    font-size: 11px;
  }

  .hero-actions .button {
    flex: 1 1 145px;
  }

  .feature-item {
    padding: 14px 10px;
  }

  .feature-item h3 {
    font-size: 13px;
  }

  .feature-item p {
    font-size: 10px;
  }

  .factory-highlight-grid,
  .case-grid,
  .certificate-grid,
  .visit-grid,
  .about-photo-grid {
    grid-template-columns: 1fr;
  }

  .metric-band > div {
    padding: 12px 13px;
  }

  .metric-band strong {
    font-size: 16px;
  }

  .shipping-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block,
  .footer-qr {
    grid-column: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full,
  .privacy-check.full {
    grid-column: auto;
  }

  .custom-process-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-case {
    display: block;
  }

  .custom-case .image-button img {
    aspect-ratio: 1.5;
  }

  .production-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-benefit-grid {
    grid-template-columns: 1fr;
  }

  .case-benefit-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-benefit-grid > div:last-child {
    border-bottom: 0;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .advantage-grid article:last-child {
    border-bottom: 0;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .conversion-actions {
    display: grid;
  }

  .conversion-actions .button {
    width: 100%;
  }

  .toast {
    right: 12px;
    bottom: 86px;
    max-width: calc(100vw - 24px);
  }
}

