/*
TemplateMo 622 Clearwave
https://templatemo.com/tm-622-clearwave
Free for personal and commercial use
*/

:root {
  --bg: #f5f2ec;
  --bg-alt: #ebe6dc;
  --surface: #fffdf8;
  --surface-2: #f7f3ea;
  --ink: #141513;
  --ink-soft: #31362f;
  --muted: #6b6a61;
  --line: rgba(20, 21, 19, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --accent: #0f766e;
  --accent-2: #b7833a;
  --accent-soft: rgba(15, 118, 110, 0.1);
  --dark: #101412;
  --dark-2: #1b211d;
  --shadow: 0 18px 50px rgba(20, 21, 19, 0.12);
  --radius: 8px;
  --silk: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}
.section-title {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 800;
}
.section-sub {
  max-width: 650px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--silk), transform 0.7s var(--silk);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  color: #fff;
  transition: padding 0.35s var(--silk), background 0.35s var(--silk), box-shadow 0.35s var(--silk);
}
.nav.scrolled {
  padding: 11px 0;
  background: rgba(16, 20, 18, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent-2); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a,
.btn-ghost,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}
.nav-links a { color: rgba(255,255,255,0.78); }
.nav-links a:hover, .btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 270px;
  padding: 10px;
  border: 1px solid rgba(20,21,19,0.1);
  border-radius: var(--radius);
  background: rgba(255,253,248,0.98);
  color: var(--ink);
  box-shadow: 0 24px 55px rgba(20,21,19,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.25s var(--silk), transform 0.25s var(--silk);
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-links .nav-dropdown-panel a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  min-height: auto;
  padding: 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  white-space: normal;
}
.nav-links .nav-dropdown-panel a::after {
  content: "+";
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--accent-2);
  font-weight: 900;
}
.nav-links .nav-dropdown-panel a:hover {
  color: var(--ink);
  background: var(--accent-soft);
}
.nav-dropdown-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}
.nav-dropdown-panel strong {
  font-size: 0.98rem;
  line-height: 1.25;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background 0.3s var(--silk), border-color 0.3s var(--silk);
}
.lang-toggle:hover {
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.14);
}
.btn-ghost { color: rgba(255,255,255,0.72); }
.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.28);
}
.btn-primary:hover { background: #0d625c; }
.nav-hamburger {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.35s var(--silk), opacity 0.35s var(--silk);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 28px 48px;
  background: var(--dark);
  color: #fff;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--silk);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  width: 100%;
  max-width: 420px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--silk), transform 0.45s var(--silk);
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a.mobile-sub-link {
  max-width: 360px;
  padding: 11px 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.96rem;
  font-weight: 650;
}
.mobile-menu .mobile-cta {
  margin-top: 24px;
  border-bottom: 0;
  background: var(--accent);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,20,18,0.62) 0%, rgba(16,20,18,0.34) 43%, rgba(16,20,18,0.08) 100%),
    linear-gradient(0deg, rgba(16,20,18,0.18), rgba(16,20,18,0.02));
}
.hero-inner { position: relative; z-index: 1; }
.hero-content { max-width: 690px; padding-top: 60px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.76);
  font-weight: 650;
}
.hero-badge-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  font-size: 0.78rem;
}
.hero-title {
  margin-top: 26px;
  font-size: clamp(2.25rem, 5.8vw, 4.9rem);
  line-height: 1.08;
  font-weight: 900;
  color: rgba(255,255,255,0.78);
}
.hero-title span {
  display: block;
}
.hero-title-logo {
  width: clamp(66px, 7.4vw, 94px);
  aspect-ratio: 1;
  margin-top: 16px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}
.hero-sub {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255,255,255,0.58);
  font-size: 1.1rem;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.btn-primary-lg,
.btn-outline-lg,
.btn-cta-primary,
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  white-space: nowrap;
}
.btn-primary-lg, .btn-cta-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 38px rgba(15, 118, 110, 0.32);
}
.btn-outline-lg, .btn-cta-ghost {
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.06);
}
.btn-primary-lg:hover, .btn-cta-primary:hover { background: #0d625c; }
.btn-outline-lg:hover, .btn-cta-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-arrow { transition: transform 0.3s var(--silk); }
.btn-primary-lg:hover .btn-arrow { transform: translateX(4px); }
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
  color: rgba(255,255,255,0.58);
  font-weight: 700;
}
.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.22);
}

