:root {
  --white: #ffffff;
  --cream: #fbf7ef;
  --cream-2: #f5ecde;
  --beige: #e9d9c3;
  --gold: #b77a24;
  --gold-2: #c9923e;
  --gold-dark: #8b5b1a;
  --ink: #151515;
  --muted: #5f5a53;
  --line: #eadcc9;
  --black: #111111;
  --shadow: 0 16px 40px rgba(91, 61, 25, 0.12);
  --radius: 8px;
  --container: 1120px;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
a,
button,
label,
span {
  overflow-wrap: anywhere;
}

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

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

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

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

.desktop-header .container {
  width: min(1320px, calc(100% - 32px));
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.section {
  padding: 44px 0;
}

.section-tight {
  padding: 30px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
}

.section-title {
  margin: 0 0 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 700;
}

.section-title::after,
.decorated::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-kicker {
  max-width: 680px;
  margin: -10px auto 28px;
  color: var(--muted);
  text-align: center;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  padding: 12px 22px;
  color: var(--gold-dark);
  background: var(--white);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(183, 122, 36, 0.18);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  border-color: var(--gold-dark);
}

.btn-icon {
  width: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 6px;
}

.btn-whatsapp {
  min-width: 132px;
  padding-inline: 16px;
  color: var(--gold-dark);
  background: #fff;
}

.icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 auto;
}

.svg-icon {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
  fill: none;
  stroke: currentColor;
}

.site-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.proof-item .site-icon-img,
.factory-feature-grid .site-icon-img,
.advantage-card .site-icon-img,
.contact-card .site-icon-img {
  object-position: center;
}

.step-icon .site-icon-img {
  width: 54px;
  height: 54px;
}

.order-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark-image {
  color: inherit;
  font-size: 0;
  line-height: 0;
}

.brand-logo-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
}

.brand-name-gold {
  color: var(--gold);
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.desktop-header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 34px);
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  position: relative;
  padding: 34px 0 30px;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--gold-dark);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-actions .btn,
.header-actions .language-select {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.language-select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  padding: 0 10px;
  font-weight: 700;
}

.mobile-header {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1240px) {
  .desktop-header .brand-tagline {
    display: none;
  }

  .desktop-header .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 34px;
  }

  .desktop-header .brand-name {
    font-size: 21px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    padding-inline: 14px;
    font-size: 13px;
  }
}

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

  .mobile-header {
    display: block;
  }
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #fff 0%, #fffdf9 36%, rgba(247, 239, 226, 0.78) 58%, #fff 100%),
    radial-gradient(circle at 7% 28%, #fff4e5 0, transparent 36%);
  overflow: hidden;
}

@media (min-width: 781px) {
  body[data-page="home"] .hero .container,
  body[data-page="home"] .home-applications-section .container {
    width: min(1280px, calc(100% - 88px));
  }

  body:not([data-page="home"]) .page-hero .container {
    width: 100%;
    max-width: none;
  }

  body:not([data-page="home"]) .page-hero-copy {
    padding-left: clamp(72px, 5.8vw, 118px);
  }
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.4fr) minmax(0, 0.6fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.home-hero-grid .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 34px 14px 0;
  position: relative;
  z-index: 2;
}

.home-hero-grid .hero-copy h1 {
  max-width: 460px;
  margin-bottom: 7px;
  font-size: clamp(38px, 3vw, 46px);
  line-height: 0.98;
}

.home-hero-grid .hero-copy p {
  max-width: 400px;
  margin-bottom: 9px;
  font-size: 13px;
  line-height: 1.4;
}

.home-hero-grid .hero-actions {
  margin: 9px 0 13px;
}

.home-hero-grid .hero-actions .btn {
  min-height: 40px;
  min-width: 134px;
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 4px;
}

html[lang="zh"] .home-hero-grid .hero-actions .btn {
  min-width: 142px;
  font-size: 14px;
}

.home-hero-grid .proof-row {
  width: min(520px, 100%);
  gap: 12px;
  margin-top: 2px;
  padding: 0;
  background: transparent;
}

.home-hero-grid .proof-item {
  align-items: flex-start;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 10px;
  line-height: 1.22;
}

.home-hero-grid .proof-item strong {
  font-size: 11px;
}

.home-hero-grid .proof-item .icon {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  color: var(--gold);
  font-size: 23px;
  line-height: 1;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}

