:root {
  --ink: #111111;
  --muted: #626262;
  --paper: #ffffff;
  --surface: #ffffff;
  --soft: #f6f6f6;
  --line: #e4e4e4;
  --brand: #111111;
  --brand-dark: #000000;
  --accent: #555555;
  --coral: #333333;
  --blue: #222222;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: #fff; color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
input, textarea, select { min-height: 44px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 75;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(48, 48, 48, 0.98);
  backdrop-filter: blur(16px);
}

.header-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  width: min(1240px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 76px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo-img {
  width: 76px;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
}

.brand-copy { display: grid; gap: 2px; line-height: 1.05; }
.brand-copy strong { color: #fff; font-size: 17px; letter-spacing: 0.02em; }
.brand-copy span { color: rgba(255, 255, 255, 0.72); font-size: 12px; white-space: nowrap; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active, .nav-item.is-open > .nav-link {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.mega-panel, .compact-panel, .language-panel {
  position: absolute;
  top: calc(100% + 16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.2, .72, .22, 1), visibility 220ms ease;
}

.nav-item.is-open .mega-panel, .nav-item.is-open .compact-panel, .language-menu.is-open .language-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) and (min-width: 1121px) {
  .nav-item.has-panel:hover > .mega-panel,
  .nav-item.has-panel:hover > .compact-panel,
  .nav-item.has-panel:focus-within > .mega-panel,
  .nav-item.has-panel:focus-within > .compact-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-item.has-panel:hover > .product-panel,
  .nav-item.has-panel:focus-within > .product-panel {
    transform: translate(-50%, 0);
  }
  .nav-item.has-panel:hover > .nav-link,
  .nav-item.has-panel:focus-within > .nav-link {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
}

.product-panel {
  position: fixed;
  top: 84px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(1260px, calc(100vw - 40px));
  max-height: calc(100vh - 84px);
  padding: 34px 40px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.14);
  transform: translate(-50%, -22px);
  will-change: opacity, transform;
}

.nav-item.is-open .product-panel { transform: translate(-50%, 0); }
.mega-promo {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 420px;
  border-radius: 2px;
  background: #eee;
}
.mega-promo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.mega-promo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.08) 55%, rgba(0,0,0,0.04));
  content: "";
}
.mega-promo span,
.mega-promo strong {
  position: absolute;
  left: 32px;
  z-index: 1;
  color: #3b3b3b;
}
.mega-promo span {
  top: 44px;
  font-size: 14px;
  font-weight: 600;
}
.mega-promo strong {
  top: 76px;
  max-width: 220px;
  font-size: 34px;
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.mega-copy span, .section-heading span, .dialog-kicker, .drawer-header span, .eyebrow, .advisor-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link { color: var(--brand-dark); font-size: 14px; font-weight: 900; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr 0.9fr; gap: clamp(24px, 4vw, 70px); }
.mega-grid section { display: grid; align-content: start; gap: 6px; }
.mega-grid h2 {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d8d8d8;
  color: #303030;
  font-size: 16px;
  font-weight: 700;
}
.mega-grid a, .compact-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 7px 0;
  border-radius: 8px;
  color: #505050;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}
.mega-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #747474;
  font-size: 18px;
  line-height: 1;
}

.mega-grid a:hover, .mega-grid a:focus-visible, .compact-panel a:hover, .compact-panel a:focus-visible {
  background: transparent;
  color: var(--ink);
  outline: none;
}
.mega-grid a:hover .mega-icon,
.mega-grid a:focus-visible .mega-icon {
  color: #111;
}

.compact-panel {
  left: 0;
  display: grid;
  width: 174px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.icon-button, .menu-toggle, .close-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.icon-button:hover, .icon-button:focus-visible, .menu-toggle:hover, .menu-toggle:focus-visible, .language-button:hover, .language-button:focus-visible {
  border-color: var(--brand);
  outline: none;
}

.icon-search {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.icon-search::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.language-menu { position: relative; }
.language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.language-panel {
  right: 0;
  display: grid;
  width: 136px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.language-panel button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
}
.language-panel button:hover, .language-panel button:focus-visible { background: #f6f6f6; color: var(--ink); outline: none; }

.inquire-button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.inquire-count {
  display: inline;
  min-width: 0;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
}
.menu-toggle { display: none; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 999px; background: currentColor; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 54px;
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 58px 0 70px;
}
.hero-content { display: grid; gap: 22px; }
.hero h1, .page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero p, .page-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}
.button.primary { border-color: var(--brand); background: var(--brand); color: #fff; }
.button.ghost { background: #fff; color: var(--ink); }
.button.full { width: 100%; }
.metric-row { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 4px; }
.metric-row span {
  display: grid;
  min-width: 122px;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.74);
}
.metric-row strong { font-size: 28px; line-height: 1; }
.metric-row small { color: var(--muted); font-weight: 800; }
.hero-media {
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media img { width: 100%; height: min(58vw, 540px); object-fit: cover; }

.section, .page-hero, .catalog-layout, .site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 76px 0; }
.section.tinted {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  background: #fff;
}
.section-heading { display: grid; gap: 8px; margin-bottom: 24px; }
.section-heading.compact { margin-bottom: 16px; }
.section-heading.centered {
  justify-items: center;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.product-card-grid, .feature-grid, .case-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card, .feature-grid article, .case-grid article, .news-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card div, .case-grid article, .news-grid article { padding: 18px; }
.product-card span { color: var(--brand); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.home-product-showcase {
  width: min(1480px, calc(100% - 40px));
  padding-top: 84px;
  padding-bottom: 78px;
}
.home-product-showcase .section-heading {
  margin-bottom: 34px;
}
.home-product-showcase .section-heading h2 {
  color: #333;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
}
.home-product-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 24px;
  margin: 0 auto 48px;
}
.home-product-tabs button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #424242;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}
.home-product-tabs button.is-active,
.home-product-tabs button:hover,
.home-product-tabs button:focus-visible {
  background: #e9e9e9;
  outline: none;
}
.home-product-tabs .mega-icon {
  font-size: 23px;
}
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-product-card {
  display: grid;
  gap: 20px;
  position: relative;
  color: #3f3f3f;
  cursor: pointer;
  outline: none;
}
.home-product-card figure {
  display: grid;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ededed;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.home-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 3vw, 38px);
  transition: transform 320ms cubic-bezier(.2, .72, .22, 1);
}
.home-product-card:hover figure,
.home-product-card:focus-visible figure {
  border-color: #d7d7d7;
  box-shadow: 0 22px 50px rgba(24, 24, 24, 0.08);
  transform: translateY(-3px);
}
.home-product-card:hover img,
.home-product-card:focus-visible img {
  transform: scale(1.035);
}
.home-product-image-link,
.catalog-image-link {
  display: block;
  color: inherit;
}
.home-product-card div {
  display: grid;
  gap: 8px;
  padding: 0 28px 0 28px;
  text-align: center;
}
.home-product-card h3 {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: #393939;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-product-card h3 a {
  color: inherit;
  text-decoration: none;
}
.home-product-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-product-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px solid #ededed;
  background: #fff;
  color: #666;
  font-size: 15px;
}
.product-card h3, .case-grid h3, .news-grid h3 { margin: 8px 0 8px; font-size: 20px; line-height: 1.22; }
.product-card p, .feature-grid p, .case-grid p { margin: 0 0 14px; color: var(--muted); line-height: 1.6; }
.product-card a, .news-grid a { color: var(--brand-dark); font-weight: 900; }

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid article { min-height: 160px; padding: 22px; }
.feature-grid strong { font-size: 20px; }
.feature-grid p { margin-top: 10px; }

.customer-section {
  width: min(1240px, calc(100% - 40px));
  max-width: 1240px;
  margin: 0 auto;
  padding: 108px 0 84px;
  background: #fff;
  text-align: center;
}
.customer-section-heading {
  display: grid;
  justify-items: center;
  gap: 20px;
  margin: 0 auto 38px;
}
.customer-section-heading h2 {
  max-width: 1080px;
  margin: 0;
  color: #fb965d;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.customer-section-heading p {
  max-width: 930px;
  margin: 0;
  color: #4c4c4c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
}
.customer-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 28px;
  width: min(1064px, 100%);
  margin: 0 auto;
}
.customer-card-grid article {
  position: relative;
  display: grid;
  min-height: 200px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 58px 30px 28px;
  border-radius: 24px;
  background: #6fa8b3;
  box-shadow: 0 9px 17px rgba(31, 47, 51, 0.22);
  color: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.customer-card-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(31, 47, 51, 0.24);
}
.customer-icon {
  position: absolute;
  top: 18px;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #ff9b58;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.customer-card-grid strong {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}
.customer-card-grid p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}
.customer-section-note {
  margin: 28px auto 26px;
  color: #4c4c4c;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}
.customer-actions {
  display: flex;
  justify-content: center;
  gap: clamp(72px, 14vw, 260px);
  flex-wrap: wrap;
}
.customer-button {
  display: inline-flex;
  min-width: 126px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: #fb965d;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(251, 150, 93, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.customer-button:hover,
.customer-button:focus-visible {
  transform: translateY(-2px);
  background: #f48646;
  box-shadow: 0 14px 26px rgba(251, 150, 93, 0.24);
  outline: none;
}

.partner-advantages-section {
  width: min(1240px, calc(100% - 40px));
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 0 94px;
  background: #fff;
  text-align: center;
}
.partner-advantages-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0 auto 48px;
}
.partner-advantages-heading span {
  color: #fb965d;
  font-size: clamp(23px, 2.1vw, 34px);
  font-weight: 900;
  line-height: 1.2;
}
.partner-advantages-heading h2 {
  margin: 0;
  color: #6fa8b3;
  font-size: clamp(38px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.partner-advantages-heading p {
  max-width: 920px;
  margin: 0;
  color: #4b4b4b;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}
.partner-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 16px;
  width: min(1020px, 100%);
  margin: 0 auto;
}
.partner-advantage-grid article {
  position: relative;
  display: grid;
  min-height: 212px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 60px 18px 20px;
  border: 1px solid rgba(77, 87, 91, 0.18);
  border-radius: 24px;
  background: #edf5f6;
  box-shadow: 0 8px 17px rgba(31, 47, 51, 0.23);
  color: #333;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.partner-advantage-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 28px rgba(31, 47, 51, 0.24);
}
.partner-icon {
  position: absolute;
  top: 16px;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #fb965d;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}
.partner-advantage-grid strong {
  color: #6fa8b3;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.18;
}
.partner-advantage-grid p {
  margin: 0;
  color: #202020;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.process-section {
  width: 100%;
  max-width: none;
  padding: 92px 0 86px;
  background: #fff;
  text-align: center;
}
.process-section .section-heading {
  justify-items: center;
  gap: 12px;
  width: min(100% - 40px, 980px);
  margin: 0 auto 58px;
}
.process-section .section-heading h2 {
  margin: 0;
  color: #3b3b3b;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.18;
}
.process-section .section-heading p {
  margin: 0;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.7;
}
.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  gap: 0;
  width: min(1420px, calc(100% - 72px));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.process-list::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 4.5%;
  right: 4.5%;
  height: 30px;
  opacity: 0.95;
  background:
    linear-gradient(63deg, transparent 0 30%, #ededed 31% 62%, transparent 63%) 0 0 / 34px 30px repeat-x,
    linear-gradient(117deg, transparent 0 30%, #ededed 31% 62%, transparent 63%) 17px 0 / 34px 30px repeat-x;
}
.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 168px;
  padding: 0 8px;
  color: #333;
}
.process-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #303030;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 5px #fff;
}
.process-icon {
  display: grid;
  min-height: 82px;
  margin-top: 38px;
  place-items: center;
  color: #070707;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}
.process-list strong {
  display: block;
  max-width: 132px;
  color: #373737;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.factory-section {
  width: min(1420px, calc(100% - 40px));
  padding-top: 70px;
  padding-bottom: 72px;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.9fr);
  gap: clamp(42px, 5.2vw, 88px);
  align-items: center;
}

.factory-media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #f5f5f5;
}

.factory-media img {
  display: block;
  width: 100%;
  aspect-ratio: 550 / 502;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.factory-copy {
  display: grid;
  gap: 22px;
  align-content: center;
  color: #343434;
}

.factory-copy h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 520;
  line-height: 1.28;
  letter-spacing: 0;
}

.factory-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #515151;
}

.factory-lead {
  color: #555;
}

.factory-note {
  margin: 6px 0 4px;
  padding: clamp(22px, 3vw, 36px) clamp(24px, 3.5vw, 46px);
  background: #f1f1f1;
}

.factory-note p {
  color: #4b4b4b;
}

.factory-strong {
  font-weight: 700;
  color: #222 !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.factory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.factory-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.factory-button-light {
  background: #d8d8d8;
  color: #3b3b3b;
}

.factory-button-dark {
  background: #2f2f2f;
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .factory-media:hover img {
    transform: scale(1.025);
    filter: brightness(1.02);
  }

  .factory-button:hover,
  .factory-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.14);
    outline: none;
  }

  .factory-button-light:hover,
  .factory-button-light:focus-visible {
    background: #fff;
    color: #222;
  }

  .factory-button-dark:hover,
  .factory-button-dark:focus-visible {
    background: #111;
  }
}

.factory-button:active {
  transform: translateY(0) scale(0.98);
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-row span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-case-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 86px 0 84px;
  background: #f3f3f3;
}
.home-case-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.45fr) minmax(420px, 1.55fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.home-case-intro {
  display: grid;
  gap: 24px;
  align-content: start;
}
.home-case-intro h2 {
  margin: 0;
  color: #3b3b3b;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.25;
}
.home-case-intro p,
.home-case-main p,
.home-case-side p {
  margin: 0;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.7;
}
.home-case-button,
.home-case-side a:last-child {
  justify-self: start;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #d9d9d9;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.home-case-main {
  display: grid;
  gap: 22px;
  align-content: start;
  padding-top: 128px;
}
.home-case-main img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
}
.home-case-side {
  display: grid;
  gap: 28px;
}
.home-case-side article {
  display: grid;
  grid-template-columns: minmax(190px, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.home-case-side img {
  width: 100%;
  aspect-ratio: 4 / 2.65;
  object-fit: cover;
}
.home-case-side div {
  display: grid;
  gap: 18px;
  align-content: start;
}
.home-case-side h3 {
  margin: 0;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}
.home-news-section,
.news-page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 78px 0 72px;
  background: #f1f1f1;
}
.home-news-section .section-heading,
.news-page-hero {
  justify-items: center;
  margin: 0 auto 42px;
  text-align: center;
}
.home-news-section .section-heading h2,
.news-page-hero h1 {
  color: #383838;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.25;
}
.home-news-section .section-heading p,
.news-page-hero p {
  max-width: 620px;
  color: #555;
  font-size: 14px;
}
.news-grid,
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
}
.news-card,
.article-card.news-card {
  display: grid;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #3d3d3d;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.news-card:hover,
.news-card:focus-visible {
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
}
.news-card-image {
  display: block;
  overflow: hidden;
  background: #e8e8e8;
}
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 320ms ease;
}
.news-card:hover img,
.news-card:focus-visible img {
  transform: scale(1.035);
}
.news-card div {
  display: grid;
  gap: 18px;
  padding: 24px 24px 26px;
}
.news-card h2,
.news-card h3 {
  min-height: 42px;
  margin: 0;
  color: #3b3b3b;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}
.news-card h2 a,
.news-card h3 a {
  color: inherit;
}
.news-card p {
  display: -webkit-box;
  min-height: 64px;
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news-card time,
.news-grid time {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e5e5e5;
  color: #555;
  font-size: 12px;
  font-weight: 500;
}
.faq-section {
  width: 100%;
  margin-top: 82px;
  padding: 72px 0 76px;
  background: #fff;
}
.home-faq-layout {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 760px);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.home-faq-copy {
  display: grid;
  gap: 22px;
  padding-top: 4px;
}
.home-faq-copy h2 {
  max-width: 220px;
  margin: 0;
  color: #303030;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}
.home-faq-copy p {
  max-width: 220px;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.home-faq-button {
  justify-self: start;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #d9d9d9;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}
.home-faq-button:hover,
.home-faq-button:focus-visible {
  background: #cfcfcf;
  outline: none;
  transform: translateY(-1px);
}
.faq-list { display: grid; gap: 0; width: 100%; max-width: none; border-top: 1px solid var(--line); }
.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 0;
}
.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  min-height: 58px;
  align-items: center;
  padding: 18px 52px 18px 0;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-question-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #dedede;
  color: #555;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-62%) rotate(45deg);
}
.faq-list details[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}
.faq-list p { margin: 0; padding: 0 52px 22px 40px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.site-footer {
  width: 100%;
  margin-top: 70px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #2f2f2f;
  color: #f4f4f4;
}
.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(190px, 0.72fr) minmax(360px, 1.45fr);
  width: min(1440px, 100%);
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-panel,
.footer-link-panel,
.footer-inquiry-panel {
  min-height: 430px;
  padding: clamp(44px, 5vw, 72px) clamp(24px, 4vw, 56px);
}
.footer-brand-panel,
.footer-link-panel {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-panel {
  display: grid;
  align-content: center;
  gap: 28px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.footer-logo-mark {
  display: inline-grid;
  width: 112px;
  height: 72px;
  place-items: center;
  border: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-logo-img {
  width: 112px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.footer-logo strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}
.footer-logo small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}
.footer-contact-list {
  display: grid;
  gap: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}
.footer-contact-list p { margin: 0; }
.footer-contact-list p:last-child {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.footer-social a {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  background: #f5f5f5;
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 900;
}
.footer-link-panel {
  display: grid;
  align-content: center;
  gap: 42px;
}
.footer-link-panel h2,
.footer-form-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
}
.footer-link-panel h2 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 15px;
  font-weight: 700;
}
.footer-link-panel a {
  display: block;
  width: fit-content;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.4;
}
.footer-link-panel a:hover,
.footer-link-panel a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
  outline: none;
}
.footer-inquiry-panel {
  display: grid;
  align-content: center;
  gap: 26px;
}
.footer-form-heading {
  display: grid;
  gap: 8px;
}
.footer-form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.footer-form {
  display: grid;
  gap: 12px;
}
.footer-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 13px 18px;
  outline: none;
}
.footer-form textarea {
  min-height: 108px;
  border-radius: 24px;
  resize: vertical;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}
.footer-form input:focus,
.footer-form textarea:focus {
  border-color: #fff;
}
.footer-form .form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
.footer-submit {
  justify-self: start;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #2f2f2f;
  font-weight: 800;
}
.footer-submit:hover,
.footer-submit:focus-visible {
  background: #f0f0f0;
  outline: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1440px, 100%);
  min-height: 92px;
  margin: 0 auto;
  padding: 20px clamp(24px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-width: 1px;
  border-right-width: 1px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.footer-bottom a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

.page-hero {
  display: grid;
  gap: 16px;
  padding: 70px 0 34px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
  padding-bottom: 80px;
}
.filter-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 16px;
}
.filter-group {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.filter-group h2 { margin: 0 0 4px; font-size: 16px; }
.filter-group button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
}
.filter-group button:hover, .filter-group button:focus-visible, .filter-group button.is-selected {
  background: #f6f6f6;
  color: var(--ink);
  outline: none;
}
.catalog-main { display: grid; gap: 22px; min-width: 0; }
.advisor-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
}
.advisor-card h2 { margin: 5px 0 8px; font-size: 26px; }
.advisor-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.catalog-toolbar p { margin: 0; color: var(--muted); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.catalog-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.catalog-card:hover,
.catalog-card:focus-visible {
  border-color: #d7d7d7;
  box-shadow: 0 18px 44px rgba(24, 24, 24, 0.08);
  transform: translateY(-2px);
}
.catalog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(.2, .72, .22, 1);
}
.catalog-card:hover img,
.catalog-card:focus-visible img {
  transform: scale(1.035);
}
.catalog-card-body { display: grid; gap: 9px; padding: 18px; }
.catalog-card h2 { margin: 0; font-size: 20px; line-height: 1.22; }
.catalog-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.catalog-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.catalog-tags span {
  padding: 6px 8px;
  border-radius: 999px;
  background: #f6f6f6;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}
.pagination button.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }
.recommended { display: grid; gap: 4px; padding-top: 16px; }
.recommended-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.recommended-row article { border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.recommended-row img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.recommended-row strong { display: block; padding: 14px; }

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: start;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 48px;
}
.gallery {
  display: grid;
  gap: 14px;
}
.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.thumb-row button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.thumb-row button.is-active {
  border-color: var(--brand);
}
.thumb-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.detail-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}
.detail-summary h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}
.detail-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.button.whatsapp {
  border-color: #111111;
  background: #111111;
  color: #fff;
}
.parameter-table,
.info-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.parameter-table th,
.parameter-table td,
.info-table th,
.info-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}
.parameter-table th,
.info-table th {
  width: 38%;
  background: #f7f7f7;
  font-size: 13px;
  font-weight: 900;
}
.parameter-table td,
.info-table td {
  color: var(--muted);
}
.detail-content {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 70px;
}
.detail-tabs {
  position: sticky;
  top: 84px;
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 10px 0;
  overflow-x: auto;
  background: var(--paper);
}
.detail-tabs a {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.detail-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}
.detail-section-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.detail-section-grid h2 {
  margin: 0 0 12px;
  font-size: 22px;
}
.detail-section-grid p,
.detail-section-grid blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.custom-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 84px;
}
.custom-hero-copy {
  display: grid;
  gap: 20px;
}
.custom-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}
.custom-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.custom-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}
.custom-hero-actions span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.custom-hero-media {
  position: relative;
}
.custom-hero-media img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(23, 33, 27, 0.16);
}
.custom-hero-card {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  display: grid;
  gap: 4px;
  width: min(220px, calc(100% - 24px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(23, 33, 27, 0.16);
  backdrop-filter: blur(16px);
}
.custom-hero-card strong {
  color: var(--brand);
  font-size: 42px;
  line-height: 1;
}
.custom-hero-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}
.custom-section-title {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-bottom: 28px;
}
.custom-section-title span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.custom-section-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}
.custom-section-title.inverse span,
.custom-section-title.inverse h2 {
  color: #fff;
}
.custom-capability .section-heading h2 {
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.2;
}
.custom-capability-grid,
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.custom-capability-grid article,
.craft-grid article,
.custom-adv-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(23, 33, 27, 0.06);
}
.custom-capability-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 50%;
  background: #f4f4f4;
  color: var(--brand);
  font-weight: 900;
}
.custom-capability-grid h3,
.custom-adv-grid strong,
.craft-grid h3 {
  display: block;
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
}
.custom-capability-grid p,
.custom-adv-grid p,
.craft-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.custom-dark-band {
  margin: 34px 0;
  padding: clamp(54px, 7vw, 86px) 0;
  background: #111111;
}
.custom-dark-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}
.custom-dark-band .custom-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.custom-dark-band .custom-adv-grid article {
  min-height: 210px;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}
.custom-dark-band .custom-adv-grid strong {
  color: #fff;
}
.custom-dark-band .custom-adv-grid p {
  color: rgba(255,255,255,0.68);
}
.custom-craft-showcase {
  padding-top: 70px;
}
.craft-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}
.craft-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  background: #fff;
}
.option-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}
.option-cloud span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f7f7;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.custom-eco-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.7fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #dfe7de;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f7f7 0%, #fff 62%);
}
.custom-eco-panel h2 {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}
.custom-eco-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.custom-process-section {
  width: min(100% - 40px, 1320px);
  margin-top: 34px;
  padding: 56px 0 64px;
  background: #f1f1f1;
}
.custom-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.custom-process li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  min-height: 320px;
  padding: 70px 32px 28px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  text-align: center;
  box-shadow: none;
}
.custom-process .process-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: start;
  padding: 15px 0 0 14px;
  border-radius: 0 0 32px 0;
  background: #d9d9d9;
  color: #666;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.process-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #050505;
}
.process-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-icon svg circle {
  fill: none;
}
.custom-process li strong {
  max-width: 230px;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}