.ticker-section {
  padding: 42px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid var(--line);
  background: var(--dark-2);
  color: #fff;
}
.ticker-label {
  margin-bottom: 22px;
  text-align: center;
  color: rgba(255,255,255,0.48);
  font-size: 0.82rem;
  font-weight: 800;
}
.ticker-track-wrap { overflow: hidden; }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: ticker 58s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  color: rgba(255,255,255,0.76);
  font-weight: 800;
  white-space: nowrap;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.75;
  flex: 0 0 auto;
}

.features-section,
.products-section,
.customer-section,
.store-section,
.faq-section,
.cta-section { padding: 110px 0; }
.features-header,
.products-header {
  max-width: 760px;
  margin-bottom: 54px;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.craft-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(20,21,19,0.06);
}
.craft-index {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 900;
}
.craft-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.35;
}
.craft-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}
.craft-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  gap: 28px;
  margin-top: 30px;
}
.craft-copy {
  padding: 42px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}
.craft-copy .section-title,
.craft-copy h3 { color: #fff; }
.craft-copy h3 {
  margin-top: 18px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.18;
}
.craft-copy p {
  margin-top: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
}
.craft-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.products-section {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-segments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: -18px 0 34px;
}
.segment-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(20,21,19,0.06);
  transition: transform 0.35s var(--silk), border-color 0.35s var(--silk), box-shadow 0.35s var(--silk);
}
.segment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15,118,110,0.3);
  box-shadow: 0 18px 38px rgba(20,21,19,0.1);
}
.segment-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-weight: 900;
}
.segment-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.35;
}
.segment-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.series-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(20,21,19,0.08);
}
.series-card:last-child { margin-bottom: 0; }
.series-media {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
}
.series-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.series-content {
  align-self: center;
  padding: 8px 6px;
}
.series-kicker {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}
.series-content h3 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.18;
}
.series-content p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.85;
}
.series-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.series-points span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
}
.series-intro {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  clear: both;
}
.intro-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, rgba(255,255,255,0.72));
}
.intro-block h4 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
}
.intro-block p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
}
.eq-platform-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}
.eq-platform-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.eq-platform-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
}
.eq-platform-card h4 {
  margin-top: 8px;
  font-size: 1.35rem;
}
.eq-platform-card p {
  max-width: 780px;
  margin-top: 10px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
}
.eq-platform-card strong {
  flex: 0 0 auto;
  color: var(--accent-2);
  font-size: 1.5rem;
  white-space: nowrap;
}
.product-gallery {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  clear: both;
}
.product-gallery figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  background: #f8f8f5;
}
.product-gallery figcaption {
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}
.table-wrap {
  grid-column: 1 / -1;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}
th, td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
}
th {
  background: var(--dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  font-weight: 850;
}
td {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) td { background: rgba(15,118,110,0.035); }

.customer-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.customer-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.customer-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(20,21,19,0.08);
  cursor: zoom-in;
  transition: transform 0.3s var(--silk), box-shadow 0.3s var(--silk);
}
.customer-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(20,21,19,0.12);
}
.customer-photo:focus-visible {
  outline: 3px solid rgba(15,118,110,0.42);
  outline-offset: 4px;
}
.customer-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}
.customer-photo figcaption {
  padding: 12px 14px 14px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.image-lightbox[hidden] {
  display: none;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 28px 34px;
  background: rgba(5, 7, 6, 0.86);
  backdrop-filter: blur(10px);
}
.image-lightbox-figure {
  width: min(1120px, 100%);
  max-height: 100%;
  display: grid;
  gap: 14px;
}
.image-lightbox-figure img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #050706;
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
}
.image-lightbox-figure figcaption {
  color: rgba(255,255,255,0.82);
  text-align: center;
  font-size: 0.98rem;
  font-weight: 800;
}
.image-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}
.image-lightbox-close:hover {
  background: rgba(255,255,255,0.18);
}

.store-section {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.store-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 48px;
}
.store-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.store-card {
  min-height: 170px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--silk), background 0.35s var(--silk);
}
.store-card:hover {
  transform: translateY(-3px);
  background: #16211e;
}
.store-card span {
  color: rgba(255,255,255,0.58);
  font-weight: 800;
}
.store-card strong {
  color: var(--accent-2);
  font-size: 1.35rem;
}

