﻿:root {
  --ink: #17302f;
  --muted: #5d7270;
  --line: #d6e6e3;
  --paper: #fffdf7;
  --soft: #e8fbf8;
  --mint: #00b8c7;
  --mint-dark: #008f9c;
  --sun: #ffc93c;
  --coral: #ff7b54;
  --forest: #164643;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 143, 156, 0.16);
}

/* 2026-07-05 frontend fixes */
.showcase-banner {
  position: relative;
}

.showcase-banner .carousel-track,
.showcase-banner .carousel-slide img {
  height: 460px;
  min-height: 460px;
}

.showcase-banner .carousel-slide::after {
  background: linear-gradient(90deg, rgba(17, 48, 46, 0.22), rgba(17, 48, 46, 0.04));
}

.hero {
  min-height: 760px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 201, 60, 0.34), transparent 26%),
    linear-gradient(115deg, #f8fffd 0%, #e1fbf7 48%, #fff5cc 100%);
}

.hero-media {
  display: none;
}

.hero-copy {
  width: min(1040px, calc(100% - 36px));
}

.hero-stats {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  max-width: 980px;
}

.hero-stats div {
  min-height: 126px;
}

.equipment-section {
  background:
    linear-gradient(180deg, rgba(0, 184, 199, 0.94), rgba(0, 143, 156, 0.88)),
    url("equipment.png") center/cover no-repeat;
}

.equipment-section .section-heading,
.equipment-section .section-heading p,
.equipment-section .eyebrow,
.equipment-section h2 {
  color: #fff;
}

.equipment-filter {
  display: none !important;
}

.equipment-product-card {
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  gap: 12px;
}

.equipment-product-card .product-category {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 199, 0.12);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
}

.equipment-product-card h3 {
  margin: 8px 0 0;
  text-align: center;
}

.equipment-product-card p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 680px;
}

.contact-info ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 184, 199, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-info strong {
  color: var(--mint-dark);
}

.friend-links {
  margin-top: 18px;
}

.friend-links p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 8px;
}

.copyright {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-page .news-list.expanded {
  grid-template-columns: 1fr;
}

.news-page .news-list.expanded article {
  min-height: auto;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sitemap-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sitemap-grid h2 {
  font-size: 24px;
}

.sitemap-grid a {
  color: var(--mint-dark);
  font-weight: 800;
}

@media (min-width: 721px) and (max-width: 1180px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 360px;
    min-height: 360px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 240px;
    min-height: 240px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 46px;
  }

  .hero-stats,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .contact-info li {
    grid-template-columns: 1fr;
  }
}

/* Last overrides for current upload package. */
.header-actions {
  align-items: center !important;
}

.lang-toggle,
.header-actions .button.compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  line-height: 1;
}

.lang-toggle {
  min-width: 62px;
  padding: 0 16px;
}

.news-page .news-list.expanded {
  grid-template-columns: 1fr;
  gap: 14px;
}

.news-page .news-list.expanded article {
  min-height: 150px;
  padding: 18px 24px;
}

.news-page .news-list.expanded time {
  margin-bottom: 10px;
}

.news-page .news-list.expanded h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.12;
}

.news-page .news-list.expanded p {
  margin-bottom: 14px;
}

.pagination,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.pagination a.active,
.pagination a:hover {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--white);
}

.button.disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.sitemap-page .sitemap-grid article {
  max-height: 520px;
  overflow: auto;
}

.sitemap-page .sitemap-grid p {
  margin-bottom: 12px;
}

.sitemap-more {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  background: var(--white);
}

.equipment-filter {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 168px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: #fff;
  background: rgba(0, 122, 162, 0.82);
}

@media (max-width: 720px) {
  .lang-toggle,
  .header-actions .button.compact {
    height: 40px;
    min-height: 40px;
  }

  .news-page .news-list.expanded article {
    padding: 16px;
  }

  .pagination,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Equipment category tabs: only two categories, no "all" tab. */
.equipment-filter {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 168px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: #fff;
  background: rgba(0, 122, 162, 0.82);
}

/* Final batch fixes: compact news, pagination, sitemap scale, header alignment. */
.header-actions {
  align-items: center !important;
}

.lang-toggle,
.header-actions .button.compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  line-height: 1;
}

.lang-toggle {
  min-width: 62px;
  padding: 0 16px;
}

