:root {
  --navy: #082b5b;
  --navy-2: #16436f;
  --blue-muted: #6c8098;
  --gold: #d7902f;
  --gold-dark: #bd741c;
  --gold-soft: #f5e3ca;
  --ivory: #fffaf4;
  --surface: #ffffff;
  --surface-warm: #fff9f2;
  --line: #f0dfca;
  --line-soft: #edf0f3;
  --text: #18314f;
  --muted: #718096;
  --shadow: 0 16px 44px rgba(55, 43, 27, .08);
  --shadow-soft: 0 8px 28px rgba(55, 43, 27, .06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.wazl-site {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); max-width: var(--container); margin-inline: auto; padding-inline: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 10px 18px; color: #fff; background: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.text-ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-ellipsis-2, .text-ellipsis-3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; }
.text-ellipsis-2 { -webkit-line-clamp: 2; }
.text-ellipsis-3 { -webkit-line-clamp: 3; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; height: 82px; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(224,192,153,.42); transition: box-shadow .25s ease, height .25s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(22,43,66,.08); }
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { position: relative; display: inline-flex; width: 210px; height: 58px; align-items: center; flex: 0 0 210px; overflow: hidden; }
.brand img { position: absolute; left: -34px; top: -107px; display: block; width: 276px; height: 276px; max-width: none; object-fit: contain; }
.site-nav { margin-left: auto; height: 100%; }
.site-nav > ul { display: flex; align-items: stretch; height: 100%; gap: 28px; }
.site-nav > ul > li { position: relative; display: flex; align-items: center; }
.site-nav > ul > li > a { position: relative; display: flex; align-items: center; gap: 6px; height: 100%; color: var(--navy); font-weight: 600; white-space: nowrap; }
.site-nav > ul > li > a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 3px; background: var(--gold); transition: left .2s ease, right .2s ease; }
.site-nav > ul > li > a:hover::after, .site-nav > ul > li > a.active::after { left: 20%; right: 20%; }
.submenu { position: absolute; top: calc(100% - 1px); left: 50%; min-width: 170px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 0 0 12px 12px; box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translate(-50%, 10px); transition: .2s ease; }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.submenu a { display: block; padding: 9px 14px; border-radius: 8px; color: var(--text); white-space: nowrap; }
.submenu a:hover { color: var(--gold-dark); background: var(--surface-warm); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .language-button { border: 0; color: var(--navy); background: transparent; cursor: pointer; }
.icon-button { position: relative; width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 19px; }
.icon-button:hover, .icon-button:focus-visible { color: var(--gold-dark); background: var(--surface-warm); outline: none; }
.language-switcher { position: relative; }
.language-button { display: flex; align-items: center; gap: 8px; min-height: 40px; padding: 7px 13px; border: 1px solid var(--line-soft); border-radius: 999px; white-space: nowrap; }
.language-menu { position: absolute; right: 0; top: calc(100% + 10px); min-width: 130px; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.language-switcher.is-open .language-menu { opacity: 1; visibility: visible; transform: none; }
.language-menu a { display: block; padding: 7px 10px; border-radius: 7px; }
.language-menu a:hover, .language-menu a[aria-current="true"] { color: var(--gold-dark); background: var(--surface-warm); }
.cart-count { position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px; display: grid; place-items: center; color: #fff; background: var(--gold); border: 2px solid #fff; border-radius: 999px; font-size: 9px; line-height: 1; }
.menu-toggle { display: none; }
.header-search { position: absolute; inset: 82px 0 auto; padding: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
.header-search.is-open { opacity: 1; visibility: visible; transform: none; }
.header-search__form { min-height: 92px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; }
.header-search input { width: 100%; height: 50px; padding: 0 18px; color: var(--navy); background: var(--surface-warm); border: 1px solid var(--line); border-radius: 10px; outline: none; }
.header-search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(215,144,47,.12); }
.header-search button[type="submit"] { height: 50px; padding: 0 24px; color: #fff; background: var(--gold); border: 0; border-radius: 10px; font-weight: 700; }

/* Shared */
.section-shell { padding-block: 44px; }
.surface-panel { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-heading h2, .section-heading h3 { margin: 0; color: var(--navy); font-size: clamp(26px, 2.3vw, 36px); font-weight: 800; letter-spacing: -.02em; }
.section-heading p { margin: 2px 0 0; color: #99a5b4; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.gold-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-dark); font-weight: 700; white-space: nowrap; }
.gold-button, .outline-button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 0 24px; border-radius: 10px; font-weight: 700; transition: .2s ease; }
.gold-button { color: #fff; background: var(--gold); border: 1px solid var(--gold); box-shadow: 0 10px 24px rgba(189,116,28,.18); }
.gold-button:hover { color: #fff; background: var(--gold-dark); transform: translateY(-2px); }
.outline-button { color: var(--navy); background: rgba(255,255,255,.75); border: 1px solid var(--gold); }
.outline-button:hover { color: var(--gold-dark); background: #fff; }
.swiper-pagination-bullet { width: 9px; height: 9px; background: #bdc4ca; opacity: .65; }
.swiper-pagination-bullet-active { width: 24px; background: var(--gold); border-radius: 6px; opacity: 1; }

/* Home hero */
.hero-section { position: relative; height: min(600px, calc(100vh - 82px)); min-height: 520px; overflow: hidden; background: #fff9f3; }
.hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide { height: 100%; }
.hero-slide { position: relative; overflow: hidden; background: #fff9f3 url('../images/hero-security.jpg') center/cover no-repeat; }
.hero-slide__media { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 1; pointer-events: none; }
.hero-slide__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-right: 52%; padding-bottom: 28px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--navy-2); font-weight: 600; }
.hero-eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--gold); }
.hero-slide h1, .hero-slide h2 { max-width: 650px; margin: 0 0 22px; color: var(--navy); font-size: clamp(38px, 3.6vw, 56px); line-height: 1.16; font-weight: 800; letter-spacing: -.035em; }
.hero-slide p { max-width: 540px; margin: 0 0 30px; color: #526b84; font-size: 18px; }
.hero-pagination { bottom: 28px!important; }
.hero-prev, .hero-next { position: absolute; z-index: 5; top: 50%; width: 48px; height: 48px; display: grid; place-items: center; color: var(--navy); background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; box-shadow: var(--shadow-soft); }
.hero-prev { left: 28px; }.hero-next { right: 28px; }

/* Home modules */
.home-main { padding: 28px 0 64px; }
.home-panel { margin-top: 28px; padding: clamp(24px, 3vw, 42px); }
.category-tabs { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-bottom: 24px; }
.category-tabs a { position: relative; padding: 4px 0 10px; color: var(--navy); font-weight: 600; }
.category-tabs a:first-child, .category-tabs a:hover { color: var(--gold-dark); }
.category-tabs a:first-child::after { content: ""; position: absolute; left: 25%; right: 25%; bottom: 0; height: 2px; background: var(--gold); }
.catalog-card { height: 100%; overflow: hidden; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-md); transition: .25s ease; }
.catalog-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.catalog-card__image { aspect-ratio: 1.42; overflow: hidden; background: var(--surface-warm); }
.catalog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.catalog-card:hover .catalog-card__image img { transform: scale(1.04); }
.catalog-card__body { padding: 18px; }
.catalog-card__body small { display: block; margin-bottom: 4px; color: var(--gold-dark); }
.catalog-card__body h2, .catalog-card__body h3 { margin: 0 0 7px; color: var(--navy); font-size: 18px; font-weight: 750; }
.catalog-card__body p { min-height: 48px; margin: 0 0 12px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.home-product-swiper, .home-case-swiper { padding: 4px 2px 34px; }
.about-panel { min-height: 330px; display: flex; align-items: center; overflow: hidden; background: #fff url('../images/about-building.jpg') center/cover no-repeat; }
.about-panel__content { position: relative; z-index: 2; width: 50%; padding-right: 20px; }
.about-panel h2 { margin: 0 0 14px; color: var(--navy); font-size: clamp(28px, 3vw, 40px); font-weight: 800; }
.about-panel p { max-width: 540px; margin: 0 0 24px; color: #526b84; }
.case-card .catalog-card__image { aspect-ratio: 1.55; }
.case-card__tags { display: flex; flex-wrap: wrap; gap: 6px; min-height: 25px; margin: 0 0 9px; }
.case-card__tags span { display: inline-flex; align-items: center; min-height: 25px; padding: 3px 9px; color: var(--gold-dark); background: #fff9f0; border: 1px solid var(--line-soft); border-radius: 999px; font-size: 12px; line-height: 1; }
.home-case-card__tags { flex-wrap: nowrap; min-width: 0; min-height: 25px; overflow: hidden; }
.home-case-card__tags span { flex: 0 1 auto; min-width: 0; max-width: 42%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.case-card__icon { position: absolute; left: 16px; top: 16px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--gold-dark); background: #fff; border: 1px solid var(--line); border-radius: 50%; box-shadow: var(--shadow-soft); }
.catalog-card__image { position: relative; }
.news-panel { background: #fffdf9; }
.home-news-list { display: grid; gap: 0; }
.home-news-item { display: grid; grid-template-columns: 190px minmax(0, 1fr) auto; align-items: center; gap: 24px; min-width: 0; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.home-news-item > span { min-width: 0; }
.home-news-item:last-child { border-bottom: 0; }
.home-news-item__image { width: 190px; aspect-ratio: 1.6; overflow: hidden; border-radius: 10px; }
.home-news-item__image img { width: 100%; height: 100%; object-fit: cover; }
.home-news-item h3 { margin: 0 0 5px; color: var(--navy); font-size: 18px; font-weight: 750; }
.home-news-item time { color: #9aa8b6; font-size: 13px; }
.home-news-item p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.home-news-item > i { color: var(--gold); }
.partner-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.partner-item { min-width: 0; min-height: 96px; display: grid; place-items: center; padding: 16px; overflow: hidden; background: #fff; border: 1px solid var(--line-soft); border-radius: 12px; }
.partner-item img { display: block; width: auto; max-width: 100%; max-height: 55px; object-fit: contain; filter: saturate(.85); transition: .25s ease; }
.partner-item:hover img { filter: none; transform: scale(1.04); }
.contact-panel { position: relative; overflow: hidden; background: #fffdf9; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr); gap: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.form-control-warm { width: 100%; min-height: 48px; padding: 12px 15px; color: var(--text); background: #fff; border: 1px solid var(--line-soft); border-radius: 9px; outline: none; }
textarea.form-control-warm { min-height: 134px; resize: vertical; }
.form-control-warm:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(215,144,47,.1); }
.contact-card { padding: 26px; background: var(--surface-warm); border: 1px solid var(--line); border-radius: var(--radius-md); }
.contact-card h3 { margin: 0 0 18px; color: var(--navy); font-size: 21px; }
.contact-card p { display: grid; grid-template-columns: 28px 1fr; gap: 8px; margin: 0 0 15px; color: var(--muted); }
.contact-card i { color: var(--gold); font-size: 18px; }

/* Inner hero and navigation */
.inner-hero { position: relative; min-height: 174px; display: flex; align-items: center; overflow: hidden; background-color: #fff9f3; background-image: linear-gradient(90deg,#fffaf5 0%,rgba(255,250,245,.96) 40%,rgba(255,250,245,.18) 78%),url('../images/inner-security.jpg'); background-position: center,right center; background-size: 100% 100%,auto 360px; background-repeat: no-repeat; border-bottom: 0; }
.inner-hero__content { position: relative; z-index: 2; padding: 26px 0 30px; }
.inner-hero__eyebrow { display: none; }
.inner-hero h1 { max-width: 650px; margin: 20px 0 6px; color: var(--navy); font-size: clamp(30px, 3vw, 40px); line-height: 1.2; font-weight: 800; }
.inner-hero p { max-width: 580px; margin: 0; color: #61778e; }
.inner-nav { position: relative; z-index: 3; margin-top: 0; background: #fff; border-bottom: 1px solid var(--line-soft); }
.inner-nav__row { min-height: 54px; display: flex; align-items: center; justify-content: flex-start; gap: 24px; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.inner-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.inner-tabs a { position: relative; padding: 15px 2px 13px; color: var(--navy); font-weight: 600; }
.inner-tabs a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 2px; background: var(--gold); transition: .2s ease; }
.inner-tabs a.active, .inner-tabs a:hover { color: var(--gold-dark); }
.inner-tabs a.active::after, .inner-tabs a:hover::after { left: 0; right: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; margin: 0; color: #8997a6; font-size: 13px; }
.breadcrumb a { color: inherit; }
.breadcrumb--hero { justify-content: flex-start; color: #75879a; }

/* Lists */
.page-section { padding: 68px 0 84px; }
.filter-panel { margin-bottom: 28px; padding: 24px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.filter-row { display: grid; grid-template-columns: 110px 1fr; align-items: flex-start; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.filter-row:last-child { border-bottom: 0; }
.filter-title { color: var(--navy); font-weight: 750; }
.filter-values ul { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-values a { display: inline-flex; padding: 5px 12px; color: var(--muted); border-radius: 8px; }
.filter-values li.active a, .filter-values a:hover { color: var(--gold-dark); background: var(--surface-warm); }
.catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.catalog-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-layout { display: grid; grid-template-columns: 265px 1fr; gap: 30px; align-items: start; }
.product-sidebar { position: sticky; top: 104px; display: grid; gap: 18px; }
.product-list-main { min-width: 0; }
.mobile-filter-toggle { display: none; }
.sidebar-card { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.sidebar-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 14px; padding-bottom: 13px; color: var(--navy); border-bottom: 1px solid var(--line-soft); font-size: 18px; }
.sidebar-title i { color: var(--gold); }
.category-list a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: var(--muted); border-radius: 8px; }
.category-list .active a, .category-list a:hover { color: var(--gold-dark); background: var(--surface-warm); }
.clear-filter { padding: 4px 8px; color: var(--muted); background: #fff; border: 1px solid var(--line-soft); border-radius: 7px; font-size: 12px; }
.sidebar-filter-group { margin-top: 16px; }
.sidebar-filter-group strong { display: block; margin-bottom: 8px; color: var(--navy); }
.sidebar-filter-group ul { display: flex; flex-wrap: wrap; gap: 7px; }
.sidebar-filter-group a { display: inline-flex; padding: 5px 9px; color: var(--muted); background: #fbfbfb; border: 1px solid var(--line-soft); border-radius: 7px; font-size: 13px; }
.sidebar-filter-group li.active a, .sidebar-filter-group a:hover { color: var(--gold-dark); border-color: var(--line); background: var(--surface-warm); }
.pagination, .page-pagination ul { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 38px 0 0; }
.pagination li a, .pagination li span, .page-pagination a, .page-pagination span { min-width: 40px; height: 40px; display: inline-grid; place-items: center; padding: 0 10px; color: var(--navy); background: #fff; border: 1px solid var(--line-soft); border-radius: 8px; }
.pagination .active span, .page-pagination .active span, .page-pagination .current { color: #fff; background: var(--gold); border-color: var(--gold); }

/* News and search */
.search-panel { margin-bottom: 18px; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.search-form-large { display: grid; grid-template-columns: 76px minmax(0, 1fr); align-items: center; gap: 12px; max-width: none; margin: 0; }
.search-form-large > label { color: var(--navy); font-weight: 700; }
.news-search-control { display: grid; grid-template-columns: minmax(0, 1fr) 48px auto; }
.search-form-large input { min-width: 0; min-height: 40px; padding: 0 14px; color: var(--navy); background: #fff; border: 1px solid var(--line-soft); border-right: 0; border-radius: 7px 0 0 7px; outline: 0; }
.search-form-large button { min-width: 48px; color: #fff; background: var(--gold); border: 1px solid var(--gold); border-radius: 0 7px 7px 0; font-weight: 700; }
.news-search-clear { display: inline-flex; align-items: center; gap: 4px; padding: 0 10px; color: var(--muted); border: 1px solid var(--line-soft); border-left: 0; border-radius: 0 7px 7px 0; white-space: nowrap; }
.news-search-summary { display: flex; align-items: center; gap: 8px; margin: 0 0 16px; color: var(--muted); }
.news-search-summary strong { color: var(--gold-dark); font-weight: 600; }
.search-result-count { margin: 16px 0 0; color: var(--muted); text-align: center; }
.search-empty { padding: 70px 20px; color: var(--muted); text-align: center; }
.news-page-section { padding-top: 20px; }
.news-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 290px; align-items: start; gap: 24px; }
.news-list-panel { overflow: hidden; background: #fff; border: 1px solid var(--line-soft); border-radius: 8px; }
.news-list-item { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 24px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); transition: .2s ease; }
.news-list-item:last-child { border-bottom: 0; }
.news-list-item:hover { background: #fffdf9; }
.news-list-item__image { align-self: center; height: 98px; overflow: hidden; border-radius: 8px; }
.news-list-item__image img { width: 100%; height: 100%; object-fit: cover; }
.news-list-item__body { min-width: 0; padding-right: 18px; }
.news-list-item h2 { margin: 0 0 5px; color: var(--navy); font-size: 17px; line-height: 1.45; font-weight: 750; }
.news-list-item p { margin: 0 0 6px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.news-list-item time { color: #96a2af; font-size: 13px; }
.news-list-item__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.news-detail-link { color: var(--gold-dark); font-size: 13px; font-weight: 700; white-space: nowrap; }
.news-sidebar { display: grid; gap: 18px; }
.news-sidebar-card, .news-cta-card { padding: 18px; background: #fff; border: 1px solid var(--line-soft); border-radius: 8px; }
.news-sidebar-card h2, .news-cta-card h2 { margin: 0 0 12px; color: var(--navy); font-size: 17px; font-weight: 800; }
.latest-news-card li { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 4px 0; color: var(--muted); font-size: 12px; }
.latest-news-card li::before { content: ""; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.latest-news-card li { grid-template-columns: 4px minmax(0, 1fr) auto; }
.latest-news-card time { color: #8d9bac; white-space: nowrap; }
.news-cta-card { min-height: 145px; background: #fffaf4 url('../images/about-building.jpg') right bottom/62% auto no-repeat; }
.news-cta-card p { margin: -4px 0 16px; color: var(--muted); font-size: 13px; }
.news-cta-card .gold-button { min-height: 38px; padding: 0 18px; font-size: 13px; }

/* Details */
.content-card { padding: clamp(24px, 4vw, 52px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.article-header { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); text-align: center; }
.article-header h1 { max-width: 900px; margin: 0 auto 12px; color: var(--navy); font-size: clamp(28px, 3vw, 42px); line-height: 1.35; font-weight: 800; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; color: #8c99a7; font-size: 13px; }
.rich-content { color: #435a72; font-size: 17px; line-height: 1.95; word-break: break-word; }
.rich-content img { display: block; max-width: 100%; height: auto!important; margin: 22px auto; border-radius: 10px; }
.rich-content table { width: 100%!important; display: block; overflow-x: auto; border-collapse: collapse; }
.rich-content h2, .rich-content h3, .rich-content h4 { margin-top: 1.8em; color: var(--navy); }
.detail-tags { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line-soft); color: var(--muted); }
.detail-tags a { display: inline-flex; margin: 4px 6px; padding: 4px 10px; color: var(--gold-dark); background: var(--surface-warm); border-radius: 8px; }
.next-prev { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.next-prev p { margin: 0; color: var(--muted); }
.next-prev-right { text-align: right; }
.next-prev-back { color: var(--navy); white-space: nowrap; }
.article-detail-hero { min-height: 220px; padding: 28px 0 26px; background-color: #fff9f3; background-image: linear-gradient(90deg,#fffaf5 0%,rgba(255,250,245,.96) 45%,rgba(255,250,245,.15) 78%),url('../images/inner-security.jpg'); background-position: center,right center; background-size: 100% 100%,auto 430px; background-repeat: no-repeat; }
.breadcrumb--article { justify-content: flex-start; margin-bottom: 28px; color: #75879a; }
.article-detail-hero h1 { max-width: 850px; margin: 0 0 20px; color: var(--navy); font-size: clamp(28px,3vw,40px); line-height: 1.32; font-weight: 800; }
.article-detail-meta { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14px; }
.article-category { display: inline-flex; padding: 4px 12px; color: var(--gold-dark); border: 1px solid var(--gold); border-radius: 5px; }
.article-share-button { margin-left: auto; padding: 8px 14px; color: var(--navy); background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; }
.article-body-section { padding: 30px 0 34px; }
.content-card--article { padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.article-featured-image { margin: 0 0 22px; overflow: hidden; border-radius: 8px; }
.article-featured-image img { display: block; width: 100%; aspect-ratio: 3.25; object-fit: cover; }
.content-card--article .rich-content { color: #435a72; font-size: 16px; line-height: 1.85; }
.content-card--article .detail-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 24px; padding-top: 0; border-top: 0; }
.content-card--article .next-prev { padding: 16px 18px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,252,247,.8); }

/* Case list fidelity */
.case-list-hero { min-height: 240px; }
.case-list-page { padding-top: 28px; }
.case-list-page .case-grid { gap: 22px; }
.case-list-page .case-card { border-color: var(--line); border-radius: 8px; box-shadow: none; }
.case-list-page .case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.case-list-page .case-card .catalog-card__image { aspect-ratio: 2.05; }
.case-list-page .case-card__icon { left: 16px; top: auto; bottom: -22px; width: 48px; height: 48px; color: var(--gold-dark); }
.case-list-page .catalog-card__body { position: relative; min-height: 128px; padding: 18px 44px 18px 18px; }
.case-list-page .catalog-card__body h2 { margin-bottom: 4px; font-size: 18px; }
.case-list-page .catalog-card__body small { color: var(--gold-dark); }
.case-list-page .catalog-card__body p { min-height: 44px; margin-bottom: 0; font-size: 13px; }
.case-card__arrow { position: absolute; right: 18px; bottom: 18px; color: var(--gold); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; padding: 34px; }
.product-detail > * { min-width: 0; }
.product-gallery-main { width: 100%; min-width: 0; overflow: hidden; background: var(--surface-warm); border: 1px solid var(--line); border-radius: var(--radius-md); }
.product-gallery-main .swiper-wrapper, .product-gallery-main .swiper-slide { min-width: 0; }
.product-gallery-main img { display: block; width: 100%; aspect-ratio: 1.2; object-fit: contain; }
.product-gallery-thumbs { width: 100%; min-width: 0; margin-top: 12px; overflow: hidden; }
.product-gallery-thumbs .swiper-slide { overflow: hidden; border: 1px solid var(--line-soft); border-radius: 9px; cursor: pointer; }
.product-gallery-thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-summary { display: flex; flex-direction: column; justify-content: center; }
.product-summary small { color: var(--gold-dark); font-weight: 700; }
.product-summary h1 { margin: 8px 0 10px; color: var(--navy); font-size: clamp(30px, 3vw, 44px); line-height: 1.3; font-weight: 800; }
.product-summary .subtitle { color: var(--navy-2); font-size: 18px; }
.product-summary .description { margin: 18px 0 26px; color: var(--muted); }
.product-price { margin-bottom: 20px; color: var(--gold-dark); font-size: 28px; font-weight: 800; }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.detail-tabs { margin-top: 28px; }
.tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); }
.tabs button { position: relative; padding: 15px 26px; color: var(--muted); background: transparent; border: 0; font-weight: 700; }
.tabs button::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -1px; height: 2px; background: var(--gold); transition: .2s ease; }
.tabs button.active { color: var(--navy); }
.tabs button.active::after { left: 18px; right: 18px; }
.tab-panel { padding-top: 28px; }

/* Product, company and case detail fidelity */
.product-detail-page { padding-top: 26px; }
.product-detail-breadcrumb { justify-content: flex-start; margin-bottom: 22px; color: #75879a; }
.product-detail-breadcrumb span { max-width: 48%; overflow: hidden; color: var(--navy); text-overflow: ellipsis; white-space: nowrap; }
.case-detail-hero { position: relative; min-height: 250px; }
.case-detail-hero .section-kicker { display: block; margin-bottom: 8px; color: var(--gold-dark); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.case-detail-hero h1 { overflow-wrap: anywhere; }
.case-detail-content { max-width: 1100px; margin: 0 auto; }
.case-brief { position: relative; margin: 0 0 34px; padding: 30px 32px; overflow: hidden; border: 1px solid rgba(219,155,55,.26); border-radius: 14px; background: linear-gradient(120deg,#fffaf3 0%,#fff 70%); }
.case-brief::after { content: ""; position: absolute; top: -70px; right: -50px; width: 190px; height: 190px; border: 1px solid rgba(219,155,55,.2); border-radius: 50%; }
.case-brief h2 { margin: 5px 0 10px; color: var(--navy); font-size: 25px; }
.case-brief p { max-width: 850px; margin: 0; color: #526a82; font-size: 16px; line-height: 1.85; }
.case-brief strong { display: inline-flex; margin-top: 14px; padding: 6px 12px; color: var(--gold-dark); background: #fff; border: 1px solid rgba(219,155,55,.28); border-radius: 999px; font-size: 13px; }
.case-story > h2 { margin: 42px 0 14px; padding-left: 14px; border-left: 3px solid var(--gold); color: var(--navy); font-size: 25px; line-height: 1.35; }
.case-story > h2:first-child { margin-top: 0; }
.case-story ul,.case-story ol { display: grid; gap: 8px; margin: 14px 0 24px; padding-left: 25px; }
.case-story li::marker { color: var(--gold-dark); font-weight: 700; }
.case-value-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin: 18px 0 10px; }
.case-value-grid span { display: flex; align-items: center; min-height: 70px; padding: 16px 18px; color: var(--navy); border: 1px solid var(--line); border-radius: 12px; background: #fffaf4; font-weight: 700; }
.case-value-grid span::before { content: "\f00c"; margin-right: 10px; color: var(--gold-dark); font-family: FontAwesome; }
.case-note { margin-top: 24px!important; padding: 16px 18px; color: #66798c; border-radius: 10px; background: #f7f9fb; font-size: 14px; line-height: 1.75; }
.case-proof { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--line-soft); }
.case-proof__heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 22px; }
.case-proof__heading h2 { margin: 6px 0 0; color: var(--navy); font-size: 27px; }
.case-proof__heading p { max-width: 440px; margin: 0; color: var(--muted); font-size: 13px; text-align: right; }
.case-proof__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; align-items: start; }
.case-proof__grid a { position: relative; display: flex; align-items: center; justify-content: center; padding: 12px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg,#fff 0%,#f4f7fa 100%); box-shadow: 0 10px 26px rgba(15,47,83,.06); transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.case-proof__grid a::after { content: "点击查看大图"; position: absolute; right: 14px; bottom: 12px; padding: 5px 9px; border-radius: 999px; color: #fff; background: rgba(12,43,78,.78); font-size: 11px; letter-spacing: .03em; opacity: 0; transform: translateY(5px); transition: opacity .2s ease,transform .2s ease; }
.case-proof__grid a:hover { transform: translateY(-4px); border-color: rgba(210,145,49,.42); box-shadow: 0 16px 34px rgba(15,47,83,.12); }
.case-proof__grid a:hover::after { opacity: 1; transform: translateY(0); }
.case-proof__grid img { display: block; width: 100%; height: auto; max-height: 620px; object-fit: contain; filter: saturate(.98) contrast(1.01); }
.about-detail-page { padding-top: 28px; }
.about-intro-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 36px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.about-intro-copy { padding: 40px 0 40px 42px; }
.section-kicker { color: var(--gold-dark); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.about-intro-copy h2 { margin: 10px 0 20px; color: var(--navy); font-size: clamp(28px,3vw,42px); line-height: 1.3; }
.about-intro-card figure { align-self: stretch; margin: 0; min-height: 360px; }
.about-intro-card figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-values, .about-history { padding-top: 58px; }
.about-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.about-values-grid article { min-height: 190px; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.about-values-grid i { width: 50px; height: 50px; display: grid; place-items: center; color: var(--gold-dark); background: var(--surface-warm); border: 1px solid var(--line); border-radius: 50%; font-size: 21px; }
.about-values-grid h3 { margin: 20px 0 8px; color: var(--navy); font-size: 19px; }
.about-values-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.about-history-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.about-history-list article { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.about-history-list strong { color: var(--gold-dark); font-size: 28px; }
.about-history-list p { margin: 9px 0 0; color: var(--muted); line-height: 1.7; }
.about-service-process .about-history-list { grid-template-columns: repeat(5,minmax(0,1fr)); }
.about-detail-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 58px; padding: 28px 34px; background: var(--surface-warm) url('../images/about-building.jpg') right center/36% auto no-repeat; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.about-detail-cta > div { max-width: 650px; }
.about-detail-cta span { color: var(--gold-dark); font-weight: 700; }
.about-detail-cta h2 { margin: 6px 0 0; color: var(--navy); font-size: clamp(22px,2.4vw,32px); }
.download-disabled { color: #9a7a51; background: #fffaf2; cursor: not-allowed; }

/* Customers, downloads, contact, inquiry */
.customer-grid { display: grid; grid-template-columns: repeat(6, 1fr); overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.customer-grid .partner-item { min-height: 135px; border-width: 0 1px 1px 0; border-radius: 0; }
.download-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.download-row { display: grid; grid-template-columns: minmax(0,1fr) 180px 150px; align-items: center; gap: 20px; min-height: 84px; padding: 16px 26px; border-bottom: 1px solid var(--line-soft); }
.download-row:last-child { border-bottom: 0; }
.download-row h3 { display: flex; align-items: center; min-width: 0; margin: 0; overflow: hidden; color: var(--navy); font-size: 17px; white-space: nowrap; }
.download-row h3 i { flex: 0 0 auto; margin-right: 10px; color: var(--gold); }
.download-row h3 span { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.download-row time { color: var(--muted); }
.download-row__action { display: flex; justify-content: flex-end; }
.download-row__action .outline-button { width: 132px; min-width: 132px; flex-wrap: nowrap; justify-content: center; text-align: center; white-space: nowrap; }
.home-download-link.is-disabled { cursor: not-allowed; opacity: .58; }
.contact-page-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; }
.contact-details h2 { margin: 0 0 12px; color: var(--navy); font-size: 34px; font-weight: 800; }
.contact-details > p { color: var(--muted); }
.contact-details-list { display: grid; gap: 14px; margin-top: 28px; }
.contact-details-list p { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; margin: 0; }
.contact-details-list i { width: 42px; height: 42px; display: grid; place-items: center; color: var(--gold-dark); background: var(--surface-warm); border: 1px solid var(--line); border-radius: 50%; }
.map-wrap { margin-top: 34px; overflow: hidden; border-radius: var(--radius-md); }
.inquiry-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: start; }
.inquiry-products, .inquiry-form-card { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.inquiry-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.inquiry-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; }
.inquiry-item h3 { margin: 0 0 5px; color: var(--navy); font-size: 17px; }
.quantity-control { display: grid; grid-template-columns: 36px 46px 36px; }
.quantity-control button, .quantity-control input { height: 36px; color: var(--navy); background: #fff; border: 1px solid var(--line); text-align: center; }
.quantity-control button:first-child { border-radius: 8px 0 0 8px; }.quantity-control button:last-child { border-radius: 0 8px 8px 0; }
.inquiry-total { display: flex; justify-content: space-between; padding-top: 20px; color: var(--navy); font-size: 20px; font-weight: 800; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: minmax(240px,1.15fr) minmax(430px,2.2fr) minmax(220px,1fr) 126px; align-items: start; gap: 32px; padding: 46px 0 34px; }
.footer-brand .brand { width: 190px; height: 54px; flex-basis: 190px; }
.footer-brand .brand img { left: -31px; top: -99px; width: 254px; height: 254px; }
.footer-brand p { margin: 18px 0; color: var(--muted); font-size: 14px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 36px; height: 36px; display: grid; place-items: center; color: var(--navy); background: var(--surface-warm); border-radius: 50%; }
.footer-navigation { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.footer-column h3 { margin: 0 0 13px; color: var(--navy); font-size: 15px; font-weight: 750; }
.footer-column li { margin: 6px 0; }
.footer-column a { color: var(--muted); font-size: 13px; }
.footer-contact h3 { margin: 0 0 14px; color: var(--navy); font-size: 16px; }
.footer-contact p { display: grid; grid-template-columns: 20px 1fr; gap: 8px; margin: 8px 0; color: var(--muted); font-size: 13px; }
.footer-contact i { color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 13px; }
.footer-links strong { color: var(--navy); }
.footer-bottom { border-top: 1px solid var(--line-soft); }
.footer-bottom .container { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; color: #8b98a5; font-size: 12px; }
.footer-bottom p:last-child { display: flex; gap: 18px; }
.floating-tools { position: fixed; z-index: 80; right: 22px; bottom: 62px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; transform: translateY(18px); transition: .25s ease; }
.floating-tools.is-visible { opacity: 1; transform: none; }
.floating-tools a, .floating-tools button { width: 78px; min-height: 68px; display: grid; place-items: center; align-content: center; gap: 3px; color: var(--navy); background: #fff; border: 0; border-bottom: 1px solid var(--line-soft); cursor: pointer; }
.floating-tools > :last-child { border-bottom: 0; }
.floating-tools i { font-size: 19px; }.floating-tools span { font-size: 11px; }

@media (max-width: 1199px) {
  .site-nav > ul { gap: 18px; }
  .site-nav > ul > li > a { font-size: 14px; }
  .language-button span { display: none; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .customer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: minmax(220px,1fr) minmax(380px,2fr) 120px; }
  .footer-contact { grid-column: 1 / 3; }
}

@media (max-width: 991px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { height: 70px; }
  .brand { width: 172px; height: 50px; flex-basis: 172px; }
  .brand img { left: -28px; top: -89px; width: 229px; height: 229px; }
  .menu-toggle { display: inline-grid; }
  .site-nav { position: fixed; inset: 70px 0 0; height: auto; margin: 0; padding: 18px 22px 40px; background: #fff; overflow-x: hidden; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateX(20px); transition: .22s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > ul { height: auto; display: block; }
  .site-nav > ul > li { display: block; border-bottom: 1px solid var(--line-soft); }
  .site-nav > ul > li > a { min-height: 54px; justify-content: space-between; font-size: 16px; }
  .site-nav > ul > li > a::after { display: none; }
  .site-nav .submenu { position: static; display: none; min-width: 0; margin: 0 0 12px; padding: 8px; color: var(--navy); background: var(--surface-warm); border: 1px solid var(--line); border-radius: 10px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .site-nav .submenu-open > .submenu { display: block!important; opacity: 1!important; visibility: visible!important; transform: none!important; }
  .site-nav .submenu li { display: block; color: var(--navy); }
  .site-nav .submenu a { display: block; min-height: 42px; padding: 9px 12px; color: var(--navy)!important; background: transparent; border-radius: 7px; font-size: 15px; font-weight: 500; line-height: 24px; opacity: 1!important; visibility: visible!important; }
  .site-nav .submenu a:hover, .site-nav .submenu a:focus-visible { color: var(--gold-dark)!important; background: #fff; }
  .site-nav .submenu-open > a > i { transform: rotate(180deg); }
  .header-search { inset: 70px 0 auto; }
  .hero-section { height: 560px; min-height: 0; }
  .hero-slide { background-position: 58% center; }
  .hero-slide__content { padding-right: 48%; }
  .hero-slide h1, .hero-slide h2 { font-size: 42px; }
  .hero-prev, .hero-next { display: none; }
  .about-panel__content { width: 58%; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid, .contact-page-grid, .inquiry-layout { grid-template-columns: 1fr; }
  .catalog-grid, .case-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid--three { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .news-content-grid { grid-template-columns: minmax(0, 1fr) 250px; gap: 18px; }
  .news-list-item { grid-template-columns: 190px 1fr; gap: 18px; }
  .product-detail { grid-template-columns: 1fr; gap: 30px; }
  .about-intro-card { grid-template-columns: 1fr; }
  .about-intro-copy { padding: 32px 32px 0; }
  .about-intro-card figure { min-height: 280px; }
  .about-values-grid { grid-template-columns: repeat(2,1fr); }
  .customer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-navigation { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  body.wazl-site { font-size: 15px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header__inner { gap: 5px; }
  .brand { width: 142px; height: 44px; flex-basis: 142px; }
  .brand img { left: -23px; top: -74px; width: 190px; height: 190px; }
  .header-actions { margin-left: auto; gap: 1px; }
  .icon-button { width: 38px; height: 38px; }
  .language-button { min-height: 36px; padding: 5px 9px; }
  .inquiry-link { display: inline-grid; }
  .header-search__form { grid-template-columns: 1fr auto auto; min-height: 76px; gap: 6px; }
  .header-search input { min-width: 0; height: 44px; padding: 0 12px; }
  .header-search button[type="submit"] { width: 46px; height: 44px; padding: 0; }
  .header-search button[type="submit"] span { display: none; }
  .hero-section { height: 360px; }
  .hero-slide { background-position: 62% center; }
  .hero-slide::after { content: ""; position: absolute; inset: 0; background: rgba(255,250,244,.25); }
  .hero-slide__content { padding-right: 45%; padding-bottom: 22px; }
  .hero-eyebrow { display: none; }
  .hero-slide h1, .hero-slide h2 { margin-bottom: 13px; font-size: clamp(29px, 8.3vw, 40px); line-height: 1.22; }
  .hero-slide p { max-width: 92%; margin-bottom: 20px; font-size: 14px; line-height: 1.7; }
  .gold-button, .outline-button { min-height: 42px; padding: 0 18px; font-size: 14px; }
  .home-main { padding-top: 10px; }
  .home-panel { margin-top: 16px; padding: 22px 18px; border-radius: 18px; }
  .section-heading { align-items: center; margin-bottom: 18px; }
  .section-heading h2, .section-heading h3 { font-size: 25px; }
  .category-tabs { flex-wrap: nowrap; gap: 22px; overflow-x: auto; scrollbar-width: none; }
  .category-tabs::-webkit-scrollbar { display: none; }
  .about-panel { min-height: 280px; background-position: 62% center; }
  .about-panel__content { width: 65%; padding-right: 0; }
  .about-panel h2 { font-size: 26px; }
  .about-panel p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 4; font-size: 13px; }
  .home-news-item { grid-template-columns: 112px minmax(0, 1fr); gap: 13px; padding: 12px 0; }
  .home-news-item__image { width: 112px; }
  .home-news-item h3 { font-size: 15px; line-height: 1.5; }
  .home-news-item p, .home-news-item > i { display: none; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .partner-item { min-height: 72px; padding: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .contact-card { padding: 20px; }
  .inner-hero { min-height: 140px; background-position: center,right center; background-size: 100% 100%,auto 260px; }
  .inner-hero__content { max-width: none; padding: 16px 0 20px; }
  .inner-hero h1 { max-width: 62%; margin: 14px 0 5px; font-size: 27px; }
  .inner-hero p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 13px; }
  .inner-hero__content > p:last-child { max-width: 62%; }
  .inner-nav { margin-top: 0; }
  .inner-nav__row { min-height: 50px; padding: 0; overflow-x: auto; }
  .inner-tabs { flex-wrap: nowrap; min-width: max-content; }
  .inner-tabs a { padding: 13px 2px 11px; }
  .breadcrumb { display: none; }
  .breadcrumb--hero { display: flex; max-width: 65%; gap: 7px; font-size: 12px; white-space: nowrap; }
  .page-section { padding: 34px 0 62px; }
  .filter-panel { padding: 18px; }
  .filter-row { grid-template-columns: 1fr; gap: 7px; }
  .catalog-grid, .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .catalog-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-card__body { padding: 13px; }
  .case-card__tags { gap: 4px; min-height: 22px; margin-bottom: 7px; }
  .case-card__tags span { min-height: 22px; padding: 3px 7px; font-size: 11px; }
  .catalog-card__body h3 { font-size: 15px; }
  .catalog-card__body p { min-height: 42px; font-size: 12px; }
  .product-sidebar { gap: 0; }
  .product-sidebar > .sidebar-card:first-of-type { display: none; }
  .mobile-filter-toggle { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: space-between; padding: 0 18px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 12px; font-size: 16px; font-weight: 700; }
  .mobile-filter-toggle span { display: inline-flex; align-items: center; gap: 10px; }
  .mobile-filter-toggle > i { color: var(--gold-dark); }
  .product-filter-card { display: none; margin-top: 10px; }
  .product-filter-card.is-open { display: block; }
  .catalog-card.wow { visibility: visible !important; }
  .news-page-section { padding-top: 18px; }
  .news-search-panel { margin-bottom: 16px; padding: 0; background: transparent; border: 0; border-radius: 0; }
  .search-form-large { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .search-form-large > label { display: none; }
  .news-search-control { grid-template-columns: minmax(0, 1fr) 48px auto; }
  .search-form-large input { min-height: 42px; background: #fff; }
  .search-form-large button { min-width: 48px; }
  .news-search-clear { min-width: 54px; justify-content: center; padding: 0 8px; }
  .news-search-summary { margin-bottom: 12px; font-size: 13px; }
  .news-content-grid { grid-template-columns: 1fr; gap: 18px; }
  .news-list-panel { border: 0; border-top: 1px solid var(--line-soft); border-radius: 0; }
  .news-list-item { grid-template-columns: 132px minmax(0, 1fr); align-items: stretch; gap: 14px; padding: 10px 0; }
  .news-list-item__image { width: 132px; height: auto; min-height: 0; aspect-ratio: 1.68; border-radius: 7px; }
  .news-list-item__body { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding-right: 2px; }
  .news-list-item h2 { margin-bottom: 3px; font-size: 15px; line-height: 1.45; }
  .news-list-item p { display: -webkit-box; margin-bottom: 4px; font-size: 12px; line-height: 1.55; }
  .news-list-item time, .news-detail-link { font-size: 11px; }
  .news-list-item__meta { gap: 6px; }
  .news-content-main .page-pagination { margin-top: 18px; }
  .news-sidebar { gap: 14px; }
  .news-sidebar-card, .news-cta-card { padding: 16px; }
  .latest-news-card li { font-size: 12px; }
  .news-cta-card { min-height: 126px; background-size: 55% auto; }
  .content-card { padding: 22px 17px; border-radius: 16px; }
  .article-header { text-align: left; }
  .article-header h1 { font-size: 26px; }
  .article-meta { justify-content: flex-start; }
  .rich-content { font-size: 16px; }
  .next-prev { grid-template-columns: 1fr; gap: 10px; }
  .next-prev-right { text-align: left; }
  .article-detail-hero { min-height: 230px; padding: 20px 0 18px; background-size: 100% 100%,auto 280px; }
  .article-detail-hero { background-image: linear-gradient(115deg,#fffaf5 0%,#fff 72%,#fff8f0 100%); }
  .breadcrumb--article { display: flex; justify-content: flex-start; margin-bottom: 18px; font-size: 12px; }
  .article-detail-hero h1 { margin-bottom: 16px; font-size: 26px; line-height: 1.4; }
  .article-detail-meta { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; font-size: 12px; }
  .article-category { padding: 3px 9px; }
  .article-share-button { margin-left: 0; padding: 7px 12px; }
  .article-body-section { padding: 18px 0 24px; }
  .content-card--article { padding: 0; border-radius: 0; }
  .article-featured-image { margin-bottom: 16px; border-radius: 7px; }
  .article-featured-image img { aspect-ratio: 1.9; }
  .content-card--article .rich-content { font-size: 15px; line-height: 1.8; }
  .content-card--article .next-prev { grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); gap: 8px; padding: 12px 10px; font-size: 11px; }
  .content-card--article .next-prev p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .content-card--article .next-prev-right { text-align: right; }
  .case-list-hero { min-height: 270px; background-size: 100% 100%,auto 330px; }
  .case-list-hero .inner-hero__content { padding: 22px 0 28px; }
  .case-list-hero .inner-hero h1, .case-list-hero h1 { max-width: 58%; margin-top: 32px; font-size: 34px; }
  .case-list-hero .inner-hero__content > p:last-child { max-width: 58%; font-size: 14px; line-height: 1.8; }
  .case-list-page { padding-top: 14px; }
  .case-list-page .case-grid { grid-template-columns: 1fr; gap: 0; overflow: hidden; background: #fff; border: 1px solid var(--line-soft); border-radius: 12px; }
  .case-list-page .case-card { display: grid; grid-template-columns: 42% 58%; min-height: 156px; border: 0; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .case-list-page .case-card:last-child { border-bottom: 0; }
  .case-list-page .case-card .catalog-card__image { height: 100%; aspect-ratio: auto; border-radius: 8px; }
  .case-list-page .case-card__icon { left: 14px; bottom: 14px; width: 46px; height: 46px; }
  .case-list-page .catalog-card__body { min-width: 0; min-height: 0; padding: 17px 32px 15px 14px; }
  .case-list-page .catalog-card__body h2 { font-size: 16px; line-height: 1.4; white-space: normal; }
  .case-list-page .catalog-card__body p { min-height: 0; font-size: 13px; }
  .case-card__arrow { right: 14px; bottom: 18px; }
  .product-detail { padding: 18px; }
  .product-detail-page { padding-top: 18px; }
  .product-detail-breadcrumb { display: flex; margin-bottom: 14px; font-size: 12px; white-space: nowrap; }
  .product-detail-breadcrumb span { max-width: 42%; }
  .product-summary h1 { font-size: 28px; }
  .tabs button { flex: 1; padding: 13px 10px; }
.case-detail-hero { min-height: 210px; background-image: url('../images/inner-security.jpg'); background-position: 60% center; background-size: auto 260px; }
  .case-detail-hero::before { content: ""; position: absolute; inset: 0; background: rgba(255,250,245,.74); }
  .case-detail-hero .container { position: relative; }
  .case-brief { margin-bottom: 25px; padding: 22px 18px; border-radius: 10px; }
  .case-brief h2 { font-size: 21px; }
  .case-brief p { font-size: 14px; line-height: 1.75; }
  .case-story > h2 { margin-top: 32px; font-size: 21px; }
  .case-value-grid { grid-template-columns: 1fr; gap: 9px; }
  .case-value-grid span { min-height: 56px; padding: 13px 15px; }
  .case-proof { margin-top: 38px; padding-top: 26px; }
  .case-proof__heading { display: block; }
  .case-proof__heading h2 { font-size: 22px; }
  .case-proof__heading p { margin-top: 9px; text-align: left; }
  .case-proof__grid { display: flex; gap: 12px; margin-right: -18px; padding: 2px 18px 12px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .case-proof__grid a { min-width: 84%; padding: 10px; scroll-snap-align: start; }
  .case-proof__grid a::after { opacity: 1; transform: none; }
  .case-proof__grid img { height: auto; max-height: 68vh; }
  .about-detail-page { padding-top: 18px; }
  .about-intro-card { display: flex; flex-direction: column-reverse; gap: 0; }
  .about-intro-copy { padding: 22px 18px 26px; }
  .about-intro-copy h2 { font-size: 25px; }
  .about-intro-card figure { width: 100%; min-height: 210px; }
  .about-values, .about-history { padding-top: 34px; }
  .about-values-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .about-values-grid article { min-height: 170px; padding: 18px 15px; }
  .about-values-grid h3 { margin-top: 14px; font-size: 17px; }
  .about-history-list { grid-template-columns: 1fr; gap: 10px; }
  .about-history-list article { padding: 18px; }
  .about-detail-cta { display: block; margin-top: 34px; padding: 24px 20px; background-size: 58% auto; }
  .about-detail-cta h2 { max-width: 70%; margin-bottom: 18px; font-size: 22px; }
  .customer-grid { grid-template-columns: repeat(2, 1fr); }
  .customer-grid .partner-item { min-height: 100px; }
  .download-row { grid-template-columns: minmax(0,1fr) auto; min-height: 74px; padding: 13px 16px; }
  .download-row time { display: none; }
  .inquiry-products, .inquiry-form-card { padding: 18px; }
  .inquiry-item { grid-template-columns: 70px 1fr; }
  .inquiry-item img { width: 70px; height: 70px; }
  .inquiry-item__actions { grid-column: 1 / -1; display: flex; justify-content: space-between; }
  .footer-main { padding: 18px 0 12px; display: grid; grid-template-columns: 130px minmax(0, 1fr); align-items: center; gap: 10px 16px; }
  .footer-brand .brand { width: 130px; height: 44px; flex-basis: 130px; }
  .footer-brand .brand img { left: -20px; top: -65px; width: 166px; height: 166px; }
  .footer-brand > p, .footer-social, .footer-contact, .footer-links { display: none; }
  .footer-navigation { min-width: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px 6px; text-align: center; }
  .footer-column { min-width: auto; }
  .footer-column h3 { margin: 0; font-size: 12px; white-space: nowrap; }
  .footer-column ul { display: none; }
  .footer-bottom .container { padding: 14px 0; display: block; text-align: center; }
  .footer-bottom p:last-child { justify-content: center; margin-top: 6px; }
  .floating-tools { right: 6px; bottom: 52px; }
  .floating-tools a, .floating-tools button { width: 58px; min-height: 58px; }
  .floating-tools span { font-size: 9px; }
}

@media (max-width: 480px) {
  .brand { width: 124px; flex-basis: 124px; }
  .brand img { left: -20px; top: -65px; width: 166px; height: 166px; }
}

/* Lightweight site-wide rainbow pointer trail. */
.wazl-rainbow-trail {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.wazl-rainbow-orb {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483001;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.94);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .16s ease,height .16s ease,opacity .16s ease;
  box-shadow: 0 0 0 2px rgba(8,43,92,.18),0 0 18px rgba(217,90,255,.38);
}

body.wazl-rainbow-visible .wazl-rainbow-orb { opacity: 1; }
.wazl-rainbow-orb.is-active { width: 28px; height: 28px; }

@media (pointer: coarse), (hover: none), (prefers-reduced-motion: reduce) {
  .wazl-rainbow-trail,
  .wazl-rainbow-orb { display: none !important; }
}

/* Homepage modules controlled by the LDcms "is_home" switch. */
.home-download-panel .home-news-item {
  grid-template-columns: 76px minmax(0, 1fr) auto;
}
.home-download-item__icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(215, 145, 43, .28);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #d9922b);
  background: linear-gradient(145deg, #fff 0%, #fff7ec 100%);
  font-size: 24px;
}
@media (max-width: 767px) {
  .home-download-panel .home-news-item {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }
  .home-download-item__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .brand { width: 124px; flex-basis: 124px; }
  .brand img { left: -20px; top: -65px; width: 166px; height: 166px; }
  .language-button span { display: none; }
  .hero-slide__content { padding-right: 40%; }
  .hero-slide h1, .hero-slide h2 { font-size: 28px; }
  .catalog-grid, .case-grid { grid-template-columns: 1fr 1fr; }
}

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

/* 2026-08-10 local restore: post-package compatibility layer */
.site-header .brand {
  width: 318px;
  height: 58px;
  flex: 0 1 318px;
  gap: 12px;
  overflow: visible;
}
.site-header .brand img {
  position: static;
  width: 54px;
  height: 54px;
  max-width: 54px;
  flex: 0 0 54px;
  object-fit: contain;
}
.brand-company-name {
  min-width: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  white-space: nowrap;
}
.catalog-card.wow { visibility: visible !important; opacity: 1 !important; transform: none !important; animation-name: none !important; }
.site-header .site-nav > ul { gap: 20px; }
.captcha-field { display: grid; grid-template-columns: minmax(0,1fr) 136px; gap: 12px; align-items: stretch; }
.captcha-field img { display: block; width: 136px; height: 48px; object-fit: cover; cursor: pointer; border: 1px solid var(--line-soft); border-radius: 8px; background: #fff; }
.footer-qrcodes { display: flex; align-items: flex-start; justify-content: flex-end; gap: 12px; }
.footer-qrcode { width: 126px; margin: 0; padding: 9px 8px 8px; text-align: center; background: #fffdf9; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 8px 24px rgba(26,55,88,.07); }
.footer-qrcode img { display: block; width: 108px; height: 108px; margin: 0 auto 7px; padding: 4px; object-fit: contain; background: #fff; border: 1px solid var(--line-soft); border-radius: 8px; }
.footer-qrcode figcaption { overflow: hidden; color: var(--muted); font-size: 12px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.footer-brand .brand { width: auto; height: 54px; display: inline-flex; align-items: center; gap: 9px; overflow: visible; }
.footer-brand .brand img { position: static; width: 48px; height: 48px; max-width: 48px; object-fit: contain; }
.footer-brand .brand-company-name { max-width: 190px; font-size: 16px; white-space: normal; }

/* Company profile fidelity restored from the accepted PC/mobile design */
.about-detail-page { padding-top: 28px; }
.about-intro-card {
  display: grid;
  grid-template-columns: minmax(360px,470px) minmax(0,1fr);
  align-items: center;
  gap: 36px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.about-intro-card figure { align-self: center; min-height: 0; margin: 0; overflow: hidden; border-radius: 8px; }
.about-intro-card figure img { display: block; width: 100%; height: auto; aspect-ratio: 633/189; object-fit: cover; }
.about-intro-copy { padding: 0; }
.about-intro-copy > .section-kicker { display: none; }
.about-intro-copy h2 { margin: 0 0 14px; color: var(--navy); font-size: 28px; line-height: 1.3; }
.about-intro-copy .rich-content { color: #435a72; font-size: 14px; line-height: 1.85; }
.about-intro-copy .rich-content p { margin: 0 0 10px; }
.about-values { padding-top: 28px; }
.about-values > .section-heading { display: none; }
.about-values-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; }
.about-values-grid article {
  min-height: 78px;
  display: grid;
  grid-template-columns: 50px minmax(0,1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 14px;
  padding: 7px 20px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-radius: 0;
}
.about-values-grid article:last-child { border-right: 0; }
.about-values-grid i { grid-row: 1/3; width: 48px; height: 48px; display: grid; place-items: center; color: var(--gold-dark); background: #fffaf4; border: 1px solid var(--gold); border-radius: 50%; font-size: 20px; }
.about-values-grid h3 { margin: 0 0 4px; color: var(--navy); font-size: 16px; }
.about-values-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.about-history { padding-top: 24px; }
.about-history .section-heading { margin-bottom: 12px; }
.about-history .section-heading span { display: none; }
.about-history .section-heading h2 { font-size: 24px; }
.about-history-list { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 0; border-top: 1px solid var(--gold); }
.about-history-list article { position: relative; padding: 25px 10px 0; text-align: center; background: transparent; border: 0; border-radius: 0; }
.about-history-list article::before { content: ""; position: absolute; top: -5px; left: 50%; width: 9px; height: 9px; background: #fff; border: 2px solid var(--gold); border-radius: 50%; transform: translateX(-50%); }
.about-history-list strong { color: var(--navy); font-size: 18px; }
.about-history-list p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.about-service-process .about-history-list { grid-template-columns: repeat(5,minmax(0,1fr)); }
.about-partners { padding-top: 26px; }
.about-partners .section-heading { margin-bottom: 12px; }
.about-partners .section-heading span { display: none; }
.about-partners .section-heading h2 { font-size: 24px; }
.about-partner-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.about-partner-grid a { min-width: 0; min-height: 56px; display: grid; place-items: center; padding: 7px 12px; border-right: 1px solid var(--line-soft); }
.about-partner-grid a:last-child { border-right: 0; }
.about-partner-grid img { display: block; max-width: 150px; max-height: 42px; object-fit: contain; }
.about-detail-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 14px; padding: 12px 20px; background: #fffaf4; border: 1px solid var(--line); border-radius: 9px; }
.about-detail-cta > i { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 42px; color: var(--gold-dark); border: 1px solid var(--gold); border-radius: 50%; }
.about-detail-cta > div { min-width: 0; margin-right: auto; }
.about-detail-cta h2 { margin: 0; color: var(--gold-dark); font-size: 18px; }
.about-detail-cta span { color: var(--muted); font-size: 12px; font-weight: 400; }

@media (max-width: 1200px) {
  .site-header .brand { width: 270px; flex-basis: 270px; }
  .brand-company-name { font-size: 17px; }
  .site-header .site-nav > ul { gap: 14px; }
}

@media (max-width: 1024px) {
  .site-header .brand { width: 280px; flex-basis: 280px; }
  .about-intro-card { grid-template-columns: minmax(320px,42%) minmax(0,1fr); gap: 28px; }
  .about-values-grid article { padding-inline: 12px; }
}

@media (max-width: 767px) {
  .site-header .brand { width: 200px; height: 50px; flex: 0 1 200px; gap: 8px; }
  .site-header .brand img { width: 42px; height: 42px; max-width: 42px; flex-basis: 42px; }
  .brand-company-name { max-width: 148px; font-size: 13px; line-height: 1.2; white-space: normal; }
  .about-page-hero .inner-hero__content { max-width: 58%; }
  .about-detail-page { padding-top: 24px; }
  .about-intro-card { display: flex; flex-direction: column-reverse; gap: 0; }
  .about-intro-copy { width: 100%; padding: 0 34px 24px; }
  .about-intro-copy h2 { font-size: 25px; }
  .about-intro-copy .rich-content { font-size: 15px; line-height: 1.9; }
  .about-intro-card figure { width: calc(100% - 68px); margin: 0 auto; }
  .about-values { padding: 34px 34px 0; }
  .about-values-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-values-grid article { min-height: 120px; padding: 16px 14px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .about-values-grid article:nth-child(2n) { border-right: 0; }
  .about-values-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .about-history { padding: 34px 34px 0; overflow: visible; }
  .about-history-list,
  .about-service-process .about-history-list { min-width: 0; grid-template-columns: 1fr; gap: 10px; border-top: 0; }
  .about-history-list article { padding: 16px 18px; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
  .about-history-list article::before { display: none; }
  .about-history-list strong { display: block; font-size: 17px; line-height: 1.45; }
  .about-history-list p { margin-top: 5px; font-size: 13px; line-height: 1.7; }
  .about-partners { margin: 36px 34px 0; padding: 18px 16px; background: #fffaf4; border: 1px solid var(--line); border-radius: 10px; }
  .about-partners .section-heading { margin-bottom: 10px; }
  .about-partner-grid { display: flex; overflow-x: auto; scrollbar-width: none; }
  .about-partner-grid::-webkit-scrollbar { display: none; }
  .about-partner-grid a { min-width: 132px; }
  .about-detail-cta { margin: 26px 34px 0; padding: 18px 16px; }
  .about-detail-cta h2 { font-size: 17px; }
  .about-detail-cta .gold-button { min-height: 42px; padding: 0 16px; white-space: nowrap; }
  .footer-qrcodes { justify-content: center; }
  .footer-qrcode { width: 122px; }
  .footer-qrcode img { width: 104px; height: 104px; }
  .footer-brand .brand { width: auto; height: 48px; display: inline-flex; }
  .footer-brand .brand img { position: static; width: 42px; height: 42px; max-width: 42px; }
  .footer-brand .brand-company-name { max-width: 168px; font-size: 13px; line-height: 1.2; }
}

@media (max-width: 480px) {
  .captcha-field { grid-template-columns: minmax(0,1fr) 112px; gap: 8px; }
  .captcha-field img { width: 112px; }
  .site-header .brand { width: 188px; flex-basis: 188px; }
  .brand-company-name { max-width: 138px; font-size: 12px; }
  .about-intro-copy, .about-values, .about-history { padding-left: 18px; padding-right: 18px; }
  .about-intro-card figure { width: calc(100% - 36px); }
  .about-partners, .about-detail-cta { margin-left: 18px; margin-right: 18px; }
}

/* About page — accepted compact PC/mobile layout */
.about-detail-page { padding: 34px 0 52px; }
.about-detail-page > .container { max-width: 1240px; }
.about-profile-section,
.about-compact-section,
.about-partners { scroll-margin-top: 100px; }
.about-profile-section { padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.about-profile-section .about-intro-card { grid-template-columns: minmax(340px,430px) minmax(0,1fr); gap: 32px; }
.about-profile-section .about-intro-card figure img { aspect-ratio: 633/216; }
.about-profile-section .about-values-grid { margin-top: 18px; }
.about-compact-section { padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.about-compact-section > h2 { margin: 0 0 14px; color: var(--navy); font-size: 21px; line-height: 1.35; }
.about-info-grid { display: grid; gap: 0; }
.about-info-grid--four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.about-info-grid--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.about-info-grid article { min-width: 0; display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 12px; padding: 4px 20px; border-right: 1px solid var(--line-soft); }
.about-info-grid article:first-child { padding-left: 0; }
.about-info-grid article:last-child { padding-right: 0; border-right: 0; }
.about-info-grid article > i { width: 42px; height: 42px; display: grid; place-items: center; color: var(--gold-dark); background: #fffaf4; border: 1px solid #edbf79; border-radius: 50%; font-size: 17px; }
.about-info-grid h3 { margin: 1px 0 6px; color: var(--navy); font-size: 15px; line-height: 1.4; }
.about-info-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.about-info-grid ul { margin: 7px 0 0; padding: 0; list-style: none; color: #526b84; font-size: 11px; line-height: 1.7; }
.about-info-grid li::before { content: "•"; margin-right: 7px; color: var(--gold-dark); }
.about-info-grid--brief article { align-items: start; }
.about-process-list { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 0; margin: 18px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--gold); }
.about-process-list li { position: relative; min-width: 0; padding: 23px 14px 0; text-align: center; }
.about-process-list li::before { content: ""; position: absolute; top: -5px; left: 50%; width: 9px; height: 9px; background: #fff; border: 2px solid var(--gold); border-radius: 50%; transform: translateX(-50%); }
.about-process-list span { position: absolute; top: -13px; left: 50%; width: 26px; height: 26px; display: grid; place-items: center; color: var(--gold-dark); background: #fff; border: 1px solid var(--gold); border-radius: 50%; font-size: 11px; font-weight: 800; transform: translateX(-50%); }
.about-process-list li::before { display: none; }
.about-process-list h3 { margin: 0 0 7px; color: var(--navy); font-size: 15px; }
.about-process-list p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.about-faq-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border: 1px solid var(--line-soft); border-radius: 7px; overflow: hidden; }
.about-faq-item { min-width: 0; background: #fff; border-bottom: 1px solid var(--line-soft); }
.about-faq-item:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.about-faq-item:nth-last-child(-n+2) { border-bottom: 0; }
.about-faq-item summary { min-height: 38px; display: grid; grid-template-columns: 24px minmax(0,1fr) 20px; align-items: center; gap: 4px; padding: 7px 12px; color: var(--navy); cursor: pointer; list-style: none; }
.about-faq-item summary::-webkit-details-marker { display: none; }
.about-faq-item summary span { color: var(--gold-dark); font-size: 12px; }
.about-faq-item summary strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 650; }
.about-faq-item summary i { justify-self: end; transition: transform .2s ease; }
.about-faq-item[open] summary i { transform: rotate(180deg); }
.about-faq-answer { padding: 0 36px 12px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.about-faq-answer p { margin: 0; }
.about-detail-page .about-partners { padding-top: 20px; }

@media (max-width: 1024px) {
  .about-info-grid article { padding-inline: 12px; }
  .about-process-list li { padding-inline: 8px; }
}

@media (max-width: 767px) {
  .about-detail-page { padding: 24px 0 38px; }
  .about-profile-section .about-intro-card { display: flex; flex-direction: column; gap: 18px; }
  .about-profile-section .about-intro-copy { order: 1; padding: 0 18px; }
  .about-profile-section .about-intro-card figure { order: 2; width: calc(100% - 36px); }
  .about-profile-section .about-values-grid { order: 3; margin: 18px 18px 0; }
  .about-profile-section .about-intro-copy h2 { margin-bottom: 12px; font-size: 22px; }
  .about-profile-section .about-intro-copy .rich-content { font-size: 13px; line-height: 1.8; }
  .about-profile-section .about-values-grid { grid-template-columns: 1fr; }
  .about-profile-section .about-values-grid article { min-height: 0; grid-template-columns: 42px minmax(0,1fr); padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .about-profile-section .about-values-grid article:last-child { border-bottom: 0; }
  .about-profile-section .about-values-grid i { width: 40px; height: 40px; font-size: 16px; }
  .about-profile-section .about-values-grid h3 { font-size: 15px; }
  .about-profile-section .about-values-grid p { font-size: 12px; }
  .about-compact-section { margin: 0 18px; padding: 22px 0; }
  .about-compact-section > h2 { margin-bottom: 15px; font-size: 21px; }
  .about-info-grid--four,
  .about-info-grid--three { grid-template-columns: 1fr; }
  .about-info-grid article,
  .about-info-grid article:first-child,
  .about-info-grid article:last-child { grid-template-columns: 42px minmax(0,1fr); padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .about-info-grid article:last-child { border-bottom: 0; }
  .about-info-grid article > i { width: 40px; height: 40px; }
  .about-info-grid h3 { font-size: 16px; }
  .about-info-grid p { font-size: 13px; }
  .about-info-grid ul { font-size: 12px; }
  .about-process-list { grid-template-columns: 1fr; gap: 10px; margin-top: 0; border-top: 0; }
  .about-process-list li { display: grid; grid-template-columns: 34px minmax(0,1fr); padding: 14px 0; text-align: left; border-bottom: 1px solid var(--line-soft); }
  .about-process-list li:last-child { border-bottom: 0; }
  .about-process-list span { position: static; grid-row: 1/3; width: 30px; height: 30px; transform: none; }
  .about-process-list h3 { margin: 1px 0 5px; font-size: 16px; }
  .about-process-list p { font-size: 13px; }
  .about-faq-list { grid-template-columns: 1fr; }
  .about-faq-item:nth-child(odd) { border-right: 0; }
  .about-faq-item:nth-last-child(2) { border-bottom: 1px solid var(--line-soft); }
  .about-faq-item summary { min-height: 48px; padding: 10px 12px; }
  .about-faq-item summary strong { white-space: normal; font-size: 13px; line-height: 1.45; }
  .about-faq-answer { padding: 0 36px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  html,
  body.wazl-site { max-width: 100%; overflow-x: hidden; }
  .site-header__inner { position: relative; display: flex; gap: 3px; padding-inline: 10px; }
  .site-header .brand { width: calc(100% - 142px); min-width: 0; max-width: calc(100% - 142px); flex: 0 1 auto; gap: 6px; }
  .site-header .brand img { width: 36px; height: 36px; max-width: 36px; flex-basis: 36px; }
  .site-header .brand-company-name { max-width: 112px; font-size: 10px; line-height: 1.18; }
  .header-actions { position: absolute; right: 8px; top: 50%; flex: 0 0 136px; width: 136px; gap: 0; margin-left: 0; transform: translateY(-50%); }
  .site-header .language-switcher { width: 34px; flex: 0 0 34px; }
  .site-header .language-button span,
  .site-header .language-button .fa-angle-down { display: none; }
  .header-actions > a,
  .header-actions > button,
  .site-header .language-button { width: 34px; min-width: 34px; height: 34px; padding: 0; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .partner-item { min-height: 78px; padding: 8px; }
  .home-news-item h3 { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .footer-main { grid-template-columns: 124px minmax(0, 1fr); gap: 14px 12px; }
  .footer-navigation { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 8px; }
  .footer-column { min-width: 0; }
  .footer-column h3 { overflow: hidden; text-overflow: ellipsis; }
  .footer-qrcodes { width: 124px; }
  .about-detail-page,
  .about-detail-page > .container,
  .about-profile-section,
  .about-intro-card,
  .about-intro-copy,
  .about-intro-copy .rich-content { min-width: 0; max-width: 100%; }
  .about-detail-page > .container,
  .about-profile-section,
  .about-intro-card { width: 100%; overflow: hidden; }
  .about-intro-copy .rich-content,
  .about-intro-copy .rich-content p { max-width: 100%; overflow-wrap: anywhere; word-break: break-all; }
  .about-profile-section .about-intro-copy,
  .about-compact-section { margin-left: 0; margin-right: 0; }
  .about-profile-section .about-intro-copy { width: 100%; padding-inline: 18px; }
  .about-profile-section .about-intro-card figure { width: calc(100% - 36px); min-width: 0; max-width: calc(100% - 36px); flex: 0 0 auto; }
  .about-profile-section .about-intro-card figure img { width: 100%; max-width: 100%; }
  .about-compact-section { margin-inline: 18px; }
}