body[data-page="home"] .home-hero-grid .hero-copy h1 {
  max-width: 465px;
  margin-bottom: 7px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(38px, 3vw, 46px);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

html[lang="zh"] body[data-page="home"] .home-hero-grid .hero-copy h1 {
  max-width: 430px;
  font-family: var(--font-display), "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", serif;
  font-size: clamp(34px, 2.75vw, 42px);
  line-height: 1.02;
  font-weight: 700;
}

.hero-factory-line {
  margin: 0 0 7px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-copy h1 span,
.page-hero-copy h1 span {
  color: var(--gold);
}

.hero-copy p,
.page-hero-copy p {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 24px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 12px;
  min-width: 0;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.03fr 0.9fr 0.98fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 5px;
  height: auto;
  aspect-ratio: 2.16 / 1;
  align-items: stretch;
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
}

body[data-page="home"] .hero + .mobile-only + .section {
  padding-top: 14px;
}

body[data-page="home"] .home-applications-section {
  padding-bottom: 30px;
  background: #fff;
}

body[data-page="home"] .home-applications-section .section-title {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.08;
  text-transform: uppercase;
}

body[data-page="home"] .home-applications-section .section-title::after {
  width: 104px;
  margin-top: 8px;
}

body[data-page="home"] .home-applications-section .grid.grid-4.desktop-only {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="home"] .home-applications-section .application-card {
  border-color: #eadcc9;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(91, 61, 25, 0.04);
}

body[data-page="home"] .home-applications-section .application-card .image-wrap {
  height: 104px;
  aspect-ratio: auto;
  background: var(--cream);
}

body[data-page="home"] .home-applications-section .application-card .card-body {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 6px 8px;
}

body[data-page="home"] .home-applications-section .application-card .card-title {
  justify-content: center;
  gap: 5px;
  margin: 0;
  font-size: 12px;
  text-align: center;
}

body[data-page="home"] .home-applications-section .application-card .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.hero-mosaic .tile {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--cream);
  transform: none;
  transform-origin: center;
  margin: 0;
}

.hero-mosaic .tile img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: 0;
  transform: none;
}

.hero-mosaic .tile-large {
  grid-row: span 2;
}

.hero-mosaic .tile:nth-child(1) {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.hero-mosaic .tile:nth-child(1) img {
  object-position: 50% 40%;
}

.hero-mosaic .tile:nth-child(2) {
  margin-left: -18px;
  clip-path: polygon(8% 0, 100% 0, 94% 100%, 0 100%);
}

.hero-mosaic .tile:nth-child(2) img {
  object-position: 50% 47%;
}

.hero-mosaic .tile:nth-child(3) {
  margin-left: -26px;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-mosaic .tile:nth-child(3) img {
  object-position: 58% 50%;
}

.hero-mosaic .tile:nth-child(4) {
  margin-left: -18px;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 8% 100%);
}

.hero-mosaic .tile:nth-child(4) img {
  object-position: 52% 50%;
}

.hero-mosaic .tile:nth-child(5) {
  margin-left: -26px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.hero-mosaic .tile:nth-child(5) img {
  object-position: 50% 48%;
}

.hero-mosaic .replace-image-btn {
  transform: none;
}

.page-hero {
  min-height: 285px;
  display: flex;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 24px;
  align-items: center;
}

.page-hero-media {
  height: 285px;
  position: relative;
  overflow: hidden;
}

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

.page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream), transparent 44%);
  pointer-events: none;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card,
.product-card,
.advantage-card,
.application-card,
.policy-card,
.contact-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.application-card,
.product-card {
  overflow: hidden;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

.application-card .image-wrap,
.product-card .image-wrap {
  aspect-ratio: 1.52 / 1;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 18px;
  min-width: 0;
}

.card-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.15;
}

.application-card .card-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.product-card p,
.application-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.tag-line {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
}

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

.advantage-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px;
}

.advantage-card h3 {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.25;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

body[data-page="home"] .section-soft .grid.grid-3 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="home"] .section-soft .advantage-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 18px 12px 16px;
  text-align: center;
}

body[data-page="home"] .section-soft .advantage-card .icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
}

body[data-page="home"] .section-soft .advantage-card h3 {
  margin-bottom: 7px;
  font-size: 14px;
}