.news-page .news-list.expanded {
  gap: 14px;
}

.news-page .news-list.expanded article {
  min-height: 150px;
  padding: 18px 24px;
}

.news-page .news-list.expanded time {
  margin-bottom: 10px;
}

.news-page .news-list.expanded h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.12;
}

.news-page .news-list.expanded p {
  margin-bottom: 14px;
}

.pagination,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.pagination a.active,
.pagination a:hover {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--white);
}

.button.disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.sitemap-page .sitemap-grid article {
  max-height: 520px;
  overflow: auto;
}

.sitemap-page .sitemap-grid p {
  margin-bottom: 12px;
}

.sitemap-more {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  background: var(--white);
}

@media (max-width: 720px) {
  .lang-toggle,
  .header-actions .button.compact {
    height: 40px;
    min-height: 40px;
  }

  .news-page .news-list.expanded article {
    padding: 16px;
  }

  .pagination,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (min-width: 1041px) {
  .site-header {
    justify-content: flex-start;
  }

  .brand {
    flex: 0 0 300px;
    min-width: 300px;
  }

  .nav {
    justify-content: flex-start;
  }

  .header-actions {
    margin-left: auto;
  }
}

.equipment-filter {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 168px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: #fff;
  background: rgba(0, 122, 162, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", "Microsoft YaHei UI", "PingFang SC", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(214, 230, 227, 0.9);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 214px;
}

.brand-logo {
  width: min(210px, 46vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 28px);
  color: #365552;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: var(--mint-dark);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-form {
  margin: 0;
}

.lang-select {
  height: 40px;
  min-width: 112px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 28px 0 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle,
.icon-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.lang-toggle {
  min-width: 50px;
  height: 40px;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--mint);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), #12cfd5);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0, 184, 199, 0.2);
}

.button:hover {
  background: linear-gradient(135deg, var(--mint-dark), #0bbec5);
}

.button.ghost {
  border-color: rgba(0, 184, 199, 0.28);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: none;
}

.button.compact {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #dff9f5;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 201, 60, 0.45), transparent 28%),
    linear-gradient(90deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 253, 247, 0.72) 42%, rgba(255, 253, 247, 0.06) 78%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  width: min(740px, calc(100% - 36px));
  margin: 0 0 clamp(30px, 7vw, 82px) clamp(18px, 5vw, 76px);
  padding-top: 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 28px;
  color: #365552;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(0, 143, 156, 0.1);
}

.hero-stats dt {
  color: var(--mint-dark);
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.philosophy {
  background: var(--paper);
}

.philosophy-grid,
.step-grid,
.news-list,
.managed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.philosophy-grid article,
.step-grid article,
.news-list article,
.news-card,
.managed-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.philosophy-grid article,
.managed-grid article,
.news-list article,
.news-card {
  box-shadow: 0 14px 36px rgba(0, 143, 156, 0.08);
}

.philosophy-grid p,
.step-grid p,
.news-list p,
.equipment-copy p,
.case-copy p,
.contact-copy p,
.managed-grid p {
  color: var(--muted);
}

.showcase {
  background: linear-gradient(180deg, #eafffb 0%, #fffdf7 100%);
}

.showcase-banner {
  padding: 0;
  background: var(--forest);
}

.showcase-banner .carousel {
  border-radius: 0;
  box-shadow: none;
}

.showcase-banner .carousel-track {
  min-height: clamp(420px, 54vw, 660px);
}

.showcase-banner .carousel-slide img {
  height: clamp(420px, 54vw, 660px);
}

.showcase-banner + .hero {
  min-height: 720px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.carousel-track {
  position: relative;
  min-height: 500px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.carousel-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 48, 46, 0.78), rgba(17, 48, 46, 0.18));
}

.carousel-caption {
  position: absolute;
  left: clamp(22px, 5vw, 66px);
  bottom: clamp(24px, 5vw, 66px);
  z-index: 2;
  max-width: 620px;
  color: var(--white);
}

.carousel-caption span {
  color: var(--sun);
  font-weight: 900;
}

.carousel-caption h3 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 56px);
}

.carousel-caption p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.carousel-controls {
  position: absolute;
  left: clamp(22px, 5vw, 66px);
  right: clamp(22px, 5vw, 66px);
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 30px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--sun);
}