.custom-process li p {
  max-width: 240px;
  margin: 0;
  color: #3f3f3f;
  font-size: 15px;
  line-height: 1.72;
}
.custom-form-section {
  padding-top: 64px;
  padding-bottom: 94px;
}
.custom-form-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.58fr) minmax(0, 0.92fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #fff 58%);
}
.custom-form-intro {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  padding-top: 6px;
}
.custom-form-intro h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.08;
}
.custom-form-intro p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}
.custom-form-points {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}
.custom-form-points span {
  position: relative;
  display: block;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.custom-form-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.custom-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}
.custom-request-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.custom-request-form input,
.custom-request-form select,
.custom-request-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(23, 33, 27, 0.02);
}
.custom-request-form textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}
.custom-request-form input:focus,
.custom-request-form select:focus,
.custom-request-form textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 122, 82, 0.11);
}
.full-field {
  grid-column: 1 / -1;
}
.custom-success-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(23, 33, 27, 0.1);
}
.custom-success-panel[hidden] {
  display: none;
}
.success-mark {
  display: grid;
  width: clamp(48px, 7vw, 58px);
  height: clamp(48px, 7vw, 58px);
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 900;
}
.custom-success-panel h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.custom-success-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding-top: 10px;
}
.success-actions .button {
  width: auto;
  min-width: 150px;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.urgent-status {
  width: min(100%, 560px);
  padding: 12px 14px;
  border: 1px solid rgba(214, 54, 56, 0.18);
  border-radius: 8px;
  background: #fff5f5;
  color: #b4232a !important;
  font-weight: 800;
}
.urgent-status[hidden] {
  display: none;
}

.content-hero {
  display: grid;
  gap: 14px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 34px;
}
.content-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.content-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.content-grid,
.article-grid,
.case-list,
.download-list,
.video-list,
.faq-page-grid,
.search-results {
  display: grid;
  gap: 18px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 80px;
}
.content-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.article-grid,
.case-list,
.download-list,
.video-list,
.search-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-card,
.download-card,
.video-card,
.article-card,
.case-card,
.search-result-card,
.backend-note,
.contact-form-card,
.faq-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.info-card,
.backend-note,
.contact-form-card,
.faq-aside {
  padding: 22px;
}
.info-card strong,
.download-card h2,
.video-card h2,
.article-card h2,
.case-card h2,
.search-result-card h2 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.25;
}
.info-card p,
.download-card p,
.video-card p,
.article-card p,
.case-card p,
.search-result-card p,
.backend-note p,
.faq-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.download-card img,
.video-card img,
.article-card img,
.case-card img,
.search-result-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.download-card div,
.video-card div,
.article-card div,
.case-card div,
.search-result-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.meta-row,
.search-result-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-layout,
.faq-layout,
.case-detail-layout,
.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 80px;
}
.contact-hero {
  display: grid;
  gap: 14px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 36px;
}
.contact-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.04;
}
.contact-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.contact-solutions {
  padding-top: 82px;
  padding-bottom: 62px;
}
.contact-solutions .section-heading {
  align-items: start;
  margin-bottom: 42px;
  text-align: left;
}
.contact-solutions .section-heading h2 {
  color: #3b3b3b;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.25;
}
.contact-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 74px);
}
.contact-solution-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 15px;
  min-height: 292px;
  padding: 38px 26px 32px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.05);
}
.contact-card-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #111;
}
.contact-card-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-solution-grid strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}
.contact-solution-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.contact-card-button {
  display: inline-grid;
  min-width: 124px;
  min-height: 34px;
  margin-top: 20px;
  place-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #303030 !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.contact-card-button:hover,
.contact-card-button:focus-visible {
  background: #111 !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
  transform: translateY(-1px);
  outline: none;
}
.contact-support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.92fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.contact-support-media {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f4;
}
.contact-support-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.contact-support-copy {
  display: grid;
  gap: 20px;
}
.contact-support-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #050505;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
}
.contact-support-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.contact-support-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
  padding-top: 22px;
}
.contact-support-columns h3 {
  margin: 0 0 16px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
}
.contact-support-columns p {
  margin: 12px 0 0;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.45;
}
.contact-main-layout {
  display: block;
  max-width: 760px;
  padding-top: 26px;
  padding-bottom: 70px;
}
.contact-info-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.contact-form-card h2,
.contact-info-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.14;
}
.contact-info-panel h3 {
  margin: 8px 0 0;
  font-size: 17px;
}
.contact-method-list {
  display: grid;
  gap: 10px;
}
.contact-method-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.88fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  padding-top: 46px;
  padding-bottom: 56px;
}
.contact-map-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.contact-map-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.14;
}
.contact-map-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.contact-map-frame {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f7f7;
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}
.contact-faq-section {
  padding-top: 68px;
  padding-bottom: 96px;
}
.contact-faq-section .faq-items {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.contact-faq-section .section-heading {
  justify-items: center;
  margin-bottom: 46px;
  text-align: center;
}
.contact-faq-section .section-heading h2 {
  color: #3b3b3b;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
}
.contact-faq-section .section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.contact-faq-accordion details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.contact-faq-accordion summary {
  position: relative;
  display: grid;
  min-height: 60px;
  align-items: center;
  padding: 20px 54px 20px 24px;
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
}
.contact-faq-accordion summary::-webkit-details-marker {
  display: none;
}
.contact-faq-accordion summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  color: #666;
  transform: translateY(-62%) rotate(45deg);
}
.contact-faq-accordion details[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}
.contact-faq-accordion p {
  max-width: 960px;
  margin: 0;
  padding: 0 54px 26px 24px;
  color: #494949;
  font-size: 14px;
  line-height: 1.7;
}
.about-page {
  background: #fff;
}
.about-intro {
  display: grid;
  gap: 62px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.about-intro-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}
.about-intro-heading h1 {
  margin: 0;
  color: #3a3a3a;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}
.about-intro-heading p {
  max-width: 760px;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 6vw, 92px);
  align-items: start;
}
.about-stats article {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 12px;
  justify-content: center;
  align-items: center;
  color: #4b4b4b;
}
.about-stats span {
  grid-row: span 2;
  color: #626262;
  font-size: 20px;
  line-height: 1;
}
.about-stats strong {
  color: #383838;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.about-stats small {
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.2;
}
.about-company-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}
.about-company-copy {
  display: grid;
  gap: 18px;
}
.about-company-copy h2 {
  margin: 0;
  color: #333;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.18;
}
.about-company-copy p {
  max-width: 720px;
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.68;
}
.about-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 218px;
  min-height: 56px;
  margin-top: 20px;
  border: 1px solid #333;
  border-radius: 999px;
  color: #2f2f2f;
  font-size: 18px;
  font-weight: 500;
}
.about-detail-button::after {
  content: "";
  width: 26px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-26deg);
}
.about-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 306px;
  border-radius: 8px;
  background: #111;
}
.about-video-card img {
  width: 100%;
  height: 100%;
  min-height: 306px;
  object-fit: cover;
}
.about-video-shade {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.32));
  color: #fff;
}
.about-video-shade strong {
  max-width: 720px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}
.about-video-shade span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
}
.about-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 78px;
  height: 56px;
  place-items: center;
  border-radius: 14px;
  background: #f00000;
  transform: translate(-50%, -50%);
}
.about-play-button::before {
  content: "";
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #fff;
}
.about-credit {
  padding-top: 28px;
  padding-bottom: 72px;
}
.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 46px;
}
.about-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: #6a6a6a;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}
.about-tab.is-active {
  color: #111;
}
.about-tab.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 2px;
  background: #111;
}
.about-panel {
  display: none;
}
.about-panel.is-active {
  display: block;
}
.about-work-image {
  width: 100%;
  aspect-ratio: 16 / 4.25;
  border-radius: 8px;
  object-fit: cover;
}
.about-cert-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.about-advantages {
  display: grid;
  gap: 42px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  padding-top: 58px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 82, 0.12), transparent 30%),
    linear-gradient(180deg, #f4fafb 0%, #eef7f8 100%);
}
.about-advantages-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}
.about-advantages-heading h2 {
  margin: 0;
  color: #ff8f52;
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 900;
  line-height: 1.16;
}
.about-advantages-heading p {
  max-width: 840px;
  margin: 0;
  color: #52656b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
}
.about-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.about-advantages-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  min-height: 292px;
  padding: 30px 24px 28px;
  border: 1px solid rgba(111, 168, 179, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(43, 80, 88, 0.12);
  text-align: center;
}
.about-advantages-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #ff8f52;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 22px rgba(255, 143, 82, 0.25);
}
.about-advantages-grid h3 {
  margin: 0;
  color: #6fa8b3;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.28;
}
.about-advantages-grid p {
  margin: 0;
  color: #43575e;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.72;
}
.about-services {
  position: relative;
  display: grid;
  gap: 46px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding: 70px max(20px, calc((100vw - 1240px) / 2)) 84px;
  overflow: hidden;
  background: #f2f2f2;
}
.about-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.9), rgba(245, 245, 245, 0.76)),
    radial-gradient(circle at 10% 86%, rgba(154, 154, 154, 0.26), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(255, 143, 82, 0.14), transparent 22%);
  pointer-events: none;
}
.about-services::after {
  content: "🐻";
  position: absolute;
  right: -18px;
  bottom: -34px;
  left: -18px;
  color: rgba(120, 120, 120, 0.13);
  font-size: clamp(96px, 15vw, 210px);
  letter-spacing: 0.08em;
  text-align: justify;
  text-shadow:
    22vw 0 0 rgba(120, 120, 120, 0.1),
    44vw 0 0 rgba(120, 120, 120, 0.12),
    66vw 0 0 rgba(120, 120, 120, 0.1),
    88vw 0 0 rgba(120, 120, 120, 0.12);
  pointer-events: none;
}
.about-services-heading,
.about-services-grid {
  position: relative;
  z-index: 1;
}
.about-services-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}
.about-services-heading h2 {
  margin: 0;
  color: #ff8f52;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 950;
  line-height: 1.16;
}
.about-services-heading p {
  margin: 0;
  color: #34494f;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.72;
}
.about-services-heading p span {
  color: #ff8f52;
}
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 30px;
}
.about-services-grid article {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}
.about-services-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(43, 80, 88, 0.2);
}
.about-services-grid h3 {
  margin: 0;
  color: #6fa8b3;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 950;
  line-height: 1.25;
}
.about-work-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 44px);
  margin-top: 18px;
  color: #3f3f3f;
  font-size: 17px;
  font-weight: 500;
}
.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.about-value-grid article,
.about-case-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.about-value-grid p,
.about-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.about-good {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
  padding-top: 70px;
  padding-bottom: 80px;
}
.about-good h2 {
  max-width: 620px;
  margin: 0;
  color: #111;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.18;
}
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-value-grid article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
}
.about-value-grid span {
  color: #999;
  font-size: 13px;
  font-weight: 700;
}
.about-value-grid strong {
  color: #111;
  font-size: 18px;
  font-weight: 500;
}
.about-cases {
  padding-top: 70px;
  padding-bottom: 76px;
}
.about-cases .section-heading,
.about-product-cta .section-heading {
  justify-items: center;
  text-align: center;
}
.about-cases .section-heading h2,
.about-product-cta .section-heading h2 {
  color: #3b3b3b;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500;
}
.about-cases .section-heading p,
.about-product-cta .section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.about-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-case-grid article {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 28px;
}
.about-case-grid span {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}
.about-case-grid h3 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 500;
}
.about-product-cta {
  padding-top: 64px;
  padding-bottom: 96px;
}
.about-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  max-width: 1120px;
  min-height: 320px;
  margin: 0 auto;
  border-radius: 8px;
  background: #505050;
}
.about-cta-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(38px, 6vw, 76px);
  color: #fff;
}
.about-cta-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}
.about-cta-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.16;
}
.about-cta-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}
.about-cta-button {
  display: inline-grid;
  width: 168px;
  min-height: 48px;
  place-items: center;
  margin-top: 18px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}
