:root {
  --ink: #17212b;
  --muted: #607080;
  --line: #d8e1e8;
  --panel: #ffffff;
  --soft: #f4f7f8;
  --deep: #243747;
  --deep-2: #14222d;
  --accent: #d99b45;
  --accent-2: #2f8f83;
  --shadow: 0 20px 60px rgba(29, 45, 58, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfc;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 143, 131, .7);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--deep-2);
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border: 1px solid rgba(217, 155, 69, .34);
  border-radius: 12px;
  color: transparent;
  background: var(--deep) url("assets/brand/topeng-middle-east-lighting-logo.svg") center / cover no-repeat;
  box-shadow: 0 12px 30px rgba(20, 34, 45, .18);
  font-size: 0;
  line-height: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  color: #334453;
}

.site-nav a[aria-current="page"] {
  color: var(--accent-2);
  font-weight: 700;
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--deep);
  border-radius: var(--radius);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-switcher a {
  min-width: 34px;
  padding: 6px 9px;
  text-align: center;
  border-radius: 999px;
  font-weight: 700;
}

.language-switcher a[aria-current="true"] {
  color: #fff;
  background: var(--accent-2);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 9px 12px;
}

.section,
.section-band {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
}

.section-band {
  background: var(--soft);
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .site-nav,
[dir="rtl"] .hero-actions,
[dir="rtl"] .contact-options,
[dir="rtl"] .card-actions {
  direction: rtl;
}

[dir="rtl"] .home-hero-content,
[dir="rtl"] .section-heading,
[dir="rtl"] .detail-hero,
[dir="rtl"] .guide-hero,
[dir="rtl"] .contact-hero {
  text-align: right;
}

[dir="rtl"] .rfq-form input,
[dir="rtl"] .rfq-form textarea {
  direction: rtl;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 620px);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  min-height: calc(100vh - 70px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 850px;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 780px;
  color: #3e4e5e;
  font-size: 19px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--deep);
}

.button.secondary {
  color: var(--deep);
  background: #fff;
  border-color: var(--line);
}

.text-button {
  color: var(--deep);
  background: transparent;
  border-color: transparent;
}

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

.hero-proof div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .7);
}

.hero-proof dt {
  font-weight: 700;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-photo-stack {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items: stretch;
}

.hero-photo-stack figure,
.asset-gallery figure,
.project-gallery figure,
.product-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ec;
}

.hero-photo-stack img,
.asset-gallery img,
.project-gallery img,
.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  grid-row: span 2;
  min-height: 470px;
  box-shadow: var(--shadow);
}

.factory-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  min-height: calc(100vh - 70px);
  padding-top: 52px;
  padding-bottom: 58px;
}

.factory-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 64px);
}

.factory-hero-copy {
  max-width: 760px;
}

.factory-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.factory-trust-strip span {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  box-shadow: 0 8px 26px rgba(19, 32, 42, .05);
}

.factory-trust-strip strong {
  display: block;
  color: var(--deep);
  font-size: 20px;
}

.factory-hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 214px;
  gap: 14px;
}

.factory-hero-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ec;
  box-shadow: var(--shadow);
}

.factory-hero-gallery figure.large {
  grid-row: span 2;
}

.factory-hero-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-hero-gallery figcaption,
.factory-gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(20, 34, 45, .78);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

.factory-hero-gallery figure::after,
.factory-gallery figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(20, 34, 45, 0), rgba(20, 34, 45, .72));
  pointer-events: none;
}

.guide-hero,
.solution-hero,
.certificate-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  min-height: calc(100vh - 70px);
  padding-top: 52px;
  padding-bottom: 58px;
}

.guide-hero h1,
.solution-hero h1,
.certificate-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.4vw, 64px);
}

.guide-hero-mosaic,
.solution-hero-board,
.certificate-hero-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 214px;
  gap: 14px;
}

.guide-hero-mosaic figure,
.solution-hero-board figure,
.certificate-hero-stack figure,
.solution-card-visual,
.guide-card-visual {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ec;
}

.guide-hero-mosaic figure,
.solution-hero-board figure,
.certificate-hero-stack figure {
  box-shadow: var(--shadow);
}

.guide-hero-mosaic .large,
.solution-hero-board .large,
.certificate-hero-stack .large {
  grid-row: span 2;
}

.guide-hero-mosaic img,
.solution-hero-board img,
.certificate-hero-stack img,
.solution-card-visual img,
.guide-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate-hero-stack img {
  object-fit: contain;
  padding: 12px;
  background: #f7f9fa;
}

.guide-hero-mosaic figcaption,
.solution-hero-board figcaption,
.certificate-hero-stack figcaption,
.solution-card-visual span,
.guide-card-visual span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(20, 34, 45, .78);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

.guide-hero-mosaic figure::after,
.solution-hero-board figure::after,
.solution-card-visual::after,
.guide-card-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(20, 34, 45, 0), rgba(20, 34, 45, .72));
  pointer-events: none;
}

.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 70px);
  overflow: hidden;
  color: #fff;
  background: var(--deep-2);
}