.equipment-showcase {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(54px, 7vw, 92px);
  background:
    linear-gradient(rgba(40, 159, 207, 0.86), rgba(22, 137, 187, 0.92)),
    url("hero-laundry.png") center / cover;
  color: var(--white);
}

.equipment-heading {
  max-width: 980px;
  margin: 0 auto 22px;
  text-align: center;
}

.equipment-heading .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.equipment-heading h2 {
  margin-bottom: 8px;
  color: var(--white);
}

.equipment-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.equipment-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 118px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(0, 122, 162, 0.82);
}

.equipment-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.equipment-product-card {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  min-height: 360px;
  padding: clamp(20px, 2.4vw, 34px) clamp(18px, 2vw, 28px) 26px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.equipment-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(8, 79, 105, 0.24);
}

.product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.equipment-product-card img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.equipment-product-card strong {
  display: block;
  padding-top: 18px;
  font-size: 18px;
  font-weight: 500;
}

.cases img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #365552;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.franchise {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 201, 60, 0.22), transparent 28%),
    var(--forest);
  color: var(--white);
}

.franchise .eyebrow {
  color: var(--sun);
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.step-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--sun);
  font-size: 15px;
  font-weight: 900;
}

.step-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.cases {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(32px, 6vw, 86px);
  background: #fff6df;
}

.case-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-cards span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--mint-dark);
  font-weight: 900;
}

.news {
  background: var(--paper);
}

.news-list article,
.news-card {
  min-height: 245px;
}

.news-card {
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 143, 156, 0.14);
}

.news-list time,
.news-card time {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--coral);
  font-weight: 900;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--mint-dark);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.9fr);
  gap: clamp(32px, 7vw, 96px);
  background: var(--soft);
}

.contact-copy {
  max-width: 620px;
}

.consult-form,
.admin-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.consult-form label,
.admin-panel label {
  display: grid;
  gap: 8px;
  color: #365552;
  font-size: 14px;
  font-weight: 800;
}

.consult-form input,
.consult-form textarea,
.admin-panel input,
.admin-panel textarea {
  width: 100%;
  border: 1px solid #c8dfdc;
  border-radius: 8px;
  background: #fbfffe;
  color: var(--ink);
  font: inherit;
}

.consult-form input,
.admin-panel input {
  height: 48px;
  padding: 0 14px;
}

.consult-form textarea,
.admin-panel textarea {
  resize: vertical;
  padding: 12px 14px;
}

.consult-form input:focus,
.consult-form textarea:focus,
.admin-panel input:focus,
.admin-panel textarea:focus {
  outline: 2px solid rgba(0, 184, 199, 0.24);
  border-color: var(--mint);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 76px);
  background: #102d2b;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer a {
  color: var(--sun);
  font-weight: 800;
}

.admin-body {
  background: #f3fffd;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.admin-top p {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
}

.admin-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.admin-tabs button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 0 16px;
}

.admin-tabs a {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  padding: 0 16px;
}

.admin-tabs button.active,
.admin-tabs a.active {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--white);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: grid;
}

.admin-item {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafffe;
}

.admin-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-check {
  display: flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.admin-check input {
  width: auto;
  height: auto;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-message {
  color: var(--mint-dark);
  font-weight: 800;
}

.admin-image-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6fffd;
}

.admin-image-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.detail-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(72px, 10vw, 128px);
}

.detail-shell h1 {
  max-width: 860px;
  font-size: clamp(34px, 5vw, 64px);
}

