:root {
  --white: #ffffff;
  --paper: #fbfaf8;
  --muted: #f4f4f2;
  --line: #e6e7e8;
  --line-strong: #d7d9dc;
  --ink: #17191d;
  --ink-soft: #4f555e;
  --ink-muted: #626a75;
  --brand: #761c22;
  --brand-dark: #4b1014;
  --brand-soft: #f7edef;
  --gold: #c6a55b;
  --gold-soft: #f5edd9;
  --blue: #1768e5;
  --blue-dark: #0b54c5;
  --footer: #17191d;
  --footer-soft: #b8bdc6;
  --success: #236e4d;
  --shadow-sm: 0 10px 30px rgb(24 27 32 / 7%);
  --shadow-md: 0 24px 64px rgb(24 27 32 / 11%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-height: 76px;
  color-scheme: light;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 700;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1.09;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

p {
  color: var(--ink-soft);
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

:focus-visible {
  outline: 3px solid rgb(23 104 229 / 30%);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(23 25 29 / 8%);
  background: rgb(255 255 255 / 93%);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgb(23 25 29 / 7%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: "Songti SC", STSong, SimSun, serif;
}

.brand__text strong {
  color: var(--brand-dark);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
}

.brand__text small {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 0.6rem;
  letter-spacing: 0.055em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2.4vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 25px 0 23px;
  color: #30343a;
  font-size: 0.95rem;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 14px;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  transition: left 180ms ease, right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
  left: 0;
}

.main-nav a.is-active {
  color: var(--brand);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.nav-toggle > span {
  display: grid;
  place-items: center;
}

.nav-toggle__close {
  display: none !important;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: grid !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon {
  margin-left: 10px;
}

.button--primary {
  background: var(--blue);
  box-shadow: 0 10px 24px rgb(23 104 229 / 20%);
  color: var(--white);
}

.button--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 32px rgb(23 104 229 / 28%);
}

.button--secondary {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: #aeb3bb;
  box-shadow: var(--shadow-sm);
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.main-nav__consult {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
}

.text-link .icon {
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.eyebrow--light {
  color: #e6c979;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero--home {
  min-height: 760px;
  background:
    radial-gradient(circle at 80% 26%, rgb(23 104 229 / 9%), transparent 27%),
    radial-gradient(circle at 64% 72%, rgb(198 165 91 / 12%), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
  align-items: center;
  min-height: 760px;
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 100px;
}

.hero-copy h1 {
  max-width: 720px;
}

.hero-copy h1 em {
  color: var(--brand);
  font-style: normal;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: #59616e;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-facts .icon {
  color: var(--success);
}

.product-stage {
  position: relative;
  min-height: 650px;
  isolation: isolate;
}

.product-stage::before {
  position: absolute;
  z-index: -1;
  top: 74px;
  right: -90px;
  width: 610px;
  height: 610px;
  border: 1px solid rgb(23 104 229 / 12%);
  border-radius: 50%;
  background: rgb(255 255 255 / 44%);
  box-shadow: inset 0 0 80px rgb(23 104 229 / 7%);
  content: "";
}

.stage-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(118 28 34 / 13%);
  border-radius: 50%;
}

.stage-orbit--one {
  top: 128px;
  right: -30px;
  width: 500px;
  height: 500px;
}

.stage-orbit--two {
  top: 198px;
  right: 40px;
  width: 360px;
  height: 360px;
}

.stage-product {
  --stage-rotation: 0deg;
  position: absolute;
  bottom: 20px;
  display: block;
  width: auto;
  border-radius: 18px;
  filter: drop-shadow(0 20px 22px rgb(16 20 26 / 11%));
  transform: rotate(var(--stage-rotation));
  transform-origin: center bottom;
  transition: transform 240ms ease, filter 240ms ease;
}

.stage-product img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.stage-product:hover,
.stage-product:focus-visible {
  z-index: 4;
  filter: drop-shadow(0 26px 30px rgb(16 20 26 / 18%));
  transform: rotate(var(--stage-rotation)) scale(1.07);
}

.stage-product:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

.stage-product--left {
  --stage-rotation: -5deg;
  left: 4%;
  height: 480px;
}

.stage-product--center {
  z-index: 2;
  left: 34%;
  height: 590px;
}

.stage-product--right {
  --stage-rotation: 5deg;
  right: -1%;
  height: 505px;
}

.stage-note {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 175px;
  padding: 14px 18px;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 14px;
  background: rgb(255 255 255 / 88%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.stage-note strong {
  font-size: 0.95rem;
}

.stage-note span {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.stage-note--top {
  top: 128px;
  right: 18px;
}

.stage-note--bottom {
  right: 15%;
  bottom: 42px;
}

.section {
  padding-block: 104px;
}

.section--tight {
  padding-block: 64px;
}

.section--tight-top {
  padding-top: 34px;
}

.section--tight-bottom {
  padding-bottom: 42px;
}

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

.section--dark-slice {
  background:
    linear-gradient(120deg, rgb(118 28 34 / 24%), transparent 36%),
    var(--footer);
  color: var(--white);
}

.section--dark-slice p {
  color: #cbd0d7;
}

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

.section-heading > div {
  max-width: 790px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading__action {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.section-intro {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: #cfd1d5;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

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

.product-card__link {
  display: flex;
  height: 100%;
  color: inherit;
  flex-direction: column;
  text-decoration: none;
}

.product-card__link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -4px;
}

.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  height: 340px;
  overflow: hidden;
  background:
    radial-gradient(circle at center 72%, rgb(198 165 91 / 17%), transparent 33%),
    linear-gradient(180deg, #fafafa, #fff);
}

.product-card__media img {
  width: auto;
  height: 292px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img {
  transform: scale(1.035);
}

.product-card__category {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-card__body {
  display: flex;
  height: 100%;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.product-card__model {
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
}

.product-card__body h3 {
  min-height: 3.3em;
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.product-card__body > p:not(.product-card__model) {
  min-height: 4.9em;
  margin-bottom: 18px;
  font-size: 0.88rem;
}

.product-card__body .text-link {
  margin-top: auto;
}

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

.application-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.application-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.application-card[hidden] {
  display: none;
}

.application-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.application-card__body {
  padding: 25px;
}

.application-card__body p {
  min-height: 3.3em;
  font-size: 0.9rem;
}

.selection-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 80px;
}

.selection-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.selection-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 172px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.selection-steps li > span {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
}

.selection-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.selection-steps p {
  margin: 0;
  font-size: 0.9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.about-grid h2 {
  margin: 0;
}

.about-grid p {
  font-size: 1.04rem;
}

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

.knowledge-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.knowledge-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
}

.knowledge-card > div {
  padding: 24px;
}

.knowledge-card span,
.article-card__body > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
}

.knowledge-card h3 {
  margin-top: 10px;
}

.knowledge-card p {
  min-height: 3.3em;
  font-size: 0.9rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, #f9f9f8, #fff);
}

.cta-panel__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 1.55rem;
}

.cta-panel h2 {
  margin-bottom: 4px;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.cta-panel p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  padding-top: 64px;
  background: var(--footer);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 50px;
}

.footer-grid .brand__text strong,
.footer-grid .brand__text small {
  color: var(--white);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 22px;
  color: var(--footer-soft);
  font-size: 0.9rem;
}

.footer-contact {
  display: grid;
  max-width: 460px;
  gap: 10px;
  margin-top: 24px;
  font-style: normal;
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--footer-soft);
  font-size: 0.84rem;
}

.footer-contact strong {
  color: var(--white);
  font-size: 0.78rem;
}

.footer-contact span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: max-content;
  margin-bottom: 10px;
  color: var(--footer-soft);
  font-size: 0.86rem;
}

.footer-grid a:hover {
  color: var(--white) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid #30343a;
  color: #8f96a0;
  font-size: 0.78rem;
}

body.dialog-open {
  overflow: hidden;
}

.consult-dialog {
  width: min(calc(100% - 32px), 780px);
  max-width: none;
  max-height: min(90vh, 720px);
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: transparent;
  box-shadow: 0 34px 100px rgb(16 20 26 / 28%);
  color: var(--ink);
  overflow: visible;
}

.consult-dialog::backdrop {
  background: rgb(15 18 23 / 62%);
  backdrop-filter: blur(5px);
}

.consult-dialog__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.25fr);
  gap: 0;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 26px;
  background: var(--white);
  overflow: hidden;
}

.consult-dialog__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(255 255 255 / 94%);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.consult-dialog__close:hover {
  border-color: var(--line-strong);
  background: var(--muted);
}

.consult-dialog__qr {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 52px 34px 40px;
  background:
    radial-gradient(circle at 50% 38%, rgb(35 110 77 / 13%), transparent 48%),
    linear-gradient(145deg, #f8fbf9, #f2f5f3);
  text-align: center;
}

.consult-dialog__qr img {
  width: min(100%, 250px);
  height: auto;
  padding: 10px;
  border: 1px solid #dfe8e3;
  border-radius: 18px;
  background: var(--white);
}

.consult-dialog__qr strong {
  margin-top: 18px;
  font-size: 1rem;
}

.consult-dialog__qr span {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.consult-dialog__content {
  padding: 58px 46px 42px;
}

.consult-dialog__content h2 {
  margin-bottom: 12px;
  padding-right: 28px;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}

.consult-dialog__content > p:not(.eyebrow, .consult-dialog__status) {
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.consult-dialog__details {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
}

.consult-dialog__details > div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.consult-dialog__details dt {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.consult-dialog__details dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.consult-dialog__details a:hover {
  color: var(--blue);
}

.consult-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consult-dialog__actions .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.84rem;
}

.consult-dialog__status {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--success);
  font-size: 0.78rem;
}

.breadcrumb {
  padding-top: 26px;
  padding-bottom: 18px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: #b7bbc1;
  content: "/";
}

.breadcrumb a:hover {
  color: var(--brand);
}

.page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  min-height: 420px;
  gap: 80px;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 4vw, 4rem);
}

.no-break {
  display: inline-block;
  white-space: nowrap;
}

.page-hero p:not(.eyebrow) {
  max-width: 710px;
  font-size: 1.06rem;
}

.page-hero--products {
  background:
    radial-gradient(circle at 82% 50%, rgb(198 165 91 / 14%), transparent 28%),
    linear-gradient(180deg, #fff, #fafafa);
}

.page-hero__products {
  position: relative;
  align-self: stretch;
  min-height: 420px;
}

.page-hero__products::before {
  position: absolute;
  inset: 18% 5% 8%;
  border: 1px solid rgb(118 28 34 / 10%);
  border-radius: 50%;
  content: "";
}

.page-hero__products img {
  position: absolute;
  bottom: -6px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 18px rgb(23 25 29 / 10%));
}

.page-hero__products img:nth-child(1) {
  left: 4%;
  height: 310px;
  transform: rotate(-4deg);
}

.page-hero__products img:nth-child(2) {
  z-index: 2;
  left: 34%;
  height: 390px;
}

.page-hero__products img:nth-child(3) {
  right: 2%;
  height: 315px;
  transform: rotate(4deg);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-bar button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink-soft);
}

.filter-bar button:hover,
.filter-bar button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

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

.product-grid--catalog .product-card__media {
  height: 390px;
}

.product-grid--catalog .product-card__media img {
  height: 342px;
}

.series-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.series-list li {
  display: grid;
  grid-template-columns: 115px 96px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.series-list span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.series-list p {
  margin: 0;
  font-size: 0.9rem;
}

.series-list em {
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-style: normal;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 80px;
}

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

.decision-cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.decision-cards .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--brand);
}

.decision-cards p {
  margin: 0;
  font-size: 0.9rem;
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  text-align: center;
}

.empty-state[hidden] {
  display: none;
}

.product-detail-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 48%, rgb(198 165 91 / 14%), transparent 28%),
    linear-gradient(180deg, #fff, #fafafa);
}

.product-detail-hero__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  min-height: 620px;
  gap: 80px;
}

.product-detail-hero__media {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 620px;
  isolation: isolate;
}

.product-detail-hero__media img {
  z-index: 2;
  width: auto;
  height: 550px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 24px rgb(23 25 29 / 12%));
}

.product-halo {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border: 1px solid rgb(118 28 34 / 12%);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgb(198 165 91 / 12%);
}

.product-detail-hero__model {
  position: absolute;
  bottom: 36px;
  left: 26px;
  color: rgb(118 28 34 / 9%);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.product-detail-hero__copy {
  position: relative;
  z-index: 3;
  padding-block: 72px;
}

.product-detail-hero__copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 30px;
}

.tag-list span {
  padding: 7px 11px;
  border: 1px solid #e1d2a8;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #725d25;
  font-size: 0.78rem;
  font-weight: 700;
}

.verification-note {
  max-width: 660px;
  padding-left: 14px;
  margin: 24px 0 0;
  border-left: 3px solid var(--gold);
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.anchor-nav {
  position: sticky;
  z-index: 60;
  top: var(--header-height);
  border-block: 1px solid var(--line);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(12px);
}

.anchor-nav > div {
  display: flex;
  justify-content: center;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.anchor-nav a {
  padding-block: 16px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  white-space: nowrap;
}

.anchor-nav a:hover {
  color: var(--brand);
}

.detail-overview {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 70px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: auto 165px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.feature-list .icon {
  width: 25px;
  height: 25px;
  color: var(--brand);
}

.feature-list span {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.fact-panel {
  padding: 14px 30px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.fact-panel > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.fact-panel > div:last-child {
  border-bottom: 0;
}

.fact-panel dt {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.fact-panel dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.scene-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.scene-detail-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.scene-detail-card--wide {
  grid-column: span 2;
  grid-template-columns: 1.1fr 0.9fr;
}

.scene-detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-detail-card > div {
  align-self: center;
  padding: 30px;
}

.scene-detail-card p {
  margin: 0;
}

.material-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
}

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

.material-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.material-grid span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.material-grid h3 {
  margin-top: 12px;
}

.material-grid p {
  margin: 0;
  font-size: 0.88rem;
}

.notice-panel {
  display: flex;
  grid-column: 1 / -1;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid #eadcaf;
  border-radius: var(--radius-sm);
  background: #fffaf0;
}

.notice-panel .icon {
  width: 27px;
  height: 27px;
  color: #9a7121;
}

.notice-panel strong {
  display: block;
  margin-bottom: 5px;
}

.notice-panel p {
  margin: 0;
  color: #6e6247;
  font-size: 0.86rem;
}

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

.process-line li {
  position: relative;
  min-height: 180px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.process-line li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 800;
}

.process-line p {
  margin: 0;
  font-size: 0.84rem;
}

.resource-status {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.resource-status > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.resource-status > div > .icon {
  color: var(--brand);
}

.resource-status span {
  display: grid;
}

.resource-status small,
.resource-status em {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-style: normal;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 70px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  padding: 22px 54px 22px 24px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--brand);
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 24px 22px;
  margin: -4px 0 0;
  font-size: 0.9rem;
}

.page-hero--scene {
  background: linear-gradient(100deg, #fff 0%, #fff 48%, #f4f5f6 48%);
}

.page-hero--scene img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

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

.confirm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.confirm-grid li {
  position: relative;
  min-height: 235px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.confirm-grid li > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
}

.confirm-grid .icon {
  width: 36px;
  height: 36px;
  margin: 14px 0 24px;
  color: var(--brand);
}

.confirm-grid p {
  margin: 0;
  font-size: 0.88rem;
}

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

.recommendation-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(130deg, #fafafa, #fff);
}

.recommendation-card > img {
  justify-self: center;
  width: auto;
  height: 275px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.recommendation-card > div {
  padding: 24px 24px 24px 0;
}

.recommendation-card span {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
}

.recommendation-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.55rem;
}

.recommendation-card h3 {
  min-height: 3.2em;
  font-size: 1rem;
}

.link-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.link-panels > a {
  position: relative;
  min-height: 245px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-panels > a:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.link-panels span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.link-panels h2 {
  margin-top: 12px;
  font-size: 2rem;
}

.link-panels .icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: var(--blue);
  font-size: 1.4rem;
}

.solution-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 30%, rgb(23 104 229 / 8%), transparent 30%),
    linear-gradient(180deg, #fff, #fafbfc);
}

.solution-hero__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  min-height: 640px;
  gap: 70px;
}

.solution-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
}

.solution-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 640px;
}

.solution-hero__scene {
  position: absolute;
  top: 70px;
  right: 0;
  width: 86%;
  height: 480px;
  border-radius: 34px 0 0 34px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.solution-hero__product {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: 18px;
  width: auto;
  height: 550px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 20px rgb(23 25 29 / 13%));
}

.solution-hero__caption {
  position: absolute;
  z-index: 3;
  bottom: 44px;
  left: 2%;
  display: grid;
  padding: 16px 20px;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 90%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.solution-hero__caption span {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

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

.failure-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.failure-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--brand);
}

.failure-grid p {
  margin: 0;
  font-size: 0.88rem;
}

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

.node-grid article {
  padding: 18px 18px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.node-grid article > span {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
}

.node-grid h3 {
  margin-top: 8px;
}

.node-grid p {
  margin: 0;
  font-size: 0.84rem;
}

.node-diagram {
  position: relative;
  height: 160px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 49%, #d8dadd 49%, #d8dadd 51%, transparent 51%),
    linear-gradient(transparent 49%, #d8dadd 49%, #d8dadd 51%, transparent 51%),
    #f7f7f6;
}

.node-diagram i,
.node-diagram b,
.node-diagram em {
  position: absolute;
  display: block;
  background: #8b9199;
}

.node-diagram i {
  top: 18px;
  left: 30px;
  width: 12px;
  height: 125px;
}

.node-diagram b {
  top: 67px;
  left: 30px;
  width: 150px;
  height: 12px;
}

.node-diagram em {
  top: 45px;
  left: 90px;
  width: 12px;
  height: 57px;
  border-radius: 999px;
  background: var(--brand);
  transform: rotate(22deg);
}

.node-diagram--frame i {
  left: 74px;
  width: 70px;
  height: 18px;
}

.node-diagram--frame b {
  top: 18px;
  left: 99px;
  width: 18px;
  height: 125px;
}

.node-diagram--frame em {
  top: 62px;
  left: 94px;
  height: 40px;
  transform: none;
}

.node-diagram--base i {
  top: 22px;
  left: 42px;
  width: 16px;
  height: 110px;
}

.node-diagram--base b {
  top: 116px;
  left: 28px;
  width: 170px;
  height: 18px;
}

.node-diagram--base em {
  top: 100px;
  left: 55px;
  width: 80px;
  height: 12px;
  transform: skewX(-35deg);
}

.node-diagram--drain i {
  top: 28px;
  left: 28px;
  width: 160px;
  height: 16px;
  transform: rotate(8deg);
}

.node-diagram--drain b {
  top: 108px;
  left: 30px;
  width: 150px;
  height: 14px;
  transform: rotate(-7deg);
}

.node-diagram--drain em {
  top: 55px;
  left: 100px;
  width: 55px;
  height: 8px;
  transform: rotate(32deg);
}

.solution-product {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 80px;
}

.solution-product__media {
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle, rgb(198 165 91 / 22%), transparent 45%),
    var(--paper);
}

.solution-product__media img {
  width: auto;
  height: 470px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.solution-product h2 em {
  color: var(--brand);
  font-style: normal;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}

.check-list .icon {
  color: var(--success);
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.condition-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.condition-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.condition-grid h3,
.condition-grid p {
  margin-inline: 22px;
}

.condition-grid h3 {
  margin-top: 20px;
}

.condition-grid p {
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.process-line--large {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.knowledge-hero {
  padding: 82px 0 76px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 30%, rgb(23 104 229 / 8%), transparent 25%),
    radial-gradient(circle at 72% 80%, rgb(198 165 91 / 11%), transparent 20%),
    #fff;
  text-align: center;
}

.knowledge-hero h1 {
  margin-bottom: 18px;
}

.knowledge-hero > div > p:not(.eyebrow) {
  max-width: 660px;
  margin-inline: auto;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 620px);
  min-height: 54px;
  padding: 0 18px;
  margin: 34px auto 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink-muted);
  text-align: left;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

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

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.article-card[hidden] {
  display: none;
}

.article-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.article-card__body {
  padding: 24px;
}

.article-card__body h2 {
  min-height: 2.7em;
  margin-top: 9px;
  font-size: 1.27rem;
  letter-spacing: -0.025em;
}

.article-card__body p {
  min-height: 3.3em;
  font-size: 0.88rem;
}

.knowledge-method {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 80px;
}

.knowledge-method ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.knowledge-method li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.knowledge-method li > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
}

.knowledge-method p {
  margin: 0;
  font-size: 0.86rem;
}

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

.knowledge-product {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  min-height: 190px;
  padding: 18px 24px 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.knowledge-product > img {
  justify-self: center;
  width: auto;
  height: 155px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.knowledge-product > span {
  display: grid;
  gap: 3px;
}

.knowledge-product small {
  color: var(--brand);
  font-weight: 800;
}

.knowledge-product strong {
  font-size: 1.3rem;
}

.knowledge-product em {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-style: normal;
}

.knowledge-product > .icon {
  color: var(--blue);
}

.resource-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 35%, rgb(23 104 229 / 8%), transparent 27%),
    linear-gradient(180deg, #fff, #fbfbfb);
}

.resource-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  min-height: 430px;
  gap: 80px;
}

.resource-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.resource-hero__visual {
  position: relative;
  align-self: stretch;
}

.resource-hero__visual > div {
  position: absolute;
  top: 90px;
  left: 14%;
  display: grid;
  place-items: center;
  width: 220px;
  height: 260px;
  border: 2px solid #e7e9ed;
  border-radius: 20px;
  background: rgb(255 255 255 / 64%);
  color: #d4d8df;
  font-size: 7rem;
}

.resource-hero__visual > img {
  position: absolute;
  z-index: 2;
  right: 12%;
  bottom: 0;
  width: auto;
  height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.resource-search {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
}

.resource-search input {
  min-width: 0;
  padding: 0 22px;
  border: 0;
  outline: 0;
}

.resource-search > span:last-child {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  gap: 8px;
  padding: 0 28px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
}

.resource-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.resource-type-grid button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-soft);
}

.resource-type-grid button:hover,
.resource-type-grid button.is-active {
  border-color: #bfd2f3;
  background: #f1f6ff;
  color: var(--blue);
}

.resource-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 20px;
}

.resource-sidebar {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.resource-sidebar h2 {
  font-size: 1.2rem;
}

.resource-sidebar p {
  font-size: 0.84rem;
}

.resource-sidebar ul {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.resource-sidebar li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.resource-sidebar .icon {
  color: var(--success);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.resource-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.84rem;
}

.resource-table th,
.resource-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.resource-table th {
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.resource-table tr:last-child td {
  border-bottom: 0;
}

.resource-table tr[hidden] {
  display: none;
}

.resource-table td:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.resource-file-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.status--pending {
  background: #f1f2f3;
  color: #686e77;
}

.resource-support {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding: 36px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.resource-support > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.resource-support > div > .icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
}

.resource-support h2 {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.resource-support p {
  margin: 0;
  font-size: 0.88rem;
}

.resource-support ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.resource-support li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.resource-support li .icon {
  color: var(--blue);
}

@media (max-width: 1120px) {
  :root {
    --container: 960px;
  }

  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 450px;
    gap: 20px;
  }

  .product-stage {
    transform: scale(0.92);
    transform-origin: center right;
  }

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

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

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

  .recommendation-card {
    grid-template-columns: 180px 1fr;
    min-height: 260px;
  }

  .recommendation-card > img {
    height: 230px;
  }

  .confirm-grid,
  .failure-grid,
  .node-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav__consult {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
  }

  .hero--home,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .hero-copy {
    padding: 64px 0 0;
  }

  .product-stage {
    min-height: 560px;
    transform: none;
  }

  .product-stage::before {
    right: 50%;
    transform: translateX(50%);
  }

  .stage-product--left {
    left: 12%;
  }

  .stage-product--center {
    left: 39%;
  }

  .stage-product--right {
    right: 9%;
  }

  .section {
    padding-block: 78px;
  }

  .section--tight {
    padding-block: 50px;
  }

  .selection-layout,
  .about-grid,
  .split-panel,
  .detail-overview,
  .material-layout,
  .faq-layout,
  .solution-product,
  .knowledge-method,
  .resource-layout,
  .resource-support {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .page-hero__grid,
  .product-detail-hero__grid,
  .solution-hero__grid,
  .resource-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-hero__grid {
    padding-top: 60px;
  }

  .page-hero__products {
    min-height: 380px;
  }

  .page-hero--scene {
    background: var(--white);
  }

  .page-hero--scene img {
    height: 330px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .product-detail-hero__copy {
    grid-row: 1;
    padding: 50px 0 10px;
  }

  .product-detail-hero__media {
    min-height: 520px;
  }

  .anchor-nav > div {
    justify-content: flex-start;
  }

  .scene-detail-grid {
    grid-template-columns: 1fr;
  }

  .scene-detail-card--wide {
    grid-column: auto;
  }

  .solution-hero__grid {
    padding-top: 55px;
  }

  .solution-hero__visual {
    min-height: 560px;
  }

  .solution-hero__scene {
    left: 0;
    width: 90%;
  }

  .article-grid,
  .knowledge-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-hero__visual {
    min-height: 360px;
  }

  .resource-hero__visual > div {
    top: 24px;
    left: 18%;
  }

  .resource-support {
    padding: 30px;
  }
}

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

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand__text strong {
    font-size: 1.25rem;
  }

  .brand__text small {
    font-size: 0.52rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    padding-top: 45px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .product-stage {
    min-height: 470px;
    margin-inline: -14px;
  }

  .product-stage::before {
    top: 45px;
    width: 410px;
    height: 410px;
  }

  .stage-orbit--one {
    top: 80px;
    right: 50%;
    width: 350px;
    height: 350px;
    transform: translateX(50%);
  }

  .stage-orbit--two {
    display: none;
  }

  .stage-product--left {
    left: 8%;
    height: 340px;
  }

  .stage-product--center {
    left: 36%;
    height: 430px;
  }

  .stage-product--right {
    right: 4%;
    height: 350px;
  }

  .stage-note {
    min-width: 135px;
    padding: 10px 12px;
  }

  .stage-note--top {
    top: 42px;
    right: 4px;
  }

  .stage-note--bottom {
    right: auto;
    bottom: 15px;
    left: 8px;
  }

  .section {
    padding-block: 60px;
  }

  .section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
  }

  .product-grid,
  .product-grid--catalog,
  .application-grid,
  .application-grid--catalog,
  .knowledge-grid,
  .article-grid,
  .knowledge-product-grid,
  .condition-grid,
  .recommendation-grid,
  .selection-steps,
  .material-grid,
  .confirm-grid,
  .failure-grid,
  .node-grid,
  .link-panels,
  .process-line,
  .process-line--large,
  .resource-type-grid,
  .knowledge-method ol {
    grid-template-columns: 1fr;
  }

  .product-card__media,
  .product-grid--catalog .product-card__media {
    height: 360px;
  }

  .product-card__media img,
  .product-grid--catalog .product-card__media img {
    height: 315px;
  }

  .application-card img {
    height: 215px;
  }

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

  .series-list li {
    grid-template-columns: 1fr auto;
    gap: 5px 14px;
  }

  .series-list span,
  .series-list p {
    grid-column: 1;
  }

  .series-list strong,
  .series-list em {
    grid-column: 2;
    grid-row: 1;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

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

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .page-hero__grid {
    padding-top: 40px;
  }

  .page-hero h1,
  .product-detail-hero__copy h1,
  .solution-hero h1,
  .resource-hero h1 {
    font-size: 2.55rem;
  }

  .page-hero__products {
    min-height: 320px;
  }

  .page-hero__products img:nth-child(1) {
    left: 0;
    height: 245px;
  }

  .page-hero__products img:nth-child(2) {
    left: 33%;
    height: 315px;
  }

  .page-hero__products img:nth-child(3) {
    right: 0;
    height: 250px;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-bar button {
    flex: 0 0 auto;
  }

  .product-detail-hero__media {
    min-height: 470px;
  }

  .product-detail-hero__media img {
    height: 430px;
  }

  .product-halo {
    width: 330px;
    height: 330px;
  }

  .feature-list > div {
    grid-template-columns: auto 1fr;
  }

  .feature-list span {
    grid-column: 2;
  }

  .scene-detail-card,
  .scene-detail-card--wide {
    grid-template-columns: 1fr;
  }

  .scene-detail-card img {
    height: 220px;
  }

  .process-line li {
    min-height: auto;
  }

  .page-hero--scene img {
    height: 250px;
  }

  .recommendation-card {
    grid-template-columns: 115px 1fr;
  }

  .recommendation-card > img {
    height: 210px;
  }

  .solution-hero__visual {
    min-height: 460px;
  }

  .solution-hero__scene {
    top: 35px;
    width: 94%;
    height: 350px;
  }

  .solution-hero__product {
    height: 410px;
  }

  .solution-hero__caption {
    bottom: 20px;
  }

  .solution-product__media {
    min-height: 440px;
  }

  .solution-product__media img {
    height: 400px;
  }

  .article-card__body h2,
  .article-card__body p {
    min-height: 0;
  }

  .knowledge-product {
    grid-template-columns: 82px 1fr auto;
  }

  .resource-hero__visual {
    min-height: 310px;
  }

  .resource-hero__visual > div {
    left: 4%;
    width: 190px;
    height: 220px;
  }

  .resource-hero__visual > img {
    right: 2%;
    height: 300px;
  }

  .resource-search {
    grid-template-columns: 1fr;
  }

  .resource-search input {
    min-height: 54px;
  }

  .resource-search > span:last-child {
    justify-content: center;
    min-height: 48px;
  }

  .resource-sidebar {
    display: none;
  }

  .resource-table th,
  .resource-table td {
    padding: 15px 13px;
  }

  .resource-support > div {
    align-items: flex-start;
  }
}

.color-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 50%, rgb(198 165 91 / 9%), transparent 24%),
    var(--white);
}

.color-section__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 64px;
}

.color-section__copy > p:not(.eyebrow) {
  max-width: 480px;
}

.color-section__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0;
}

.color-section__facts span {
  display: grid;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.color-section__facts strong {
  color: var(--brand);
  font-size: 1.45rem;
}

.color-board {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.color-board__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.color-board__heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.color-board__heading span {
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px 10px;
  padding: 22px 0 0;
  margin: 0;
  list-style: none;
}

.color-swatch {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  text-align: center;
}

.color-swatch__sample {
  width: 42px;
  height: 42px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgb(23 25 29 / 12%), 0 6px 14px rgb(23 25 29 / 8%);
  transition: transform 160ms ease;
}

.color-swatch:hover .color-swatch__sample {
  transform: scale(1.12);
}

.color-swatch__meta {
  display: grid;
  max-width: 78px;
  line-height: 1.22;
}

.color-swatch__meta strong {
  color: var(--ink);
  font-size: 0.66rem;
}

.color-swatch__meta small {
  overflow: hidden;
  color: var(--ink-muted);
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.color-board__note {
  padding-top: 16px;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.catalog-count {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 22px;
}

.catalog-count strong {
  color: var(--brand);
  font-size: 2.6rem;
  line-height: 1;
}

.catalog-count span {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.source-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.source-panel p:last-child {
  margin-bottom: 0;
}

.product-info-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 70px;
}

.product-bullet-panel {
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.product-bullet-panel ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-bullet-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.product-bullet-panel li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.product-bullet-panel--warning {
  border-color: #eadcaf;
  background: #fffaf0;
}

.product-bullet-panel--warning li::before {
  background: var(--gold);
}

.data-empty {
  padding-left: 18px;
  margin: 0;
  border-left: 3px solid var(--gold);
}

.product-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 20px;
}

.product-data-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.product-data-grid dt {
  margin-bottom: 9px;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.product-data-grid dd {
  margin: 0;
  font-weight: 700;
}

.product-source-note {
  grid-column: auto;
}

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

.product-feature-list > div {
  grid-template-columns: auto 92px 1fr;
}

.resource-table a:hover {
  color: var(--blue);
}

@media (max-width: 900px) {
  .color-section__layout,
  .source-panel,
  .product-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .color-swatches {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .color-board {
    padding: 20px 14px;
    border-radius: var(--radius-md);
  }

  .color-board__heading {
    display: grid;
  }

  .color-swatches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 6px;
  }

  .color-swatch__sample {
    width: 38px;
    height: 38px;
  }

  .product-data-grid,
  .product-grid--related {
    grid-template-columns: 1fr;
  }

  .product-bullet-panel {
    padding: 24px 20px;
  }

  .product-feature-list > div {
    grid-template-columns: auto 1fr;
  }

  .product-feature-list span {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.not-found {
  display: grid;
  align-content: center;
  min-height: 100vh;
  width: min(100% - 48px, 680px);
  margin-inline: auto;
  text-align: center;
}

.franchise-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at 82% 18%, rgb(198 165 91 / 22%), transparent 32%),
    linear-gradient(135deg, #fff 0%, #faf6f1 54%, #f4e8e9 100%);
}

.franchise-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -28vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgb(118 28 34 / 12%);
  border-radius: 50%;
  content: "";
}

.franchise-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.franchise-hero__copy h1 {
  max-width: 880px;
}

.franchise-hero__lead {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.franchise-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.franchise-hero__note {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.franchise-hero__panel {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgb(118 28 34 / 12%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 88%);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.franchise-hero__panel > strong {
  display: block;
  color: var(--brand);
  font-size: clamp(4.2rem, 8vw, 7rem);
  line-height: 0.92;
}

.franchise-hero__panel > span {
  display: block;
  margin: 12px 0 30px;
  color: var(--ink-muted);
  font-weight: 700;
}

.franchise-hero__panel ul {
  display: grid;
  gap: 16px;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.franchise-hero__panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}

.franchise-hero__panel li .icon {
  margin-top: 0.22em;
  color: var(--brand);
}

.franchise-section {
  padding: clamp(78px, 9vw, 124px) 0;
}

.franchise-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.franchise-partner-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.franchise-partner-card h3 {
  margin-top: 26px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.franchise-partner-card p {
  margin-bottom: 0;
}

.franchise-icon {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--brand-soft);
  color: var(--brand);
  place-items: center;
}

.franchise-icon .icon {
  width: 25px;
  height: 25px;
}

.franchise-advantages {
  background: var(--muted);
}

.franchise-advantages__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.franchise-advantages__intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

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

.franchise-advantage-card {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.franchise-advantage-card h3 {
  font-size: 1.32rem;
}

.franchise-advantage-card p {
  margin-bottom: 0;
}

.franchise-process {
  background: var(--white);
}

.franchise-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.franchise-process-step {
  position: relative;
  padding: 30px 24px 0 0;
  border-top: 2px solid var(--line-strong);
}

.franchise-process-step::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
  content: "";
}

.franchise-process-step > span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.franchise-process-step h3 {
  margin: 10px 0 8px;
}

.franchise-process-step p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.franchise-contact {
  padding: 0 0 clamp(80px, 10vw, 132px);
}

.franchise-contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
  padding: clamp(36px, 7vw, 76px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgb(198 165 91 / 20%), transparent 30%),
    var(--footer);
  color: var(--white);
}

.franchise-contact__copy h2 {
  max-width: 720px;
}

.franchise-contact__copy > p {
  max-width: 720px;
  color: var(--footer-soft);
}

.franchise-contact__copy .eyebrow {
  color: var(--gold);
}

.franchise-contact__phone {
  display: inline-grid;
  gap: 2px;
  margin: 14px 0 20px;
}

.franchise-contact__phone span {
  color: var(--footer-soft);
  font-size: 0.78rem;
}

.franchise-contact__phone strong {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.03em;
}

.franchise-contact__phone:hover strong {
  color: var(--gold);
}

.franchise-contact__hours {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.franchise-contact__qr {
  display: grid;
  align-self: center;
  justify-items: center;
  height: fit-content;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.franchise-contact__qr img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin-bottom: 15px;
  object-fit: contain;
}

.franchise-contact__qr strong {
  font-size: 1rem;
}

.franchise-contact__qr span {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .franchise-hero__layout,
  .franchise-advantages__layout {
    grid-template-columns: 1fr;
  }

  .franchise-advantages__intro {
    position: static;
  }

  .franchise-partner-grid {
    grid-template-columns: 1fr;
  }

  .franchise-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
  }

  .franchise-contact__panel {
    grid-template-columns: minmax(0, 1fr) 230px;
  }
}

@media (max-width: 680px) {
  .franchise-hero {
    padding: 56px 0 70px;
  }

  .franchise-hero__layout {
    gap: 36px;
  }

  .franchise-hero__actions {
    display: grid;
  }

  .franchise-advantage-grid,
  .franchise-process-list,
  .franchise-contact__panel {
    grid-template-columns: 1fr;
  }

  .franchise-advantage-card {
    min-height: 0;
  }

  .franchise-process-list {
    gap: 0;
  }

  .franchise-process-step {
    padding: 0 0 30px 30px;
    border-top: 0;
    border-left: 2px solid var(--line-strong);
  }

  .franchise-process-step::before {
    top: 5px;
    left: -7px;
  }

  .franchise-contact__panel {
    grid-auto-rows: max-content;
    gap: 36px;
    align-content: start;
  }

  .franchise-contact__qr {
    width: min(100%, 270px);
    place-self: center;
  }
}

@media (max-width: 680px) {
  .consult-dialog {
    width: min(calc(100% - 20px), 520px);
    max-height: calc(100vh - 20px);
    border-radius: 20px;
    overflow-y: auto;
  }

  .consult-dialog__panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .consult-dialog__qr {
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 4px 18px;
    padding: 26px 52px 24px 22px;
    text-align: left;
  }

  .consult-dialog__qr img {
    grid-row: 1 / span 2;
    width: 140px;
  }

  .consult-dialog__qr strong {
    align-self: end;
    margin-top: 0;
  }

  .consult-dialog__qr span {
    align-self: start;
  }

  .consult-dialog__content {
    padding: 30px 22px 24px;
  }

  .consult-dialog__content h2 {
    padding-right: 0;
    font-size: 1.5rem;
  }

  .consult-dialog__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 440px) {
  .consult-dialog__qr {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 22px 48px 20px 16px;
  }

  .consult-dialog__qr img {
    width: 112px;
  }

  .consult-dialog__details > div {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .consult-dialog__actions {
    grid-template-columns: 1fr;
  }
}