body[data-page="home"] .section-soft .advantage-card p {
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1240px) {
  body[data-page="home"] .section-soft .grid.grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

.showcase-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.showcase-item .image-wrap {
  aspect-ratio: 1.55 / 1;
}

.showcase-caption {
  padding: 12px 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(50% + 42px);
  width: calc(100% - 70px);
  border-top: 1px dashed var(--gold-2);
}

.step-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-size: 24px;
}

.process-step h3 {
  margin: 12px 0 5px;
  font-size: 14px;
  line-height: 1.25;
}

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

.policy-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  background: linear-gradient(135deg, #fff, #fcf5eb);
}

.policy-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-lead {
  max-width: 820px;
  margin: -8px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.geo-faq-list,
.search-intent-grid {
  display: grid;
  gap: 18px;
}

.geo-faq-list {
  max-width: 960px;
  margin: 0 auto;
}

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

.geo-faq-card,
.search-intent-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(91, 61, 25, 0.04);
}

.geo-faq-card {
  padding: 0;
  overflow: hidden;
}

.geo-faq-card summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 20px 58px 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

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

.geo-faq-card summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 128, 50, 0.32);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  transform: translateY(-50%);
}

.geo-faq-card[open] summary::after {
  content: "-";
}

.geo-faq-card h3,
.search-intent-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
}

.geo-faq-card p,
.search-intent-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.geo-faq-card p {
  padding: 0 24px 22px;
}

.search-intent-card {
  position: relative;
  padding: 24px 24px 22px;
}

.search-intent-card .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: var(--gold);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 7px 10px;
  border: 1px solid rgba(184, 128, 50, 0.22);
  border-radius: 999px;
  background: #fbf7ef;
  color: #7a5522;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff 0%, #fbf3e7 52%, #fff 100%);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 118px;
}

.cta-inner h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.15;
}

.cta-inner p {
  margin: 0;
  color: var(--muted);
}

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

.footer {
  background: radial-gradient(circle at 0 0, #2c2720 0, #141414 42%, #0d0d0d 100%);
  color: #f8f0e7;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 28px;
  padding: 42px 0 32px;
}

.footer .brand-name,
.footer .brand-mark {
  color: #f0c985;
}

.footer p,
.footer a {
  color: rgba(248, 240, 231, 0.76);
  font-size: 14px;
}

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

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.social-row {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.social-row span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.product-category-row .product-card {
  min-height: 100%;
}

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

.option-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.option-box h3 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 23px;
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.matrix th,
.matrix td {
  border: 1px solid var(--line);
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}

.matrix th {
  background: var(--cream);
  font-size: 14px;
}

.matrix td:first-child,
.matrix th:first-child {
  text-align: left;
  font-weight: 800;
}

[dir="rtl"] .matrix td:first-child,
[dir="rtl"] .matrix th:first-child {
  text-align: right;
}

.check {
  color: var(--gold);
  font-weight: 900;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.recommend-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fffaf2 100%);
}

.recommend-card .icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.recommend-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.12;
}

.recommend-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.recommend-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.recommend-card div span {
  padding: 7px 10px;
  border: 1px solid rgba(184, 128, 47, 0.24);
  border-radius: 999px;
  background: rgba(184, 128, 47, 0.07);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

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

.work-card {
  display: grid;
  grid-template-rows: auto auto minmax(72px, auto) 190px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.work-card .image-wrap {
  width: 100%;
  height: 190px;
  aspect-ratio: auto;
  margin-top: 18px;
  border-radius: var(--radius);
}

.work-card .image-wrap img {
  object-fit: cover;
}

.work-card:nth-child(1) .image-wrap img,
.work-card:nth-child(2) .image-wrap img {
  object-position: center 34%;
}

.work-card:nth-child(3) .image-wrap img {
  object-position: center center;
}

.work-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-weight: 800;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  padding: 0 13px;
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  padding: 13px;
  resize: vertical;
}

.upload-box {
  min-height: 94px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--gold-2);
  border-radius: 5px;
  background: #fffdf9;
  text-align: center;
  color: var(--muted);
  cursor: pointer;
}

.upload-box input {
  display: none;
}

.upload-box strong {
  display: block;
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 28px;
  align-items: start;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px;
  margin-bottom: 14px;
}

.contact-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 21px;
}

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