.home-hero-bg,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 24, 32, .86) 0%, rgba(14, 24, 32, .7) 42%, rgba(14, 24, 32, .22) 100%),
    linear-gradient(180deg, rgba(14, 24, 32, .12) 0%, rgba(14, 24, 32, .7) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 112px));
  margin: 0 0 clamp(160px, 18vh, 220px) clamp(18px, 7vw, 96px);
}

.home-hero .eyebrow {
  color: #c5ece7;
}

.home-hero h1 {
  max-width: 920px;
  color: #fff;
  text-wrap: balance;
}

.home-hero .hero-text {
  color: rgba(255, 255, 255, .86);
}

.home-hero .button.primary {
  color: var(--deep);
  background: #fff;
}

.home-hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .38);
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 30px 0 0;
}

.home-hero-stats div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(10, 22, 30, .38);
  backdrop-filter: blur(12px);
}

.home-hero-stats dt {
  font-size: 24px;
  font-weight: 700;
}

.home-hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.home-hero-gallery {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 220px));
  gap: 12px;
}

.home-hero-gallery figure {
  position: relative;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.home-hero-gallery img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.home-hero-gallery figcaption,
.home-project-mosaic span,
.home-product-showcase span {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.home-hero-gallery figure::after,
.home-product-showcase article::after,
.home-project-mosaic a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(20, 34, 45, 0), rgba(20, 34, 45, .82));
}

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

.home-product-showcase article {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ec;
  box-shadow: 0 12px 38px rgba(19, 32, 42, .08);
}

.home-product-showcase img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-product-showcase article:hover img,
.home-project-mosaic a:hover img {
  transform: scale(1.04);
}

.home-product-showcase article > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 22px;
  color: #fff;
}

.home-product-showcase span {
  position: static;
  color: #c5ece7;
  text-transform: uppercase;
}

.home-product-showcase h3,
.home-product-showcase p {
  margin: 0;
}

.home-product-showcase p {
  color: rgba(255, 255, 255, .82);
}

.home-product-showcase a,
.home-project-mosaic a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.home-project-mosaic {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 16px;
}

.home-project-mosaic a {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ec;
  box-shadow: 0 10px 34px rgba(19, 32, 42, .08);
}

.home-project-mosaic a.large {
  grid-row: span 2;
}

.home-project-mosaic img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-project-mosaic span {
  font-size: 15px;
}

.hero-photo-stack figure:not(.hero-photo-main) {
  min-height: 250px;
}

.hero-photo-stack figcaption,
.asset-gallery figcaption,
.project-gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(20, 34, 45, .78);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.company-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--deep);
}

.company-strip span,
.company-strip a {
  color: rgba(255, 255, 255, .84);
}

.company-strip a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.grid,
.agent-grid,
.project-gallery,
.project-option-grid,
.catalogue-grid,
.certificate-grid,
.procurement-grid,
.faq-grid,
.product-grid,
.solution-grid,
.guide-grid,
.proof-grid,
.regional-keyword-grid,
.certificate-summary,
.visit-summary,
.visit-grid {
  display: grid;
  gap: 18px;
}

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

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

.grid.three,
.agent-grid,
.faq-grid,
.product-grid,
.solution-grid,
.guide-grid,
.proof-grid,
.regional-keyword-grid,
.certificate-summary,
.visit-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.agent-card,
.procurement-grid article,
.faq-grid article,
.catalogue-card,
.project-option-card,
.product-card,
.solution-card,
.guide-card,
.proof-grid article,
.regional-keyword-grid article,
.certificate-summary article,
.visit-summary article,
.visual-panel,
.country-card,
.catalogue-crawl-summary,
.document-request-box,
.rfq-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 8px 30px rgba(19, 32, 42, .06);
}

.info-card,
.agent-card,
.procurement-grid article,
.faq-grid article,
.catalogue-card > div,
.project-option-card > div,
.product-card,
.solution-card,
.guide-card,
.proof-grid article,
.regional-keyword-grid article,
.certificate-summary article,
.visit-summary article,
.visual-panel,
.country-card,
.catalogue-crawl-summary,
.document-request-box {
  padding: 22px;
}

.factory-answer-grid,
.factory-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.factory-answer-grid article,
.factory-process-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(19, 32, 42, .06);
}

.factory-answer-grid span,
.factory-process-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
}

.factory-answer-grid p,
.factory-process-grid p,
.factory-region-grid p,
.factory-cta p {
  color: var(--muted);
}

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

.factory-proof-grid article {
  min-height: 160px;
}

.solution-card,
.guide-card {
  overflow: hidden;
}