.about-cta-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.contact-form,
.simple-form {
  display: grid;
  gap: 12px;
}
.contact-form input,
.contact-form textarea,
.simple-form input,
.simple-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  outline: none;
}
.contact-form textarea,
.simple-form textarea {
  min-height: 140px;
  resize: vertical;
}
.social-links,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links a,
.quick-links a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.faq-items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-items details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 0;
}
.faq-items summary {
  position: relative;
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 18px 52px 18px 20px;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}
.faq-items summary::-webkit-details-marker { display: none; }
.faq-items summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-62%) rotate(45deg);
}
.faq-items details[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}
.faq-items p {
  margin: 0;
  padding: 0 52px 22px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 33, 27, 0.68);
}
.video-modal[hidden] {
  display: none;
}
.video-frame-wrap {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #000;
}
.video-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
.video-frame-wrap .close-button {
  top: -54px;
  right: 0;
}
.article-body,
.case-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}
.article-body h2,
.case-body h2 {
  margin: 24px 0 10px;
}
.article-body p,
.case-body p {
  color: var(--muted);
  line-height: 1.75;
}
.floating-tools {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 76;
  display: grid;
  gap: 9px;
}
.floating-tool {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px 0 0 14px;
  color: #fff;
  font-size: 27px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.floating-tool svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-tool.is-whatsapp svg {
  width: 38px;
  height: 38px;
}
.floating-tool:hover {
  transform: translateX(-4px);
  filter: brightness(1.04);
}
.floating-tool.is-whatsapp {
  background: linear-gradient(145deg, #54f06a, #05b922);
}
.floating-tool.is-phone {
  background: linear-gradient(145deg, #8fc7ff, #4f74ff);
}
.floating-tool.is-mail {
  background: linear-gradient(145deg, #1edcff, #0068f4);
}
.floating-tool.is-top {
  background: #fff;
  color: #20242a;
}
.cw-chat-widget {
  position: fixed;
  right: 22px;
  bottom: max(84px, calc(env(safe-area-inset-bottom, 0px) + 64px));
  z-index: 77;
  font-family: inherit;
}
.cw-chat-launcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111827;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.cw-chat-launcher:hover {
  filter: brightness(1.06);
}
.cw-chat-launcher span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 17px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.2);
}
.cw-chat-launcher i {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f2be5;
  box-shadow: 0 14px 35px rgba(47, 43, 229, 0.34);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cw-chat-launcher:hover i {
  transform: scale(1.1);
  filter: brightness(1.08);
  box-shadow: 0 18px 42px rgba(47, 43, 229, 0.42);
}
.cw-chat-launcher:active i {
  transform: scale(1.04);
}
.cw-chat-launcher i::before {
  content: "";
  width: 28px;
  height: 20px;
  display: block;
  border-radius: 5px 5px 5px 1px;
  background: #fff;
  box-shadow: 10px 0 0 -4px #fff;
}
.cw-chat-launcher i::after {
  content: none;
}
.cw-chat-launcher.is-open span {
  display: none;
}
.cw-chat-launcher.is-open i {
  background: linear-gradient(145deg, #4039ff 0%, #2923df 100%);
  box-shadow: 0 18px 42px rgba(47, 43, 229, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.cw-chat-launcher.is-open i::before,
.cw-chat-launcher.is-open i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 31px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
.cw-chat-launcher.is-open i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cw-chat-panel {
  position: absolute;
  right: 0;
  bottom: 86px;
  width: min(386px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: cwChatOpen 0.28s cubic-bezier(.2,.85,.25,1.15);
  transform-origin: right bottom;
}
@keyframes cwChatOpen {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cw-chat-head {
  position: relative;
  min-height: 270px;
  padding: 26px 26px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #3129df;
  color: #fff;
}
.cw-chat-logo {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}
.cw-chat-menu {
  position: absolute;
  top: 28px;
  right: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.cw-chat-head h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
}
.cw-chat-head p {
  margin: 0;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.35;
}
.cw-chat-body {
  position: relative;
  min-height: 310px;
  padding: 18px 20px 18px;
  background: #fff;
}
.cw-chat-thread {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 128px;
  max-height: 178px;
  overflow-y: auto;
  padding: 2px 2px 12px;
  scrollbar-width: thin;
}
.cw-chat-message {
  position: relative;
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 16px 16px 16px 4px;
  background: #f1f5fb;
  color: #172033;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(19, 33, 53, 0.08);
  animation: cwMessageIn 0.28s ease both;
}
.cw-chat-message::before {
  content: "CW";
  position: absolute;
  left: 0;
  top: -23px;
  color: #7b879c;
  font-size: 10px;
  font-weight: 800;
}
@keyframes cwMessageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cw-chat-card {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  margin-top: 0;
  padding: 20px 22px;
  border: 1px solid #d7e2f3;
  border-radius: 18px;
  background: #eaf3ff;
  color: #152033;
  text-align: left;
  box-shadow: 0 10px 25px rgba(28, 72, 135, 0.12);
  cursor: pointer;
  animation: cwMessageIn 0.28s ease both;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cw-chat-card[hidden] {
  display: none;
}
.cw-chat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(28, 72, 135, 0.18);
}
.cw-chat-card strong {
  display: block;
  font-size: 17px;
}
.cw-chat-card span {
  grid-column: 1 / 2;
  color: #526076;
  font-size: 15px;
  line-height: 1.4;
}
.cw-chat-card b {
  grid-row: 1 / 3;
  grid-column: 2;
  color: #0664ff;
  font-size: 29px;
}
.cw-chat-form {
  display: grid;
  gap: 10px;
  padding: 16px 0 4px;
  animation: cwMessageIn 0.24s ease both;
}
.cw-chat-form[hidden] {
  display: none;
}
.cw-chat-form input,
.cw-chat-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 13px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.cw-chat-form input:focus,
.cw-chat-form textarea:focus {
  border-color: #4e46ff;
  box-shadow: 0 0 0 4px rgba(78, 70, 255, 0.12);
  outline: none;
}
.cw-chat-form textarea {
  min-height: 82px;
  resize: vertical;
}
.cw-chat-form p {
  min-height: 18px;
  margin: 0;
  color: #236145;
  font-size: 13px;
}
.cw-chat-form p[data-state="warning"] {
  color: #8a5a00;
}
.cw-chat-form p[data-state="error"] {
  color: #b42318;
}
.cw-chat-form button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #3129df;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}
.cw-chat-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.cw-chat-form button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
}
.cw-chat-toast {
  position: fixed;
  right: 108px;
  bottom: 98px;
  z-index: 90;
  width: min(330px, calc(100vw - 34px));
  padding: 16px 18px 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #172033;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.24);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(12px);
}
.cw-chat-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cw-chat-toast::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 5px;
  height: calc(100% - 34px);
  border-radius: 999px;
  background: #22c55e;
}
.cw-chat-toast.is-warning::before {
  background: #f59e0b;
}
.cw-chat-toast.is-error::before {
  background: #ef4444;
}
.cw-chat-toast strong,
.cw-chat-toast span {
  display: block;
  padding-left: 14px;
}
.cw-chat-toast strong {
  margin-bottom: 4px;
  font-size: 15px;
  color: #111827;
}
.cw-chat-toast span {
  font-size: 13px;
  line-height: 1.45;
  color: #526076;
}
.cw-chat-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 16px;
}
.cw-chat-tabs button {
  display: grid;
  place-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #6c7890;
  font-weight: 800;
}
.cw-chat-tabs button span {
  font-size: 27px;
}
.cw-chat-tabs button em {
  font-style: normal;
}
.cw-chat-tabs button.is-active,
.cw-chat-tabs button:hover {
  color: #0664ff;
}
.cw-chat-powered {
  border-top: 1px solid #e5e7eb;
  padding: 14px 20px 18px;
  color: #65728a;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.empty-message {
  grid-column: 1 / -1;
  color: var(--muted);
}

.search-overlay, .scrim { position: fixed; inset: 0; z-index: 50; }
.search-overlay {
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 33, 27, 0.48);
}
.search-overlay[hidden], .scrim[hidden] { display: none; }
.overlay-card {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(680px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.overlay-card h2 { margin: 0; font-size: clamp(28px, 5vw, 46px); line-height: 1.08; letter-spacing: 0; }
.search-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.search-form input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}
.search-form input:focus { border-color: var(--brand); }
.form-note { margin: 0; color: var(--muted); }
.close-button { position: absolute; top: 14px; right: 14px; }
.close-button::before, .close-button::after {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}
.close-button::before { transform: rotate(45deg); }
.close-button::after { transform: rotate(-45deg); }
.scrim { z-index: 35; background: rgba(23, 33, 27, 0.42); }
.inquiry-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 22px;
  width: min(430px, 100vw);
  height: 100dvh;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 220ms ease;
}
.inquiry-drawer.is-open { transform: translateX(0); }
.drawer-header { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-right: 50px; }
.drawer-header h2 { margin: 5px 0 0; font-size: 30px; letter-spacing: 0; }
.inquiry-body {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 14px;
  min-height: 0;
  overflow: auto;
}
.inquiry-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
}
.inquiry-controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}
.inquiry-controls button,
.inquiry-item button {
  border: 0;
  border-radius: 8px;
  background: #f6f6f6;
  color: var(--ink);
  font-weight: 900;
}
.inquiry-controls button {
  min-height: 34px;
  padding: 0 12px;
}
.inquiry-list {
  display: grid;
  gap: 10px;
}
.inquiry-item {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.inquiry-item img {
  width: 64px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
}
.inquiry-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}
.inquiry-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.inquiry-item button {
  width: 34px;
  height: 34px;
  font-size: 18px;
}
.empty-state {
  display: grid;
  place-content: center;
  gap: 10px;
  min-height: 220px;
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f7f7f7;
  text-align: center;
}
.empty-state p { margin: 0; color: var(--muted); line-height: 1.55; }
.empty-state[hidden],
.inquiry-form[hidden] {
  display: none;
}
.inquiry-form {
  display: grid;
  gap: 10px;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 11px 12px;
  outline: none;
}
.inquiry-form textarea {
  min-height: 84px;
  resize: vertical;
}
.inquiry-form [data-selected-products] {
  min-height: 96px;
  background: #f7f7f7;
  color: var(--muted);
  font-size: 13px;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--brand);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .home-case-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-case-main {
    padding-top: 0;
  }
  .home-case-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-case-side article {
    grid-template-columns: 1fr;
  }
  .home-faq-layout {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 46px;
  }
  .process-section {
    padding: 76px 0 72px;
  }
  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
    width: min(900px, calc(100% - 42px));
  }
  .process-list::before {
    display: none;
  }
  .process-list li {
    min-height: 150px;
  }
  .process-icon {
    min-height: 66px;
    margin-top: 20px;
  }
  .header-bar { grid-template-columns: auto auto; }
  .primary-nav {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: block;
    width: min(430px, 100vw);
    padding: 18px;
    overflow: auto;
    border-left: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }
  body.nav-open .primary-nav { transform: translateX(0); }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 12px;
    color: #222;
  }
  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.is-active,
  .nav-item.is-open > .nav-link {
    background: #f4f4f4;
    color: #111;
  }
  .mega-panel, .compact-panel {
    position: static;
    display: none;
    width: 100%;
    margin: 6px 0 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-item.is-open .mega-panel, .nav-item.is-open .compact-panel { display: grid; }
  .product-panel { grid-template-columns: 1fr; gap: 18px; padding: 14px; border-radius: 8px; transform: none; }
  .nav-item.is-open .product-panel { transform: none; }
  .mega-promo,
  .mega-promo img {
    min-height: 230px;
  }
  .mega-promo span { top: 24px; left: 22px; }
  .mega-promo strong { top: 52px; left: 22px; font-size: 28px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-grid h2 { margin-top: 12px; }
  .menu-toggle { display: inline-grid; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .detail-hero { grid-template-columns: 1fr; }
  .custom-hero { grid-template-columns: 1fr; }
  .detail-summary { position: static; }
  .product-card-grid, .feature-grid, .content-grid, .article-grid, .case-list, .download-list, .video-list, .search-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 34px; }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-card div { padding-inline: 14px; }
  .custom-capability-grid, .custom-adv-grid, .craft-grid, .custom-dark-band .custom-adv-grid, .custom-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-solution-grid, .contact-faq-section .faq-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-main-layout, .contact-map-section, .contact-support-section { grid-template-columns: 1fr; }
  .contact-faq-section .faq-items { grid-template-columns: 1fr; }
  .about-good,
  .about-cta-card,
  .about-company-intro { grid-template-columns: 1fr; }
  .about-advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }
  .about-cert-grid,
  .about-work-labels,
  .about-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-work-image { aspect-ratio: 16 / 7; }
  .custom-eco-panel { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-shell { grid-template-columns: 1fr 1fr; }
  .footer-inquiry-panel { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .footer-link-panel { border-right: 0; }
}

@media (max-width: 760px) {
  .home-case-section {
    padding: 54px 0 58px;
  }
  .home-case-layout {
    width: min(100% - 28px, 560px);
  }
  .home-case-intro {
    gap: 16px;
    justify-items: start;
  }
  .home-case-intro h2 {
    font-size: 24px;
  }
  .home-case-side {
    grid-template-columns: 1fr;
  }
  .home-case-side article {
    gap: 16px;
  }
  .home-case-side h3 {
    font-size: 15px;
  }
  .process-section {
    padding: 58px 0 56px;
  }
  .process-section .section-heading {
    width: min(100% - 28px, 560px);
    margin-bottom: 34px;
  }
  .process-section .section-heading h2 {
    font-size: 31px;
  }
  .process-section .section-heading p {
    max-width: 310px;
    font-size: 14px;
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
    width: min(100% - 28px, 560px);
  }
  .process-list li {
    min-height: 132px;
    padding: 0 6px;
  }
  .process-index {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .process-icon {
    min-height: 52px;
    margin-top: 14px;
    font-size: 34px;
  }
  .process-list strong {
    max-width: 130px;
    font-size: 14px;
  }
  .faq-section {
    margin-top: 54px;
    padding: 54px 0 58px;
  }
  .home-faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 28px, 680px);
    text-align: center;
  }
  .home-faq-copy {
    justify-items: center;
    gap: 16px;
  }
  .home-faq-copy h2,
  .home-faq-copy p {
    max-width: 320px;
  }
  .home-faq-copy h2 {
    font-size: 30px;
  }
  .faq-list summary {
    min-height: 56px;
    padding: 16px 44px 16px 0;
    text-align: left;
    font-size: 15px;
  }
  .faq-question-icon {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }
  .faq-list p {
    padding: 0 42px 20px 36px;
    text-align: left;
  }
  .header-bar { width: min(100% - 24px, 1240px); min-height: 74px; gap: 12px; }
  .brand-mark { width: 64px; height: 42px; }
  .brand-logo-img { width: 64px; max-height: 42px; }
  .brand-copy span { display: none; }
  .primary-nav { top: 74px; }
  .header-actions { gap: 6px; }
  .language-menu { display: block; }
  .language-button {
    min-width: 42px;
    max-width: 54px;
    padding: 0 8px;
    overflow: hidden;
    justify-content: center;
  }
  .language-button [data-language-label] {
    display: block;
    max-width: 34px;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }
  .language-button .chevron { display: none; }
  .language-panel {
    right: 0;
    left: auto;
  }
  .inquire-button { width: 42px; padding: 0; justify-content: center; }
  .inquire-button > span:first-child { display: none; }
  .section, .page-hero, .catalog-layout, .hero, .detail-hero, .detail-content, .custom-hero, .content-hero, .contact-hero, .content-grid, .article-grid, .case-list, .download-list, .video-list, .faq-page-grid, .search-results, .contact-layout, .faq-layout, .case-detail-layout, .article-detail-layout { width: min(100% - 24px, 1240px); }
  .site-footer { width: 100%; margin-top: 48px; }
  .footer-shell {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }
  .footer-brand-panel,
  .footer-link-panel,
  .footer-inquiry-panel {
    min-height: auto;
    padding: 34px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-brand-panel { align-content: start; gap: 22px; }
  .footer-link-panel { gap: 28px; }
  .footer-form-row { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 24px 22px;
    border-right: 0;
    border-left: 0;
  }
  .footer-bottom div { justify-content: flex-start; }
  .hero { gap: 30px; padding: 42px 0 54px; }
  .custom-hero { gap: 28px; padding: 42px 0 54px; }
  .custom-form-shell { grid-template-columns: 1fr; }
  .custom-form-intro { position: static; padding-top: 0; }
  .custom-success-panel {
    width: 100%;
    padding: 24px 16px;
    gap: 12px;
  }
  .custom-success-panel h3 {
    font-size: 24px;
  }
  .custom-success-panel p {
    font-size: 15px;
  }
  .success-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .success-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .urgent-status {
    width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }
  .hero h1, .page-hero h1, .custom-hero h1 { font-size: clamp(36px, 14vw, 58px); }
  .hero p, .page-hero p, .custom-hero p { font-size: 16px; }
  .hero-media img { height: 320px; }
  .button { width: 100%; }
  .detail-actions { grid-template-columns: 1fr; }
  .detail-tabs { top: 74px; }
  .detail-section-grid { grid-template-columns: 1fr; }
  .parameter-table th,
  .parameter-table td,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
  .metric-row span { flex: 1 1 120px; }
  .product-card-grid, .feature-grid, .case-grid, .news-grid, .catalog-grid, .recommended-row, .footer-grid, .filter-panel, .custom-capability-grid, .custom-adv-grid, .custom-dark-band .custom-adv-grid, .craft-grid, .custom-process, .custom-request-form, .contact-solution-grid, .contact-faq-section .faq-items, .content-grid, .article-grid, .case-list, .download-list, .video-list, .search-results, .contact-layout, .faq-layout, .case-detail-layout, .article-detail-layout {
    grid-template-columns: 1fr;
  }
  .home-product-showcase {
    width: min(100% - 24px, 1240px);
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .home-product-tabs {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .home-product-tabs button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }
  .home-product-grid { grid-template-columns: 1fr; gap: 22px; }
  .home-product-card div { padding-inline: 8px; }
  .about-intro {
    padding-top: 44px;
    padding-bottom: 32px;
    gap: 34px;
  }
  .about-intro-heading h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
  .about-stats {
    gap: 22px 12px;
  }
  .about-stats strong {
    font-size: 24px;
  }
  .about-company-copy h2 {
    font-size: 26px;
  }
  .about-company-copy p {
    font-size: 15px;
  }
  .about-detail-button {
    width: 178px;
    min-height: 48px;
    font-size: 16px;
  }
  .about-video-card,
  .about-video-card img {
    min-height: 220px;
  }
  .about-video-shade {
    padding: 18px;
  }
  .about-video-shade strong {
    font-size: 16px;
  }
  .about-play-button {
    width: 62px;
    height: 44px;
    border-radius: 10px;
  }
  .about-tabs {
    gap: 26px;
    margin-bottom: 34px;
  }
  .about-tab {
    font-size: 20px;
  }
  .about-work-image {
    aspect-ratio: 1 / 1;
  }
  .about-work-labels,
  .about-cert-grid,
  .about-value-grid,
  .about-case-grid {
    grid-template-columns: 1fr;
  }
  .about-work-labels {
    gap: 8px;
    font-size: 15px;
  }
  .about-credit,
  .about-advantages,
  .about-services,
  .about-good,
  .about-cases,
  .about-product-cta {
    padding-top: 42px;
    padding-bottom: 50px;
  }
  .about-good h2,
  .about-advantages-heading h2,
  .about-services-heading h2,
  .about-cases .section-heading h2,
  .about-product-cta .section-heading h2 {
    font-size: 28px;
  }
  .about-advantages {
    gap: 30px;
  }
  .about-advantages-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-advantages-grid article {
    min-height: 0;
    padding: 26px 20px;
  }
  .about-services {
    gap: 30px;
    padding-right: 14px;
    padding-left: 14px;
  }
  .about-services-heading p {
    max-width: 330px;
    font-size: 14px;
  }
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-services-grid article {
    width: min(100%, 420px);
    margin: 0 auto;
  }
  .about-value-grid article,
  .about-case-grid article {
    padding: 22px;
  }
  .about-cert-image {
    min-width: 760px;
  }
  .about-panel[data-about-panel="cert"] {
    overflow-x: auto;
  }
  .about-cta-copy {
    padding: 32px 22px;
  }
  .about-cta-card img {
    min-height: 240px;
  }
  .contact-hero {
    padding: 44px 0 24px;
  }
  .contact-hero h1 {
    font-size: clamp(34px, 11vw, 54px);
  }
  .contact-hero p {
    font-size: 16px;
  }
  .contact-solution-grid article {
    min-height: auto;
    padding: 24px 20px;
  }
  .contact-solutions .section-heading h2 {
    font-size: 24px;
  }
  .contact-card-icon,
  .contact-card-icon svg {
    width: 62px;
    height: 62px;
  }
  .contact-solution-grid strong {
    font-size: 18px;
  }
  .contact-solution-grid p {
    font-size: 14px;
  }
  .contact-support-section {
    padding-top: 52px;
    padding-bottom: 42px;
  }
  .contact-support-media,
  .contact-support-media img {
    min-height: 260px;
  }
  .contact-support-copy h2 {
    font-size: clamp(26px, 7.5vw, 34px);
  }
  .contact-support-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-main-layout {
    padding-top: 24px;
    padding-bottom: 46px;
  }
  .contact-info-panel,
  .contact-form-card {
    padding: 20px;
  }
  .contact-quick-actions {
    grid-template-columns: 1fr;
  }
  .contact-map-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 300px;
  }
  .contact-faq-section .section-heading h2 {
    font-size: 28px;
  }
  .contact-faq-accordion summary {
    min-height: 56px;
    padding: 16px 42px 16px 0;
    font-size: 16px;
  }
  .contact-faq-accordion summary::after {
    right: 4px;
    font-size: 24px;
  }
  .contact-faq-accordion p {
    padding: 0 28px 20px 0;
    font-size: 14px;
  }
  .floating-tools {
    right: 0;
    top: 46%;
    bottom: auto;
  }
  .floating-tool {
    width: 48px;
    height: 48px;
    border-radius: 12px 0 0 12px;
    font-size: 22px;
  }
  .cw-chat-widget {
    right: 14px;
    bottom: max(72px, calc(env(safe-area-inset-bottom, 0px) + 56px));
  }
  .cw-chat-launcher span {
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }
  .cw-chat-launcher i {
    width: 58px;
    height: 58px;
  }
  .cw-chat-panel {
    right: -2px;
    bottom: 76px;
    width: min(360px, calc(100vw - 24px));
    border-radius: 18px;
  }
  .cw-chat-toast {
    right: 12px;
    bottom: 88px;
    width: calc(100vw - 24px);
    border-radius: 16px;
  }
  .cw-chat-head {
    min-height: 250px;
    padding: 24px 22px 30px;
  }
  .cw-chat-head h2 {
    font-size: 27px;
  }
  .cw-chat-head p {
    font-size: 17px;
  }
.custom-request-form { padding: 18px; }

.custom-form-section {
  scroll-margin-top: 96px;
}

@media (max-width: 760px) {
  .custom-form-section {
    scroll-margin-top: 82px;
  }
}
  .factory-section {
    width: min(100% - 28px, 680px);
    padding-top: 48px;
    padding-bottom: 52px;
  }
  .factory-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .factory-copy {
    gap: 16px;
  }
  .factory-copy h2 {
    font-size: clamp(22px, 7vw, 30px);
  }
  .factory-note {
    padding: 20px 18px;
  }
  .factory-actions {
    gap: 12px;
  }
  .factory-button {
    min-width: 118px;
    min-height: 40px;
    padding-inline: 22px;
  }
  .advisor-card { grid-template-columns: 1fr; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .search-form { grid-template-columns: 1fr; }
  .overlay-card { padding: 28px 18px 22px; }
  .inquiry-drawer { width: min(100vw, 430px); }
  .inquiry-form input,
  .inquiry-form textarea,
  .contact-form input,
  .contact-form textarea,
  .custom-request-form input,
  .custom-request-form select,
  .custom-request-form textarea {
    font-size: 16px;
  }
}

/* Title scale pass: make all frontend headings visibly smaller and more refined. */
.hero h1,
.page-hero h1,
.custom-hero h1,
.about-intro h1,
.content-hero h1,
.article-detail-layout h1,
.case-detail-layout h1,
.detail-title {
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.16;
  font-weight: 500;
}

.section-heading h2,
.home-product-showcase .section-heading h2,
.process-section .section-heading h2,
.home-faq-copy h2,
.contact-faq-section .section-heading h2,
.custom-section-heading h2,
.about-cta-card h2,
.contact-support-title,
.custom-success-panel h3,
.overlay-card h2,
.drawer-header h2 {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.24;
  font-weight: 500;
}

.detail-summary h2,
.custom-request-form h2,
.contact-form-card h2,
.faq-aside h2,
.recommended h2,
.advisor-card h2,
.footer-form-heading h2 {
  font-size: 17px;
  line-height: 1.35;
}

.home-product-card h3,
.catalog-card h2,
.product-card h3,
.case-grid h3,
.news-grid h3,
.article-card h2,
.case-card h2,
.download-card h2,
.video-card h2,
.custom-process li strong,
.custom-adv-grid strong,
.custom-capability-grid strong,
.craft-card strong,
.contact-solution-grid strong {
  font-size: 14px;
  line-height: 1.38;
}

.mega-promo strong {
  font-size: 22px;
}
.metric-row strong,
.about-stats strong,
.contact-stat strong {
  font-size: 22px;
}
.feature-grid strong,
.process-list strong,
.footer-link-panel h2,
.mega-grid h2,
.filter-group h2 {
  font-size: 13px;
}

@media (max-width: 760px) {
  .hero h1,
  .page-hero h1,
  .custom-hero h1,
  .about-intro h1,
  .content-hero h1,
  .article-detail-layout h1,
  .case-detail-layout h1,
  .detail-title {
    font-size: clamp(24px, 7.4vw, 32px);
  }

  .section-heading h2,
  .home-product-showcase .section-heading h2,
  .process-section .section-heading h2,
  .home-faq-copy h2,
  .contact-faq-section .section-heading h2,
  .custom-section-heading h2,
  .about-cta-card h2,
  .contact-support-title,
  .custom-success-panel h3,
  .overlay-card h2,
  .drawer-header h2 {
    font-size: clamp(19px, 5.8vw, 26px);
  }

  .home-product-card h3,
  .catalog-card h2,
  .product-card h3,
  .case-grid h3,
  .news-grid h3,
  .article-card h2,
  .case-card h2,
  .download-card h2,
  .video-card h2 {
    font-size: 13px;
  }
}

/* Global frontend typography tuning: keep the B2B UI lighter and more compact. */
body {
  font-size: 14px;
}

.brand-copy strong { font-size: 16px; }
.brand-copy span { font-size: 11px; }
.nav-link,
.language-button,
.inquire-button,
.button,
.footer-submit,
.home-faq-button,
.contact-card-button {
  font-size: 13px;
}

.hero h1,
.page-hero h1,
.custom-hero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
}
.hero p,
.page-hero p,
.custom-hero p,
.content-hero p,
.custom-form-intro p,
.article-card p,
.case-card p,
.download-card p,
.product-card p,
.feature-grid p,
.case-grid p,
.factory-list p,
.advisor-card p,
.catalog-card p,
.detail-lead,
.contact-support-copy p,
.about-company-text p,
.about-good p,
.about-case-card p {
  font-size: 14px;
}

.section-heading h2,
.home-product-showcase .section-heading h2,
.process-section .section-heading h2,
.home-faq-copy h2,
.contact-faq-section .section-heading h2,
.custom-section-heading h2,
.content-hero h1,
.article-detail-layout h1,
.case-detail-layout h1 {
  font-size: clamp(26px, 2.8vw, 38px);
}
.section-heading p,
.process-section .section-heading p,
.home-faq-copy p,
.contact-faq-section .section-heading p,
.home-product-showcase .section-heading p,
.custom-section-heading p {
  font-size: 14px;
}

.mega-promo strong { font-size: 30px; }
.mega-grid h2,
.filter-group h2,
.footer-link-panel h2,
.footer-form-heading h2 {
  font-size: 15px;
}
.mega-grid a,
.compact-panel a,
.footer-link-panel a,
.footer-contact-list p,
.footer-form-heading p,
.footer-bottom,
.footer-bottom a {
  font-size: 13px;
}

.home-product-tabs button { font-size: 14px; }
.home-product-tabs .mega-icon { font-size: 20px; }
.home-product-card h3,
.catalog-card h2,
.product-card h3,
.case-grid h3,
.news-grid h3,
.article-card h2,
.case-card h2,
.download-card h2,
.video-card h2 {
  font-size: 16px;
}
.home-product-card p,
.catalog-tags span,
.news-grid time,
.meta-row,
.badge-row span {
  font-size: 12px;
}

.process-index { font-size: 12px; }
.process-icon { font-size: clamp(30px, 3.4vw, 46px); }
.process-list strong {
  font-size: 15px;
}

.faq-list summary,
.faq-items summary,
.contact-faq-accordion summary {
  font-size: 15px;
}
.faq-question-icon {
  font-size: 15px;
}
.faq-list p,
.faq-items p,
.contact-faq-accordion p {
  font-size: 13px;
}

.detail-title,
.custom-success-panel h3,
.contact-support-title,
.about-intro h1,
.about-cta-card h2,
.custom-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
}
.detail-summary h2,
.custom-request-form h2,
.contact-form-card h2,
.faq-aside h2,
.recommended h2 {
  font-size: 20px;
}
.parameter-table,
.info-table,
.detail-tabs a,
.detail-actions a,
.detail-actions button,
.form-note,
.custom-request-form input,
.custom-request-form textarea,
.custom-request-form select,
.footer-form input,
.footer-form textarea,
.inquiry-form input,
.inquiry-form textarea,
.contact-form input,
.contact-form textarea {
  font-size: 13px;
}

@media (max-width: 760px) {
  body {
    font-size: 13px;
  }
  .nav-link,
  .button,
  .footer-submit,
  .home-faq-button,
  .contact-card-button {
    font-size: 12px;
  }
  .hero h1,
  .page-hero h1,
  .custom-hero h1 {
    font-size: clamp(32px, 12vw, 48px);
  }
  .hero p,
  .page-hero p,
  .custom-hero p {
    font-size: 14px;
  }
  .section-heading h2,
  .home-product-showcase .section-heading h2,
  .process-section .section-heading h2,
  .home-faq-copy h2,
  .contact-faq-section .section-heading h2,
  .content-hero h1 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .section-heading p,
  .process-section .section-heading p,
  .home-faq-copy p,
  .contact-faq-section .section-heading p {
    font-size: 13px;
  }
  .home-product-card h3,
  .catalog-card h2,
  .product-card h3,
  .case-grid h3,
  .news-grid h3,
  .article-card h2,
  .case-card h2 {
    font-size: 15px;
  }
  .process-icon {
    font-size: 30px;
  }
  .process-list strong,
  .faq-list summary,
  .faq-items summary,
  .contact-faq-accordion summary {
    font-size: 14px;
  }
  .inquiry-form input,
  .inquiry-form textarea,
  .contact-form input,
  .contact-form textarea,
  .custom-request-form input,
  .custom-request-form select,
  .custom-request-form textarea {
    font-size: 14px;
  }
}

/* Final heading scale override: smaller, balanced titles across Chinese and English. */
.hero h1,
.page-hero h1,
.custom-hero h1,
.about-intro h1,
.content-hero h1,
.article-detail-layout h1,
.case-detail-layout h1,
.detail-title {
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 500;
}

.section-heading h2,
.home-product-showcase .section-heading h2,
.process-section .section-heading h2,
.home-faq-copy h2,
.contact-faq-section .section-heading h2,
.custom-section-heading h2,
.about-cta-card h2,
.contact-support-title,
.custom-success-panel h3,
.overlay-card h2,
.drawer-header h2 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}

.detail-summary h2,
.custom-request-form h2,
.contact-form-card h2,
.faq-aside h2,
.recommended h2,
.advisor-card h2,
.footer-form-heading h2 {
  font-size: 16px;
  line-height: 1.35;
}

.home-product-card h3,
.catalog-card h2,
.product-card h3,
.case-grid h3,
.news-grid h3,
.article-card h2,
.case-card h2,
.download-card h2,
.video-card h2,
.custom-process li strong,
.custom-adv-grid strong,
.custom-capability-grid strong,
.craft-card strong,
.contact-solution-grid strong,
.feature-grid strong,
.process-list strong {
  font-size: 13px;
  line-height: 1.38;
}

.mega-promo strong {
  font-size: 20px;
}
.metric-row strong,
.about-stats strong,
.contact-stat strong {
  font-size: 20px;
}
.footer-link-panel h2,
.mega-grid h2,
.filter-group h2 {
  font-size: 12px;
}

@media (max-width: 760px) {
  .hero h1,
  .page-hero h1,
  .custom-hero h1,
  .about-intro h1,
  .content-hero h1,
  .article-detail-layout h1,
  .case-detail-layout h1,
  .detail-title {
    font-size: clamp(23px, 7vw, 30px);
  }

  .section-heading h2,
  .home-product-showcase .section-heading h2,
  .process-section .section-heading h2,
  .home-faq-copy h2,
  .contact-faq-section .section-heading h2,
  .custom-section-heading h2,
  .about-cta-card h2,
  .contact-support-title,
  .custom-success-panel h3,
  .overlay-card h2,
  .drawer-header h2 {
    font-size: clamp(18px, 5.4vw, 24px);
  }

  .home-product-card h3,
  .catalog-card h2,
  .product-card h3,
  .case-grid h3,
  .news-grid h3,
  .article-card h2,
  .case-card h2,
  .download-card h2,
  .video-card h2 {
    font-size: 12px;
  }
}

/* Final news card layout override for home and news pages. */
.home-news-section .news-grid,
.article-grid.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 76px;
}
.home-news-section .news-grid {
  padding-bottom: 0;
}
.article-grid.news-card-grid {
  background: #f1f1f1;
}
.article-card.news-card,
.home-news-section .news-card {
  border: 0;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}
.article-card.news-card img,
.home-news-section .news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-card.news-card > div,
.home-news-section .news-card > div {
  padding: 24px 24px 26px;
}
.article-card.news-card h2,
.home-news-section .news-card h3 {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}
.article-card.news-card p,
.home-news-section .news-card p {
  font-size: 13px;
}
@media (max-width: 1120px) {
  .home-news-section .news-grid,
  .article-grid.news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(920px, calc(100% - 36px));
  }
}
@media (max-width: 760px) {
  .home-news-section,
  .news-page-hero {
    padding-top: 54px;
    padding-bottom: 52px;
  }
  .home-news-section .news-grid,
  .article-grid.news-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(100% - 28px, 520px);
    padding-bottom: 54px;
  }
  .home-news-section .news-grid {
    padding-bottom: 0;
  }
  .article-card.news-card > div,
  .home-news-section .news-card > div {
    padding: 20px 18px 22px;
  }
}
.news-page {
  background: #f1f1f1;
}
.news-page .site-footer {
  margin-top: 0;
}