.detail-summary {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.detail-image {
  width: min(680px, 100%);
  max-height: 520px;
  margin: 0 0 34px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.detail-body {
  max-width: 820px;
  margin-bottom: 34px;
  color: #365552;
  font-size: 18px;
}

.detail-body p {
  margin-bottom: 18px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .cases,
  .contact,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .equipment-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid,
  .philosophy-grid,
  .news-list,
  .managed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .equipment-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-track,
  .carousel-slide img {
    min-height: 460px;
    height: 460px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(176px, 52vw);
  }

  .header-actions .button.compact:last-child {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    min-height: 360px;
    height: 360px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.86) 52%, rgba(255, 253, 247, 0.2) 100%),
      radial-gradient(circle at 82% 12%, rgba(255, 201, 60, 0.34), transparent 32%);
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 26px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats,
  .philosophy-grid,
  .step-grid,
  .news-list,
  .managed-grid,
  .case-cards,
  .admin-grid-two,
  .admin-tabs {
    grid-template-columns: 1fr;
  }

  .equipment-product-grid {
    grid-template-columns: 1fr;
  }

  .equipment-product-card {
    min-height: 320px;
  }

  .carousel-track,
  .carousel-slide img {
    min-height: 240px;
    height: 240px;
  }

  .carousel-controls {
    justify-content: flex-start;
  }

  .philosophy-grid article,
  .step-grid article,
  .news-list article,
  .managed-grid article {
    min-height: auto;
    padding: 24px;
  }

  .consult-form,
  .admin-panel {
    padding: 20px;
  }

  .admin-top,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final overrides for the online fix package. Keep this block at the end. */
.showcase-banner {
  position: relative;
}

.showcase-banner .carousel-track,
.showcase-banner .carousel-slide img {
  height: 460px;
  min-height: 460px;
}

.showcase-banner .carousel-slide::after {
  background: linear-gradient(90deg, rgba(17, 48, 46, 0.22), rgba(17, 48, 46, 0.04));
}

.hero {
  min-height: 760px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 201, 60, 0.34), transparent 26%),
    linear-gradient(115deg, #f8fffd 0%, #e1fbf7 48%, #fff5cc 100%);
}

.hero-media {
  display: none;
}

.hero-copy {
  width: min(1040px, calc(100% - 36px));
}

.hero-stats {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  max-width: 980px;
}

.hero-stats div {
  min-height: 126px;
}

.equipment-section {
  background:
    linear-gradient(180deg, rgba(0, 184, 199, 0.94), rgba(0, 143, 156, 0.88)),
    url("equipment.png") center/cover no-repeat;
}

.equipment-section .section-heading,
.equipment-section .section-heading p,
.equipment-section .eyebrow,
.equipment-section h2 {
  color: #fff;
}

.equipment-filter {
  display: none !important;
}

.equipment-product-card {
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  gap: 12px;
}

.equipment-product-card .product-category {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 199, 0.12);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
}

.equipment-product-card h3 {
  margin: 8px 0 0;
  text-align: center;
}

.equipment-product-card p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 680px;
}

.contact-info ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 184, 199, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-info strong {
  color: var(--mint-dark);
}

.friend-links {
  margin-top: 18px;
}

.friend-links p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 8px;
}

.copyright {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-page .news-list.expanded {
  grid-template-columns: 1fr;
}

.news-page .news-list.expanded article {
  min-height: auto;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sitemap-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sitemap-grid h2 {
  font-size: 24px;
}

.sitemap-grid a {
  color: var(--mint-dark);
  font-weight: 800;
}

@media (min-width: 721px) and (max-width: 1180px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 360px;
    min-height: 360px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 240px;
    min-height: 240px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 46px;
  }

  .hero-stats,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .contact-info li {
    grid-template-columns: 1fr;
  }
}

/* Absolute last overrides for current upload package. */
.header-actions {
  align-items: center !important;
}

.lang-toggle,
.header-actions .button.compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  line-height: 1;
}

.lang-toggle {
  min-width: 62px;
  padding: 0 16px;
}

.news-page .news-list.expanded {
  grid-template-columns: 1fr;
  gap: 14px;
}

.news-page .news-list.expanded article {
  min-height: 150px;
  padding: 18px 24px;
}

.news-page .news-list.expanded time {
  margin-bottom: 10px;
}

.news-page .news-list.expanded h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.12;
}

.news-page .news-list.expanded p {
  margin-bottom: 14px;
}

.pagination,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.pagination a.active,
.pagination a:hover {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--white);
}

.button.disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.sitemap-page .sitemap-grid article {
  max-height: 520px;
  overflow: auto;
}

.sitemap-page .sitemap-grid p {
  margin-bottom: 12px;
}

.sitemap-more {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  background: var(--white);
}

.equipment-filter {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 168px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: #fff;
  background: rgba(0, 122, 162, 0.82);
}