.solution-card-visual,
.guide-card-visual {
  aspect-ratio: 16 / 10;
  margin: -22px -22px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.guide-card-visual span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.certificate-hero-stack figure {
  border: 1px solid var(--line);
  background: #fff;
}

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

.detail-selection-lab {
  padding-top: 48px;
}

.card-kicker,
.meta {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-card p,
.agent-card p,
.procurement-grid p,
.faq-grid p,
.catalogue-card p,
.project-option-card p,
.product-card p,
.solution-card p,
.guide-card p,
.proof-grid span,
.regional-keyword-grid span,
.certificate-summary span,
.visit-summary span,
.visual-panel li,
.country-layout p {
  color: var(--muted);
}

.info-card a,
.catalogue-card a,
.project-option-card a,
.product-card a,
.solution-card a,
.guide-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--deep);
  font-weight: 700;
  text-decoration: none;
}

.agent-support {
  max-width: 1180px;
}

.agent-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 238px;
}

.agent-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(47, 143, 131, .28);
  border-radius: var(--radius);
  color: var(--accent-2);
  background: #eef7f5;
  font-weight: 700;
}

.agent-card h3 {
  margin-bottom: 12px;
}

.agent-handoff {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--deep);
  color: #fff;
}

.agent-handoff span {
  color: rgba(255, 255, 255, .78);
}

.agent-handoff .button.primary {
  color: var(--deep);
  background: #fff;
}

.project-gallery figure {
  min-height: 320px;
  box-shadow: 0 8px 30px rgba(19, 32, 42, .06);
}

.project-gallery figcaption {
  display: grid;
  gap: 3px;
}

.project-gallery figcaption span {
  color: rgba(255, 255, 255, .78);
  font-weight: 400;
}

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

.procurement-grid article,
.faq-grid article {
  min-height: 210px;
}

.catalogue-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.catalogue-search {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-bottom: 16px;
  color: #314252;
  font-weight: 700;
}

.catalogue-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
}

.catalogue-crawl-summary {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.catalogue-crawl-summary p,
.document-request-box p {
  margin: 0;
  color: var(--muted);
}

.catalogue-tab {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--deep);
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.catalogue-tab.active {
  color: #fff;
  border-color: var(--deep);
  background: var(--deep);
}

.catalogue-card,
.project-option-card {
  overflow: hidden;
}

.catalogue-card figure,
.project-option-card > img {
  margin: 0;
  background: #dfe7ec;
}

.catalogue-card figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.catalogue-card img,
.project-option-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-visual,
.catalogue-visual,
.detail-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.family-visual::after,
.catalogue-visual::after,
.detail-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(180deg, rgba(20, 34, 45, 0), rgba(20, 34, 45, .72));
  pointer-events: none;
}

.family-visual span,
.model-badge,
.category-badge,
.visual-badge,
.visual-chip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff;
  background: rgba(20, 34, 45, .72);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
}

.family-visual span {
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
}

.catalogue-visual {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 155, 69, .28), transparent 34%),
    linear-gradient(135deg, #17212b, #2f4b5a 58%, #eef4f5);
}

.catalogue-visual.facade-wall-washer,
.detail-media.facade {
  background:
    radial-gradient(circle at 22% 18%, rgba(217, 155, 69, .26), transparent 35%),
    linear-gradient(135deg, #17212b, #314e5b 58%, #eaf2f4);
}

.catalogue-visual.linear-facade,
.detail-media.linear {
  background:
    radial-gradient(circle at 74% 22%, rgba(47, 143, 131, .26), transparent 34%),
    linear-gradient(135deg, #233945, #5a7a83 58%, #f6fbfb);
}

.catalogue-visual.flood-high-mast,
.detail-media.flood {
  background:
    radial-gradient(circle at 72% 20%, rgba(217, 155, 69, .35), transparent 32%),
    linear-gradient(135deg, #1e2a34, #6b604f 56%, #f3efe7);
}

.catalogue-visual.inground-step,
.detail-media.step {
  background:
    radial-gradient(circle at 18% 76%, rgba(47, 143, 131, .3), transparent 32%),
    linear-gradient(135deg, #14222d, #466067 58%, #edf4f2);
}

.catalogue-visual.garden-street-solar,
.detail-media.garden {
  background:
    radial-gradient(circle at 76% 20%, rgba(47, 143, 131, .28), transparent 34%),
    linear-gradient(135deg, #1c2c28, #587462 58%, #f3f6ef);
}

.catalogue-visual img {
  position: relative;
  z-index: 1;
  width: min(74%, 220px);
  height: auto;
  max-height: 82%;
  object-fit: contain;
  border: 8px solid rgba(255, 255, 255, .86);
  border-radius: 7px;
  box-shadow: 0 18px 44px rgba(10, 22, 30, .32);
  transform: rotate(-2deg);
}

.model-badge {
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
}

.category-badge {
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
}

.catalogue-card h3,
.project-option-card h3 {
  overflow-wrap: anywhere;
}

.catalogue-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.catalogue-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
}

.catalogue-empty strong {
  color: var(--deep);
}

.project-option-card {
  display: grid;
  grid-template-rows: 250px 1fr;
}

.project-option-card > img {
  min-height: 250px;
}

.project-meta {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-note {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.regional-keyword-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.regional-keyword-grid strong,
.regional-keyword-grid span {
  display: block;
}

.regional-keyword-grid span {
  margin-top: 6px;
}

.certificate-summary {
  margin-bottom: 18px;
}

.document-request-box {
  margin-bottom: 22px;
}

.document-request-box h3 {
  margin-bottom: 8px;
}

.certificate-matrix {
  margin-bottom: 22px;
}

.certificate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin-inline: auto;
}

.certificate-card {
  position: relative;
  display: grid;
  grid-template-rows: 300px auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(19, 32, 42, .06);
}

.certificate-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  padding: 10px;
  background: #f7f9fa;
}

.certificate-card figcaption {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  background: #fff;
}

.certificate-card figcaption span {
  color: var(--muted);
  font-size: 13px;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--deep);
  font-weight: 700;
}

.product-card ul,
.solution-card ul,
.feature-list {
  padding-left: 18px;
  margin-bottom: 0;
}

.product-card figure {
  aspect-ratio: 4 / 3;
  margin: -22px -22px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

.asset-gallery figure {
  min-height: 230px;
}

.asset-gallery .wide {
  grid-column: span 2;
}

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

.factory-gallery figure {
  min-height: 260px;
  box-shadow: 0 14px 42px rgba(19, 32, 42, .1);
}

.factory-gallery .wide {
  grid-column: span 2;
  min-height: 360px;
}

.factory-gallery figcaption strong,
.factory-gallery figcaption span {
  display: block;
}

.factory-gallery figcaption span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

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

.factory-visit-grid {
  gap: 16px;
}

.factory-visit-grid figure {
  box-shadow: 0 14px 42px rgba(19, 32, 42, .1);
}

.factory-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.factory-cta h2 {
  max-width: 760px;
}

.visit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.visit-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ec;
  box-shadow: 0 8px 30px rgba(19, 32, 42, .06);
}

.visit-grid .large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 538px;
}

.visit-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(20, 34, 45, .78);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

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

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--deep);
  background: #edf3f4;
}

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