.custom-section {
  padding: 110px 0;
  background: var(--dark);
  color: #fff;
}
.custom-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.custom-copy .section-title { color: #fff; }
.custom-copy .section-sub { color: rgba(255,255,255,0.68); }
.custom-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.custom-step {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
}
.custom-step span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  font-weight: 900;
}
.custom-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.06rem;
}
.custom-step p {
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  font-size: 0.92rem;
}

.stats-section {
  padding: 72px 0;
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat-card {
  min-height: 210px;
  padding: 34px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stat-rule {
  width: 34px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 3px;
  background: var(--accent-2);
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  font-weight: 900;
}
.stat-suffix {
  color: var(--accent);
  font-size: 34%;
  white-space: nowrap;
}
.stat-label {
  margin-bottom: 6px;
  font-weight: 850;
}
.stat-sublabel {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 104px;
}
.faq-toggle-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: var(--accent);
  font-weight: 850;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.5;
  cursor: pointer;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(15,118,110,0.25);
  border-radius: 50%;
  color: var(--accent);
  transition: transform 0.35s var(--silk), background 0.35s var(--silk), color 0.35s var(--silk);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--silk);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  color: var(--muted);
  line-height: 1.85;
}
.faq-item.open .faq-answer-inner { padding-bottom: 22px; }

.cta-section { padding-top: 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}
.cta-label {
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 900;
}
.cta-title {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
}
.cta-sub {
  margin-top: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}

.footer {
  padding: 74px 0 34px;
  background: var(--dark);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 54px;
}
.footer-brand-desc {
  max-width: 340px;
  margin-top: 16px;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
}
.footer-col-label {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.34);
  font-size: 0.82rem;
  font-weight: 900;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.58);
  font-size: 0.94rem;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.footer-copy,
.footer-legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.86rem;
}
.footer-copy a { color: rgba(255,255,255,0.62); }
.footer-legal {
  display: flex;
  gap: 20px;
}

@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions { gap: 8px; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .product-segments,
  .customer-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-inner { grid-template-columns: 1fr; }
  .series-card { grid-template-columns: 1fr; }
  .series-media { min-height: 420px; }
  .series-intro { grid-template-columns: 1fr; }
  .eq-platform-card { grid-template-columns: minmax(0, 1fr); }
  .product-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .custom-inner, .faq-inner, .craft-feature { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container, .nav-inner { width: min(100% - 28px, 1160px); }
  .hero { min-height: 720px; align-items: flex-end; padding: 120px 0 72px; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16,20,18,0.68) 0%, rgba(16,20,18,0.42) 58%, rgba(16,20,18,0.12) 100%);
  }
  .hero-content { padding-top: 0; }
  .hero-title { font-size: clamp(2.05rem, 11vw, 3.25rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { align-items: stretch; }
  .btn-primary-lg, .btn-outline-lg { width: 100%; }
  .features-section,
  .products-section,
  .customer-section,
  .store-section,
  .custom-section,
  .faq-section,
  .cta-section { padding: 82px 0; }
  .product-segments,
  .customer-gallery,
  .store-inner,
  .store-cards { grid-template-columns: 1fr; }
  .eq-platform-card {
    align-items: flex-start;
    padding: 20px;
  }
  .eq-platform-media { grid-template-columns: 1fr; }
  .craft-grid,
  .custom-steps,
  .stats-grid { grid-template-columns: 1fr; }
  .craft-feature { gap: 18px; }
  .craft-copy,
  .cta-inner { padding: 28px; }
  .craft-image,
  .series-media { min-height: 300px; }
  .series-card { padding: 16px; }
  .product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-gallery img { aspect-ratio: 1 / 1; }
  .table-wrap { margin: 0 -2px; }
  th, td { padding: 13px 14px; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .cta-actions { width: 100%; }
  .btn-cta-primary, .btn-cta-ghost { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .trust-divider { display: none; }
}

@media (max-width: 420px) {
  .hero-badge { align-items: flex-start; border-radius: var(--radius); }
  .section-title { font-size: 1.9rem; }
  .series-content h3 { font-size: 1.5rem; }
  .footer-legal { flex-direction: column; gap: 10px; }
}