/* Targeted hover polish: only small card images and rounded info buttons. */
.home-product-card figure,
.catalog-image-link,
.news-card-image,
.article-card.news-card .news-card-image,
.video-card img,
.case-card img,
.search-result-card img,
.home-case-side article > a {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.home-product-card img,
.catalog-card img,
.news-card img,
.article-card.news-card img,
.video-card img,
.case-card img,
.search-result-card img,
.home-case-side img {
  transition: transform 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .home-product-card:hover figure,
  .catalog-card:hover .catalog-image-link,
  .news-card:hover .news-card-image,
  .article-card.news-card:hover .news-card-image,
  .video-card:hover img,
  .case-card:hover img,
  .search-result-card:hover img,
  .home-case-side article:hover > a {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
  }

  .home-product-card:hover img,
  .catalog-card:hover img,
  .news-card:hover img,
  .article-card.news-card:hover img,
  .video-card:hover img,
  .case-card:hover img,
  .search-result-card:hover img,
  .home-case-side article:hover img {
    transform: scale(1.025);
    filter: brightness(1.02);
  }
}

.home-faq-button,
.home-case-button,
.home-case-side a:last-child,
.case-card a,
.search-result-card a,
.news-card div > a,
.article-card.news-card div > a,
.about-detail-button,
.about-cta-button,
.home-product-tabs button {
  background-color: #e5e5e5;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-faq-button:hover,
.home-faq-button:focus-visible,
.home-case-button:hover,
.home-case-button:focus-visible,
.home-case-side a:last-child:hover,
.home-case-side a:last-child:focus-visible,
.case-card a:hover,
.case-card a:focus-visible,
.search-result-card a:hover,
.search-result-card a:focus-visible,
.news-card div > a:hover,
.news-card div > a:focus-visible,
.article-card.news-card div > a:hover,
.article-card.news-card div > a:focus-visible,
.about-detail-button:hover,
.about-detail-button:focus-visible,
.about-cta-button:hover,
.about-cta-button:focus-visible,
.home-product-tabs button:hover,
.home-product-tabs button:focus-visible {
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
  transform: translateY(-1px);
  outline: none;
}

/* Home product showcase refinement: compact, clean B2B card spacing. */
.home-product-showcase {
  width: min(1240px, calc(100% - 40px));
  padding-top: 64px;
  padding-bottom: 68px;
}

.home-product-showcase .section-heading {
  margin-bottom: 26px;
}

.home-product-showcase .section-heading h2 {
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.28;
}

.home-product-showcase .section-heading p {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

.home-product-tabs {
  grid-template-columns: repeat(auto-fit, minmax(118px, max-content));
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.home-product-tabs button {
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
  font-weight: 650;
}

.home-product-tabs .mega-icon {
  font-size: 16px;
}

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

.home-product-card {
  gap: 13px;
}

.home-product-card figure {
  border-radius: 6px;
  background: #fff;
}

.home-product-card img {
  padding: clamp(10px, 1.8vw, 22px);
}

.home-product-card div {
  gap: 6px;
  padding: 0 8px;
  text-align: left;
}

.home-product-card h3 {
  min-height: 39px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0;
}

.home-product-card p {
  min-height: 38px;
  font-size: 12px;
  line-height: 1.55;
  color: #666;
  -webkit-line-clamp: 2;
}

@media (max-width: 1120px) {
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-product-showcase {
    width: min(100% - 28px, 520px);
    padding-top: 48px;
    padding-bottom: 52px;
  }
  .home-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-product-card div {
    padding: 0 2px;
  }
}

/* Product detail title refinement: compact B2B title scale. */
.detail-summary h1,
h1[data-detail-title] {
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.34;
  font-weight: 600;
  letter-spacing: 0;
  color: #2f2f2f;
}

.detail-summary {
  gap: 14px;
}

@media (max-width: 760px) {
  .detail-summary h1,
  h1[data-detail-title] {
    font-size: clamp(18px, 5.3vw, 23px);
    line-height: 1.36;
  }
}

/* Privacy and terms pages */
.policy-hero {
  text-align: center;
  padding-bottom: 34px;
}

.policy-hero h1 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 560;
  letter-spacing: 0;
}

.policy-hero p {
  max-width: 780px;
  margin-inline: auto;
}

.policy-layout {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 88px;
}

.policy-content {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.policy-content h2 {
  margin: 28px 0 10px;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
  font-weight: 620;
  color: #2f2f2f;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #565656;
}

@media (max-width: 760px) {
  .policy-layout {
    width: min(100% - 28px, 620px);
    margin-bottom: 58px;
  }
  .policy-content {
    padding: 22px 18px;
  }
}

@media (max-width: 1100px) {
  .customer-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(720px, 100%);
  }
  .partner-advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(720px, 100%);
    gap: 24px;
  }
  .customer-actions {
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .customer-section {
    padding-top: 72px;
    padding-bottom: 64px;
  }
  .customer-section-heading {
    margin-bottom: 28px;
  }
  .customer-section-heading p {
    font-size: 14px;
    font-weight: 700;
  }
  .customer-card-grid {
    grid-template-columns: 1fr;
    width: min(380px, 100%);
  }
  .customer-card-grid article {
    min-height: 184px;
    border-radius: 22px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .customer-card-grid strong {
    font-size: 21px;
  }
  .customer-card-grid p {
    font-size: 14px;
  }
  .customer-actions {
    display: grid;
    justify-items: center;
  }
  .partner-advantages-section {
    padding-top: 68px;
    padding-bottom: 70px;
  }
  .partner-advantages-heading {
    margin-bottom: 34px;
  }
  .partner-advantages-heading p {
    font-size: 14px;
    font-weight: 700;
  }
  .partner-advantage-grid {
    grid-template-columns: 1fr;
    width: min(380px, 100%);
  }
  .partner-advantage-grid article {
    min-height: 190px;
    padding-right: 22px;
    padding-left: 22px;
  }
  .partner-advantage-grid strong {
    font-size: 21px;
  }
  .partner-advantage-grid p {
    font-size: 14px;
  }
}

/* Home: turn a design into a real plush toy */
.home-design-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eef5f6;
  color: #344e54;
}

.home-design-wave {
  position: absolute;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 104px;
  color: #fff;
  pointer-events: none;
}

.home-design-wave path {
  fill: currentColor;
}

.home-design-wave-top {
  top: 0;
}

.home-design-wave-bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.home-design-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 116px 0 110px;
}

.home-design-heading {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.home-design-heading h2 {
  margin: 0;
  color: #ff9559;
  font-size: clamp(27px, 2.45vw, 35px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.home-design-heading p {
  max-width: 920px;
  margin: 17px auto 0;
  color: #4e6267;
  font-size: 13.5px;
  font-weight: 620;
  line-height: 1.72;
}

.home-design-sources {
  display: grid;
  grid-template-areas: "left visual right";
  grid-template-columns: minmax(250px, 1fr) minmax(250px, 330px) minmax(250px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1040px;
  margin: 24px auto 0;
}

.home-design-source-list {
  display: grid;
  gap: 25px;
}

.home-design-source-list.is-left {
  grid-area: left;
}

.home-design-source-list.is-right {
  grid-area: right;
}

.home-design-source-list article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}

.home-design-source-list span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff9559;
  color: #fff;
  font-size: 21px;
  font-weight: 850;
  box-shadow: 0 9px 20px rgba(255, 149, 89, .19);
}

.home-design-source-list strong {
  color: #63a2ae;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.42;
}

.home-design-source-list.is-right article {
  grid-template-columns: minmax(0, 1fr) 50px;
}

.home-design-source-list.is-right span {
  grid-column: 2;
  grid-row: 1;
}

.home-design-source-list.is-right strong {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.home-design-main-visual {
  grid-area: visual;
  display: grid;
  place-items: center;
  min-height: 245px;
  margin: 0;
}

.home-design-main-visual img {
  display: block;
  width: min(100%, 310px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 15px 24px rgba(44, 78, 85, .1));
}

.home-design-carousel {
  max-width: 920px;
  margin: 24px auto 0;
}

.home-design-carousel-viewport {
  overflow: hidden;
}

.home-design-carousel-track {
  display: flex;
  gap: 28px;
  will-change: transform;
}

.home-design-carousel-track figure {
  flex: 0 0 calc((100% - 84px) / 4);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 7px solid #fff;
  background: #fff;
  box-shadow: 0 10px 24px rgba(43, 80, 88, .1);
}

.home-design-carousel-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-design-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 15px;
}

.home-design-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b9c4c7;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.home-design-carousel-dots button.is-active,
.home-design-carousel-dots button:hover,
.home-design-carousel-dots button:focus-visible {
  background: #2f4f56;
  transform: scale(1.22);
  outline: none;
}

.home-design-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: clamp(90px, 16vw, 200px);
  margin-top: 24px;
}

.home-design-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: #ff9559;
  color: #fff;
  font-size: 13px;
  font-weight: 820;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(255, 149, 89, .2);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.home-design-actions a:hover,
.home-design-actions a:focus-visible {
  background: #f18345;
  transform: translateY(-2px);
  box-shadow: 0 13px 26px rgba(241, 131, 69, .28);
  outline: none;
}

@media (max-width: 920px) {
  .home-design-sources {
    grid-template-areas:
      "visual visual"
      "left right";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .home-design-main-visual {
    min-height: 220px;
  }

  .home-design-carousel-track figure {
    flex-basis: calc((100% - 56px) / 3);
  }
}

@media (max-width: 680px) {
  .home-design-wave {
    height: 70px;
  }

  .home-design-inner {
    width: min(100% - 32px, 560px);
    padding: 86px 0 82px;
  }

  .home-design-heading p {
    margin-top: 13px;
    font-size: 13px;
  }

  .home-design-sources {
    grid-template-areas:
      "visual"
      "left"
      "right";
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .home-design-main-visual {
    min-height: 190px;
  }

  .home-design-main-visual img {
    width: min(78vw, 280px);
  }

  .home-design-source-list {
    gap: 12px;
  }

  .home-design-source-list article,
  .home-design-source-list.is-right article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  .home-design-source-list span,
  .home-design-source-list.is-right span {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .home-design-source-list strong,
  .home-design-source-list.is-right strong {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .home-design-carousel {
    margin-top: 26px;
  }

  .home-design-carousel-track {
    gap: 16px;
  }

  .home-design-carousel-track figure {
    flex-basis: calc((100% - 16px) / 2);
    border-width: 5px;
  }

  .home-design-actions {
    grid-template-columns: 1fr;
    gap: 11px;
    width: min(100%, 320px);
    margin: 22px auto 0;
  }

  .home-design-actions a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-design-carousel-track figure {
    flex-basis: 100%;
  }
}

/* Site-wide B2B quick quotation dialog */
body.quick-quote-open {
  overflow: hidden;
}

.quick-quote-modal[hidden] {
  display: none !important;
}

.quick-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.quick-quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 31, 35, .74);
  backdrop-filter: blur(5px);
}

.quick-quote-success-layer[hidden] {
  display: none !important;
}

.quick-quote-success-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(18, 34, 38, .56);
  backdrop-filter: blur(5px);
}

.quick-quote-success-card {
  width: min(450px, 100%);
  padding: 34px 32px 30px;
  border: 1px solid rgba(91, 157, 169, .18);
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 28px 74px rgba(7, 27, 32, .34);
  animation: quick-quote-success-in .28s ease-out both;
}

.quick-quote-success-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 17px;
  border: 7px solid #e5f4ed;
  border-radius: 50%;
  background: #52a97d;
  color: #fff;
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(82, 169, 125, .2);
}

.quick-quote-success-card h3 {
  margin: 0 0 12px;
  color: #3f7d88;
  font-size: clamp(23px, 3vw, 29px);
  font-weight: 830;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.quick-quote-success-card p {
  margin: 0;
  color: #425a60;
  font-size: 14px;
  font-weight: 570;
  line-height: 1.75;
}

.quick-quote-success-card small {
  display: block;
  margin-top: 12px;
  color: #819095;
  font-size: 12px;
  line-height: 1.65;
}

.quick-quote-success-card button {
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  padding: 11px 18px;
  border: 0;
  border-radius: 12px;
  background: #ff9559;
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 149, 89, .25);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.quick-quote-success-card button:hover,
.quick-quote-success-card button:focus-visible {
  background: #f18345;
  transform: translateY(-1px);
  box-shadow: 0 13px 28px rgba(241, 131, 69, .3);
  outline: 2px solid rgba(255, 149, 89, .26);
  outline-offset: 3px;
}

@keyframes quick-quote-success-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quick-quote-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 34px 40px 28px;
  border: 1px solid rgba(80, 133, 143, .18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(9, 27, 32, .34);
  scrollbar-width: thin;
  scrollbar-color: #abc9cf transparent;
}

.quick-quote-close {
  position: absolute;
  top: 15px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f6f7;
  color: #2c4d54;
  font: 500 26px/1 Arial, sans-serif;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.quick-quote-close:hover,
.quick-quote-close:focus-visible {
  background: #e2eef0;
  transform: rotate(4deg);
  outline: 2px solid rgba(80, 133, 143, .34);
  outline-offset: 2px;
}

.quick-quote-heading {
  padding: 0 34px 18px 0;
}

.quick-quote-heading h2 {
  margin: 0 0 10px;
  color: #5f9eaa;
  font-size: clamp(29px, 3vw, 38px);
  font-weight: 820;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.quick-quote-heading p {
  max-width: 580px;
  margin: 0;
  color: #53656a;
  font-size: 14px;
  line-height: 1.7;
}

.quick-quote-form {
  display: grid;
  gap: 12px;
}

.quick-quote-form label {
  display: grid;
  gap: 6px;
  color: #385e66;
  font-size: 13px;
  font-weight: 760;
}

.quick-quote-form :is(input[type="text"], input[type="email"], input[type="tel"], textarea) {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #d8e5e8;
  border-radius: 13px;
  background: #f5f8f9;
  color: #253d42;
  font: inherit;
  font-weight: 500;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quick-quote-form textarea {
  min-height: 106px;
  resize: vertical;
}

.quick-quote-form :is(input, textarea):focus {
  border-color: #6faab5;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(111, 170, 181, .14);
  outline: none;
}

.quick-quote-file input[type="file"] {
  width: 100%;
  padding: 8px;
  border: 1px dashed #bfd4d8;
  border-radius: 13px;
  background: #f7fafb;
  color: #5a6e73;
  font-size: 13px;
  font-weight: 500;
}

.quick-quote-file input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 13px;
  border: 0;
  border-radius: 9px;
  background: #e3eff1;
  color: #35636d;
  font-weight: 760;
  cursor: pointer;
}

.quick-quote-file small {
  color: #7a8b8f;
  font-size: 12px;
  font-weight: 500;
}

.quick-quote-status {
  min-height: 0;
  margin: 0;
  border-radius: 10px;
  color: #50656a;
  font-size: 13px;
  line-height: 1.5;
}

.quick-quote-status:not(:empty) {
  padding: 10px 12px;
  background: #f4f7f8;
}

.quick-quote-status[data-state="success"] {
  background: #eaf6f0;
  color: #25684a;
}

.quick-quote-status[data-state="error"] {
  background: #fff0ed;
  color: #a44231;
}

.quick-quote-submit {
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 13px;
  background: #ff9559;
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 149, 89, .25);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.quick-quote-submit:hover,
.quick-quote-submit:focus-visible {
  background: #f18345;
  transform: translateY(-1px);
  box-shadow: 0 13px 28px rgba(241, 131, 69, .3);
  outline: none;
}

.quick-quote-submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.quick-quote-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e7edef;
  text-align: center;
}

.quick-quote-footer p {
  margin: 0 0 8px;
  color: #52656a;
  font-size: 13px;
  font-weight: 700;
}

.quick-quote-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 18px;
}

.quick-quote-footer a {
  color: #397783;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.quick-quote-footer a:hover {
  color: #f18345;
}

.quick-quote-footer small {
  display: block;
  margin-top: 9px;
  color: #89979a;
  font-size: 11px;
}

@media (max-height: 800px) and (min-width: 641px) {
  .quick-quote-dialog {
    padding: 22px 34px 20px;
  }

  .quick-quote-close {
    top: 11px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .quick-quote-heading {
    padding-bottom: 11px;
  }

  .quick-quote-heading h2 {
    margin-bottom: 7px;
    font-size: 30px;
  }

  .quick-quote-heading p {
    line-height: 1.5;
  }

  .quick-quote-form {
    gap: 8px;
  }

  .quick-quote-form label {
    gap: 4px;
  }

  .quick-quote-form :is(input[type="text"], input[type="email"], input[type="tel"], textarea) {
    min-height: 42px;
    padding: 8px 14px;
  }

  .quick-quote-form textarea {
    min-height: 72px;
  }

  .quick-quote-file input[type="file"] {
    padding: 5px;
  }

  .quick-quote-submit {
    min-height: 44px;
    padding: 10px 18px;
  }

  .quick-quote-footer {
    margin-top: 12px;
    padding-top: 11px;
  }

  .quick-quote-footer p {
    margin-bottom: 5px;
  }

  .quick-quote-footer small {
    margin-top: 5px;
  }
}

@media (max-width: 640px) {
  .quick-quote-modal {
    align-items: end;
    padding: 10px;
  }

  .quick-quote-success-layer {
    padding: 16px;
  }

  .quick-quote-success-card {
    padding: 30px 22px 24px;
    border-radius: 19px;
  }

  .quick-quote-success-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    font-size: 26px;
  }

  .quick-quote-success-card button {
    margin-top: 18px;
  }

  .quick-quote-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 28px 18px 22px;
    border-radius: 20px;
  }

  .quick-quote-heading {
    padding-right: 40px;
  }

  .quick-quote-heading h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .quick-quote-footer div {
    display: grid;
    gap: 6px;
  }
}

/* Toy / blind-box theme layer inspired by Kinwin Toys */
:root {
  --ink: #25343a;
  --muted: #5e6970;
  --paper: #ffffff;
  --surface: #ffffff;
  --soft: #f2f8f9;
  --line: rgba(111, 168, 179, 0.22);
  --brand: #6fa8b3;
  --brand-dark: #4f8f9b;
  --accent: #fb965d;
  --coral: #fb965d;
  --blue: #6fa8b3;
  --shadow: 0 18px 42px rgba(43, 80, 88, 0.14);
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(251, 150, 93, 0.09), transparent 28vw),
    radial-gradient(circle at 92% 18%, rgba(111, 168, 179, 0.12), transparent 30vw),
    #fff;
  color: var(--ink);
}

.site-header {
  border-bottom: 1px solid rgba(111, 168, 179, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(43, 80, 88, 0.08);
}

.header-bar {
  min-height: 78px;
}

.brand-copy strong {
  color: #345960;
}

.brand-copy span {
  color: #fb965d;
  font-weight: 900;
}

.brand-logo-img {
  filter: none;
}

.nav-link {
  border-radius: 999px;
  color: #385a61;
  font-weight: 900;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-item.is-open > .nav-link {
  background: rgba(251, 150, 93, 0.14);
  color: #fb965d;
}

.icon-button,
.language-button {
  border-color: rgba(111, 168, 179, 0.24);
  background: #fff;
  color: #4f8f9b;
}

.inquire-button {
  border: 0;
  background: #fb965d;
  color: #fff;
  box-shadow: 0 12px 24px rgba(251, 150, 93, 0.24);
}

.mega-panel,
.compact-panel,
.language-panel {
  border: 1px solid rgba(111, 168, 179, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(43, 80, 88, 0.16);
}

.mega-grid section h2 {
  color: #fb965d;
}

.mega-grid a {
  border-radius: 14px;
  color: #31525a;
}

.mega-grid a:hover {
  background: rgba(111, 168, 179, 0.12);
  color: #4f8f9b;
}

.mega-icon {
  color: #fb965d;
}

.mega-promo {
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.9), transparent 24%),
    linear-gradient(135deg, #7bb5be, #5b9eaa);
}

.mega-promo img {
  opacity: 0.12;
  filter: blur(1px) saturate(0.8);
}

.mega-promo::before {
  content: "🧸";
  position: absolute;
  right: 28px;
  bottom: 18px;
  z-index: 1;
  font-size: 76px;
  filter: drop-shadow(0 10px 18px rgba(31, 47, 51, 0.18));
}

.mega-promo span,
.mega-promo strong {
  z-index: 2;
  color: #fff;
}

.hero {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  min-height: 650px;
  padding: 74px 0 82px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px -4vw 34px auto;
  width: min(58vw, 740px);
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(239, 248, 249, 0.92), rgba(255, 241, 232, 0.88));
  z-index: -1;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(251, 150, 93, 0.14);
  color: #fb965d;
  font-size: 14px;
}

.hero h1 {
  color: #385f67;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero h1::first-letter {
  color: #fb965d;
}

.hero p {
  max-width: 650px;
  color: #52656b;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.82;
}

.button {
  min-height: 50px;
  border-radius: 999px;
  font-weight: 950;
}

.button.primary {
  border-color: #fb965d;
  background: #fb965d;
  color: #fff;
  box-shadow: 0 16px 30px rgba(251, 150, 93, 0.24);
}

.button.ghost {
  border-color: rgba(111, 168, 179, 0.34);
  background: #fff;
  color: #4f8f9b;
}

.metric-row {
  max-width: 540px;
  border: 1px solid rgba(111, 168, 179, 0.2);
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 34px rgba(43, 80, 88, 0.08);
}

.metric-row strong {
  color: #fb965d;
}

.hero-media {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
  border-radius: 42px;
  background:
    radial-gradient(circle at 24% 24%, #fff 0 9%, transparent 10%),
    radial-gradient(circle at 78% 30%, rgba(251,150,93,0.28), transparent 20%),
    radial-gradient(circle at 26% 80%, rgba(111,168,179,0.32), transparent 22%),
    linear-gradient(135deg, #eef8f9, #fff4ec);
  box-shadow: 0 28px 70px rgba(43, 80, 88, 0.18);
  overflow: hidden;
}

.hero-media img {
  display: none;
}

.toy-hero-stage {
  position: absolute;
  inset: 0;
}

.toy-figure,
.toy-box,
.toy-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px rgba(43, 80, 88, 0.18);
}

.toy-figure {
  left: 50%;
  top: 48%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%) rotate(-5deg);
  border-radius: 44% 56% 48% 52%;
  background: #fff;
  font-size: 118px;
}

.toy-box {
  right: 13%;
  bottom: 16%;
  width: 128px;
  height: 128px;
  transform: rotate(8deg);
  border-radius: 26px;
  background: #fb965d;
  color: #fff;
  font-size: 72px;
  font-weight: 950;
}

.toy-box::before,
.toy-box::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.36);
}

.toy-box::before {
  inset: 0 auto 0 50%;
  width: 12px;
  transform: translateX(-50%);
}

.toy-box::after {
  inset: 50% 0 auto 0;
  height: 12px;
  transform: translateY(-50%);
}

.toy-bubble {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #4f8f9b;
  font-weight: 950;
}

.bubble-one {
  left: 8%;
  top: 17%;
}

.bubble-two {
  right: 10%;
  top: 18%;
  color: #fb965d;
}

.bubble-three {
  left: 10%;
  bottom: 18%;
}

.home-product-showcase {
  padding-top: 98px;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfb 100%);
}

.home-product-showcase .section-heading h2,
.customer-section-heading h2,
.partner-advantages-heading h2 {
  color: #6fa8b3;
  font-weight: 950;
}

.home-product-showcase .section-heading p {
  color: #52656b;
  font-weight: 700;
}

.home-product-tabs {
  gap: 14px;
}

.home-product-tabs button {
  min-height: 54px;
  border: 1px solid rgba(111, 168, 179, 0.18);
  background: #fff;
  box-shadow: 0 10px 22px rgba(43, 80, 88, 0.07);
  color: #456970;
}

.home-product-tabs button.is-active,
.home-product-tabs button:hover,
.home-product-tabs button:focus-visible {
  border-color: transparent;
  background: #fb965d;
  color: #fff;
  box-shadow: 0 14px 26px rgba(251, 150, 93, 0.22);
}

.home-product-card {
  padding: 14px 14px 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(43, 80, 88, 0.11);
}

.home-product-card figure {
  position: relative;
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.94), transparent 18%),
    linear-gradient(135deg, #eff8f9, #fff1e8);
}

.home-product-card figure::before {
  content: "🧸";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fb965d;
  font-size: clamp(72px, 8vw, 112px);
  z-index: 1;
}

.home-product-card:nth-child(2n) figure::before { content: "🎁"; }
.home-product-card:nth-child(3n) figure::before { content: "🦕"; }
.home-product-card:nth-child(4n) figure::before { content: "🐻"; }

.home-product-card img {
  opacity: 0.08;
  filter: blur(1px) saturate(0.8);
}