.detail-section,
.country-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  align-items: start;
}

.visual-panel,
.country-card {
  position: sticky;
  top: 94px;
}

.feature-list.columns {
  columns: 2;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud a {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}

.mini-table {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.mini-table span,
.mini-table strong {
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.mini-table span {
  color: var(--muted);
  background: #f6f8f9;
}

.mini-table strong {
  font-size: 14px;
}

.contact-section {
  max-width: 1180px;
}

.contact-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #17232e;
}

.contact-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 31, .9), rgba(10, 22, 31, .58) 52%, rgba(10, 22, 31, .18)),
    linear-gradient(0deg, rgba(10, 22, 31, .72), rgba(10, 22, 31, .08) 50%);
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(88px, 12vw, 150px) 0 clamp(40px, 8vw, 80px);
}

.contact-hero-copy .hero-text,
.contact-hero-copy .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.contact-hero-copy h1 {
  max-width: 900px;
  color: #fff;
}

.contact-hero .button.primary {
  color: var(--deep);
  background: #fff;
}

.contact-hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .38);
}

.contact-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 34px 0 0;
}

.contact-hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}

.contact-hero-stats dt {
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
}

.contact-hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .76);
}

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

.contact-route-card {
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 30px rgba(19, 32, 42, .06);
}

.contact-route-card.whatsapp-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 101, 76, .92), rgba(18, 32, 42, .96)),
    url("assets/projects/al-sajaa-villa-community.webp") center/cover;
  border-color: transparent;
}

.contact-route-card span {
  color: var(--accent-2);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-route-card.whatsapp-card span,
.contact-route-card.whatsapp-card p,
.contact-route-card.whatsapp-card h2 {
  color: #fff;
}

.contact-route-card.whatsapp-card .button.primary {
  color: var(--deep);
  background: #fff;
}

.contact-advisor {
  min-width: 0;
}

.contact-visual-card {
  position: relative;
  min-height: 250px;
  margin: 22px 0;
  overflow: hidden;
  color: #fff;
  background: #17232e;
}

.contact-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 22, 31, .86), rgba(10, 22, 31, .18));
}

.contact-visual-card div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
}

.contact-visual-card strong {
  font-size: clamp(22px, 3vw, 32px);
}

.contact-visual-card span {
  color: rgba(255, 255, 255, .82);
}

.contact-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.contact-checklist li {
  padding: 13px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-options a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 11px 42px 11px 12px;
  border: 1px solid rgba(20, 34, 45, .14);
  border-radius: var(--radius);
  color: var(--deep-2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 247, 248, .94));
  box-shadow: 0 12px 28px rgba(20, 34, 45, .08);
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.contact-options a::before {
  content: "RFQ";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  font-size: 11px;
  line-height: 1;
  letter-spacing: .02em;
}

.contact-options a::after {
  content: ">";
  position: absolute;
  right: 15px;
  top: 50%;
  color: var(--accent-2);
  font-weight: 900;
  transform: translateY(-50%);
  transition: transform .18s ease;
}