@media (max-width: 720px) {
  .lang-toggle,
  .header-actions .button.compact {
    height: 40px;
    min-height: 40px;
  }

  .news-page .news-list.expanded article {
    padding: 16px;
  }

  .pagination,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Desktop nav position adjustment. */
@media (min-width: 1041px) {
  .brand {
    flex-basis: 360px;
    min-width: 360px;
  }
}

/* Final layout refinements for admin, SEO content and product display. */
.section {
  padding-top: clamp(46px, 5vw, 80px);
  padding-bottom: clamp(46px, 5vw, 80px);
}

.showcase-banner .carousel-track,
.showcase-banner .carousel-slide img {
  height: 520px !important;
  min-height: 520px !important;
}

.showcase-banner .carousel-slide img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.equipment-section {
  background: linear-gradient(180deg, #12b9c3 0%, #0ea4ad 100%) !important;
}

.equipment-product-grid {
  justify-items: center;
}

.equipment-product-card {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  min-height: 360px !important;
  padding: 28px 24px !important;
  text-align: center !important;
}

.equipment-product-card .product-category,
.equipment-product-card p {
  display: none !important;
}

.equipment-product-card img {
  display: block;
  width: auto;
  max-width: 86%;
  max-height: 260px;
  margin: 0 auto 22px !important;
  object-fit: contain;
}

.equipment-product-card h3 {
  margin: 0 auto !important;
  text-align: center !important;
}

.philosophy-grid article,
.step-grid article {
  min-height: 158px !important;
  padding: 26px !important;
}

.news-list {
  gap: 16px !important;
}

.news-list article,
.news-page .news-list.expanded article {
  min-height: 138px !important;
  padding: 20px 24px !important;
}

.news-list time {
  margin-bottom: 8px !important;
}

.news-list h3,
.news-list h2 {
  margin-bottom: 8px !important;
  line-height: 1.18 !important;
}

.news-list p {
  margin-bottom: 10px !important;
}

.form-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

.form-message {
  margin: 0 0 16px;
  font-weight: 800;
}

.form-message.success {
  color: #058d92;
}

.form-message.error {
  color: #c73a3a;
}

.friend-links {
  margin-top: 16px;
  font-size: 14px;
}

.friend-links strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.friend-links a {
  margin-right: 14px;
  font-size: 14px;
}

.detail-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}

.admin-form {
  gap: 14px !important;
}

.admin-form textarea {
  min-height: 86px;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 0;
}

.editor-toolbar button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.rich-editor {
  min-height: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  line-height: 1.75;
  outline: none;
}

.rich-editor:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(17, 190, 199, 0.12);
}

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

.rich-editor img.editor-image-selected {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.editor-hidden {
  display: none;
}

.admin-list.compact-list,
.admin-list {
  gap: 10px !important;
}

.admin-item {
  padding: 14px 16px !important;
}

.admin-list .admin-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 16px !important;
}

.admin-item .admin-meta,
.admin-item .admin-actions {
  grid-column: 2 !important;
  justify-content: flex-end !important;
}

.admin-item .admin-meta {
  grid-row: 1 !important;
  align-self: end !important;
}

.admin-item .admin-actions {
  grid-row: 2 !important;
  align-self: start !important;
}

.admin-item h3,
.admin-item p {
  grid-column: 1 !important;
}

.admin-item h3 {
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
}

.admin-item p {
  margin: 4px 0 !important;
  line-height: 1.5 !important;
}

.admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.admin-table th {
  background: rgba(17, 190, 199, 0.08);
  font-weight: 900;
}

@media (max-width: 720px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 300px !important;
    min-height: 300px !important;
  }

  .equipment-product-card {
    min-height: 300px !important;
    padding: 22px 18px !important;
  }

  .equipment-product-card img {
    max-height: 210px;
  }

  .friend-links {
    display: none !important;
  }

  .admin-list .admin-item {
    grid-template-columns: 1fr !important;
  }

  .admin-item .admin-meta,
  .admin-item .admin-actions,
  .admin-item h3,
  .admin-item p {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-content: flex-start !important;
  }
}

/* Final corrections requested after live review. */
@media (min-width: 1024px) {
  .equipment-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
}

.equipment-product-card {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  width: 100% !important;
  background: #f7fbfb !important;
}

.equipment-product-card[hidden] {
  display: none !important;
}

.equipment-product-card img {
  max-height: 68% !important;
  max-width: 82% !important;
  margin-bottom: 18px !important;
}

.equipment-product-card h3 {
  font-size: clamp(20px, 1.5vw, 26px) !important;
  line-height: 1.2 !important;
}

.friend-links,
.friend-links strong,
.friend-links a {
  color: rgba(255, 255, 255, 0.72) !important;
}