.home-product-card h3 {
  color: #385f67;
  font-size: 19px;
  font-weight: 950;
}

.home-product-card p {
  color: #5b6970;
  font-weight: 650;
}

.customer-section,
.partner-advantages-section,
.process-section {
  background: #fff;
}

.process-section {
  border-top: 1px solid rgba(111, 168, 179, 0.12);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero::before {
    inset: auto -8vw 24px -8vw;
    width: auto;
    height: 52%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 44px;
  }
  .hero-media {
    min-height: 360px;
    border-radius: 30px;
  }
  .toy-figure {
    width: 154px;
    height: 154px;
    font-size: 82px;
  }
  .toy-box {
    width: 88px;
    height: 88px;
    font-size: 48px;
  }
  .toy-bubble {
    font-size: 12px;
  }
}

/* Refine only the two toy service sections so they sit naturally with nearby modules. */
.customer-section,
.partner-advantages-section {
  box-sizing: border-box;
  width: min(1240px, calc(100% - 40px));
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(22px, 3.2vw, 44px);
  padding-left: clamp(22px, 3.2vw, 44px);
}

.customer-section {
  padding-top: 82px;
  padding-bottom: 72px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(251, 150, 93, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.partner-advantages-section {
  padding-top: 76px;
  padding-bottom: 78px;
  border-top: 1px solid rgba(111, 168, 179, 0.14);
}

.customer-section-heading,
.partner-advantages-heading {
  max-width: 940px;
}

.customer-section-heading {
  gap: 14px;
  margin-bottom: 34px;
}

.partner-advantages-heading {
  gap: 14px;
  margin-bottom: 38px;
}

.customer-section-heading h2,
.partner-advantages-heading h2 {
  font-size: clamp(28px, 2.65vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.partner-advantages-heading span {
  font-size: clamp(19px, 1.75vw, 26px);
}

.customer-section-heading p,
.partner-advantages-heading p {
  max-width: 820px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.customer-card-grid {
  width: 100%;
  max-width: 1088px;
  gap: 22px;
}

.customer-card-grid article {
  min-height: 178px;
  padding: 54px 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #73aeb8 0%, #669da7 100%);
  box-shadow: 0 14px 30px rgba(43, 80, 88, 0.15);
}

.customer-card-grid strong {
  font-size: 21px;
}

.customer-card-grid p {
  max-width: 286px;
  font-size: 14px;
  font-weight: 700;
}

.customer-section-note {
  margin-top: 24px;
  margin-bottom: 22px;
  font-size: 14px;
}

.customer-actions {
  gap: clamp(28px, 7vw, 120px);
}

.partner-advantage-grid {
  width: 100%;
  max-width: 1120px;
  gap: 22px;
}

.partner-advantage-grid article {
  min-height: 190px;
  padding: 56px 20px 22px;
  border-color: rgba(111, 168, 179, 0.18);
  border-radius: 22px;
  background: #f2f8f9;
  box-shadow: 0 12px 26px rgba(43, 80, 88, 0.12);
}

.customer-icon,
.partner-icon {
  width: 40px;
  height: 40px;
  font-size: 21px;
}

.partner-advantage-grid strong {
  font-size: 20px;
  line-height: 1.22;
}

.partner-advantage-grid p {
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .customer-card-grid,
  .partner-advantage-grid {
    max-width: 760px;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .customer-section,
  .partner-advantages-section {
    width: min(100% - 28px, 520px);
    padding-right: 16px;
    padding-left: 16px;
  }

  .customer-section {
    padding-top: 58px;
    padding-bottom: 56px;
    border-radius: 26px;
  }

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

  .customer-section-heading h2,
  .partner-advantages-heading h2 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .partner-advantages-heading span {
    font-size: clamp(18px, 5.6vw, 23px);
  }
}

/* Partner proof block below the advantages section, matching the provided Kinwin reference. */
.partner-proof-section {
  box-sizing: border-box;
  width: min(1240px, calc(100% - 40px));
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding: 72px clamp(22px, 3.2vw, 44px) 84px;
  background: #fff;
  text-align: center;
}

.partner-proof-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 930px;
  margin: 0 auto 44px;
}

.partner-proof-heading h2 {
  margin: 0;
  color: #fb965d;
  font-size: clamp(30px, 2.75vw, 42px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.partner-proof-heading p {
  max-width: 860px;
  margin: 0;
  color: #555b5e;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.72;
}

.partner-proof-layout {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}

.partner-proof-media {
  margin: 0;
}

.partner-proof-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 26px rgba(43, 80, 88, 0.16);
}

.partner-proof-card {
  display: grid;
  gap: 18px;
  padding: 30px 34px;
  border-radius: 24px;
  background: #edf5f6;
}

.partner-proof-card article {
  position: relative;
  display: grid;
  gap: 7px;
  padding-left: 26px;
}

.partner-proof-dot {
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fb965d;
}

.partner-proof-card strong {
  color: #6fa8b3;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.25;
}

.partner-proof-card p {
  margin: 0;
  color: #535b5f;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.58;
}

.partner-proof-note {
  max-width: 920px;
  margin: 32px auto 28px;
  color: #555b5e;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.partner-proof-note a {
  color: #6fa8b3;
  font-weight: 950;
  text-decoration: none;
}

.partner-proof-actions {
  display: flex;
  justify-content: center;
  gap: clamp(42px, 12vw, 180px);
  flex-wrap: wrap;
}

.partner-proof-button {
  display: inline-flex;
  min-width: 142px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  background: #fb965d;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(251, 150, 93, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.partner-proof-button:hover,
.partner-proof-button:focus-visible {
  transform: translateY(-2px);
  background: #f48646;
  box-shadow: 0 14px 26px rgba(251, 150, 93, 0.24);
  outline: none;
}

@media (max-width: 980px) {
  .partner-proof-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .partner-proof-section {
    width: min(100% - 28px, 520px);
    padding: 56px 16px 62px;
  }

  .partner-proof-heading {
    margin-bottom: 32px;
  }

  .partner-proof-heading h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .partner-proof-layout {
    gap: 26px;
  }

  .partner-proof-card {
    padding: 24px 20px;
  }

  .partner-proof-card strong {
    font-size: 18px;
  }

  .partner-proof-actions {
    gap: 16px;
  }
}

/* Factory service section: softer card layout that matches the toy homepage. */
.factory-section {
  box-sizing: border-box;
  width: min(1280px, calc(100% - 40px));
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 72px;
  padding-bottom: 78px;
}

.factory-layout {
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  gap: clamp(46px, 5vw, 76px);
  align-items: center;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(34px, 4.6vw, 58px);
  border: 1px solid rgba(111, 168, 179, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 10%, rgba(251, 150, 93, 0.12), transparent 25%),
    radial-gradient(circle at 96% 88%, rgba(111, 168, 179, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4fafb 100%);
  box-shadow:
    0 28px 58px rgba(43, 80, 88, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.factory-media {
  justify-self: center;
  width: 100%;
  max-width: 520px;
  border: 8px solid #fff;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 42px rgba(43, 80, 88, 0.18);
}

.factory-media img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.factory-copy {
  gap: 18px;
  max-width: 610px;
}

.factory-copy h2 {
  max-width: 600px;
  color: #315a63;
  font-size: clamp(30px, 2.65vw, 40px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.factory-copy p {
  font-size: 15px;
  line-height: 1.78;
}

.factory-lead {
  color: #4f646a;
  font-size: 16px !important;
  font-weight: 800;
}

.factory-note {
  margin: 4px 0;
  padding: 26px 30px;
  border: 1px solid rgba(111, 168, 179, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(43, 80, 88, 0.07);
}

.factory-strong {
  color: #315a63 !important;
  font-weight: 950;
  text-decoration: none;
}

.factory-actions {
  gap: 16px;
  margin-top: 12px;
}

.factory-button {
  min-width: 148px;
  min-height: 44px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 950;
}

.factory-button-light {
  background: #fff;
  color: #456970;
  box-shadow: inset 0 0 0 1px rgba(111, 168, 179, 0.18);
}

.factory-button-dark {
  background: #fb965d;
  color: #fff;
}

@media (max-width: 980px) {
  .factory-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .factory-media {
    max-width: 560px;
  }

  .factory-copy {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .factory-section {
    width: min(100% - 28px, 520px);
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .factory-layout {
    gap: 24px;
    padding: 20px;
    border-radius: 28px;
  }

  .factory-media {
    max-width: 100%;
    border-radius: 20px;
  }

  .factory-copy {
    gap: 13px;
  }

  .factory-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .factory-note {
    padding: 20px 18px;
  }
}

/* Process section theme colors only: keep the original layout, update the toy brand palette. */
.process-section .section-heading h2 {
  color: #315a63;
  font-weight: 900;
}

.process-section .section-heading p {
  color: #52656b;
  font-weight: 650;
}

.process-list::before {
  opacity: 1;
  background:
    linear-gradient(63deg, transparent 0 30%, rgba(111, 168, 179, 0.18) 31% 62%, transparent 63%) 0 0 / 34px 30px repeat-x,
    linear-gradient(117deg, transparent 0 30%, rgba(251, 150, 93, 0.16) 31% 62%, transparent 63%) 17px 0 / 34px 30px repeat-x;
}

.process-index {
  background: #fb965d;
  color: #fff;
  box-shadow: 0 0 0 5px #fff, 0 8px 18px rgba(251, 150, 93, 0.2);
}

.process-icon {
  color: #6fa8b3;
}

.process-list strong {
  color: #315a63;
  font-weight: 800;
}

/* Fix product mega-menu promo background: remove old packaging image bleed-through. */
.product-panel .mega-promo {
  min-height: 420px;
  border: 1px solid rgba(111, 168, 179, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 80% 76%, rgba(251, 150, 93, 0.18), transparent 28%),
    linear-gradient(145deg, #eef8f9 0%, #d9f0f2 48%, #fdf0e8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.product-panel .mega-promo img {
  display: none;
}

.product-panel .mega-promo::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 28% 82%, rgba(111, 168, 179, 0.22), transparent 30%);
}

.product-panel .mega-promo::before {
  content: "🧸";
  position: absolute;
  right: 30px;
  bottom: 24px;
  z-index: 2;
  font-size: 76px;
  filter: drop-shadow(0 12px 18px rgba(43, 80, 88, 0.18));
}

.product-panel .mega-promo span,
.product-panel .mega-promo strong {
  color: #315a63;
  text-shadow: none;
}

.product-panel .mega-promo span {
  color: #fb965d;
  font-weight: 950;
}

/* Unified toy product detail page inspired by Kinwin's product-page structure. */
.detail-hero {
  align-items: center;
  padding-top: 72px;
  padding-bottom: 58px;
}

.detail-summary {
  gap: 20px;
}

.detail-summary .eyebrow {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edf5f6;
  color: #4f8f9b;
  font-weight: 950;
}

.detail-summary h1,
h1[data-detail-title] {
  color: #315a63;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.detail-summary p {
  color: #52656b;
  font-weight: 650;
}

.gallery-main {
  border: 10px solid #fff;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 22%, rgba(251, 150, 93, 0.12), transparent 25%),
    linear-gradient(135deg, #edf8f9, #fff1e8);
  box-shadow: 0 24px 48px rgba(43, 80, 88, 0.14);
}

.thumb-row button {
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(43, 80, 88, 0.08);
}

.thumb-row button.is-active {
  border-color: #fb965d;
}

.button.whatsapp,
.button.primary {
  border-color: #fb965d;
  background: #fb965d;
  color: #fff;
}

.button.ghost {
  border-color: rgba(111, 168, 179, 0.22);
  background: #fff;
  color: #456970;
}

.parameter-table,
.info-table table {
  border-color: rgba(111, 168, 179, 0.18);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(43, 80, 88, 0.08);
}

.parameter-table th,
.info-table th {
  background: #edf5f6;
  color: #315a63;
}

.detail-content {
  padding-top: 8px;
}

.detail-tabs {
  top: 86px;
  gap: 10px;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.detail-tabs a {
  border-color: rgba(111, 168, 179, 0.18);
  background: #fff;
  color: #456970;
  box-shadow: 0 10px 22px rgba(43, 80, 88, 0.06);
}

.detail-tabs a:hover,
.detail-tabs a:focus-visible {
  border-color: transparent;
  background: #fb965d;
  color: #fff;
  outline: none;
}

.toy-detail-page {
  display: grid;
  gap: 30px;
  padding-top: 22px;
}

.toy-detail-section {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(111, 168, 179, 0.14);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(43, 80, 88, 0.08);
}

.toy-detail-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 8% 12%, rgba(251, 150, 93, 0.1), transparent 26%),
    linear-gradient(135deg, #fff, #f5fbfb);
}

.toy-detail-copy,
.toy-detail-heading {
  display: grid;
  gap: 12px;
}

.toy-detail-copy span,
.toy-detail-heading span,
.toy-detail-cta span {
  color: #fb965d;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.toy-detail-copy h2,
.toy-detail-heading h2,
.toy-detail-cta h2 {
  margin: 0;
  color: #315a63;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.toy-detail-copy p,
.toy-detail-heading p,
.toy-detail-cta p {
  margin: 0;
  color: #52656b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
}

.toy-detail-benefits,
.toy-detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.toy-detail-benefits article,
.toy-detail-card-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(111, 168, 179, 0.14);
  border-radius: 22px;
  background: #f6fbfb;
}

.toy-detail-benefits strong,
.toy-detail-card-grid strong {
  color: #315a63;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.3;
}

.toy-detail-card-grid p {
  margin: 0;
  color: #52656b;
  font-size: 14px;
  line-height: 1.65;
}

.toy-detail-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.toy-detail-chip-grid article,
.toy-detail-list p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #edf5f6;
  color: #315a63;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.toy-detail-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.toy-detail-list {
  display: grid;
  gap: 12px;
}

.toy-detail-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.toy-detail-process li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: #f6fbfb;
  color: #315a63;
  font-weight: 850;
}

.toy-detail-process span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #fb965d;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  flex: 0 0 auto;
}

.toy-detail-card-grid.compact {
  margin-top: 24px;
}

.toy-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 34px;
  background: linear-gradient(135deg, #315a63, #6fa8b3);
  color: #fff;
}

.toy-detail-cta h2,
.toy-detail-cta p,
.toy-detail-cta span {
  color: #fff;
}

.toy-detail-cta .button {
  flex: 0 0 auto;
  border-color: #fff;
  background: #fb965d;
  color: #fff;
}

/* Product center / category landing page for toy catalog. */
.product-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 7vw, 94px) clamp(26px, 4.2vw, 58px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 150, 93, 0.14), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(111, 168, 179, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4fafb 100%);
  box-shadow: 0 24px 52px rgba(43, 80, 88, 0.1);
}

.product-hub-copy {
  display: grid;
  gap: 18px;
}

.product-hub-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #315a63;
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.product-hub-copy p {
  max-width: 760px;
  margin: 0;
  color: #52656b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.product-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.product-hub-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(111, 168, 179, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(43, 80, 88, 0.1);
}

.product-hub-panel > span,
.product-solution-band span,
.category-overview-copy span {
  color: #fb965d;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-hub-panel > strong {
  color: #315a63;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.2;
}

.product-hub-panel > p {
  margin: 0;
  color: #52656b;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.product-hub-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-hub-metrics span {
  display: grid;
  gap: 4px;
  padding: 14px 10px;
  border-radius: 18px;
  background: #edf5f6;
  text-align: center;
}

.product-hub-metrics strong {
  color: #fb965d;
  font-size: 20px;
  font-weight: 950;
}

.product-hub-metrics small {
  color: #456970;
  font-size: 11px;
  font-weight: 900;
}

.blind-box-choice-hero {
  position: relative;
  width: min(100%, 100vw);
  margin: 0 auto;
  padding: 128px max(24px, calc((100vw - 1240px) / 2)) 92px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 26%, rgba(255,255,255,0.78) 0 16%, transparent 34%),
    radial-gradient(ellipse at 68% 24%, rgba(255,255,255,0.72) 0 18%, transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f1f8f9 45%, #edf6f7 100%);
}

.blind-box-choice-hero::before,
.blind-box-choice-hero::after {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  z-index: 0;
  height: 120px;
  border-radius: 50%;
  background: #b8d4d8;
}

.blind-box-choice-hero::before {
  top: -72px;
  transform: rotate(-2deg);
}

.blind-box-choice-hero::after {
  bottom: -82px;
  background: rgba(255,255,255,0.82);
  transform: rotate(3deg);
}

.blind-box-choice-heading,
.blind-box-choice-layout,
.blind-box-choice-actions {
  position: relative;
  z-index: 1;
}

.blind-box-choice-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.blind-box-choice-heading h1 {
  max-width: 620px;
  margin: 0;
  color: #fb965d;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.blind-box-choice-heading p {
  margin: 0;
  color: #4d5e63;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.75;
}

.blind-box-choice-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 360px) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1080px;
  margin: 0 auto;
}

.blind-box-choice-points {
  display: grid;
  gap: 28px;
}

.blind-box-choice-points article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}

.blind-box-choice-points.right article {
  grid-template-columns: 1fr 52px;
  text-align: right;
}

.blind-box-choice-points.right article span {
  order: 2;
}

.blind-box-choice-points article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #fb965d;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(251, 150, 93, 0.22);
}

.blind-box-choice-points strong {
  display: block;
  color: #6fa8b3;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.28;
}

.blind-box-choice-points p {
  margin: 4px 0 0;
  color: #4d5e63;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.blind-box-choice-product {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
}

.blind-box-plush {
  position: relative;
  z-index: 2;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border-radius: 42% 42% 46% 46%;
  background: linear-gradient(145deg, #ffd8c7, #f6a58a);
  font-size: 92px;
  box-shadow: 0 20px 38px rgba(43, 80, 88, 0.16);
}

.blind-box-pack {
  position: absolute;
  right: 24px;
  top: 42px;
  display: grid;
  width: 132px;
  height: 126px;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.32), transparent 38%),
    linear-gradient(145deg, #a9dce2, #f8d58f);
  color: rgba(255,255,255,0.8);
  font-size: 54px;
  font-weight: 950;
  transform: rotate(4deg);
  box-shadow: 0 16px 28px rgba(43, 80, 88, 0.14);
}

.blind-box-choice-actions {
  display: flex;
  justify-content: center;
  gap: clamp(120px, 18vw, 260px);
  flex-wrap: wrap;
  margin-top: 42px;
}

.blind-box-choice-actions .button {
  min-width: 168px;
  border-radius: 999px;
  background: #fb965d;
  color: #fff;
  font-weight: 950;
}

@media (max-width: 980px) {
  .blind-box-choice-hero {
    padding-top: 96px;
  }

  .blind-box-choice-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .blind-box-choice-points.right article {
    grid-template-columns: 52px 1fr;
    text-align: left;
  }

  .blind-box-choice-points.right article span {
    order: 0;
  }

  .blind-box-choice-product {
    order: -1;
  }

  .blind-box-choice-actions {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .blind-box-choice-hero {
    padding: 82px 18px 64px;
  }

  .blind-box-choice-heading {
    margin-bottom: 42px;
  }

  .blind-box-choice-heading h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
}

.product-category-strip {
  width: min(1240px, calc(100% - 40px));
  margin: 26px auto 0;
}

.product-category-strip > div {
  display: flex;
  gap: 12px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid rgba(111, 168, 179, 0.14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(43, 80, 88, 0.07);
}

.product-category-strip a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #456970;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.product-category-strip a.is-active,
.product-category-strip a:hover,
.product-category-strip a:focus-visible {
  background: #fb965d;
  color: #fff;
  outline: none;
}

.product-category-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 46px);
  width: min(1240px, calc(100% - 40px));
  margin: 28px auto 0;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(43, 80, 88, 0.08);
}

.category-overview-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.category-overview-copy h2,
.product-solution-band h2 {
  margin: 0;
  color: #315a63;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 950;
  line-height: 1.18;
}

.category-overview-copy p,
.product-solution-band p {
  margin: 0;
  color: #52656b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
}

.category-overview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.category-overview-cards article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  background: #edf5f6;
}

.category-overview-cards strong {
  color: #315a63;
  font-size: 17px;
  font-weight: 950;
}

.category-overview-cards p {
  margin: 0;
  color: #52656b;
  font-size: 13px;
  line-height: 1.62;
}

.product-category-overview:has(.blind-box-collection-grid),
.product-category-overview:has(.plant-plush-collection-grid),
.product-category-overview:has(.animal-plush-collection-grid),
.product-category-overview:has(.interactive-plush-collection-grid),
.product-category-overview:has(.crochet-plush-collection-grid),
.product-category-overview:has(.ai-plush-collection-grid),
.product-category-overview:has(.realistic-plush-collection-grid),
.product-category-overview:has(.plush-keychain-collection-grid),
.product-category-overview:has(.marine-plush-collection-grid),
.product-category-overview:has(.plush-cushion-collection-grid),
.product-category-overview:has(.hand-puppet-collection-grid),
.product-category-overview:has(.dinosaur-plush-collection-grid),
.product-category-overview:has(.weighted-plush-collection-grid) {
  display: block;
  width: min(1240px, calc(100% - 40px));
  padding: clamp(26px, 4vw, 44px);
  background: #eef7f8;
  box-shadow: none;
}

.blind-box-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 34px;
}

.blind-box-collection-card {
  display: grid;
  gap: 14px;
}

.blind-box-collection-card figure {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(43, 80, 88, 0.18);
}

.blind-box-collection-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blind-box-collection-card h2 {
  margin: 0;
  color: #6fa8b3;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
}

.blind-box-collection-card p {
  margin: 0;
  color: #263f46;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
}

.plant-plush-collection-grid,
.animal-plush-collection-grid,
.interactive-plush-collection-grid,
.crochet-plush-collection-grid,
.ai-plush-collection-grid,
.realistic-plush-collection-grid,
.plush-keychain-collection-grid,
.marine-plush-collection-grid,
.plush-cushion-collection-grid,
.hand-puppet-collection-grid,
.dinosaur-plush-collection-grid,
.weighted-plush-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 34px;
}

.plant-plush-collection-card,
.animal-plush-collection-card,
.interactive-plush-collection-card,
.crochet-plush-collection-card,
.ai-plush-collection-card,
.realistic-plush-collection-card,
.plush-keychain-collection-card,
.marine-plush-collection-card,
.plush-cushion-collection-card,
.hand-puppet-collection-card,
.dinosaur-plush-collection-card,
.weighted-plush-collection-card {
  display: grid;
  gap: 14px;
  text-align: center;
}

.plant-plush-collection-card figure,
.animal-plush-collection-card figure,
.interactive-plush-collection-card figure,
.crochet-plush-collection-card figure,
.ai-plush-collection-card figure,
.realistic-plush-collection-card figure,
.plush-keychain-collection-card figure,
.marine-plush-collection-card figure,
.plush-cushion-collection-card figure,
.hand-puppet-collection-card figure,
.dinosaur-plush-collection-card figure,
.weighted-plush-collection-card figure {
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(43, 80, 88, 0.22);
}

.plant-plush-collection-card img,
.animal-plush-collection-card img,
.interactive-plush-collection-card img,
.crochet-plush-collection-card img,
.ai-plush-collection-card img,
.realistic-plush-collection-card img,
.plush-keychain-collection-card img,
.marine-plush-collection-card img,
.plush-cushion-collection-card img,
.hand-puppet-collection-card img,
.dinosaur-plush-collection-card img,
.weighted-plush-collection-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-plush-collection-card h2,
.animal-plush-collection-card h2,
.interactive-plush-collection-card h2,
.crochet-plush-collection-card h2,
.ai-plush-collection-card h2,
.realistic-plush-collection-card h2,
.plush-keychain-collection-card h2,
.marine-plush-collection-card h2,
.plush-cushion-collection-card h2,
.hand-puppet-collection-card h2,
.dinosaur-plush-collection-card h2,
.weighted-plush-collection-card h2 {
  margin: 0;
  color: #6fa8b3;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
}

.product-category-extra {
  display: grid;
  gap: 28px;
  width: min(1240px, calc(100% - 40px));
  margin: 28px auto 0;
}

.blind-box-extra-block {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
  padding: clamp(30px, 4.2vw, 50px);
  border: 1px solid rgba(111, 168, 179, 0.14);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(43, 80, 88, 0.08);
}

.blind-box-extra-block.is-featured {
  grid-template-columns: 1fr;
  gap: 34px;
  padding: clamp(36px, 5vw, 62px) clamp(18px, 3vw, 34px);
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.blind-box-extra-block.is-soft {
  position: relative;
  grid-template-columns: 1fr;
  gap: clamp(34px, 4.8vw, 54px);
  padding: clamp(38px, 5vw, 66px) clamp(18px, 3vw, 34px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.blind-box-extra-block.is-soft::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background: #eef7f8;
  transform: translateX(-50%);
}

.blind-box-extra-block.is-process {
  grid-template-columns: 1fr;
  gap: clamp(34px, 4.8vw, 54px);
  padding: clamp(38px, 5vw, 66px) clamp(18px, 3vw, 34px);
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.blind-box-extra-heading {
  display: grid;
  gap: 12px;
}

.blind-box-extra-heading span {
  color: #fb965d;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blind-box-extra-heading h2 {
  margin: 0;
  color: #315a63;
  font-size: clamp(26px, 2.55vw, 38px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.blind-box-extra-heading p {
  margin: 0;
  color: #52656b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.78;
}

.blind-box-extra-block.is-featured .blind-box-extra-heading {
  max-width: 860px;
  margin: 0 auto 8px;
  text-align: center;
}

.blind-box-extra-block.is-featured .blind-box-extra-heading h2 {
  color: #fb965d;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.01em;
}

.blind-box-extra-block.is-featured .blind-box-extra-heading p {
  color: #4e5558;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
}

.blind-box-extra-block.is-process .blind-box-extra-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.blind-box-extra-block.is-process .blind-box-extra-heading h2 {
  color: #fb965d;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.01em;
}

.blind-box-extra-block.is-process .blind-box-extra-heading p {
  color: #4e5558;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
}

.blind-box-extra-block.is-soft .blind-box-extra-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blind-box-extra-block.is-soft .blind-box-extra-heading h2 {
  color: #fb965d;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.01em;
}

.blind-box-extra-block.is-soft .blind-box-extra-heading p {
  color: #4e5558;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
}

.blind-box-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blind-box-extra-grid article {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(111, 168, 179, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(43, 80, 88, 0.06);
}

.blind-box-extra-block.is-featured .blind-box-extra-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(850px, 100%);
  margin: 0 auto;
}

.blind-box-extra-block.is-featured .blind-box-extra-grid article {
  place-items: center;
  gap: 12px;
  min-height: 154px;
  padding: 18px 18px 20px;
  border: 0;
  border-radius: 18px;
  background: #6fa8b3;
  box-shadow: 0 8px 18px rgba(43, 80, 88, 0.24);
  text-align: center;
}

.blind-box-extra-block.is-featured .blind-box-extra-grid article + article {
  margin-left: -1px;
}

.blind-box-extra-block.is-process .blind-box-extra-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 30px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.blind-box-extra-block.is-process .blind-box-extra-grid article {
  gap: 12px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.blind-box-extra-block.is-process .blind-box-extra-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 800 / 479;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(25, 39, 43, 0.28);
}

.blind-box-extra-block.is-soft .blind-box-extra-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 54px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.blind-box-extra-block.is-soft .blind-box-extra-grid article {
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blind-box-extra-block.is-soft .blind-box-extra-grid img {
  grid-row: 1 / span 2;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(25, 39, 43, 0.24);
}

.blind-box-extra-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #fb965d;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.blind-box-extra-grid strong {
  color: #315a63;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.3;
}

.blind-box-extra-block.is-featured .blind-box-extra-grid strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.blind-box-extra-block.is-process .blind-box-extra-grid strong {
  color: #6fa8b3;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.22;
}

.blind-box-extra-block.is-soft .blind-box-extra-grid strong {
  align-self: end;
  color: #6fa8b3;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.25;
}

.blind-box-extra-grid p {
  margin: 0;
  color: #52656b;
  font-size: 14px;
  line-height: 1.65;
}

.blind-box-extra-block.is-featured .blind-box-extra-grid p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.blind-box-extra-block.is-process .blind-box-extra-grid p {
  color: #4b5558;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.6;
}

.blind-box-material-details {
  display: grid;
  gap: 8px;
  align-self: start;
}

.blind-box-extra-block.is-soft .blind-box-material-details p {
  color: #4b5558;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.blind-box-extra-footer {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.blind-box-extra-footer h3 {
  margin: 0;
  color: #263f46;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.25;
}

.blind-box-extra-footer p {
  margin: 0;
  color: #4e5558;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
}

.blind-box-quality-section {
  display: grid;
  gap: clamp(34px, 4vw, 52px);
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 70px) 0;
}

.blind-box-quality-heading {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blind-box-quality-heading h2,
.blind-box-faq-panel h2 {
  margin: 0;
  color: #fb965d;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.blind-box-quality-heading p {
  margin: 0;
  color: #4e5558;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
}

.blind-box-quality-layout {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  justify-items: center;
}

.blind-box-quality-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(920px, 100%);
}

.blind-box-quality-list article {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 26px 22px;
  border-radius: 22px;
  background: #f5fbfb;
  text-align: center;
  box-shadow: 0 14px 30px rgba(43, 80, 88, 0.08);
}

.blind-box-quality-list article > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #fb965d;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(251, 150, 93, 0.24);
}

.blind-box-quality-list h3 {
  margin: 0 0 6px;
  color: #6fa8b3;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.25;
}

.blind-box-quality-list p {
  margin: 0;
  color: #4e5558;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
}

.blind-box-faq-section {
  position: relative;
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: clamp(54px, 6vw, 84px) 20px clamp(64px, 7vw, 92px);
  overflow: hidden;
  background: #c9d3e4;
}

.blind-box-faq-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  background: linear-gradient(176deg, rgba(255,255,255,0.86) 0 42%, rgba(255,255,255,0.34) 43% 58%, transparent 59%);
}

.blind-box-faq-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.blind-box-faq-panel h2 {
  text-align: center;
}

.blind-box-faq-list {
  display: grid;
  gap: 9px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(246, 252, 252, 0.9);
}

.blind-box-faq-list details {
  overflow: hidden;
  border: 1px solid rgba(43, 80, 88, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  transition: border-radius 0.2s ease, background 0.2s ease;
}

.blind-box-faq-list details[open] {
  border-color: transparent;
  border-radius: 20px;
  background: transparent;
}

.blind-box-faq-list summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 8px 14px;
  color: #263f46;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.blind-box-faq-list summary::-webkit-details-marker {
  display: none;
}

.blind-box-faq-list summary::before {
  content: "⌄";
  display: inline-grid;
  width: 14px;
  height: 14px;
  place-items: center;
  color: #263f46;
  font-size: 12px;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

.blind-box-faq-list details[open] summary::before {
  transform: rotate(180deg);
}

.blind-box-faq-list details[open] summary {
  border-radius: 999px;
  background: rgba(255,255,255,0.48);
}

.blind-box-faq-list details p {
  margin: 0;
  padding: 18px 26px 20px;
  border-radius: 18px;
  background: #6fa8b3;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.7;
}

.plush-production-flow-section {
  display: grid;
  gap: clamp(34px, 4vw, 50px);
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 6vw, 78px) 0 clamp(44px, 5vw, 66px);
  background: #fff;
}

.plush-production-flow-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.plush-production-flow-heading h2 {
  margin: 0;
  color: #fb965d;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.plush-production-flow-heading p {
  margin: 0;
  color: #4e5558;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
}

.plush-production-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 30px;
}

.plush-production-flow-grid article {
  display: grid;
  gap: 12px;
  text-align: center;
}

.plush-production-flow-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 800 / 479;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(25, 39, 43, 0.28);
}

.plush-production-flow-grid h3 {
  margin: 0;
  color: #6fa8b3;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.22;
}

.plush-production-flow-grid p {
  margin: 0;
  color: #4b5558;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.6;
}

.plush-production-flow-actions {
  display: flex;
  justify-content: center;
  gap: clamp(150px, 22vw, 310px);
  margin-top: -4px;
}

.plush-production-flow-actions .button {
  min-width: 132px;
  padding: 12px 20px;
  font-size: 13px;
}

.blind-box-extra-actions {
  display: flex;
  justify-content: center;
  gap: clamp(160px, 23vw, 320px);
  margin-top: -8px;
}

.blind-box-extra-actions .button {
  min-width: 142px;
  padding: 12px 22px;
  font-size: 14px;
}

.product-solution-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  margin: 28px auto 0;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 32px;
  background: linear-gradient(135deg, #315a63, #6fa8b3);
}

.product-solution-band h2,
.product-solution-band p,
.product-solution-band span {
  color: #fff;
}

.product-solution-band > div {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.catalog-layout {
  align-items: start;
  margin-top: 34px;
}

.filter-panel {
  border-color: rgba(111, 168, 179, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(43, 80, 88, 0.08);
}

.filter-panel h2 {
  color: #315a63;
}

.filter-panel button {
  border-radius: 999px;
}

.filter-panel button.is-selected {
  border-color: #fb965d;
  background: #fb965d;
  color: #fff;
}

.advisor-card {
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 16%, rgba(251, 150, 93, 0.12), transparent 28%),
    linear-gradient(135deg, #fff, #f5fbfb);
  box-shadow: 0 18px 40px rgba(43, 80, 88, 0.08);
}

.advisor-card h2,
.catalog-card h2,
.recommended h2 {
  color: #315a63;
}

.catalog-toolbar {
  padding: 18px 20px;
  border: 1px solid rgba(111, 168, 179, 0.14);
  border-radius: 24px;
  background: #fff;
}

.catalog-grid {
  gap: 22px;
}

.catalog-card {
  border: 1px solid rgba(111, 168, 179, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(43, 80, 88, 0.09);
}

.catalog-card img {
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.94), transparent 18%),
    linear-gradient(135deg, #eff8f9, #fff1e8);
}

.catalog-tags span {
  border-radius: 999px;
  background: #edf5f6;
  color: #456970;
}

.catalog-card .button.ghost {
  justify-self: start;
  border-color: rgba(251, 150, 93, 0.24);
  color: #fb965d;
}

.recommended {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(43, 80, 88, 0.08);
}

.recommended-row article {
  border-color: rgba(111, 168, 179, 0.14);
  border-radius: 22px;
}

@media (max-width: 980px) {
  .product-hub-hero,
  .product-category-overview,
  .blind-box-extra-block {
    grid-template-columns: 1fr;
  }

  .category-overview-cards,
  .blind-box-extra-grid {
    grid-template-columns: 1fr;
  }

  .blind-box-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plant-plush-collection-grid,
  .animal-plush-collection-grid,
  .interactive-plush-collection-grid,
  .crochet-plush-collection-grid,
  .ai-plush-collection-grid,
  .realistic-plush-collection-grid,
  .plush-keychain-collection-grid,
  .marine-plush-collection-grid,
  .plush-cushion-collection-grid,
  .hand-puppet-collection-grid,
  .dinosaur-plush-collection-grid,
  .weighted-plush-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .blind-box-extra-block.is-featured .blind-box-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .blind-box-extra-block.is-process .blind-box-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .blind-box-extra-block.is-soft .blind-box-extra-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(620px, 100%);
  }

  .blind-box-quality-layout {
    grid-template-columns: 1fr;
  }

  .blind-box-quality-list {
    grid-template-columns: 1fr;
    width: min(520px, 100%);
  }

  .plush-production-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .plush-production-flow-actions {
    gap: 24px;
  }

  .blind-box-extra-block.is-featured .blind-box-extra-grid article + article {
    margin-left: 0;
  }

  .blind-box-extra-actions {
    gap: 24px;
  }

  .product-solution-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .product-hub-hero,
  .product-category-overview,
  .product-category-extra,
  .product-solution-band {
    width: min(100% - 28px, 520px);
  }

  .blind-box-extra-block {
    border-radius: 26px;
    padding: 22px 18px;
  }

  .blind-box-collection-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plant-plush-collection-grid,
  .animal-plush-collection-grid,
  .interactive-plush-collection-grid,
  .crochet-plush-collection-grid,
  .ai-plush-collection-grid,
  .realistic-plush-collection-grid,
  .plush-keychain-collection-grid,
  .marine-plush-collection-grid,
  .plush-cushion-collection-grid,
  .hand-puppet-collection-grid,
  .dinosaur-plush-collection-grid,
  .weighted-plush-collection-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blind-box-extra-block.is-featured .blind-box-extra-grid {
    grid-template-columns: 1fr;
  }

  .blind-box-extra-block.is-process .blind-box-extra-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blind-box-extra-block.is-soft .blind-box-extra-grid article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blind-box-extra-block.is-soft .blind-box-extra-grid img {
    grid-row: auto;
  }

  .blind-box-quality-section {
    width: min(100% - 28px, 560px);
  }

  .blind-box-faq-section {
    padding-inline: 14px;
  }

  .blind-box-faq-list {
    padding: 14px;
  }

  .plush-production-flow-section {
    width: min(100% - 28px, 520px);
  }

  .plush-production-flow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .plush-production-flow-actions {
    align-items: center;
    flex-direction: column;
  }

  .blind-box-extra-actions {
    align-items: center;
    flex-direction: column;
  }

  .product-hub-metrics {
    grid-template-columns: 1fr;
  }

  .product-category-strip {
    width: min(100% - 28px, 520px);
  }
}

@media (max-width: 980px) {
  .toy-detail-overview,
  .toy-detail-split {
    grid-template-columns: 1fr;
  }

  .toy-detail-chip-grid,
  .toy-detail-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toy-detail-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .detail-hero {
    padding-top: 48px;
    padding-bottom: 38px;
  }

  .toy-detail-section,
  .toy-detail-cta {
    border-radius: 24px;
    padding: 22px 18px;
  }

  .toy-detail-benefits,
  .toy-detail-card-grid,
  .toy-detail-chip-grid,
  .toy-detail-process {
    grid-template-columns: 1fr;
  }
}

/* About page visual refinement: calm toy-industry palette and unified typography. */
.about-page {
  --about-ink: #29434a;
  --about-muted: #5c6d72;
  --about-blue: #69a7b3;
  --about-blue-dark: #427b86;
  --about-orange: #fb965d;
  --about-soft: #eef7f8;
  --about-warm: #fff7f1;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 5%, rgba(251, 150, 93, 0.09), transparent 25rem),
    radial-gradient(circle at 94% 22%, rgba(105, 167, 179, 0.11), transparent 28rem),
    #f9fcfc;
  color: var(--about-ink);
  font-synthesis: none;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page strong {
  letter-spacing: -0.015em;
}

.about-page p {
  color: var(--about-muted);
  line-height: 1.82;
}

.about-intro {
  gap: 54px;
  padding-top: 84px;
  padding-bottom: 82px;
}

.about-intro-heading {
  gap: 18px;
}

.about-intro-heading h1 {
  color: var(--about-blue-dark);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 850;
  line-height: 1.16;
}

.about-intro-heading h1::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: var(--about-orange);
}

.about-intro-heading p {
  max-width: 820px;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.82;
}

.about-stats {
  gap: 18px;
}

.about-stats article {
  min-height: 116px;
  padding: 22px 18px;
  border: 1px solid rgba(105, 167, 179, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(43, 80, 88, 0.08);
}

.about-stats span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 150, 93, 0.14);
  color: var(--about-orange);
  font-size: 18px;
}

.about-stats strong {
  color: var(--about-blue-dark);
  font-size: 30px;
  font-weight: 850;
}

.about-stats small {
  color: var(--about-muted);
  font-size: 13px;
  font-weight: 650;
}

.about-company-intro {
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(105, 167, 179, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 54px rgba(43, 80, 88, 0.1);
}

.about-company-copy {
  gap: 20px;
}

.about-company-copy h2,
.about-good h2,
.about-cases .section-heading h2,
.about-product-cta .section-heading h2 {
  color: var(--about-blue-dark);
  font-weight: 850;
}

.about-company-copy p {
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.86;
}

.about-detail-button,
.about-cta-button {
  border: 0;
  background: var(--about-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(251, 150, 93, 0.24);
}

.about-detail-button {
  width: 178px;
  min-height: 50px;
  margin-top: 6px;
}

.about-video-card,
.about-video-card img {
  min-height: 330px;
  border-radius: 26px;
}

.about-video-card {
  box-shadow: 0 18px 38px rgba(43, 80, 88, 0.18);
}

.about-video-shade {
  padding: 30px;
  background: linear-gradient(180deg, rgba(34, 70, 78, 0.78), rgba(34, 70, 78, 0.12) 56%, rgba(34, 70, 78, 0.34));
}

.about-video-shade strong {
  font-size: 21px;
  line-height: 1.38;
}

.about-play-button {
  width: 68px;
  height: 52px;
  border-radius: 16px;
  background: var(--about-orange);
  box-shadow: 0 14px 30px rgba(251, 150, 93, 0.32);
}

.about-credit {
  margin-bottom: 34px;
  padding: 52px clamp(24px, 4vw, 54px) 58px;
  border: 1px solid rgba(105, 167, 179, 0.16);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(238, 247, 248, 0.96), rgba(255, 247, 241, 0.88));
}

.about-tabs {
  gap: 12px;
  margin-bottom: 32px;
}

.about-tab {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(105, 167, 179, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--about-muted);
  font-size: 16px;
  font-weight: 750;
}

.about-tab.is-active {
  border-color: transparent;
  background: var(--about-blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(105, 167, 179, 0.24);
}

.about-tab.is-active::after {
  display: none;
}

.about-work-image,
.about-cert-image {
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(43, 80, 88, 0.14);
}

.about-work-labels {
  color: var(--about-blue-dark);
  font-size: 15px;
  font-weight: 750;
  text-align: center;
}

.about-advantages {
  gap: 44px;
  padding-top: 76px;
  padding-bottom: 82px;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 150, 93, 0.12), transparent 24rem),
    linear-gradient(180deg, #f2f9fa 0%, #edf6f7 100%);
}

.about-advantages-heading h2,
.about-services-heading h2 {
  color: var(--about-orange);
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 850;
}

.about-advantages-heading p,
.about-services-heading p {
  color: var(--about-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.82;
}

.about-advantages-grid article {
  min-height: 278px;
  padding: 32px 24px;
  border-color: rgba(105, 167, 179, 0.17);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(43, 80, 88, 0.1);
}

.about-advantages-icon {
  width: 54px;
  height: 54px;
  background: var(--about-orange);
  box-shadow: 0 10px 20px rgba(251, 150, 93, 0.24);
}

.about-advantages-grid h3,
.about-services-grid h3 {
  color: var(--about-blue-dark);
  font-weight: 850;
}

.about-advantages-grid p {
  color: var(--about-muted);
  font-weight: 550;
  line-height: 1.78;
}

.about-services {
  gap: 48px;
  padding-top: 78px;
  padding-bottom: 86px;
  background: linear-gradient(180deg, #fffaf6 0%, #f7fbfb 100%);
}

.about-services::before {
  background:
    radial-gradient(circle at 8% 82%, rgba(105, 167, 179, 0.12), transparent 24rem),
    radial-gradient(circle at 94% 18%, rgba(251, 150, 93, 0.11), transparent 22rem);
}

.about-services::after {
  display: none;
}

.about-services-heading p span {
  color: inherit;
}

.about-services-heading p span:nth-child(2) {
  color: var(--about-orange);
  font-weight: 850;
}

.about-services-grid {
  gap: 36px 26px;
}

.about-services-grid article {
  gap: 14px;
  padding: 12px 12px 20px;
  border: 1px solid rgba(105, 167, 179, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(43, 80, 88, 0.1);
}

.about-services-grid img {
  border-radius: 17px;
  box-shadow: none;
}

.about-services-grid h3 {
  padding: 0 8px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.35;
}

.about-good {
  margin-top: 74px;
  margin-bottom: 74px;
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid rgba(105, 167, 179, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(43, 80, 88, 0.09);
}

.about-good .eyebrow {
  margin-bottom: 18px;
}

.about-good h2 {
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.28;
}

.about-value-grid {
  gap: 16px;
}

.about-value-grid article,
.about-case-grid article {
  border-color: rgba(105, 167, 179, 0.18);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f5fafb);
  box-shadow: 0 12px 28px rgba(43, 80, 88, 0.07);
}

.about-value-grid article {
  min-height: 184px;
  padding: 26px;
}

.about-value-grid span,
.about-case-grid span {
  color: var(--about-orange);
  font-weight: 850;
}

.about-value-grid strong,
.about-case-grid h3 {
  color: var(--about-blue-dark);
  font-weight: 850;
}

.about-cases {
  padding-top: 78px;
  padding-bottom: 82px;
}

.about-cases .section-heading,
.about-product-cta .section-heading {
  gap: 14px;
  margin-bottom: 38px;
}

.about-cases .section-heading h2,
.about-product-cta .section-heading h2 {
  font-size: clamp(32px, 3.3vw, 46px);
}

.about-cases .section-heading p,
.about-product-cta .section-heading p {
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.82;
}

.about-case-grid {
  gap: 20px;
}

.about-case-grid article {
  min-height: 198px;
  padding: 30px;
}

.about-product-cta {
  padding-top: 70px;
  padding-bottom: 104px;
}

.about-cta-card {
  overflow: hidden;
  border: 1px solid rgba(105, 167, 179, 0.18);
  border-radius: 32px;
  background: linear-gradient(135deg, #3f7782, #69a7b3);
  box-shadow: 0 24px 56px rgba(43, 80, 88, 0.2);
}

.about-cta-copy {
  padding: clamp(38px, 5vw, 68px);
}

.about-cta-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.about-cta-copy h2 {
  font-weight: 850;
  line-height: 1.28;
}

.about-cta-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.about-cta-button {
  width: 164px;
  min-height: 48px;
}

@media (hover: hover) {
  .about-stats article,
  .about-advantages-grid article,
  .about-services-grid article,
  .about-value-grid article,
  .about-case-grid article {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .about-stats article:hover,
  .about-advantages-grid article:hover,
  .about-services-grid article:hover,
  .about-value-grid article:hover,
  .about-case-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(43, 80, 88, 0.13);
  }
}

@media (max-width: 980px) {
  .about-intro {
    gap: 42px;
  }

  .about-company-intro {
    padding: 34px;
  }

  .about-credit {
    margin-right: 20px;
    margin-left: 20px;
  }

  .about-good {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .about-intro {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .about-intro-heading h1 {
    font-size: 34px;
  }

  .about-intro-heading p,
  .about-company-copy p,
  .about-advantages-heading p,
  .about-services-heading p,
  .about-cases .section-heading p,
  .about-product-cta .section-heading p {
    font-size: 14px;
  }

  .about-stats article {
    min-height: 104px;
    padding: 18px 14px;
  }

  .about-company-intro {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .about-video-card,
  .about-video-card img {
    min-height: 250px;
  }

  .about-credit {
    margin-right: 14px;
    margin-left: 14px;
    padding: 32px 18px 38px;
    border-radius: 24px;
  }

  .about-tab {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .about-advantages,
  .about-services {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .about-advantages-heading h2,
  .about-services-heading h2,
  .about-cases .section-heading h2,
  .about-product-cta .section-heading h2 {
    font-size: 28px;
  }

  .about-services-grid article {
    padding: 10px 10px 18px;
  }

  .about-good {
    margin-top: 46px;
    margin-bottom: 46px;
    padding: 30px 20px;
    border-radius: 24px;
  }

  .about-good h2 {
    font-size: 28px;
  }

  .about-cases,
  .about-product-cta {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .about-cta-card {
    border-radius: 24px;
  }
}

/* About page factory gallery. */
.about-factory {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 124px max(20px, calc((100vw - 1240px) / 2)) 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 78%, rgba(251, 150, 93, 0.08), transparent 22rem),
    linear-gradient(180deg, #dce9eb 0%, #d2e1e4 100%);
}

.about-factory-cloud {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 98px;
  pointer-events: none;
}

.about-factory-cloud svg {
  display: block;
  width: 100%;
  height: 100%;
}

.about-factory-cloud path {
  fill: #f7fbfb;
}

.about-factory-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
  width: min(960px, 100%);
  margin: 0 auto;
}

.about-factory-inner h2 {
  margin: 0;
  color: var(--about-orange);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 850;
  line-height: 1.16;
  text-align: center;
}

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

.about-factory-grid figure {
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(66, 123, 134, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(43, 80, 88, 0.2);
}

.about-factory-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  object-fit: cover;
}

@media (hover: hover) {
  .about-factory-grid figure {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .about-factory-grid figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(43, 80, 88, 0.24);
  }
}

@media (max-width: 820px) {
  .about-factory {
    padding-top: 110px;
    padding-bottom: 68px;
  }

  .about-factory-cloud {
    height: 76px;
  }

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

@media (max-width: 560px) {
  .about-factory {
    padding-right: 14px;
    padding-left: 14px;
  }

  .about-factory-inner {
    gap: 30px;
  }

  .about-factory-inner h2 {
    font-size: 30px;
  }

  .about-factory-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(420px, 100%);
    margin: 0 auto;
  }
}

/* Custom request form promoted to the top of the custom-service page. */
.custom-form-section {
  width: 100%;
  margin: 0;
  padding: 76px max(20px, calc((100vw - 1240px) / 2)) 88px;
  scroll-margin-top: 96px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 150, 93, 0.13), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(105, 167, 179, 0.15), transparent 27rem),
    linear-gradient(145deg, #fff8f3 0%, #eff8f9 54%, #f8fcfc 100%);
}

.custom-form-shell {
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 5vw, 74px);
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 60px);
  border: 1px solid rgba(105, 167, 179, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 58px rgba(43, 80, 88, 0.12);
  backdrop-filter: blur(10px);
}

.custom-form-intro {
  position: static;
  gap: 20px;
  padding-top: 4px;
}

.custom-form-intro .eyebrow {
  padding: 9px 16px;
  background: rgba(251, 150, 93, 0.14);
  color: #fb965d;
  font-size: 13px;
  font-weight: 850;
}

.custom-form-intro h2 {
  max-width: 480px;
  color: #427b86;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.custom-form-intro p {
  max-width: 460px;
  color: #5c6d72;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.82;
}

.custom-form-points {
  gap: 12px;
  padding-top: 6px;
}

.custom-form-points span {
  width: max-content;
  max-width: 100%;
  padding: 10px 16px 10px 38px;
  border: 1px solid rgba(105, 167, 179, 0.17);
  border-radius: 999px;
  background: #f4fafb;
  color: #427b86;
  font-size: 13px;
  font-weight: 800;
}

.custom-form-points span::before {
  top: 50%;
  left: 16px;
  width: 9px;
  height: 9px;
  background: #fb965d;
  box-shadow: 0 0 0 4px rgba(251, 150, 93, 0.12);
  transform: translateY(-50%);
}

.custom-request-form {
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(105, 167, 179, 0.16);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f7fbfb);
  box-shadow: 0 14px 34px rgba(43, 80, 88, 0.08);
}

.custom-request-form label {
  gap: 9px;
  color: #427b86;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.custom-request-form input,
.custom-request-form select,
.custom-request-form textarea {
  min-height: 52px;
  border: 1px solid rgba(105, 167, 179, 0.24);
  border-radius: 14px;
  background: #fbfdfd;
  color: #29434a;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.custom-request-form input,
.custom-request-form select {
  padding-right: 15px;
  padding-left: 15px;
}

.custom-request-form textarea {
  min-height: 148px;
  padding: 14px 15px;
  line-height: 1.65;
}

.custom-request-form input::placeholder,
.custom-request-form textarea::placeholder {
  color: #98a7aa;
}

.custom-request-form input:focus,
.custom-request-form select:focus,
.custom-request-form textarea:focus {
  border-color: #69a7b3;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(105, 167, 179, 0.13);
}

.custom-request-form .button.primary {
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  background: #fb965d;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 14px 26px rgba(251, 150, 93, 0.24);
}

@media (hover: hover) {
  .custom-request-form .button.primary:hover {
    background: #f18449;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(251, 150, 93, 0.3);
  }
}

@media (max-width: 900px) {
  .custom-form-shell {
    grid-template-columns: 1fr;
  }

  .custom-form-intro {
    text-align: center;
    justify-items: center;
  }

  .custom-form-intro p {
    max-width: 660px;
  }

  .custom-form-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .custom-form-points span {
    width: 100%;
    padding-right: 12px;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .custom-form-section {
    padding: 48px 14px 56px;
  }

  .custom-form-shell {
    gap: 30px;
    padding: 26px 18px;
    border-radius: 24px;
  }

  .custom-form-intro h2 {
    font-size: 29px;
  }

  .custom-form-intro p {
    font-size: 14px;
  }

  .custom-form-points {
    grid-template-columns: 1fr;
    width: min(330px, 100%);
  }

  .custom-request-form {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .custom-request-form .full-field {
    grid-column: auto;
  }
}

/* Contact-page banner based on the plush-toy reference hero. */
.contact-banner {
  position: relative;
  display: grid;
  min-height: 410px;
  overflow: hidden;
  background-color: #afc3a7;
  background-image: url("images/contact-hero.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  isolation: isolate;
}

.contact-banner > .elementor-background-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(55deg, rgba(247, 214, 171, 0.78) 18%, rgba(169, 142, 106, 0.18) 48%, rgba(12, 12, 18, 0.58) 100%);
  opacity: 0.42;
  pointer-events: none;
}

.contact-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 24px;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 58px;
  padding-bottom: 128px;
}

.contact-banner-content h1 {
  max-width: 620px;
  margin: 0;
  color: #162126;
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.18);
}

.contact-banner-content p {
  max-width: 560px;
  margin: 0;
  color: #243238;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-banner-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 58px;
  background: #fff;
  pointer-events: none;
}

.contact-banner-wave::before {
  content: "";
  position: absolute;
  top: -58px;
  left: -10%;
  width: 120%;
  height: 116px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #fff;
}

.contact-banner + .contact-solutions {
  padding-top: 54px;
}

@media (max-width: 760px) {
  .contact-banner {
    min-height: 350px;
    background-position: 64% bottom;
  }

  .contact-banner-content {
    gap: 18px;
    width: min(100% - 28px, 520px);
    padding-top: 46px;
    padding-bottom: 108px;
  }

  .contact-banner-content h1 {
    font-size: 38px;
  }

  .contact-banner-content p {
    max-width: 290px;
    font-size: 14px;
  }

  .contact-banner-wave {
    height: 42px;
  }

  .contact-banner-wave::before {
    top: -38px;
    height: 78px;
  }

  .contact-banner + .contact-solutions {
    padding-top: 42px;
  }
}

/* Custom-service banner adapted from the plush accessories catalog. */
.custom-service-banner {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  background-color: #eee4dc;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  isolation: isolate;
}

.custom-service-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.custom-service-banner > .elementor-background-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 250, 247, 0.48);
  pointer-events: none;
}

.custom-service-banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 34px;
  padding-bottom: 112px;
  text-align: center;
}

.custom-service-banner-content h1 {
  max-width: 880px;
  margin: 0;
  color: #172328;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.32);
}

.custom-service-banner-content p {
  max-width: 900px;
  margin: 0;
  color: #2f3d42;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.8;
}

.custom-service-banner-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 86px;
  pointer-events: none;
}

.custom-service-banner-wave svg {
  display: block;
  width: calc(100% + 2px);
  height: 100%;
  transform: translateX(-1px) rotateY(180deg);
}

.custom-service-banner-wave path {
  fill: #fff8f3;
}

.custom-service-banner + .custom-form-section {
  padding-top: 64px;
}

@media (max-width: 760px) {
  .custom-service-banner {
    min-height: 360px;
  }

  .custom-service-banner-bg {
    object-position: 48% center;
  }

  .custom-service-banner-content {
    gap: 16px;
    width: min(100% - 28px, 560px);
    padding-top: 26px;
    padding-bottom: 90px;
  }

  .custom-service-banner-content h1 {
    font-size: 34px;
  }

  .custom-service-banner-content p {
    font-size: 13px;
    line-height: 1.72;
  }

  .custom-service-banner-wave {
    height: 62px;
  }

  .custom-service-banner + .custom-form-section {
    padding-top: 48px;
  }
}

/* Final custom-service theme: plush-toy content, softer B2B palette and unified typography. */
body[data-view="custom"] {
  --custom-orange: #fb965d;
  --custom-orange-dark: #ef7f43;
  --custom-teal: #69a7b3;
  --custom-teal-dark: #427b86;
  --custom-ink: #29434a;
  --custom-copy: #5b6d72;
  --custom-line: rgba(105, 167, 179, 0.18);
  --custom-soft: #eef7f8;
  font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--custom-ink);
}

body[data-view="custom"] main {
  overflow: hidden;
  background: #f9fcfc;
}

body[data-view="custom"] .custom-service-banner,
body[data-view="custom"] .custom-form-section,
body[data-view="custom"] .custom-capability,
body[data-view="custom"] .custom-dark-band,
body[data-view="custom"] .custom-craft-showcase,
body[data-view="custom"] .custom-eco-panel,
body[data-view="custom"] .custom-process-section {
  font-family: inherit;
}

body[data-view="custom"] .custom-form-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(251, 150, 93, 0.12), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(105, 167, 179, 0.14), transparent 28rem),
    linear-gradient(145deg, #fff8f3 0%, #eff8f9 56%, #f9fcfc 100%);
}

body[data-view="custom"] .custom-form-intro h2,
body[data-view="custom"] .custom-section-title h2,
body[data-view="custom"] .custom-eco-panel h2 {
  color: var(--custom-teal-dark);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 850;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

body[data-view="custom"] .custom-eco-panel h2 {
  margin: 0;
}

body[data-view="custom"] .custom-form-intro p,
body[data-view="custom"] .custom-capability-grid p,
body[data-view="custom"] .custom-adv-grid p,
body[data-view="custom"] .craft-grid p,
body[data-view="custom"] .custom-eco-panel p,
body[data-view="custom"] .custom-process li p {
  color: var(--custom-copy);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.78;
}

body[data-view="custom"] .custom-section-title {
  justify-items: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

body[data-view="custom"] .custom-section-title > span {
  color: var(--custom-orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

body[data-view="custom"] .custom-capability {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 86px;
  padding-bottom: 92px;
}

body[data-view="custom"] .custom-capability-grid {
  gap: 22px;
}

body[data-view="custom"] .custom-capability-grid article {
  min-height: 272px;
  padding: 30px;
  border: 1px solid var(--custom-line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f4fafb);
  box-shadow: 0 16px 36px rgba(43, 80, 88, 0.09);
}

body[data-view="custom"] .custom-capability-grid span {
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  background: rgba(251, 150, 93, 0.14);
  color: var(--custom-orange);
  font-size: 15px;
}

body[data-view="custom"] .custom-capability-grid h3,
body[data-view="custom"] .custom-adv-grid strong,
body[data-view="custom"] .craft-grid h3 {
  color: var(--custom-teal-dark);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.35;
}

body[data-view="custom"] .custom-dark-band {
  margin: 0;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 22rem),
    linear-gradient(135deg, #356c77 0%, #69a7b3 100%);
}

body[data-view="custom"] .custom-dark-inner {
  width: min(1180px, calc(100% - 40px));
}

body[data-view="custom"] .custom-dark-band .custom-section-title > span {
  color: #ffd0b4;
}

body[data-view="custom"] .custom-dark-band .custom-section-title h2 {
  color: #fff;
}

body[data-view="custom"] .custom-dark-band .custom-adv-grid {
  gap: 18px;
}

body[data-view="custom"] .custom-dark-band .custom-adv-grid article {
  min-height: 238px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(20, 55, 62, 0.12);
  backdrop-filter: blur(8px);
}

body[data-view="custom"] .custom-dark-band .custom-adv-grid strong {
  color: #fff;
}

body[data-view="custom"] .custom-dark-band .custom-adv-grid p {
  color: rgba(255, 255, 255, 0.82);
}

body[data-view="custom"] .custom-craft-showcase {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 88px;
  padding-bottom: 92px;
}

body[data-view="custom"] .craft-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

body[data-view="custom"] .craft-grid article {
  grid-column: span 2;
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--custom-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(43, 80, 88, 0.08);
}

body[data-view="custom"] .craft-grid article:nth-child(4),
body[data-view="custom"] .craft-grid article:nth-child(5) {
  grid-column: span 3;
}

body[data-view="custom"] .option-cloud {
  gap: 9px;
  padding-top: 12px;
}

body[data-view="custom"] .option-cloud span {
  padding: 8px 12px;
  border-color: rgba(105, 167, 179, 0.18);
  background: var(--custom-soft);
  color: var(--custom-teal-dark);
  font-size: 12px;
  font-weight: 750;
}

body[data-view="custom"] .custom-eco-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 92px;
  padding: clamp(38px, 5vw, 62px);
  border: 1px solid var(--custom-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 96% 12%, rgba(251, 150, 93, 0.14), transparent 19rem),
    linear-gradient(135deg, #edf7f8 0%, #fffaf6 100%);
  box-shadow: 0 18px 42px rgba(43, 80, 88, 0.09);
}

body[data-view="custom"] .custom-eco-panel .eyebrow {
  color: var(--custom-orange);
  font-weight: 850;
}

body[data-view="custom"] .custom-process-section {
  width: 100%;
  margin: 0;
  padding: 88px max(20px, calc((100vw - 1180px) / 2)) 100px;
  background:
    radial-gradient(circle at 8% 12%, rgba(251, 150, 93, 0.11), transparent 24rem),
    linear-gradient(180deg, #fff9f5 0%, #f4fafb 100%);
}

body[data-view="custom"] .custom-process {
  gap: 20px;
}

body[data-view="custom"] .custom-process li {
  min-height: 286px;
  padding: 64px 24px 26px;
  border: 1px solid var(--custom-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(43, 80, 88, 0.08);
}

body[data-view="custom"] .custom-process .process-number {
  width: 58px;
  height: 58px;
  padding: 14px 0 0 13px;
  border-radius: 0 0 30px 0;
  background: rgba(251, 150, 93, 0.17);
  color: var(--custom-orange-dark);
  font-size: 16px;
}

body[data-view="custom"] .custom-process .process-icon {
  width: 52px;
  height: 52px;
  color: var(--custom-teal);
}

body[data-view="custom"] .custom-process .process-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 2.5;
}

body[data-view="custom"] .custom-process li strong {
  color: var(--custom-teal-dark);
  font-size: 17px;
  font-weight: 850;
}

@media (hover: hover) {
  body[data-view="custom"] .custom-capability-grid article,
  body[data-view="custom"] .craft-grid article,
  body[data-view="custom"] .custom-process li {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  body[data-view="custom"] .custom-capability-grid article:hover,
  body[data-view="custom"] .craft-grid article:hover,
  body[data-view="custom"] .custom-process li:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(43, 80, 88, 0.13);
  }
}

@media (max-width: 980px) {
  body[data-view="custom"] .custom-dark-band .custom-adv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-view="custom"] .craft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-view="custom"] .craft-grid article,
  body[data-view="custom"] .craft-grid article:nth-child(4),
  body[data-view="custom"] .craft-grid article:nth-child(5) {
    grid-column: auto;
  }

  body[data-view="custom"] .craft-grid article:last-child {
    grid-column: 1 / -1;
  }

  body[data-view="custom"] .custom-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body[data-view="custom"] .custom-form-intro h2,
  body[data-view="custom"] .custom-section-title h2,
  body[data-view="custom"] .custom-eco-panel h2 {
    font-size: 28px;
  }

  body[data-view="custom"] .custom-capability,
  body[data-view="custom"] .custom-craft-showcase {
    width: min(100% - 28px, 560px);
    padding-top: 62px;
    padding-bottom: 66px;
  }

  body[data-view="custom"] .custom-capability-grid,
  body[data-view="custom"] .custom-dark-band .custom-adv-grid,
  body[data-view="custom"] .craft-grid,
  body[data-view="custom"] .custom-process {
    grid-template-columns: 1fr;
  }

  body[data-view="custom"] .craft-grid article:last-child {
    grid-column: auto;
  }

  body[data-view="custom"] .custom-dark-band {
    padding: 64px 0 68px;
  }

  body[data-view="custom"] .custom-dark-inner {
    width: min(100% - 28px, 560px);
  }

  body[data-view="custom"] .custom-dark-band .custom-adv-grid article,
  body[data-view="custom"] .custom-capability-grid article,
  body[data-view="custom"] .craft-grid article {
    min-height: 0;
  }

  body[data-view="custom"] .custom-eco-panel {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 560px);
    margin-bottom: 66px;
    padding: 32px 22px;
    border-radius: 24px;
  }

  body[data-view="custom"] .custom-process-section {
    padding: 64px 14px 72px;
  }

  body[data-view="custom"] .custom-process {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  body[data-view="custom"] .custom-process li {
    min-height: 0;
  }
}

/* Plush-toy shipping solutions page. */
body[data-view="shipping"] {
  --shipping-orange: #fb965d;
  --shipping-orange-dark: #ed7e43;
  --shipping-teal: #69a7b3;
  --shipping-teal-dark: #427b86;
  --shipping-ink: #29434a;
  --shipping-copy: #5b6d72;
  --shipping-line: rgba(105, 167, 179, 0.2);
  font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--shipping-ink);
}

body[data-view="shipping"] main {
  overflow: hidden;
  background: #f9fcfc;
}

.shipping-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.78fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  width: 100%;
  padding: 76px max(24px, calc((100vw - 1180px) / 2)) 86px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 150, 93, 0.18), transparent 25rem),
    radial-gradient(circle at 90% 80%, rgba(105, 167, 179, 0.2), transparent 27rem),
    linear-gradient(135deg, #fff8f3 0%, #eef7f8 100%);
}

.shipping-hero-copy {
  display: grid;
  gap: 24px;
}

.shipping-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--shipping-teal-dark);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.shipping-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--shipping-copy);
  font-size: 16px;
  font-weight: 550;
  line-height: 1.85;
}

.shipping-tags,
.shipping-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.shipping-tags span {
  padding: 9px 14px;
  border: 1px solid var(--shipping-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--shipping-teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.shipping-actions {
  padding-top: 4px;
}

.shipping-actions .button,
.shipping-door .button,
.shipping-cta .button {
  min-height: 48px;
  border-radius: 999px;
  padding-inline: 26px;
}

.shipping-actions .button.primary,
.shipping-door .button.primary,
.shipping-cta .button.primary {
  border-color: var(--shipping-orange);
  background: var(--shipping-orange);
  box-shadow: 0 14px 26px rgba(251, 150, 93, 0.24);
}

.shipping-hero-media {
  position: relative;
  margin: 0;
  padding: 11px;
  border: 1px solid rgba(105, 167, 179, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 56px rgba(43, 80, 88, 0.16);
}

.shipping-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 21px;
  object-fit: cover;
}

.shipping-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 88px;
  padding-bottom: 92px;
}

.shipping-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.shipping-heading h2,
.shipping-door h2,
.shipping-packaging h2,
.shipping-docs-layout h2,
.shipping-cta h2 {
  margin: 0;
  color: var(--shipping-teal-dark);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 880;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.shipping-heading p,
.shipping-door-copy > p,
.shipping-packaging-copy > p,
.shipping-docs-layout > div > p,
.shipping-cta p {
  margin: 0;
  color: var(--shipping-copy);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.82;
}

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

.shipping-consider-grid article,
.shipping-method-grid article,
.shipping-door-grid article,
.shipping-doc-card,
.shipping-trade,
.shipping-trade-grid article {
  border: 1px solid var(--shipping-line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(43, 80, 88, 0.08);
}

.shipping-consider-grid article {
  min-height: 272px;
  padding: 28px 24px;
  border-radius: 22px;
}

.shipping-consider-grid article > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 150, 93, 0.15);
  color: var(--shipping-orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.shipping-consider-grid h3,
.shipping-method-grid h3,
.shipping-door-grid h3,
.shipping-trade-grid strong {
  margin: 0 0 12px;
  color: var(--shipping-teal-dark);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.35;
}

.shipping-consider-grid p,
.shipping-method-grid p,
.shipping-door-grid p,
.shipping-trade-grid p,
.shipping-doc-card li,
.shipping-method-grid li {
  margin: 0;
  color: var(--shipping-copy);
  font-size: 14px;
  line-height: 1.75;
}

.shipping-method-band {
  width: 100%;
  background:
    radial-gradient(circle at 92% 14%, rgba(251, 150, 93, 0.12), transparent 24rem),
    linear-gradient(180deg, #edf7f8 0%, #f6fbfb 100%);
}

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

.shipping-method-grid article {
  position: relative;
  min-height: 326px;
  padding: 30px 30px 28px 100px;
  border-radius: 24px;
}

.shipping-method-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--shipping-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.shipping-method-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--shipping-orange-dark);
  font-size: 13px;
  font-weight: 850;
}

.shipping-method-grid ul,
.shipping-doc-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.shipping-method-grid li,
.shipping-doc-card li {
  position: relative;
  padding-left: 19px;
}

.shipping-method-grid li::before,
.shipping-doc-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shipping-orange);
}

.shipping-door {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
}

.shipping-door-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.shipping-door-grid {
  display: grid;
  gap: 16px;
}

.shipping-door-grid article {
  padding: 24px 26px;
  border-radius: 20px;
}

.shipping-door-grid h3 {
  font-size: 20px;
}

.shipping-packaging-band {
  width: 100%;
  background: linear-gradient(135deg, #356c77 0%, #69a7b3 100%);
}

.shipping-packaging {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 88px;
}

.shipping-packaging figure {
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 48px rgba(27, 62, 69, 0.2);
}

.shipping-packaging img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.shipping-packaging-copy {
  display: grid;
  gap: 20px;
}

.shipping-packaging h2,
.shipping-packaging-copy > p {
  color: #fff;
}

.shipping-packaging-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.shipping-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shipping-check-grid span {
  position: relative;
  min-height: 48px;
  padding: 13px 14px 13px 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.shipping-check-grid span::before {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 14px;
  color: #ffd2b8;
  font-weight: 900;
}

.shipping-docs-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
}

.shipping-doc-card,
.shipping-trade {
  padding: clamp(30px, 4vw, 46px);
  border-radius: 26px;
}

.shipping-docs-layout h2 {
  margin-bottom: 16px;
  font-size: clamp(27px, 2.8vw, 38px);
}

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

.shipping-trade-grid article {
  min-height: 176px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f4fafb);
  box-shadow: none;
}

.shipping-trade-grid strong {
  display: block;
  color: var(--shipping-orange-dark);
  font-size: 20px;
}

.shipping-flow-band {
  width: 100%;
  background: linear-gradient(180deg, #fff9f5 0%, #f4fafb 100%);
}

.shipping-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shipping-flow li {
  display: grid;
  gap: 20px;
  min-height: 162px;
  padding: 24px;
  border: 1px solid var(--shipping-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(43, 80, 88, 0.07);
}

.shipping-flow span {
  color: var(--shipping-orange);
  font-size: 15px;
  font-weight: 900;
}

.shipping-flow strong {
  color: var(--shipping-teal-dark);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.5;
}

.shipping-faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}

.shipping-faq-list details {
  border: 1px solid var(--shipping-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(43, 80, 88, 0.06);
}

.shipping-faq-list summary {
  position: relative;
  padding: 20px 54px 20px 24px;
  color: var(--shipping-teal-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.shipping-faq-list summary::-webkit-details-marker {
  display: none;
}

.shipping-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--shipping-orange);
  font-size: 24px;
  transform: translateY(-50%);
}

.shipping-faq-list details[open] summary::after {
  content: "−";
}

.shipping-faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--shipping-copy);
  font-size: 14px;
  line-height: 1.8;
}

.shipping-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 100px;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid var(--shipping-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(251, 150, 93, 0.16), transparent 19rem),
    linear-gradient(135deg, #edf7f8 0%, #fff9f5 100%);
  box-shadow: 0 18px 42px rgba(43, 80, 88, 0.09);
}

.shipping-cta > div {
  display: grid;
  gap: 14px;
}

.shipping-cta h2 {
  font-size: clamp(28px, 3vw, 40px);
}

@media (hover: hover) {
  .shipping-consider-grid article,
  .shipping-method-grid article,
  .shipping-door-grid article,
  .shipping-flow li {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .shipping-consider-grid article:hover,
  .shipping-method-grid article:hover,
  .shipping-door-grid article:hover,
  .shipping-flow li:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(43, 80, 88, 0.13);
  }
}

@media (max-width: 980px) {
  .shipping-hero {
    grid-template-columns: 1fr;
  }

  .shipping-hero-media {
    width: min(620px, 100%);
  }

  .shipping-consider-grid,
  .shipping-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shipping-door,
  .shipping-packaging,
  .shipping-docs-layout {
    grid-template-columns: 1fr;
  }

  .shipping-door-copy {
    justify-items: center;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .shipping-packaging figure {
    width: min(620px, 100%);
  }

  .shipping-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .shipping-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    padding: 54px 14px 62px;
  }

  .shipping-hero h1 {
    font-size: 36px;
  }

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

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

  .shipping-section {
    width: min(100% - 28px, 560px);
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .shipping-heading h2,
  .shipping-door h2,
  .shipping-packaging h2,
  .shipping-docs-layout h2,
  .shipping-cta h2 {
    font-size: 28px;
  }

  .shipping-consider-grid,
  .shipping-method-grid,
  .shipping-flow,
  .shipping-trade-grid,
  .shipping-check-grid {
    grid-template-columns: 1fr;
  }

  .shipping-consider-grid article,
  .shipping-method-grid article,
  .shipping-flow li {
    min-height: 0;
  }

  .shipping-method-grid article {
    padding: 88px 22px 24px;
  }

  .shipping-method-icon {
    top: 22px;
    left: 22px;
  }

  .shipping-packaging {
    width: min(100% - 28px, 560px);
    padding: 64px 0 68px;
  }

  .shipping-doc-card,
  .shipping-trade {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .shipping-cta {
    width: min(100% - 28px, 560px);
    margin-bottom: 72px;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .shipping-cta .button {
    width: 100%;
  }
}

/* News page design-support hero */
body[data-view="news"] {
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  color: #294650;
  background: #f1f1f1;
}

.news-design-hero {
  position: relative;
  width: 100%;
  min-height: 548px;
  overflow: hidden;
  background: #9fc5cd;
}

.news-design-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 140px;
}

.news-design-kicker {
  color: #ff7f4d;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
}

.news-design-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #21445f;
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.news-design-services {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.75;
}

.news-design-copy {
  display: grid;
  gap: 22px;
  max-width: 910px;
  margin-top: 4px;
}

.news-design-copy p {
  margin: 0;
  color: #2e4650;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.78;
}

.news-design-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 28px;
  margin-top: 8px;
}

.news-design-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  color: #fff;
  border-radius: 999px;
  background: #fb965d;
  box-shadow: 0 9px 20px rgba(114, 70, 44, .12);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.news-design-button::before {
  margin-right: 7px;
  content: "▶";
  font-size: .8em;
}

.news-design-button:hover,
.news-design-button:focus-visible {
  color: #fff;
  background: #f08245;
  box-shadow: 0 12px 26px rgba(114, 70, 44, .18);
  transform: translateY(-2px);
}

.news-design-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 92px;
  pointer-events: none;
}

.news-design-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.news-design-wave path {
  fill: #f1f1f1;
}

body[data-view="news"] .news-design-hero + .news-card-grid {
  padding-top: 64px;
}

@media (max-width: 720px) {
  .news-design-hero {
    min-height: auto;
  }

  .news-design-inner {
    gap: 18px;
    width: min(100% - 32px, 560px);
    padding: 48px 0 112px;
  }

  .news-design-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .news-design-services,
  .news-design-copy p {
    font-size: 14px;
  }

  .news-design-actions {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .news-design-button {
    width: min(100%, 300px);
  }

  .news-design-wave {
    height: 62px;
  }

body[data-view="news"] .news-design-hero + .news-card-grid {
    padding-top: 42px;
  }
}

/* Shipping page business hero */
.shipping-business-hero {
  position: relative;
  width: 100%;
  min-height: 548px;
  overflow: hidden;
  background: #9fc5cd;
}

.shipping-business-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 21px;
  width: min(930px, calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0 144px;
}

.shipping-business-kicker {
  color: #ff7f4d;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
}

.shipping-business-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #21445f;
  font-size: clamp(42px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.shipping-business-services {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.75;
}

.shipping-business-copy {
  display: grid;
  gap: 22px;
  max-width: 930px;
  margin-top: 3px;
}

.shipping-business-copy p {
  margin: 0;
  color: #2d4650;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.shipping-business-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 30px;
  margin-top: 7px;
}

.shipping-business-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 25px;
  color: #fff;
  border-radius: 999px;
  background: #fb965d;
  box-shadow: 0 9px 20px rgba(114, 70, 44, .12);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.shipping-business-button::before {
  margin-right: 7px;
  content: "▶";
  font-size: .8em;
}

.shipping-business-button:hover,
.shipping-business-button:focus-visible {
  color: #fff;
  background: #f08245;
  box-shadow: 0 12px 26px rgba(114, 70, 44, .18);
  transform: translateY(-2px);
}

.shipping-business-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 92px;
  pointer-events: none;
}

.shipping-business-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.shipping-business-wave path {
  fill: #f9fcfc;
}

.shipping-business-hero + .shipping-considerations {
  padding-top: 76px;
}

@media (max-width: 720px) {
  .shipping-business-hero {
    min-height: auto;
  }

  .shipping-business-inner {
    gap: 18px;
    width: min(100% - 32px, 560px);
    padding: 48px 0 112px;
  }

  .shipping-business-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .shipping-business-services,
  .shipping-business-copy p {
    font-size: 14px;
  }

  .shipping-business-actions {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .shipping-business-button {
    width: min(100%, 300px);
  }

  .shipping-business-wave {
    height: 62px;
  }

  .shipping-business-hero + .shipping-considerations {
    padding-top: 54px;
  }
}

/* Professional site-wide heading scale */
:root {
  --business-title-page: clamp(34px, 3.45vw, 48px);
  --business-title-section: clamp(25px, 2.3vw, 34px);
  --business-title-detail: clamp(25px, 2.35vw, 34px);
}

main :is(
  .hero h1,
  .page-hero h1,
  .custom-hero h1,
  .content-hero h1,
  .contact-hero h1,
  .contact-banner-content h1,
  .custom-service-banner-content h1,
  .about-intro-heading h1,
  .product-hub-copy h1,
  .blind-box-choice-heading h1,
  .news-design-hero h1,
  .shipping-business-hero h1
) {
  font-size: var(--business-title-page) !important;
  font-weight: 820 !important;
  line-height: 1.14 !important;
  letter-spacing: -.025em !important;
  text-wrap: balance;
}

main :is(
  .section-heading h2,
  .customer-section-heading h2,
  .partner-advantages-heading h2,
  .partner-proof-heading h2,
  .shipping-heading h2,
  .factory-copy h2,
  .home-case-intro h2,
  .home-faq-copy h2,
  .custom-section-title h2,
  .custom-section-heading h2,
  .custom-eco-panel h2,
  .custom-form-intro h2,
  .contact-support-copy h2,
  .contact-form-card h2,
  .contact-info-panel h2,
  .contact-map-copy h2,
  .about-company-copy h2,
  .about-advantages-heading h2,
  .about-services-heading h2,
  .about-good h2,
  .about-cta-copy h2,
  .about-factory-inner h2,
  .category-overview-copy h2,
  .product-solution-band h2,
  .blind-box-extra-heading h2,
  .blind-box-quality-heading h2,
  .blind-box-faq-panel h2,
  .plush-production-flow-heading h2,
  .shipping-packaging h2,
  .shipping-docs-layout h2,
  .shipping-cta h2,
  .toy-detail-copy h2,
  .toy-detail-heading h2,
  .toy-detail-cta h2
) {
  font-size: var(--business-title-section) !important;
  font-weight: 780 !important;
  line-height: 1.22 !important;
  letter-spacing: -.018em !important;
  text-wrap: balance;
}

main :is(
  .detail-summary h1,
  h1[data-detail-title],
  .article-detail-layout h1,
  .case-detail-layout h1,
  .detail-title
) {
  font-size: var(--business-title-detail) !important;
  font-weight: 840 !important;
  line-height: 1.2 !important;
  letter-spacing: -.018em !important;
}

main :is(
  .about-services-grid h3,
  .shipping-consider-grid h3,
  .shipping-method-grid h3,
  .shipping-door-grid h3,
  .catalog-card h2,
  .blind-box-collection-card h2,
  .plant-plush-collection-card h2
) {
  font-size: clamp(17px, 1.45vw, 21px) !important;
  font-weight: 800 !important;
  line-height: 1.32 !important;
  letter-spacing: -.01em !important;
}

.partner-advantages-heading span,
.partner-proof-heading span {
  font-size: clamp(17px, 1.45vw, 20px) !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

main .hero h1 {
  font-size: clamp(33px, 2.9vw, 40px) !important;
  max-width: 690px;
  font-weight: 800 !important;
  line-height: 1.18 !important;
}

/* Homepage hero: locally hosted Bootstrap carousel */
.home-bootstrap-carousel {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: #302421;
  box-shadow: 0 22px 58px rgba(31, 47, 52, .12);
}

.home-bootstrap-carousel .carousel-inner,
.home-bootstrap-carousel .carousel-item {
  height: clamp(300px, 31.26vw, 560px);
}

.home-bootstrap-carousel .carousel-item {
  background: #302421;
}

.home-bootstrap-carousel .carousel-item.slide-blind-box { background: #6d321d; }
.home-bootstrap-carousel .carousel-item.slide-flocked { background: #efaaa5; }
.home-bootstrap-carousel .carousel-item.slide-plush { background: #d4b9a8; }

.home-bootstrap-carousel .carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-bootstrap-carousel .carousel-control-prev,
.home-bootstrap-carousel .carousel-control-next {
  width: clamp(76px, 9vw, 136px);
  border: 0;
  opacity: 1;
  z-index: 4;
}

.home-bootstrap-carousel .home-carousel-control {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 50%;
  background: rgba(29, 32, 33, .36);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.home-bootstrap-carousel .carousel-control-prev:hover .home-carousel-control,
.home-bootstrap-carousel .carousel-control-next:hover .home-carousel-control,
.home-bootstrap-carousel .carousel-control-prev:focus-visible .home-carousel-control,
.home-bootstrap-carousel .carousel-control-next:focus-visible .home-carousel-control {
  transform: scale(1.06);
  border-color: #fb965d;
  background: rgba(251, 150, 93, .92);
}

.home-bootstrap-carousel .carousel-control-prev-icon,
.home-bootstrap-carousel .carousel-control-next-icon {
  width: 22px;
  height: 22px;
}

.home-bootstrap-carousel .carousel-indicators {
  right: auto;
  bottom: 18px;
  left: 50%;
  display: flex;
  width: auto;
  min-height: 32px;
  margin: 0;
  padding: 9px 12px;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(24, 29, 31, .34);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.home-bootstrap-carousel .carousel-indicators [data-bs-target] {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  opacity: 1;
  text-indent: -9999px;
  transition: width .25s ease, background .25s ease;
}

.home-bootstrap-carousel .carousel-indicators .active {
  width: 32px;
  background: #fb965d;
}

.home-bootstrap-carousel.carousel-fade .carousel-item {
  transition-duration: .8s;
}

@media (max-width: 720px) {
  .home-bootstrap-carousel .carousel-inner,
  .home-bootstrap-carousel .carousel-item {
    height: clamp(300px, 78vw, 430px);
    aspect-ratio: auto;
  }

  .home-bootstrap-carousel .carousel-item img {
    object-fit: cover;
    object-position: 74% center;
  }

  .home-bootstrap-carousel .carousel-control-prev,
  .home-bootstrap-carousel .carousel-control-next {
    width: 54px;
    height: 100%;
  }

  .home-bootstrap-carousel .home-carousel-control {
    width: 36px;
    height: 36px;
  }

  .home-bootstrap-carousel .carousel-control-prev-icon,
  .home-bootstrap-carousel .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  .home-bootstrap-carousel .carousel-indicators {
    bottom: 10px;
    min-height: 24px;
    padding: 6px 9px;
  }
}

@media (max-width: 720px) {
  :root {
    --business-title-page: clamp(30px, 8.5vw, 40px);
    --business-title-section: clamp(23px, 6.2vw, 30px);
    --business-title-detail: clamp(23px, 6.2vw, 30px);
  }

  main :is(
    .hero h1,
    .page-hero h1,
    .custom-hero h1,
    .content-hero h1,
    .contact-hero h1,
    .contact-banner-content h1,
    .custom-service-banner-content h1,
    .about-intro-heading h1,
    .product-hub-copy h1,
    .blind-box-choice-heading h1,
    .news-design-hero h1,
    .shipping-business-hero h1
  ) {
    line-height: 1.18 !important;
    letter-spacing: -.018em !important;
  }
}

/* Company articles: backend-driven alternating editorial layout. */
body[data-view="news"] .news-page {
  background: #fff;
}

body[data-view="news"] .news-design-wave path {
  fill: #fff;
}

.company-article-list {
  display: grid;
  gap: clamp(72px, 8vw, 118px);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(70px, 7vw, 108px) 0 clamp(86px, 8vw, 126px);
  background: #fff;
}

.company-article-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "media copy";
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}

.company-article-row.is-reverse {
  grid-template-areas: "copy media";
}

.company-article-media {
  grid-area: media;
  display: block;
  overflow: hidden;
  min-height: 310px;
  border-radius: 26px;
  background: #edf3f4;
  box-shadow: 0 12px 28px rgba(39, 70, 80, .16);
}

.company-article-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.company-article-media:hover img,
.company-article-media:focus-visible img {
  filter: brightness(1.025);
  transform: scale(1.025);
}

.company-article-copy {
  grid-area: copy;
  display: grid;
  justify-items: start;
  gap: 18px;
  min-width: 0;
}

.company-article-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fb8f55;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .22em;
}

.company-article-index::before,
.company-article-index::after {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.company-article-row h2 {
  margin: 0;
  color: #fb8f55;
  font-size: clamp(24px, 2.15vw, 31px);
  font-weight: 850;
  line-height: 1.24;
  letter-spacing: -.018em;
}

.company-article-row h2 a {
  color: inherit;
}

.company-article-row h2 a:hover,
.company-article-row h2 a:focus-visible {
  color: #e9793e;
}

.company-article-summary {
  width: 100%;
  padding: 19px 21px 16px;
  border: 1px solid #cbd7da;
  border-radius: 18px;
  background: #f1f6f7;
  box-shadow: 0 7px 17px rgba(39, 70, 80, .13);
}

.company-article-summary p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #354b53;
  font-size: 15px;
  font-weight: 580;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.company-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 13px;
  color: #6c848c;
  font-size: 12px;
  font-weight: 700;
}

.company-article-meta span {
  color: #5f9ead;
}

.company-article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 21px;
  border-radius: 999px;
  color: #fff;
  background: #fb965d;
  box-shadow: 0 9px 20px rgba(159, 83, 42, .14);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.company-article-button:hover,
.company-article-button:focus-visible {
  color: #fff;
  background: #ed8246;
  box-shadow: 0 12px 24px rgba(159, 83, 42, .2);
  transform: translateY(-2px);
}

.company-article-button span {
  font-size: 10px;
}

@media (max-width: 900px) {
  .company-article-list {
    gap: 70px;
    width: min(760px, calc(100% - 40px));
  }

  .company-article-row,
  .company-article-row.is-reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "copy";
    gap: 30px;
  }

  .company-article-media,
  .company-article-media img {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .company-article-list {
    gap: 58px;
    width: min(100% - 28px, 520px);
    padding: 56px 0 78px;
  }

  .company-article-row,
  .company-article-row.is-reverse {
    gap: 24px;
  }

  .company-article-media {
    border-radius: 19px;
    box-shadow: 0 9px 22px rgba(39, 70, 80, .14);
  }

  .company-article-media img {
    aspect-ratio: 16 / 10.5;
  }

  .company-article-copy {
    gap: 15px;
  }

  .company-article-row h2 {
    font-size: clamp(22px, 6.4vw, 27px);
    line-height: 1.26;
  }

  .company-article-summary {
    padding: 17px 17px 15px;
    border-radius: 16px;
  }

  .company-article-summary p {
    font-size: 14px;
    line-height: 1.68;
    -webkit-line-clamp: 7;
  }
}

/* Plush-toy FAQ page */
body[data-view="faq"] {
  color: #294650;
  background: #eef6f7;
}

.faq-page {
  overflow: hidden;
  background: #eef6f7;
}

.faq-toy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  width: 100%;
  min-height: 430px;
  margin: 0;
  padding: 72px max(24px, calc((100% - 1120px) / 2)) 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 20%, rgba(255, 255, 255, .72) 0 58px, transparent 59px),
    radial-gradient(circle at 82% 17%, rgba(255, 255, 255, .46) 0 86px, transparent 87px),
    linear-gradient(135deg, #d9eef1 0%, #eef7f7 52%, #d7ebee 100%);
  box-sizing: border-box;
}

.faq-toy-hero::after {
  position: absolute;
  right: -5%;
  bottom: -72px;
  left: -5%;
  height: 104px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #eef6f7;
  content: "";
}

.faq-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 18px;
}

.faq-hero-copy .eyebrow {
  color: #f28a52;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}

.faq-toy-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #285b67;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: -.025em;
}

.faq-toy-hero p {
  max-width: 720px;
  margin: 0;
  color: #49666e;
  font-size: 16px;
  font-weight: 560;
  line-height: 1.78;
}

.faq-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.faq-hero-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(101, 157, 168, .25);
  border-radius: 999px;
  color: #3e7480;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 7px 18px rgba(66, 113, 124, .08);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .035em;
}

.faq-hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 330px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 24px 54px rgba(65, 112, 121, .14);
}

.faq-hero-visual::before,
.faq-hero-visual::after {
  position: absolute;
  border: 1px dashed rgba(85, 145, 157, .32);
  border-radius: 50%;
  content: "";
}

.faq-hero-visual::before { inset: 23px; }
.faq-hero-visual::after { inset: 48px; }

.faq-visual-toy {
  position: relative;
  z-index: 2;
  font-size: clamp(100px, 11vw, 146px);
  filter: drop-shadow(0 16px 16px rgba(62, 101, 111, .16));
  transform: rotate(-4deg);
}

.faq-visual-bubble {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  color: #fff;
  background: #fb965d;
  box-shadow: 0 10px 22px rgba(106, 79, 58, .16);
  font-size: 22px;
  font-weight: 900;
}

.faq-visual-bubble.bubble-a { top: 18px; right: 28px; }
.faq-visual-bubble.bubble-b { bottom: 38px; left: 18px; background: #6fa9b4; }
.faq-visual-bubble.bubble-c { right: 8px; bottom: 76px; width: 42px; height: 42px; background: #7bbf9d; font-size: 17px; }

.faq-toy-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 94px;
}

.faq-main-panel {
  min-width: 0;
}

.faq-list-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.faq-list-heading > span,
.faq-toy-aside > span {
  color: #ef8951;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.faq-list-heading h2 {
  margin: 0;
  color: #2f626e;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 820;
  line-height: 1.24;
  letter-spacing: -.018em;
}

.faq-list-heading p {
  margin: 0;
  color: #6b7f84;
  font-size: 14px;
  line-height: 1.7;
}

.faq-toy-layout .faq-items {
  display: grid;
  gap: 13px;
  border: 0;
}

.faq-toy-layout .faq-items details {
  overflow: hidden;
  border: 1px solid #d7e5e8;
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(53, 93, 102, .07);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-toy-layout .faq-items details:hover {
  border-color: #b9d4d9;
  box-shadow: 0 12px 30px rgba(53, 93, 102, .1);
  transform: translateY(-1px);
}

.faq-toy-layout .faq-items details[open] {
  border-color: #97c4cc;
  box-shadow: 0 14px 34px rgba(53, 93, 102, .12);
}

.faq-toy-layout .faq-items summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 16px 58px 16px 18px;
  color: #35555e;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.45;
}

.faq-toy-layout .faq-items details[open] summary {
  color: #2f7180;
}

.faq-toy-layout .faq-question-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #fb965d;
  box-shadow: 0 6px 14px rgba(201, 112, 65, .18);
  font-size: 15px;
  font-weight: 900;
}

.faq-toy-layout .faq-items summary::after {
  right: 22px;
  width: 9px;
  height: 9px;
  border-color: #6b98a2;
}

.faq-toy-layout .faq-items p {
  margin: 0;
  padding: 0 58px 22px 66px;
  color: #60767c;
  font-size: 14px;
  line-height: 1.75;
}

.faq-toy-layout .pagination {
  justify-content: flex-start;
  margin-top: 26px;
}

.faq-toy-layout .pagination button {
  border-color: #cbdde0;
  color: #4c7a84;
  background: #fff;
}

.faq-toy-layout .pagination button.is-active {
  border-color: #fb965d;
  color: #fff;
  background: #fb965d;
}

.faq-toy-aside {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 15px;
  padding: 30px 26px 26px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .16), transparent 40%),
    linear-gradient(145deg, #5f9eaa, #397785);
  box-shadow: 0 20px 46px rgba(44, 94, 105, .2);
}

.faq-aside-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  background: rgba(255, 255, 255, .18);
  font-size: 25px;
}

.faq-toy-aside > span {
  color: #ffd6bd;
}

.faq-toy-aside h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 820;
  line-height: 1.28;
}

.faq-toy-aside > p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.75;
}

.faq-help-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.faq-help-actions .button {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  font-size: 13px;
}

.faq-help-actions .button.primary {
  border-color: #fb965d;
  background: #fb965d;
}

.faq-help-actions .button.ghost {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.faq-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 4px;
}

.faq-topic-list span {
  padding: 6px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .12);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .faq-toy-hero {
    grid-template-columns: minmax(0, 1fr) 250px;
    min-height: 400px;
    padding-bottom: 84px;
  }

  .faq-hero-visual {
    width: 250px;
  }

  .faq-toy-layout {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 36px));
  }

  .faq-toy-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .faq-toy-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
    padding: 48px 18px 78px;
  }

  .faq-toy-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .faq-toy-hero p {
    font-size: 14px;
    line-height: 1.72;
  }

  .faq-hero-visual {
    width: 190px;
    justify-self: center;
  }

  .faq-visual-toy {
    font-size: 88px;
  }

  .faq-visual-bubble {
    width: 40px;
    height: 40px;
    border-width: 3px;
    font-size: 18px;
  }

  .faq-visual-bubble.bubble-c {
    width: 34px;
    height: 34px;
  }

  .faq-toy-layout {
    gap: 34px;
    width: min(100% - 24px, 520px);
    padding: 38px 0 72px;
  }

  .faq-list-heading h2 {
    font-size: 24px;
  }

  .faq-toy-layout .faq-items summary {
    min-height: 66px;
    gap: 11px;
    padding: 14px 48px 14px 14px;
    font-size: 14px;
  }

  .faq-toy-layout .faq-question-icon {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
  }

  .faq-toy-layout .faq-items summary::after {
    right: 18px;
  }

  .faq-toy-layout .faq-items p {
    padding: 0 18px 20px 56px;
    font-size: 13px;
  }

  .faq-toy-aside {
    padding: 26px 22px 23px;
    border-radius: 21px;
  }
}