.contact-options a[href^="mailto:"]::before {
  content: "@";
  background: linear-gradient(135deg, #2f8f83, #1f6f68);
}

.contact-options a[href*="wa.me"]::before {
  content: "WA";
  background: linear-gradient(135deg, #159a86, #0f756a);
}

.contact-options a[href^="tel:"]::before {
  content: "PH";
  background: linear-gradient(135deg, #d99b45, #ad7430);
}

.contact-options a[href*="x.com"]::before {
  content: "X";
  background: linear-gradient(135deg, #111820, #313b45);
}

.contact-options a[href*="linkedin.com"]::before {
  content: "in";
  background: linear-gradient(135deg, #0a66c2, #064b91);
}

.contact-options a[href*="instagram.com"]::before {
  content: "IG";
  background: linear-gradient(135deg, #c13584, #f5a13b);
}

.contact-options a:hover,
.contact-options a:focus-visible {
  border-color: rgba(47, 143, 131, .4);
  background:
    linear-gradient(135deg, #ffffff, #eef6f4);
  box-shadow: 0 18px 42px rgba(20, 34, 45, .14);
  transform: translateY(-2px);
}

.contact-options a:hover::after,
.contact-options a:focus-visible::after {
  transform: translate(4px, -50%);
}

[dir="rtl"] .contact-options a {
  padding: 11px 12px 11px 42px;
}

[dir="rtl"] .contact-options a::after {
  right: auto;
  left: 15px;
  content: "<";
}

[dir="rtl"] .contact-options a:hover::after,
[dir="rtl"] .contact-options a:focus-visible::after {
  transform: translate(-4px, -50%);
}

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

.rfq-form label {
  display: grid;
  gap: 6px;
  color: #314252;
  font-weight: 700;
}

.rfq-form input,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  font: inherit;
}

.rfq-form .full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.floating-contact,
.floating-whatsapp {
  position: fixed;
  right: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 58px;
  padding: 0 15px;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(19, 32, 42, .2);
}

.floating-contact {
  bottom: 18px;
  background: var(--accent-2);
}

.floating-whatsapp {
  bottom: 88px;
  width: 58px;
  min-width: 58px;
  padding: 0;
  background: #128c7e;
  font-size: 0;
}

.floating-whatsapp::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 2.2A9.7 9.7 0 0 0 3.6 16.7L2.5 21.8l5.2-1.3a9.7 9.7 0 0 0 4.3 1 9.8 9.8 0 0 0 .04-19.3Zm5.72 13.72c-.24.68-1.4 1.3-1.96 1.35-.52.05-1.18.07-1.9-.12-.44-.11-1-.32-1.72-.63-3.02-1.3-5-4.35-5.15-4.55-.15-.2-1.23-1.64-1.23-3.13 0-1.5.78-2.23 1.06-2.54.27-.3.6-.38.8-.38h.58c.18.01.44-.07.68.52.24.58.83 2.04.9 2.18.07.15.12.33.02.53-.1.2-.15.32-.3.5-.15.18-.32.4-.46.53-.15.15-.31.31-.13.61.18.3.8 1.32 1.72 2.14 1.18 1.05 2.18 1.38 2.49 1.53.31.15.49.13.67-.08.18-.2.77-.9.98-1.2.2-.31.41-.26.69-.15.28.1 1.8.85 2.1 1 .31.15.52.23.6.36.07.13.07.76-.17 1.44Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 2.2A9.7 9.7 0 0 0 3.6 16.7L2.5 21.8l5.2-1.3a9.7 9.7 0 0 0 4.3 1 9.8 9.8 0 0 0 .04-19.3Zm5.72 13.72c-.24.68-1.4 1.3-1.96 1.35-.52.05-1.18.07-1.9-.12-.44-.11-1-.32-1.72-.63-3.02-1.3-5-4.35-5.15-4.55-.15-.2-1.23-1.64-1.23-3.13 0-1.5.78-2.23 1.06-2.54.27-.3.6-.38.8-.38h.58c.18.01.44-.07.68.52.24.58.83 2.04.9 2.18.07.15.12.33.02.53-.1.2-.15.32-.3.5-.15.18-.32.4-.46.53-.15.15-.31.31-.13.61.18.3.8 1.32 1.72 2.14 1.18 1.05 2.18 1.38 2.49 1.53.31.15.49.13.67-.08.18-.2.77-.9.98-1.2.2-.31.41-.26.69-.15.28.1 1.8.85 2.1 1 .31.15.52.23.6.36.07.13.07.76-.17 1.44Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 32px;
  align-items: center;
  background: #f5f9fb;
  overflow: hidden;
}

.detail-hero > div {
  min-width: 0;
}

.detail-media {
  position: relative;
  max-width: 100%;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #17212b;
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.detail-scene-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(1.04) contrast(1.04);
}

.product-detail-media img {
  position: absolute;
  right: 7%;
  bottom: 7%;
  z-index: 2;
  width: min(58%, 360px);
  height: auto;
  min-height: 0;
  max-height: 78%;
  object-fit: contain;
  border: 10px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(10, 22, 30, .34);
}

.product-detail-media .detail-scene-bg {
  position: absolute;
  inset: 0;
  right: auto;
  bottom: auto;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 430px;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  transform: none;
}

.product-main-shot {
  position: absolute;
  inset: 72px 32px 44px;
  z-index: 2;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.product-main-shot img,
.product-detail-media .product-main-shot img {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(82%, 500px);
  max-height: 100%;
  transform: rotate(-2deg);
}

.product-detail-media::before,
.blog-detail-media::before,
.project-detail-media::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: calc(var(--radius) + 2px);
}

.project-detail-media img,
.blog-detail-media img {
  position: relative;
  z-index: 0;
  filter: saturate(1.05) contrast(1.02);
}

.visual-badge {
  left: 24px;
  top: 24px;
  padding: 8px 11px;
  border-radius: var(--radius);
}

.visual-chip {
  right: 24px;
  bottom: 24px;
  padding: 8px 11px;
  border-radius: var(--radius);
}

.visual-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 72px;
  z-index: 2;
  margin: 0;
  padding: 9px 11px;
  color: #f8fbfc;
  font-size: 12px;
  line-height: 1.35;
  background: rgba(11, 30, 40, .74);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.source-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-detail-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 22px;
}

.product-detail-proof span {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(47, 143, 131, .22);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.product-detail-proof strong {
  color: var(--deep);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-summary-grid,
.choice-matrix,
.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-summary-grid article,
.choice-matrix article,
.product-trust-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(19, 32, 42, .06);
}

.product-summary-grid span,
.choice-matrix strong,
.product-trust-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--deep);
  font-size: 17px;
  font-weight: 800;
}

.product-summary-grid p,
.choice-matrix p,
.choice-matrix span,
.product-trust-grid p {
  color: var(--muted);
}

.choice-matrix article {
  background: #f7faf9;
}

.choice-matrix span {
  display: inline-flex;
  margin-top: 12px;
  font-size: 13px;
}

.product-trust-grid a {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
  text-decoration: none;
}

.visual-story {
  padding-top: 42px;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}

.visual-story-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ec;
  box-shadow: 0 10px 34px rgba(19, 32, 42, .08);
}

.visual-story-card.large {
  min-height: 360px;
}

.visual-story-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.visual-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 34, 45, 0), rgba(20, 34, 45, .74));
}