.replace-image-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(20, 20, 20, 0.72);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.image-wrap-editable {
  cursor: pointer;
}

.replace-image-btn {
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

[dir="rtl"] .replace-image-btn {
  right: auto;
  left: 8px;
}

.mobile-bottom-bar {
  display: none;
}

@media (max-width: 780px) {
  body {
    font-size: 15px;
    padding-bottom: 74px;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .site-header {
    position: sticky;
  }

  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .mobile-header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .mobile-header-inner > * {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

  .mobile-header .brand {
    gap: 6px;
  }

  .mobile-header .brand-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
  }

  .brand-tagline {
    display: none;
  }

  .mobile-lang-control {
    position: relative;
    display: inline-flex;
    width: 96px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding-inline: 12px 28px;
    border: 1px solid var(--gold-dark);
    border-radius: 5px;
    background: #fff;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-lang-control::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }

  .mobile-lang-control .mobile-header-lang {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 44px;
    opacity: 0;
    cursor: pointer;
  }

  .mobile-quick-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .mobile-quick-nav a {
    min-height: 70px;
    display: grid;
    place-items: center;
    padding: 8px 4px;
    color: var(--ink);
    font-size: 12px;
    text-align: center;
    border-right: 1px solid var(--line);
  }

  .mobile-quick-nav a.active {
    color: var(--gold-dark);
    box-shadow: inset 0 -3px 0 var(--gold);
  }

  [dir="rtl"] .mobile-quick-nav a {
    border-right: 0;
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 34px 0;
  }

  .section-title {
    font-size: 25px;
  }

  .hero {
    background: #fff;
  }

  .mobile-home-hero {
    padding: 20px 0 22px;
  }

  .mobile-home-hero h1,
  .mobile-page-hero h1,
  .mobile-hero-title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1.03;
    word-break: break-word;
  }

  .mobile-home-hero h1 span,
  .mobile-page-hero h1 span,
  .mobile-hero-title span {
    color: var(--gold);
  }

  .mobile-home-hero p,
  .mobile-page-hero p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
  }

  .mobile-hero-media {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 7px;
    align-items: stretch;
    height: clamp(450px, 124vw, 620px);
    margin-top: 14px;
  }

  .mobile-hero-media > *,
  .mobile-hero-media .stack,
  .mobile-hero-media .image-wrap {
    min-height: 0;
    min-width: 0;
  }

  .mobile-hero-media .image-wrap {
    aspect-ratio: 1.22 / 1;
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }

  .mobile-hero-media > .image-wrap {
    height: 100%;
    aspect-ratio: auto;
  }

  .mobile-hero-media .stack {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .mobile-hero-media .stack .image-wrap {
    height: 100%;
    aspect-ratio: auto;
  }

  .mobile-page-hero {
    padding: 28px 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .mobile-page-hero.has-image {
    background-size: cover;
    background-position: center;
  }

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

  .proof-item {
    min-height: 48px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .grid,
  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2,
  .product-category-row,
  .option-strip,
  .work-grid,
  .contact-layout,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .section-soft .grid.grid-3 {
    grid-template-columns: 1fr;
  }

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

  .mobile-app-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
  }

  .mobile-app-card .image-wrap {
    aspect-ratio: 1.46 / 1;
  }

  .mobile-app-card h3 {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 10px;
    font-size: 16px;
  }

  .mobile-product-list {
    display: grid;
    gap: 14px;
  }

  .mobile-product-card {
    display: grid;
    grid-template-columns: 0.78fr 1.08fr;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 8px;
  }

  .mobile-product-card .image-wrap {
    aspect-ratio: 1.35 / 1;
    border-radius: 6px;
  }

  .mobile-product-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
  }

  .mobile-product-card p {
    margin: 0 0 12px;
    color: var(--muted);
  }

  .showcase-grid {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .showcase-item {
    scroll-snap-align: start;
  }

  body[data-page="home"] .home-products-section {
    padding: 30px 0 38px;
  }

  body[data-page="home"] .home-products-section .showcase-grid {
    grid-template-columns: repeat(6, minmax(230px, 76vw));
    gap: 14px;
  }

  body[data-page="home"] .showcase-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
  }

  body[data-page="home"] .showcase-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #ead8bc;
    box-shadow: none;
    cursor: pointer;
    transition: width 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
  }

  body[data-page="home"] .showcase-dot.is-active {
    width: 20px;
    background: var(--gold-dark);
  }

  body[data-page="home"] .home-products-section .showcase-item .image-wrap {
    height: 168px;
    aspect-ratio: auto;
  }

  body[data-page="home"] .home-products-section .showcase-caption {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 14px 14px 16px;
    font-family: var(--font-body);
    text-align: center;
  }

  body[data-page="home"] .home-products-section .showcase-caption strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.14;
  }

  body[data-page="home"] .home-products-section .showcase-caption span {
    display: block;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.38;
    font-weight: 500;
  }

  .process-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: #fff;
  }

  [dir="rtl"] .process-step {
    text-align: right;
  }

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

  .step-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .process-step h3 {
    margin: 0 0 4px;
    font-size: 15px;
  }

  .policy-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .section-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .section-eyebrow {
    font-size: 11px;
  }

  .section-lead {
    margin-top: -4px;
    font-size: 15px;
    line-height: 1.65;
  }

  .geo-faq-list,
  .search-intent-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .search-intent-card {
    padding: 18px;
  }

  .geo-faq-card summary {
    min-height: 62px;
    padding: 16px 50px 16px 18px;
    font-size: 20px;
  }

  .geo-faq-card summary::after {
    right: 18px;
    width: 24px;
    height: 24px;
  }

  .geo-faq-card p {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  .geo-faq-card h3,
  .search-intent-card h3 {
    font-size: 20px;
  }

  .search-intent-card .icon {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 10px;
  }

  .keyword-list {
    gap: 7px;
  }

  .keyword-list li {
    font-size: 11px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .cta-inner h2 {
    font-size: 25px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 20px;
  }

  .field.full {
    grid-column: auto;
  }

  .matrix {
    display: block;
    overflow-x: auto;
  }

  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .recommend-card {
    min-height: 0;
    padding: 20px;
  }

  .recommend-card .icon {
    width: 36px;
    height: 36px;
  }

  .recommend-card h3 {
    font-size: 21px;
  }

  .footer-inner {
    padding: 34px 0 22px;
  }

  .footer h3 {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(185, 137, 58, 0.2);
    background: rgba(255, 250, 243, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 -14px 30px rgba(44, 36, 24, 0.08);
  }

  .mobile-bottom-bar a {
    position: relative;
    isolation: isolate;
    min-height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-right: 0;
    color: #8f6224;
    font-weight: 800;
    min-width: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.1;
  }

  .mobile-bottom-bar .tab-icon {
    width: 28px !important;
    height: 28px !important;
    color: currentColor;
  }

  .mobile-bottom-bar .tab-icon .site-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-bottom-bar .tab-label {
    display: block;
    max-width: 100%;
    padding: 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-bottom-bar a:first-child {
    background: transparent;
    color: #8f6224;
  }

  .mobile-bottom-bar a:first-child .tab-icon {
    color: #8f6224;
  }

  .mobile-bottom-bar a:nth-child(2) {
    color: #fff;
    background: transparent;
  }

  .mobile-bottom-bar a:nth-child(2)::before {
    content: "";
    position: absolute;
    inset: 7px 8px;
    z-index: -1;
    border-radius: 999px;
    background: linear-gradient(135deg, #c79845 0%, #a56e25 58%, #7a4d19 100%);
    box-shadow: 0 8px 18px rgba(122, 77, 25, 0.2);
  }

  .mobile-bottom-bar a:nth-child(2) .tab-icon {
    color: #fff;
  }

  .mobile-bottom-bar a:last-child {
    border-right: 0;
    color: #8f6224;
    background: transparent;
  }

  .mobile-bottom-bar a:last-child .tab-icon {
    color: #9a651d;
    width: 31px !important;
    height: 31px !important;
  }
}

@media (min-width: 781px) {
  body[data-page="home"] {
    background: #fff;
  }

  body[data-page="home"] .container {
    width: calc(100% - 100px);
    max-width: none;
  }

  body[data-page="home"] .hero .container {
    width: calc(100% - 100px);
    max-width: none;
  }

  body[data-page="home"] .hero {
    background: #fff;
  }

  body[data-page="home"] .home-hero-grid {
    grid-template-columns: minmax(430px, 0.41fr) minmax(0, 0.59fr);
    height: auto;
    min-height: 460px;
    overflow: visible;
  }

  body[data-page="home"] .home-hero-grid .hero-copy {
    padding: 32px 42px 28px 0;
    justify-content: center;
  }

  body[data-page="home"] .hero-eyebrow,
  body[data-page="home"] .section-eyebrow {
    margin: 0 0 12px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  body[data-page="home"] .home-hero-grid .hero-copy h1 {
    max-width: 520px;
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(38px, 3.55vw, 50px);
    line-height: 1.06;
    font-weight: 700;
  }

  body[data-page="home"] .home-hero-grid .hero-copy h1::after {
    display: none;
  }

  html[lang="zh"] body[data-page="home"] .home-hero-grid .hero-copy h1 {
    max-width: 530px;
    font-size: clamp(35px, 3.15vw, 45px);
    line-height: 1.12;
  }

  html:not([lang="zh"]) body[data-page="home"] .home-hero-grid .hero-copy h1 {
    max-width: 430px;
    font-size: clamp(36px, 3.15vw, 46px);
    line-height: 1.05;
  }

  html[lang="ar"] body[data-page="home"] .home-hero-grid .hero-copy h1,
  html[lang="tr"] body[data-page="home"] .home-hero-grid .hero-copy h1,
  html[lang="hi"] body[data-page="home"] .home-hero-grid .hero-copy h1,
  html[lang="es"] body[data-page="home"] .home-hero-grid .hero-copy h1,
  html[lang="pt"] body[data-page="home"] .home-hero-grid .hero-copy h1 {
    font-size: clamp(34px, 2.9vw, 43px);
  }

  html[lang="hi"] body[data-page="home"] .home-hero-grid,
  html[lang="tr"] body[data-page="home"] .home-hero-grid,
  html[lang="pt"] body[data-page="home"] .home-hero-grid {
    min-height: 500px;
  }

  html[lang="hi"] body[data-page="home"] .home-hero-grid .hero-copy,
  html[lang="tr"] body[data-page="home"] .home-hero-grid .hero-copy,
  html[lang="pt"] body[data-page="home"] .home-hero-grid .hero-copy {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  html[lang="hi"] body[data-page="home"] .home-hero-grid .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(32px, 2.6vw, 40px);
    line-height: 1.12;
  }

  html[lang="hi"] body[data-page="home"] .home-hero-grid .hero-copy p:not(.hero-eyebrow):not(.hero-factory-line),
  html[lang="tr"] body[data-page="home"] .home-hero-grid .hero-copy p:not(.hero-eyebrow):not(.hero-factory-line),
  html[lang="pt"] body[data-page="home"] .home-hero-grid .hero-copy p:not(.hero-eyebrow):not(.hero-factory-line) {
    font-size: 12.5px;
    line-height: 1.58;
  }

  body[data-page="home"] .home-hero-grid .hero-factory-line {
    max-width: 520px;
    margin: 0 0 8px;
    color: #161616;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
  }

  body[data-page="home"] .home-hero-grid .hero-copy p:not(.hero-eyebrow):not(.hero-factory-line) {
    max-width: 500px;
    margin-bottom: 0;
    color: #393734;
    font-size: 13px;
    line-height: 1.62;
    font-weight: 600;
  }

  body[data-page="home"] .home-hero-grid .hero-actions {
    margin: 18px 0 28px;
    gap: 16px;
  }

  body[data-page="home"] .home-hero-grid .hero-actions .btn {
    min-width: 150px;
    min-height: 42px;
    padding: 11px 22px;
    font-size: 13px;
    letter-spacing: 0;
  }

  body[data-page="home"] .home-hero-grid .proof-row {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 2px 0 0;
    padding-bottom: 10px;
  }

  body[data-page="home"] .home-hero-grid .proof-item {
    gap: 12px;
    color: #4d4943;
    font-size: 12px;
    line-height: 1.32;
    min-height: 56px;
    align-items: flex-start;
    overflow: visible;
  }

  body[data-page="home"] .home-hero-grid .proof-item > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body[data-page="home"] .home-hero-grid .proof-item strong {
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.18;
  }

  body[data-page="home"] .home-hero-grid .proof-item .icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: var(--gold);
    font-size: 0;
  }

  body[data-page="home"] .hero-mosaic {
    grid-template-columns: 0.88fr 0.85fr 0.85fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 6px;
    height: auto;
    min-height: 460px;
    aspect-ratio: auto;
    align-self: stretch;
    background: #fff;
  }

  html[lang="hi"] body[data-page="home"] .hero-mosaic,
  html[lang="tr"] body[data-page="home"] .hero-mosaic,
  html[lang="pt"] body[data-page="home"] .hero-mosaic {
    min-height: 500px;
  }

  body[data-page="home"] .hero-mosaic .tile {
    background: #f2eadf;
    border-radius: 4px;
  }

  body[data-page="home"] .hero-mosaic .tile:nth-child(1) {
    clip-path: none;
  }

  body[data-page="home"] .hero-mosaic .tile:nth-child(2) {
    margin-left: 0;
    clip-path: none;
  }

  body[data-page="home"] .hero-mosaic .tile:nth-child(3) {
    margin-left: 0;
    clip-path: none;
  }

  body[data-page="home"] .hero-mosaic .tile:nth-child(4) {
    margin-left: 0;
    clip-path: none;
  }

  body[data-page="home"] .hero-mosaic .tile:nth-child(5) {
    margin-left: 0;
    clip-path: none;
  }

  body[data-page="home"] .home-applications-section {
    padding: 34px 0 42px;
    background: #fff;
  }

  body[data-page="home"] .desktop-section-heading {
    margin-bottom: 22px;
    text-align: center;
  }

  body[data-page="home"] .desktop-section-heading .section-eyebrow {
    margin: 0 0 4px;
    font-size: 12px;
  }

  body[data-page="home"] .desktop-section-heading .section-title {
    margin: 0;
    font-size: clamp(28px, 2.7vw, 38px);
    text-transform: none;
  }

  body[data-page="home"] .desktop-section-heading .section-title::after {
    width: 76px;
    margin-top: 10px;
  }

  body[data-page="home"] .home-applications-section .grid.grid-4.desktop-only {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page="home"] .home-applications-section .application-card {
    border: 1px solid #eadcc9;
    border-radius: 5px;
    box-shadow: none;
  }

  body[data-page="home"] .home-applications-section .application-card .image-wrap {
    height: clamp(118px, 10.8vw, 150px);
  }

  body[data-page="home"] .home-applications-section .application-card .card-body {
    min-height: 82px;
    padding: 14px 8px 16px;
  }

  body[data-page="home"] .home-applications-section .application-card .card-title {
    flex-direction: column;
    gap: 6px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.04;
    font-weight: 700;
  }

  body[data-page="home"] .home-applications-section .application-card .icon {
    width: auto;
    height: auto;
    font-size: 22px;
    line-height: 1;
  }

  body[data-page="home"] .home-advantages-section {
    display: none;
  }

  body[data-page="home"] .home-products-section {
    padding: 28px 0 46px;
    background: #fff;
  }

  body[data-page="home"] .home-products-section .showcase-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page="home"] .showcase-item {
    border-radius: 5px;
    border-color: #eadcc9;
    box-shadow: none;
  }

  body[data-page="home"] .showcase-item .image-wrap {
    height: clamp(120px, 11vw, 158px);
    aspect-ratio: auto;
  }

  body[data-page="home"] .showcase-caption {
    min-height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px 9px 14px;
    font-family: var(--font-body);
  }

  body[data-page="home"] .showcase-caption strong {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.08;
  }

  body[data-page="home"] .showcase-caption span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.28;
    font-weight: 500;
  }

  body[data-page="home"] .section-action {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  body[data-page="home"] .section-action .btn {
    min-width: 230px;
    text-transform: uppercase;
  }

  body[data-page="home"] .home-factory-section {
    padding: 50px 0;
    background: linear-gradient(90deg, #fffaf2 0%, #fff 48%, #fff 100%);
    border-top: 1px solid #f0e3d3;
    border-bottom: 1px solid #f0e3d3;
  }

  body[data-page="home"] .factory-partner-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
    gap: 42px;
    align-items: stretch;
  }

  body[data-page="home"] .factory-copy {
    padding: 8px 0 6px;
  }

  body[data-page="home"] .factory-copy h2 {
    max-width: 330px;
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: 31px;
    line-height: 1.05;
  }

  body[data-page="home"] .factory-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    margin-bottom: 26px;
  }

  body[data-page="home"] .factory-feature-grid article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: start;
  }

  body[data-page="home"] .factory-feature-grid article > span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eadcc9;
    border-radius: 50%;
    color: var(--gold);
    font-size: 20px;
  }

  body[data-page="home"] .factory-feature-grid h3 {
    margin: 0 0 3px;
    font-size: 14px;
    line-height: 1.2;
  }

  body[data-page="home"] .factory-feature-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.32;
  }

  body[data-page="home"] .factory-copy .btn {
    min-width: 220px;
    text-transform: uppercase;
  }

  body[data-page="home"] .factory-media-panel {
    min-height: 336px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #d9c4a8;
    background: #171717;
    color: #fff;
  }

  body[data-page="home"] .factory-media-main {
    position: absolute;
    inset: 0;
  }

  body[data-page="home"] .factory-media-main img {
    filter: brightness(0.42);
  }

  body[data-page="home"] .factory-overlay {
    min-height: 336px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px 34px 28px;
    text-align: center;
  }

  body[data-page="home"] .factory-overlay h2 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.12;
  }

  body[data-page="home"] .factory-overlay p {
    max-width: 620px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.5;
  }

  body[data-page="home"] .factory-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
  }

  body[data-page="home"] .factory-stats div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  body[data-page="home"] .factory-stats strong {
    color: #d7a34d;
    font-size: 28px;
    line-height: 1;
  }

  body[data-page="home"] .factory-stats span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
  }

  body[data-page="home"] .factory-thumb-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="home"] .factory-thumb-row .image-wrap {
    height: 94px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 3px;
  }

  body[data-page="home"] .home-order-section {
    padding: 28px 0 38px;
    background: #fff;
  }

  body[data-page="home"] .desktop-order-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
  }

  body[data-page="home"] .order-card {
    min-height: 92px;
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 12px 12px 14px;
    border-radius: 10px;
    background: #fbf7ef;
    box-shadow: inset 0 0 0 1px rgba(234, 220, 201, 0.75);
  }

  body[data-page="home"] .order-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -17px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    transform: translateY(-50%) rotate(45deg);
  }

  body[data-page="home"] .order-number {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
  }

  body[data-page="home"] .order-icon {
    margin-top: 8px;
    color: var(--gold);
    font-size: 30px;
    line-height: 1;
  }

  body[data-page="home"] .order-card h3 {
    margin: 8px 0 3px;
    font-size: 13px;
    line-height: 1.15;
  }

  body[data-page="home"] .order-card p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
  }
}