.friend-links {
  font-size: 12px !important;
  line-height: 1.8 !important;
}

.friend-links strong {
  font-size: 13px !important;
}

.friend-links a {
  font-size: 12px !important;
  font-weight: 600 !important;
}

.form-message.success {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(17, 190, 199, 0.34);
  border-radius: 8px;
  background: rgba(17, 190, 199, 0.1);
}

/* Home section order: equipment before brand philosophy. */
main {
  display: flex;
  flex-direction: column;
}

.showcase-banner { order: 1; }
.hero { order: 2; }
.equipment-section { order: 3; }
.philosophy { order: 4; }
.franchise { order: 5; }
.cases { order: 6; }
.news-section { order: 7; }
.contact { order: 8; }

/* 20260706 stable source fixes: keep Chinese/English and PC/mobile consistent. */
.nav a {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.hero-actions {
  display: none !important;
}

.equipment-filter {
  display: none !important;
}

.equipment-section .section-heading {
  margin-bottom: 18px !important;
}

.equipment-section .section-heading p:not(.eyebrow) {
  max-width: 1080px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.equipment-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.equipment-product-card,
.equipment-product-card[hidden] {
  display: flex !important;
}

.equipment-product-card {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: 18px 18px 24px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.equipment-product-card img {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 90% !important;
  max-height: calc(100% - 58px) !important;
  object-fit: contain !important;
  margin: 0 auto 12px !important;
}

.equipment-product-card h3 {
  flex: 0 0 auto !important;
  width: 100% !important;
  margin: 0 !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.22 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-align: center !important;
}

.hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.hero-stats div {
  min-height: 118px !important;
}

.news-list h2,
.news-list h3,
.news-list h3 a,
.news-page .news-list.expanded h2,
.news-page .news-list.expanded h2 a {
  font-size: clamp(22px, 2.1vw, 30px) !important;
  line-height: 1.22 !important;
}

.detail-article > h1 {
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.16 !important;
}

.contact-info ul {
  gap: 10px !important;
}

.contact-info li {
  display: grid !important;
  grid-template-columns: 94px minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 54px !important;
  padding: 12px 16px !important;
}

.contact-info li strong,
.contact-info li span {
  line-height: 1.3 !important;
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px !important;
    padding-bottom: 8px !important;
  }

  .nav {
    gap: 14px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
  }

  .nav a {
    font-size: 14px !important;
  }

  .lang-select {
    min-width: 86px !important;
    max-width: 118px !important;
    height: 38px !important;
    padding-left: 12px !important;
    font-size: 13px !important;
  }

  .hero,
  .philosophy {
    margin-bottom: 0 !important;
  }

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

  .hero-stats div {
    min-height: 98px !important;
    padding: 16px 12px !important;
  }

  .hero-stats dt {
    font-size: 24px !important;
  }

  .hero-stats dd {
    font-size: 13px !important;
  }

  .equipment-section {
    padding-top: 28px !important;
  }

  .equipment-section .section-heading {
    margin-bottom: 12px !important;
  }

  .equipment-section .section-heading h2 {
    margin-bottom: 10px !important;
  }

  .equipment-section .section-heading p:not(.eyebrow) {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

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

  .equipment-product-card {
    min-height: 0 !important;
    padding: 12px 10px 14px !important;
  }

  .equipment-product-card img {
    max-width: 92% !important;
    max-height: calc(100% - 48px) !important;
    margin-bottom: 8px !important;
  }

  .equipment-product-card h3 {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  .news-list h2,
  .news-list h3,
  .news-list h3 a,
  .news-page .news-list.expanded h2,
  .news-page .news-list.expanded h2 a {
    font-size: 20px !important;
    line-height: 1.26 !important;
  }

  .news-section .news-list article:nth-child(n+7) {
    display: none !important;
  }

  .news-section .news-list article p {
    display: none !important;
  }

  .detail-article > h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .contact-info li {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 10px !important;
    min-height: 44px !important;
    padding: 10px 12px !important;
  }

  .contact-info li strong,
  .contact-info li span {
    font-size: 15px !important;
  }
}

/* 20260706 form placeholder labels */
.consult-form label {
  gap: 0 !important;
}

.consult-form label > span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: #173633 !important;
  opacity: 1 !important;
  font-weight: 800 !important;
}