.visual-story-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 5px;
  color: #fff;
}

.visual-story-card span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}

.article-callout {
  display: grid;
  gap: 5px;
  margin: 26px 0;
  padding: 18px;
  border: 1px solid rgba(47, 143, 131, .22);
  border-radius: var(--radius);
  background: #eef7f5;
}

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

.article-product-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-product-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-product-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.article-product-grid span {
  color: var(--muted);
}

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

.detail-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 34px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  background: #eef4f5;
  overflow: hidden;
}

.product-page-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1.04;
}

.product-page-hero .hero-text {
  max-width: 680px;
}

.product-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.product-hero-proof span {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid rgba(47, 143, 131, .18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.product-hero-proof strong {
  color: var(--deep);
  font-size: 22px;
}

.product-hero-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 172px;
  gap: 12px;
}

.product-hero-board figure {
  position: relative;
  min-height: 172px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ec;
  box-shadow: var(--shadow);
}

.product-hero-board figure.large {
  grid-row: span 2;
}

.product-hero-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-board figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(20, 34, 45, .74);
  font-weight: 700;
}

.buyer-path-grid,
.selection-guide-grid,
.advisor-grid,
.detail-copy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.buyer-path-grid article,
.selection-guide-grid article,
.advisor-grid article,
.detail-copy-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.buyer-path-grid span,
.advisor-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--accent-2);
  font-weight: 700;
}

.buyer-path-grid h3,
.selection-guide-grid h3,
.advisor-grid h3 {
  margin-bottom: 10px;
}

.buyer-path-grid p,
.selection-guide-grid p,
.advisor-grid p,
.detail-copy-grid p,
.product-choice-note {
  color: var(--muted);
}

.buyer-path-grid a {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 700;
  text-decoration: none;
}

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

.concept-gallery article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(19, 32, 42, .06);
}

.concept-gallery article:first-child,
.concept-gallery article:nth-child(2) {
  grid-column: span 2;
}

.concept-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.concept-gallery div {
  padding: 18px;
}

.concept-gallery span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.concept-gallery h3 {
  margin: 0 0 8px;
}

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

.product-choice-note {
  margin-top: 10px;
  font-size: 14px;
}

.product-search-intent {
  padding-top: 30px;
  padding-bottom: 30px;
}

.search-intent-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-intent-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(47, 143, 131, .28);
  border-radius: var(--radius);
  color: var(--deep);
  background: #f4faf8;
  font-size: 14px;
  font-weight: 700;
}

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

.detail-copy-grid article {
  min-height: 300px;
}

.product-rfq-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: start;
  background: var(--deep);
  color: #fff;
}

.product-rfq-panel p,
.product-rfq-panel .eyebrow {
  color: rgba(255, 255, 255, .76);
}