@media (max-width: 460px) {
  .mobile-header-inner {
    grid-template-columns: minmax(0, 1fr) 90px;
    gap: 8px;
  }

  .mobile-header .brand {
    gap: 6px;
  }

  .brand-name {
    font-size: 16px;
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn {
    padding-inline: 14px;
  }

  .mobile-lang-control {
    width: 90px;
    padding-inline: 10px 26px;
    font-size: 13px;
  }

  .mobile-home-hero h1,
  .mobile-page-hero h1,
  .mobile-hero-title {
    font-size: 34px;
  }

  .mobile-product-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .mobile-header-inner {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 6px;
  }

  .mobile-header .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .mobile-header .brand-name {
    max-width: 96px;
    font-size: 18px;
  }

  .mobile-lang-control {
    width: 82px;
    padding-inline: 8px 24px;
    font-size: 12px;
  }
}

@media (min-width: 781px) {
  .advantage-card .icon,
  .contact-card .icon,
  .factory-feature-grid .icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 0 !important;
  }

  .application-card .icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 0 !important;
    color: var(--gold);
  }

  body[data-page="home"] .home-applications-section .application-card .icon {
    width: 36px !important;
    height: 36px !important;
  }

  .proof-item .icon {
    width: 46px !important;
    height: 46px !important;
    font-size: 0 !important;
  }

  .order-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 0 !important;
  }

  .step-icon .site-icon-img {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 780px) {
  .icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0 !important;
  }

  .proof-item .icon,
  .mobile-app-card .icon,
  .contact-card .icon,
  .advantage-card .icon {
    width: 30px !important;
    height: 30px !important;
  }

  .application-card .icon {
    width: 30px !important;
    height: 30px !important;
  }

  .order-icon {
    width: 34px !important;
    height: 34px !important;
  }

  .step-icon .site-icon-img {
    width: 32px !important;
    height: 32px !important;
  }
}