.product-rfq-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-rfq-panel li {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.detail-grid h2,
.article-body h2 {
  font-size: 24px;
}

#detail-title {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.static-detail-fallback {
  margin-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.static-detail-fallback h2 {
  max-width: 860px;
}

.static-detail-fallback p,
.static-detail-fallback ul {
  max-width: 920px;
  color: var(--muted);
}

.static-detail-fallback li + li {
  margin-top: 8px;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-cloud a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}

.article-body {
  max-width: 920px;
  margin: 0 auto;
}

.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1160px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .site-nav.open {
    display: flex;
  }

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

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

  .home-hero-content {
    width: min(760px, calc(100% - 48px));
    margin-left: 24px;
  }

  .home-hero-gallery {
    left: 24px;
    right: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .detail-section,
  .detail-hero,
  .product-page-hero,
  .factory-hero,
  .guide-hero,
  .solution-hero,
  .certificate-hero,
  .product-rfq-panel,
  .factory-cta,
  .country-layout,
  .contact-section,
  .contact-route-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .visual-panel,
  .country-card {
    position: static;
  }

  .agent-handoff {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .agent-grid,
  .faq-grid,
  .concept-gallery,
  .buyer-path-grid,
  .selection-guide-grid,
  .advisor-grid,
  .factory-answer-grid,
  .factory-process-grid,
  .product-summary-grid,
  .choice-matrix,
  .product-trust-grid,
  .detail-grid,
  .product-grid,
  .home-product-showcase,
  .solution-grid,
  .guide-grid,
  .proof-grid,
  .regional-keyword-grid,
  .factory-region-grid,
  .certificate-summary,
  .visit-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo-stack,
  .asset-gallery,
  .factory-gallery,
  .factory-hero-gallery,
  .guide-hero-mosaic,
  .solution-hero-board,
  .certificate-hero-stack,
  .project-gallery,
  .visual-story-grid,
  .product-hero-board,
  .home-project-mosaic,
  .project-option-grid,
  .catalogue-grid,
  .certificate-grid,
  .visit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo-main,
  .home-project-mosaic a.large,
  .visit-grid .large {
    grid-column: span 2;
    min-height: 420px;
  }

  .visual-story-card.large {
    grid-column: span 2;
  }

  .factory-hero {
    min-height: auto;
  }

  .guide-hero,
  .solution-hero,
  .certificate-hero {
    min-height: auto;
  }

  .product-rfq-panel ul,
  .contact-checklist,
  .detail-copy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .section,
  .section-band {
    padding: 46px 16px;
  }

  .hero-proof,
  .home-hero-stats,
  .contact-hero-stats,
  .product-hero-proof,
  .product-detail-proof,
  .grid.three,
  .agent-grid,
  .procurement-grid,
  .faq-grid,
  .concept-gallery,
  .buyer-path-grid,
  .selection-guide-grid,
  .advisor-grid,
  .factory-answer-grid,
  .factory-process-grid,
  .product-summary-grid,
  .choice-matrix,
  .product-trust-grid,
  .detail-copy-grid,
  .detail-grid,
  .product-grid,
  .solution-grid,
  .guide-grid,
  .proof-grid,
  .regional-keyword-grid,
  .factory-region-grid,
  .certificate-summary,
  .visit-summary,
  .hero-photo-stack,
  .asset-gallery,
  .factory-gallery,
  .factory-hero-gallery,
  .guide-hero-mosaic,
  .solution-hero-board,
  .certificate-hero-stack,
  .project-gallery,
  .visual-story-grid,
  .product-hero-board,
  .home-product-showcase,
  .home-project-mosaic,
  .article-product-grid,
  .project-option-grid,
  .catalogue-grid,
  .certificate-grid,
  .visit-grid,
  .contact-route-section,
  .contact-checklist,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .hero-photo-main,
  .asset-gallery .wide,
  .factory-gallery .wide,
  .factory-hero-gallery figure.large,
  .guide-hero-mosaic .large,
  .solution-hero-board .large,
  .certificate-hero-stack .large,
  .product-hero-board figure.large,
  .home-project-mosaic a.large,
  .visual-story-card.large,
  .visit-grid .large {
    grid-column: auto;
    grid-row: auto;
  }

  .concept-gallery article:first-child,
  .concept-gallery article:nth-child(2) {
    grid-column: auto;
  }

  .hero-photo-main,
  .hero-photo-stack figure:not(.hero-photo-main),
  .asset-gallery figure,
  .factory-gallery figure,
  .factory-gallery .wide,
  .factory-hero-gallery figure,
  .factory-hero-gallery figure.large,
  .guide-hero-mosaic figure,
  .guide-hero-mosaic .large,
  .solution-hero-board figure,
  .solution-hero-board .large,
  .certificate-hero-stack figure,
  .certificate-hero-stack .large,
  .project-gallery figure,
  .product-hero-board figure,
  .project-option-card,
  .certificate-card,
  .visit-grid figure,
  .visit-grid .large {
    min-height: 240px;
  }

  .factory-hero h1 {
    font-size: 36px;
  }

  .guide-hero h1,
  .solution-hero h1,
  .certificate-hero h1 {
    font-size: 36px;
  }

  .factory-trust-strip {
    grid-template-columns: 1fr;
  }

  .certificate-card img {
    min-height: 0;
  }

  .product-detail-media img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(66%, 240px);
    border-width: 8px;
    transform: rotate(-2deg);
  }

  .product-detail-media .detail-scene-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 260px;
    transform: none;
  }

  .product-main-shot {
    inset: 54px 18px 42px;
  }

  .product-main-shot img,
  .product-detail-media .product-main-shot img {
    width: min(86%, 260px);
  }

  .detail-hero > div,
  .detail-hero .hero-actions {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .detail-hero .button {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .detail-hero h1 {
    font-size: 32px;
    line-height: 1.12;
    max-width: calc(100vw - 48px);
  }

  .product-detail-media {
    display: grid;
    place-items: center;
  }

  .visual-chip {
    max-width: calc(100% - 48px);
    overflow-wrap: anywhere;
  }

  .catalogue-visual {
    min-height: 260px;
  }

  .project-option-card {
    grid-template-rows: 220px 1fr;
  }

  .home-hero {
    display: block;
    min-height: auto;
    padding: 48px 16px 22px;
  }

  .home-hero-content {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-width: 0;
    margin: 0;
  }

  .home-hero h1,
  .home-hero .eyebrow,
  .home-hero .hero-text,
  .home-hero-stats,
  .home-hero-gallery {
    max-width: calc(100vw - 32px);
    overflow-wrap: anywhere;
  }

  .home-hero h1 {
    font-size: 36px;
    line-height: 1.05;
  }

  .contact-hero {
    min-height: auto;
    display: block;
  }

  .contact-hero-copy {
    width: calc(100vw - 32px);
    padding: 90px 0 42px;
  }

  .contact-hero-copy h1 {
    font-size: 36px;
    line-height: 1.06;
  }

  .contact-hero-stats {
    gap: 8px;
  }

  .contact-route-card {
    min-height: auto;
  }

  .contact-visual-card {
    min-height: 230px;
  }

  .floating-contact,
  .floating-whatsapp {
    right: 12px;
    min-width: 52px;
    height: 52px;
    padding: 0 12px;
    font-size: 12px;
  }

  .floating-whatsapp {
    bottom: 76px;
    width: 52px;
    min-width: 52px;
    padding: 0;
    font-size: 0;
  }

  .floating-whatsapp::before {
    width: 25px;
    height: 25px;
  }

  [dir="rtl"] .floating-contact,
  [dir="rtl"] .floating-whatsapp {
    right: auto;
    left: 12px;
  }

  .home-hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-hero-gallery {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .home-hero-gallery figure,
  .home-hero-gallery img {
    min-height: 96px;
  }

  .home-product-showcase article,
  .home-product-showcase img {
    min-height: 320px;
  }

  .home-project-mosaic a,
  .home-project-mosaic a.large {
    min-height: 260px;
  }

  .product-page-hero {
    padding-top: 44px;
  }

  .product-page-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .product-page-hero .hero-text {
    font-size: 16px;
  }

  .product-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .product-hero-proof span {
    padding: 10px 8px;
    font-size: 11px;
  }

  .product-hero-proof strong {
    font-size: 18px;
  }

  .product-hero-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 126px;
    gap: 8px;
  }

  .product-hero-board figure,
  .product-hero-board figure.large {
    min-height: 126px;
  }

  .product-hero-board figure.large {
    grid-column: span 2;
    min-height: 156px;
  }

  .product-rfq-panel ul {
    grid-template-columns: 1fr;
  }

  .detail-media,
  .detail-media img {
    min-height: 260px;
  }

  .detail-media {
    width: 280px;
    max-width: 280px;
    margin-inline: auto;
  }

  .feature-list.columns {
    columns: 1;
  }

  h1 {
    font-size: clamp(32px, 10vw, 40px);
    overflow-wrap: anywhere;
  }

  .hero-text {
    max-width: 100%;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .detail-hero > div,
  .detail-hero .hero-actions,
  .detail-hero .hero-text,
  .detail-hero .button {
    max-width: 100% !important;
  }

  .detail-hero .button {
    width: 100% !important;
  }

  h2 {
    font-size: 30px;
  }

  table {
    min-width: 0;
    font-size: 13px;
  }

  th,
  td {
    padding: 11px 10px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .home-hero {
    width: 100%;
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .home-hero-content {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0;
    margin: 0 !important;
  }

  .home-hero h1,
  .home-hero .eyebrow,
  .home-hero .hero-text,
  .home-hero .hero-actions,
  .home-hero-stats,
  .home-hero-gallery,
  .home-hero-gallery figure {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .home-hero h1 {
    font-size: 31px;
    line-height: 1.1;
  }

  .home-hero .button {
    width: 100% !important;
    max-width: calc(100vw - 32px) !important;
  }
}
