/*
  Zhaozhan CNC static front-end foundation.
  WordPress migration hint: split this file into base, layout, components, and pages later if needed.
*/

/* ================================
   1. Design Tokens
   ================================ */
:root {
  /* Brand colors */
  --color-navy-950: #001c3f;
  --color-navy-900: #002b66;
  --color-navy-800: #003a8c;
  --color-blue-700: #0046b8;
  --color-blue-600: #0a58d0;
  --color-blue-100: #eef5ff;

  /* CTA and semantic colors */
  --color-orange-600: #ff6a1a;
  --color-orange-500: #ff7a1a;
  --color-green-500: #2fbf65;
  --color-red-500: #e94b35;

  /* Neutral colors */
  --color-white: #ffffff;
  --color-bg: #f4f7fb;
  --color-bg-soft: #fafcff;
  --color-border: #dfe6f0;
  --color-border-strong: #cad6e4;
  --color-text: #0d1f37;
  --color-muted: #4b5b73;
  --color-subtle: #6f7f94;

  /* Typography */
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 44px;
  --font-h1: var(--text-4xl);
  --font-section-title: var(--text-2xl);
  --font-section-desc: 13px;
  --font-card-title: var(--text-lg);
  --font-card-desc: 13px;
  --font-body: var(--text-sm);
  --font-small: var(--text-xs);
  --font-hero-title: 48px;
  --font-hero-desc: 20px;
  --font-banner-title: 42px;
  --font-banner-desc: 20px;
  --font-quote-title: 34px;
  --font-stat-number: 24px;
  --font-brand-main: 24px;
  --font-brand-sub: 11px;
  --mobile-banner-title: 28px;
  --mobile-banner-subtitle: 13px;
  --mobile-section-title: 22px;
  --mobile-card-title: 14px;
  --mobile-body: 13px;
  --mobile-meta: 11px;
  --mobile-pill: 11px;
  --mobile-button: 13px;
  --mobile-radius-card: 14px;
  --mobile-radius-button: 12px;
  --mobile-shadow-card: 0 12px 30px rgba(15, 35, 70, 0.10);
  --mobile-section-gap: 24px;
  --mobile-card-padding: 16px;

  /* Layout */
  --container: 1200px;
  --container-wide: 1280px;
  --header-top-height: 30px;
  --header-main-height: 72px;
  --section-gap: 72px;
  --card-gap: 20px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --form-control-height: 46px;
  --btn-height: var(--form-control-height);
  --btn-height-sm: 38px;
  --form-control-padding-x: 16px;
  --form-control-gap: 12px;
  --icon-sm: 14px;
  --icon-md: 20px;
  --icon-card: 30px;
  --icon-social-btn: 30px;
  --icon-lg: 44px;
  --icon-xl: 52px;
  --icon-brand-mark: 42px;
  --icon-qr: 118px;
  --form-placeholder: var(--color-subtle);
  --form-success-bg: #effaf2;
  --form-success-border: rgba(47, 191, 101, 0.24);
  --form-success-text: #1f7a44;
  --form-error-bg: #fff3f2;
  --form-error-border: rgba(233, 75, 53, 0.22);
  --form-error-text: #b63b2d;
  --search-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");

  /* Effects */
  --shadow-card: 0 18px 42px rgba(15, 35, 70, 0.10);
  --shadow-soft: 0 10px 24px rgba(15, 35, 70, 0.06);
  --transition: 180ms ease;

  /* Shared banner helpers */
  --banner-overlay: linear-gradient(90deg, rgba(0, 28, 63, 0.92) 0%, rgba(0, 43, 102, 0.76) 42%, rgba(0, 43, 102, 0.16) 100%);
  --banner-position: center center;
}

/* ================================
   2. Reset and Base Elements
   ================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
  font-family: var(--font-sans);
  font-size: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.01em; }

/* ================================
   3. Container and Layout Grids
   ================================ */
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.container--wide { width: min(100% - 48px, var(--container-wide)); }
.section { padding-block: var(--section-gap); }
.section--compact { padding-block: 40px; }
.section--soft { background: var(--color-bg-soft); }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-header h2 { margin-bottom: 6px; font-size: var(--font-section-title); line-height: 1.3; }
.section-header p { margin-bottom: 0; color: var(--color-muted); }
.layout-two { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; }
.layout-three { display: grid; grid-template-columns: 220px minmax(0, 1fr) 300px; gap: 28px; align-items: start; }
.grid-two, .grid-three, .grid-four { display: grid; gap: var(--card-gap); }
.grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ================================
   4. Header
   ================================ */
.site-header { position: relative; z-index: 30; background: var(--color-white); box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.topbar { min-height: var(--header-top-height); color: rgba(255,255,255,.88); background: var(--color-navy-950); font-size: var(--text-xs); }
.topbar__inner, .topbar__contact, .topbar__links { display: flex; align-items: center; }
.topbar__inner { justify-content: space-between; min-height: var(--header-top-height); }
.topbar__contact, .topbar__links { gap: 24px; }
.topbar a:hover { color: var(--color-white); }
.navbar { min-height: var(--header-main-height); background: var(--color-white); }
.navbar__inner { display: flex; align-items: center; min-height: var(--header-main-height); gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; color: var(--color-blue-700); }
.brand__mark { display: grid; place-items: center; width: var(--icon-brand-mark); height: var(--icon-brand-mark); border: 2px solid currentColor; border-radius: 10px; font-weight: 800; }
.brand__text strong, .brand__text small { display: block; line-height: 1.1; }
.brand__text strong { font-size: var(--font-brand-main); letter-spacing: 0; }
.brand__text small { margin-top: 3px; font-size: var(--font-brand-sub); font-weight: 700; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 34px; flex: 1 1 auto; }
.main-nav__menu { display: flex; align-items: center; justify-content: center; gap: 34px; flex: 1 1 auto; margin: 0; padding: 0; list-style: none; }
.main-nav__menu > li { display: flex; }
.main-nav a { position: relative; display: inline-flex; align-items: center; min-height: var(--header-main-height); color: var(--color-text); font-weight: 600; cursor: pointer; transition: color var(--transition), transform var(--transition); }
.main-nav a::after { content: ""; position: absolute; left: 50%; bottom: 14px; width: 28px; height: 2px; background: var(--color-blue-700); border-radius: 999px; transform: translateX(-50%) scaleX(0); transition: transform var(--transition), background-color var(--transition); }
.main-nav a:hover { color: var(--color-blue-600); transform: translateY(-1px); }
.main-nav a:hover::after,
.main-nav a.is-active::after,
.main-nav .current-menu-item > a::after,
.main-nav .current-menu-ancestor > a::after {
  transform: translateX(-50%) scaleX(1);
}
.main-nav a.is-active,
.main-nav .current-menu-item > a,
.main-nav .current-menu-ancestor > a {
  color: var(--color-blue-700);
}
.header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-toggle { display: none; width: 40px; height: 40px; padding: 9px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-white); }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--color-navy-900); }

/* ================================
   5. Buttons
   ================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: var(--btn-height); padding: 0 22px; border: 1px solid transparent; border-radius: var(--radius-md); font-weight: 700; font-size: var(--font-body); line-height: 1; transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition); }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: var(--color-white); background: var(--color-navy-800); }
.btn-primary:hover { background: var(--color-blue-700); }
.btn-accent { color: var(--color-white); background: var(--color-orange-600); }
.btn-accent:hover { background: var(--color-orange-500); }
.btn-outline { color: var(--color-blue-700); border-color: var(--color-blue-700); background: var(--color-white); }
.btn-outline:hover { color: var(--color-white); background: var(--color-blue-700); }
.btn-light { color: var(--color-navy-900); background: var(--color-blue-100); }
.btn-sm { min-height: var(--btn-height-sm); padding-inline: 18px; font-size: var(--font-small); }

/* ================================
   6. Cards
   ================================ */
.card { border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-white); box-shadow: var(--shadow-soft); }
.card__body { padding: 24px; }
.card h3 { margin-bottom: 10px; font-size: var(--font-card-title); line-height: 1.35; }
.card p { margin-bottom: 0; color: var(--color-muted); }
.media-card { overflow: hidden; }
.media-card__image { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: var(--color-blue-100); }
.media-card__body { padding: 18px; }
.feature-card { display: flex; gap: 14px; padding: 20px; }
.feature-card__icon { display: grid; place-items: center; flex: 0 0 var(--icon-lg); width: var(--icon-lg); height: var(--icon-lg); color: var(--color-blue-700); background: var(--color-blue-100); border-radius: var(--radius-lg); font-weight: 800; }
.sidebar-card { padding: 24px; }
.sidebar-card + .sidebar-card { margin-top: 24px; }

/* Mobile-only homepage modules: keep desktop visually unchanged. */
.home-mobile-cta,
.home-mobile-kpi {
  display: none;
}

/* Mobile-only products modules: keep desktop visually unchanged. */
.product-mobile-search,
.product-mobile-filterbar,
.product-mobile-pagination,
.product-mobile-cta {
  display: none;
}

/* Mobile-only support modules: keep desktop visually unchanged. */
.support-mobile-services {
  display: none;
}

/* Mobile-only about modules: keep desktop visually unchanged. */
.about-mobile-timeline-media,
.about-mobile-cta {
  display: none;
}

/* Mobile-only solutions modules: keep desktop visually unchanged. */
.solutions-mobile-industry,
.solutions-mobile-showcase,
.solutions-mobile-cta {
  display: none;
}

/* Mobile-only cases modules: keep desktop visually unchanged. */
.cases-mobile-filters,
.cases-mobile-cta {
  display: none;
}

/* ================================
   7. Forms
   ================================ */
.form-card { padding: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--color-text); font-weight: 600; }
.form-field input, .form-field select, .form-field textarea, .footer-cta__form input, .banner-search input { width: 100%; border: 1px solid var(--color-border-strong); border-radius: var(--radius-md); background: var(--color-white); color: var(--color-text); outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.form-field input, .form-field select, .footer-cta__form input { height: 44px; padding: 0 14px; }
.form-field textarea { min-height: 112px; padding: 12px 14px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .footer-cta__form input:focus, .banner-search input:focus { border-color: var(--color-blue-700); box-shadow: 0 0 0 3px rgba(0,70,184,.12); }

/* ================================
   8. Breadcrumb
   ================================ */
.breadcrumb { padding-block: 18px; color: var(--color-muted); font-size: var(--text-xs); }
.breadcrumb__list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumb__list li:not(:last-child)::after { content: ">"; margin-left: 8px; color: var(--color-subtle); }
.breadcrumb a:hover { color: var(--color-blue-700); }

/* ================================
   9. Page Banner
   ================================ */
.page-banner { position: relative; min-height: 300px; color: var(--color-white); overflow: hidden; background: var(--color-navy-900); }
.page-banner { --banner-image-fallback: url("../images/banners/default-industrial-factory.png"); }
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--banner-overlay), var(--banner-image, var(--banner-image-fallback));
  background-size: cover;
  background-position: var(--banner-position);
  background-repeat: no-repeat;
}
.page-banner__inner { position: relative; display: grid; align-content: center; min-height: 300px; padding-block: 48px; }
.page-banner h1 { margin-bottom: 12px; font-size: var(--font-h1); line-height: 1.2; }
.page-banner p { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.88); font-size: var(--text-xl); }
.banner-actions, .banner-stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.banner-stat { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.92); font-weight: 600; }
.banner-search { display: flex; width: min(520px, 100%); margin-top: 26px; }
.banner-search input { height: 48px; padding: 0 16px; border-radius: var(--radius-md) 0 0 var(--radius-md); }
.banner-search button { min-width: 92px; border-radius: 0 var(--radius-md) var(--radius-md) 0; }

/* ================================
   6b. Shared Surfaces and Controls
   ================================ */
:where(
  .card,
  .news-main-card,
  .news-side-card,
  .news-feature-card,
  .news-article,
  .service-card,
  .service-side-card,
  .service-help-card,
  .service-list-panel,
  .service-category-card,
  .service-article,
  .service-download-detail,
  .service-video-detail,
  .product-side-card,
  .product-filter-card,
  .case-card,
  .case-solution-card,
  .solution-card,
  .home-product-card,
  .home-case-card,
  .home-solution-card,
  .home-support-download-item,
  .home-support-video-item,
  .service-video-card,
  .zz-product-card,
  .download-card,
  .faq-qa
) {
  border-color: var(--color-border);
  border-radius: var(--radius-lg);
}

:where(
  .news-main-card,
  .news-side-card,
  .news-feature-card,
  .news-article,
  .service-card,
  .service-side-card,
  .service-help-card,
  .service-list-panel,
  .service-category-card,
  .service-article,
  .service-download-detail,
  .service-video-detail,
  .product-side-card,
  .product-filter-card,
  .case-card,
  .case-solution-card,
  .solution-card,
  .home-product-card,
  .home-case-card,
  .home-solution-card,
  .home-support-download-item,
  .home-support-video-item,
  .service-video-card,
  .zz-product-card,
  .download-card,
  .faq-qa
) {
  box-shadow: var(--shadow-soft);
  background: var(--color-white);
}

:where(
  .btn,
  .home-outline-btn,
  .product-filters button,
  .product-result-bar button,
  .product-load-more button,
  .service-list-head button,
  .banner-search button
) {
  border-radius: var(--radius-md);
}

:where(.btn-primary, .btn-accent) {
  box-shadow: 0 12px 24px rgba(0, 70, 184, 0.12);
}

:where(.btn, .home-outline-btn) {
  letter-spacing: 0.01em;
}

:where(
  .news-tabs a,
  .product-tabs a,
  .service-nav-card__item,
  .about-tabs__inner a,
  .category-list a,
  .service-category-card a,
  .faq-cat-pill
) {
  border-radius: var(--radius-md);
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* ================================
   10. Reusable Content Helpers
   ================================ */
.page-shell { padding-bottom: var(--section-gap); }
.placeholder-block { display: grid; gap: 20px; padding: 32px; border: 1px dashed var(--color-border-strong); border-radius: var(--radius-lg); background: var(--color-bg-soft); color: var(--color-muted); }
.placeholder-block h2 { margin-bottom: 0; color: var(--color-text); font-size: var(--text-xl); }
.category-list a { display: flex; align-items: center; justify-content: space-between; min-height: 44px; padding: 0 14px; border-radius: var(--radius-md); color: var(--color-muted); font-weight: 600; }
.category-list a.is-active, .category-list a:hover { color: var(--color-white); background: var(--color-blue-700); }
.demo-label { display: inline-flex; width: fit-content; padding: 4px 10px; border-radius: 999px; color: var(--color-blue-700); background: var(--color-blue-100); font-size: var(--text-xs); font-weight: 700; }
.accordion { display: grid; gap: 10px; }
.accordion__item { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-white); }
.accordion__button { display: flex; justify-content: space-between; width: 100%; padding: 16px 18px; border: 0; background: transparent; color: var(--color-text); font-weight: 700; text-align: left; }
.accordion__panel { display: none; padding: 0 18px 18px; color: var(--color-muted); }
.accordion__item.is-open .accordion__panel { display: block; }

/* ================================
   11. Footer
   ================================ */
.site-footer { color: rgba(255,255,255,.82); background: var(--color-navy-950); }
.footer-cta { background: linear-gradient(90deg, var(--color-navy-900), var(--color-blue-700)); }
.footer-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 560px); gap: 32px; align-items: center; padding-block: 30px; }
.footer-cta h2 { margin-bottom: 6px; color: var(--color-white); font-size: var(--font-section-title); }
.footer-cta p { margin-bottom: 0; }
.footer-cta__form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; }
body.site-footer-cta-hidden[data-page] .site-footer .footer-cta { display: none; }
.footer-main { padding-block: 44px; }
.footer-main__grid { display: grid; grid-template-columns: 1.2fr 2.4fr 180px; gap: 48px; }
.footer-company h2, .footer-links h3, .footer-qrcode h3 { color: var(--color-white); }
.footer-company h2 { margin-bottom: 12px; font-size: var(--font-section-title); }
.footer-company p { color: rgba(255,255,255,.78); }
.footer-contact { display: grid; gap: 6px; margin-top: 16px; }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.footer-links__menu,
.footer-bottom__menu { margin: 0; padding: 0; list-style: none; }
.footer-links h3 { margin-bottom: 12px; font-size: var(--text-md); }
.footer-links a { display: block; margin-top: 8px; color: rgba(255,255,255,.74); }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom__menu { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.footer-qrcode img { width: var(--icon-qr); height: var(--icon-qr); margin-bottom: 14px; object-fit: cover; border: 6px solid var(--color-white); border-radius: var(--radius-md); }
.social-links { display: flex; gap: 8px; }
.social-links a { display: grid; place-items: center; width: var(--icon-social-btn); height: var(--icon-social-btn); border-radius: 50%; color: var(--color-navy-900); background: var(--color-white); box-shadow: 0 4px 10px rgba(0, 20, 52, 0.08); }
.social-links a svg { width: var(--icon-sm); height: var(--icon-sm); }
.social-links a:hover { color: var(--color-white); background: var(--color-blue-700); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 56px; font-size: var(--text-xs); }
.footer-bottom p { margin-bottom: 0; }
.footer-bottom nav { display: flex; gap: 20px; }
.floating-contact { position: fixed; right: 18px; bottom: 110px; z-index: 40; display: grid; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.floating-contact a, .floating-contact button { display: grid; place-items: center; width: 74px; min-height: 52px; padding: 8px; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); color: var(--color-white); background: var(--color-navy-800); font-size: var(--text-xs); line-height: 1.3; }
.floating-contact a:hover, .floating-contact button:hover { background: var(--color-blue-700); }
body.site-floating-contact-hidden .floating-contact { display: none !important; }

/* ================================
   12. Home Page Only
   These rules are scoped to the desktop homepage.
   ================================ */
body[data-page="home"] {
  background: var(--color-white);
}

.home-main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 44%, #ffffff 100%);
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: var(--color-white);
  background: var(--color-navy-900);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.96) 0%, rgba(0, 43, 102, 0.82) 42%, rgba(0, 43, 102, 0.18) 100%),
    url("../images/banners/home-banner.jpg");
  background-size: cover;
  background-position: center;
}

.home-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 32px;
  width: 430px;
  height: 190px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(0, 70, 184, 0.06)),
    url("../images/products/product-laser-cutting-machine-01.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0, 12, 36, 0.42);
  opacity: 0.94;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 360px;
  padding-block: 58px 48px;
}

.home-hero__content {
  max-width: 700px;
}

.home-hero h1 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.home-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 21px;
  line-height: 1.7;
  font-weight: 600;
}

.home-hero__features {
  display: flex;
  gap: 46px;
  margin-top: 36px;
}

.home-hero-feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  column-gap: 12px;
  min-width: 160px;
}

.home-hero-feature__icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: var(--icon-xl);
  height: var(--icon-xl);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
}

.home-hero-feature strong {
  display: block;
  color: var(--color-white);
  font-size: var(--font-card-title);
  line-height: 1.25;
}

.home-hero-feature small {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--font-small);
}

.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.home-hero__dots span {
  width: 32px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.home-hero__dots span.is-active {
  width: 12px;
  background: var(--color-orange-600);
}

body[data-page="home"] .home-hero--carousel {
  position: relative;
}

body[data-page="home"] .home-hero--carousel::before {
  display: none;
}

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

body[data-page="home"] .home-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

body[data-page="home"] .home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.96) 0%, rgba(0, 43, 102, 0.82) 42%, rgba(0, 43, 102, 0.18) 100%),
    var(--home-hero-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 600ms ease, transform 900ms ease;
}

body[data-page="home"] .home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

body[data-page="home"] .home-hero__inner {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .home-hero__controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

body[data-page="home"] .home-hero__arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(0, 20, 52, 0.28);
  box-shadow: 0 10px 24px rgba(0, 12, 36, 0.18);
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

body[data-page="home"] .home-hero__arrow svg {
  width: 18px;
  height: 18px;
}

body[data-page="home"] .home-hero__arrow:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 70, 184, 0.44);
  transform: translateY(-50%) scale(1.04);
}

body[data-page="home"] .home-hero__arrow:focus-visible,
body[data-page="home"] .home-hero__dots button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 2px;
}

body[data-page="home"] .home-hero__arrow--prev {
  left: 24px;
}

body[data-page="home"] .home-hero__arrow--next {
  right: 24px;
}

body[data-page="home"] .home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
  pointer-events: auto;
  transform: translateX(-50%);
}

body[data-page="home"] .home-hero__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

body[data-page="home"] .home-hero__dots button:hover {
  background: rgba(255, 255, 255, 0.84);
}

body[data-page="home"] .home-hero__dots button.is-active {
  background: var(--color-orange-600);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
  transform: scale(1.25);
}

.home-section {
  padding-block: 22px;
}

.home-section-title {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.home-section-title h2,
.home-news-heading h2 {
  margin-bottom: 3px;
  color: var(--color-text);
  font-size: var(--font-section-title);
  line-height: 1.2;
  font-weight: 800;
}

.home-section-title p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: var(--font-section-desc);
}

.home-section-title > a,
.home-news-heading a {
  position: absolute;
  right: 0;
  top: 7px;
  color: var(--color-blue-700);
  font-size: 13px;
  font-weight: 700;
}

.home-section-title--compact {
  margin-bottom: 16px;
}

.home-products {
  padding-top: 20px;
}

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

.home-product-card {
  min-height: 226px;
  padding: 20px 24px 22px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(12, 38, 82, 0.08);
}

.home-product-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
  border-radius: 5px;
}

.home-product-card h3 {
  margin-bottom: 8px;
  font-size: var(--font-card-title);
  line-height: 1.35;
}

.home-product-card p {
  min-height: 42px;
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: var(--font-card-desc);
  line-height: 1.55;
}

.home-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: var(--btn-height-sm);
  padding-inline: 18px;
  border: 1px solid var(--color-blue-700);
  border-radius: var(--radius-sm);
  color: var(--color-blue-700);
  background: var(--color-white);
  font-size: var(--font-small);
  font-weight: 700;
}

.home-outline-btn:hover {
  color: var(--color-white);
  background: var(--color-blue-700);
}

.home-advantage-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(12, 38, 82, 0.07);
}

.home-advantage-item {
  min-height: 142px;
  padding: 22px 16px 18px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.home-advantage-item:last-child {
  border-right: 0;
}

.home-advantage-item span {
  display: grid;
  place-items: center;
  width: var(--icon-xl);
  height: var(--icon-xl);
  margin: 0 auto 10px;
  color: var(--color-blue-700);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.home-advantage-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: var(--font-card-title);
}

.home-advantage-item small {
  color: var(--color-muted);
  font-size: var(--font-small);
  line-height: 1.45;
}

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

.home-solution-card {
  position: relative;
  overflow: hidden;
  height: 118px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.home-solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 28, 63, 0.72));
}

.home-solution-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 1;
  color: var(--color-white);
  text-align: center;
  font-size: 17px;
  font-weight: 800;
}

.home-case-wrap {
  position: relative;
}

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

.home-case-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.home-case-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.home-case-card div {
  padding: 14px 16px 16px;
}

.home-case-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.home-case-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.55;
}

.home-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-muted);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
}

.home-slider-btn--prev {
  left: -42px;
}

.home-slider-btn--next {
  right: -42px;
}

.home-about-support {
  padding-top: 14px;
}

.home-about-support__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
}

.home-about-card,
.home-support-card {
  min-height: 278px;
}

.home-about-card .home-section-title--compact,
.home-support-card .home-section-title--compact {
  margin-top: 6px;
}

.home-about-card__body {
  display: grid;
  grid-template-columns: 258px minmax(0, 1fr);
  gap: 18px;
  padding-left: 6px;
  align-items: start;
}

.home-about-card__body img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.home-about-card__body p {
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.85;
}

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

.home-about-stats span {
  display: grid;
  gap: 2px;
  color: var(--color-muted);
  text-align: center;
  font-size: 12px;
}

.home-about-stats strong {
  color: var(--color-blue-700);
  font-size: 24px;
  line-height: 1.2;
}

.home-support-card {
  padding: 6px 8px 0;
}

.home-support-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.home-support-tabs button {
  min-height: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-blue-700);
  background: var(--color-white);
  font-weight: 700;
}

.home-support-tabs .is-active {
  color: var(--color-white);
  border-color: var(--color-blue-700);
  background: var(--color-blue-700);
}

.home-support-panels {
  display: grid;
  gap: 12px;
}

.home-support-panel {
  display: grid;
  gap: 8px;
}

.home-support-panel[hidden] {
  display: none !important;
}

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

.home-support-list a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 13px;
}

.home-support-list a:last-child {
  border-bottom: 0;
}

.home-support-list span,
.home-support-list strong {
  color: var(--color-blue-700);
}

.home-support-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: -4px;
}

.home-support-more {
  display: block;
  width: 176px;
  margin: 0;
  text-align: center;
}

.home-support-download-list,
.home-support-video-list {
  display: grid;
  gap: 10px;
}

.home-support-download-item,
.home-support-video-item {
  display: grid;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-support-download-item:hover,
.home-support-video-item:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 70, 184, 0.22);
  box-shadow: 0 14px 30px rgba(12, 38, 82, 0.11);
}

.home-support-download-item {
  grid-template-columns: 36px minmax(0, 1fr) 58px;
  min-height: 72px;
  padding: 12px 14px;
}

.home-support-download-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 106, 26, 0.18);
  border-radius: 6px;
  color: var(--color-orange-600);
  background: #fff4ec;
  font-size: 11px;
  font-weight: 800;
}

.home-support-download-body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.home-support-download-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-support-download-body small {
  color: var(--color-subtle);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-support-download-item em {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 30px;
  border-radius: 5px;
  color: var(--color-white);
  background: var(--color-blue-700);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.home-support-video-item {
  grid-template-columns: 122px minmax(0, 1fr) 56px;
  min-height: 78px;
  padding: 10px 12px;
}

.home-support-video-item img {
  width: 122px;
  height: 62px;
  object-fit: cover;
  border-radius: 4px;
}

.home-support-video-body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.home-support-video-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-support-video-body small {
  color: var(--color-subtle);
  font-size: 11px;
  line-height: 1.2;
}

.home-support-video-item span {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-height: 30px;
  border-radius: 5px;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-size: 12px;
  font-weight: 700;
}

.home-support-video-item:hover span {
  color: var(--color-white);
  background: var(--color-blue-700);
}

.home-news {
  padding-top: 4px;
  padding-bottom: 28px;
}

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

.home-news-heading {
  position: relative;
  margin-bottom: 14px;
}

.home-news-list {
  display: grid;
  gap: 10px;
}

.home-news-list article {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.home-news-list article:last-child {
  border-bottom: 0;
}

.home-news-list img {
  width: 130px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.home-news-list span {
  display: inline-flex;
  margin-bottom: 3px;
  padding: 2px 8px;
  border-radius: 3px;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-size: 12px;
  font-weight: 700;
}

.home-news-list h3 {
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.4;
}

.home-news-list p {
  margin-bottom: 0;
  color: var(--color-subtle);
  font-size: 12px;
}

.home-quote {
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-blue-700), var(--color-navy-900));
}

.home-quote__inner {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-block: 28px;
}

.home-quote h2 {
  margin-bottom: 4px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
}

.home-quote h2 span {
  color: var(--color-orange-500);
}

.home-quote p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.home-quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 140px;
  gap: 12px;
}

.home-quote-form input,
.home-quote-form select {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
}

.home-quote-form button {
  height: 42px;
  min-height: 42px;
}

.home-quote__points {
  grid-column: 2;
  display: flex;
  gap: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.home-quote__points span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-orange-500);
  vertical-align: middle;
}

/* ================================
   13. Product List and Detail Pages Only
   Scoped styles for products.html and product-detail.html.
   ================================ */
body[data-page="products"],
body[data-page="product-detail"] {
  background: #f7faff;
}

.product-banner {
  min-height: 240px;
}

.product-banner::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.94), rgba(0, 43, 102, 0.76) 43%, rgba(0, 43, 102, 0.14)),
    var(--banner-image, url("../images/banners/products-machines.jpg"));
}

.product-banner__inner {
  min-height: 240px;
  padding-block: 42px;
}

.product-banner h1 {
  margin-bottom: 10px;
  font-size: 42px;
}

.product-banner p {
  font-size: 22px;
  font-weight: 600;
}

.product-banner span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.product-breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.product-list-section {
  padding-block: 26px 34px;
}

.product-list-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.product-sidebar {
  display: grid;
  gap: 16px;
}

.product-side-card,
.product-filter-card,
.helper-card,
.detail-panel,
.quick-plan-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.product-category-card {
  overflow: hidden;
}

.product-category-card h2 {
  margin: 0;
  padding: 16px 18px;
  color: var(--color-white);
  background: var(--color-blue-700);
  font-size: 18px;
  line-height: 1.2;
}

.product-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.product-category-list a:last-child {
  border-bottom: 0;
}

.product-category-list a:hover,
.product-category-list a.is-active {
  color: var(--color-blue-700);
  background: var(--color-blue-100);
}

.process-card,
.help-card {
  padding: 18px;
}

.process-card h3,
.help-card h3,
.helper-card h2,
.detail-panel h2,
.recommend-products h2,
.service-guarantee h2,
.detail-section-title {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.process-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 13px;
}

.process-card li::before {
  content: "·";
  margin-right: 6px;
  color: var(--color-blue-700);
  font-weight: 800;
}

.help-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: end;
}

.help-card p {
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 12px;
}

.help-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-navy-900);
}

.help-card img {
  width: 72px;
  height: 112px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

body[data-page="products"] .help-card {
  grid-template-columns: minmax(0, 1fr) 68px;
  gap: 10px;
  align-items: center;
}

body[data-page="products"] .help-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
}

.product-list-main {
  min-width: 0;
}

.product-filter-card {
  overflow: hidden;
  margin-bottom: 18px;
}

.product-tabs,
.product-filters {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
}

.product-tabs {
  border-bottom: 1px solid var(--color-border);
}

.product-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-weight: 700;
}

.product-tabs a.is-active {
  color: var(--color-white);
  background: var(--color-blue-700);
}

.product-filters label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
  white-space: nowrap;
}

.product-filters select {
  min-width: 94px;
  height: 34px;
  padding-inline: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-muted);
}

.product-filters button,
.product-result-bar button,
.product-load-more button {
  height: 34px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  font-weight: 700;
}

.product-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.product-result-bar p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 800;
}

.product-result-bar strong {
  color: var(--color-blue-700);
}

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

.zz-product-card {
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.zz-product-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
}

.zz-product-card h3 {
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.35;
}

.zz-product-card p {
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 12px;
}

.zz-product-card dl {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 4px;
  margin: 0 0 12px;
  color: var(--color-muted);
  font-size: 12px;
}

.zz-product-card dt,
.zz-product-card dd {
  margin: 0;
}

.zz-product-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-blue-700);
  font-weight: 800;
}

.zz-product-card a:hover {
  color: var(--color-white);
  border-color: var(--color-blue-700);
  background: var(--color-blue-700);
}

.product-load-more {
  display: flex;
  justify-content: center;
  margin: 24px 0 26px;
}

.recommend-products h2 {
  margin-bottom: 12px;
}

.recommend-row {
  display: grid;
  grid-template-columns: 34px repeat(5, minmax(0, 1fr)) 34px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.recommend-row button {
  border: 0;
  border-right: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-blue-700);
  font-size: 24px;
}

.recommend-row button:last-child {
  border-right: 0;
  border-left: 1px solid var(--color-border);
}

.recommend-row a {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 116px;
  padding: 12px;
  border-right: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.recommend-row img {
  width: 110px;
  height: 62px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

body[data-page="products"] .recommend-row {
  grid-template-columns: 34px minmax(0, 1fr) 34px;
}

body[data-page="products"] .recommend-track {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

body[data-page="products"] .recommend-track::-webkit-scrollbar {
  display: none;
}

body[data-page="products"] .recommend-track a {
  flex: 0 0 184px;
  scroll-snap-align: start;
}

body[data-page="products"] .recommend-row button {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
}

body[data-page="products"] .recommend-row button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

body[data-page="products"] .recommend-row button:first-child {
  border-right: 1px solid var(--color-border);
}

body[data-page="products"] .recommend-row button:last-child {
  border-left: 1px solid var(--color-border);
}

.product-helper-section {
  padding-bottom: 28px;
}

.product-helper-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.7fr 1.1fr;
  gap: 18px;
}

.helper-card {
  min-height: 220px;
  padding: 22px;
}

.product-faq-card a,
.detail-faq-panel a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-block: 9px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
}

.product-faq-card a:last-child,
.detail-faq-panel a:last-child {
  border-bottom: 0;
}

.product-faq-card span,
.detail-faq-panel span {
  color: var(--color-blue-700);
  font-size: 18px;
}

.product-download-card p,
.product-guide-card p {
  margin-bottom: 12px;
  color: var(--color-muted);
}

.product-download-card ul {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 13px;
}

@media (min-width: 769px) {
  body[data-page="products"] .product-download-card > .btn.btn-primary,
  body[data-page="products"] .product-guide-card > .btn.btn-primary {
    display: flex;
    width: max-content;
    margin: 16px auto 0;
  }
}

.guide-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.guide-flow span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 999px;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.service-guarantee {
  padding-bottom: 28px;
}

.service-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.service-guarantee-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 10px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border-right: 1px solid var(--color-border);
}

.service-guarantee-grid div:last-child {
  border-right: 0;
}

.service-guarantee-grid span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-blue-700);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

body[data-page="products"] .service-guarantee-grid span {
  font-size: 0;
}

body[data-page="products"] .service-guarantee-grid span svg {
  width: 20px;
  height: 20px;
  display: block;
}

.service-guarantee-grid strong {
  line-height: 1.2;
}

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

.product-inquiry {
  padding-bottom: 28px;
}

.product-inquiry__inner {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 28px 34px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-blue-700), var(--color-navy-900));
  box-shadow: 0 18px 42px rgba(0, 43, 102, 0.24);
}

.product-inquiry h2 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.2;
}

.product-inquiry p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.product-inquiry-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.2fr 132px;
  gap: 14px;
  align-items: end;
}

.product-inquiry-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.product-inquiry-form input,
.product-inquiry-form textarea {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
}

.product-inquiry-form textarea {
  height: 64px;
  padding-block: 10px;
  resize: none;
}

.product-inquiry-form button {
  min-height: 42px;
}

body[data-page="products"] .product-inquiry-form input,
body[data-page="products"] .product-inquiry-form textarea {
  border: 1px solid var(--color-border-strong);
  box-shadow: none;
}

body[data-page="products"] .product-inquiry-form input {
  height: var(--form-control-height);
  min-height: var(--form-control-height);
  padding: 0 14px;
}

body[data-page="products"] .product-inquiry-form textarea {
  min-height: 96px;
  height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

body[data-page="products"] .product-inquiry-form input::placeholder,
body[data-page="products"] .product-inquiry-form textarea::placeholder {
  color: var(--color-subtle);
}

body[data-page="products"] .product-inquiry-form input:focus,
body[data-page="products"] .product-inquiry-form textarea:focus {
  border-color: var(--color-blue-700);
  box-shadow: 0 0 0 3px rgba(0, 70, 184, 0.12);
}

@media (min-width: 769px) {
  body[data-page="products"] main.product-page .product-list-section {
    padding-block: 26px 1px !important;
  }

  body[data-page="products"] main.product-page .product-list-section .product-load-more {
    margin: 21px 0 0 !important;
    padding-top: 19px;
  }

  body[data-page="products"] main.product-page .product-list-section .product-load-more button {
    width: 240px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid #0a6cff;
    border-radius: 12px;
    background: #ffffff;
    color: #0a6cff;
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
    transition: all 0.3s ease;
  }

  body[data-page="products"] main.product-page .product-list-section .product-load-more button:hover {
    background: #0a6cff;
    color: #ffffff;
  }

  body[data-page="products"] .product-helper-section {
    padding-block: 20px;
  }

  body[data-page="products"] .service-guarantee {
    padding-block: 20px;
  }

  body[data-page="products"] .product-inquiry {
    padding-block: 20px 32px;
  }
}

/* Product detail page */
.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  color: var(--color-white);
  background: var(--color-navy-900);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.96), rgba(0, 43, 102, 0.74) 47%, rgba(0, 43, 102, 0.16)),
    var(--banner-image, url("../images/banners/product-detail-cutting.jpg"));
  background-size: cover;
  background-position: center;
}

.detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 290px;
  padding-block: 34px;
}

.detail-hero__crumb {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.detail-hero h1 {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.2;
}

.detail-hero p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 700;
}

.detail-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.detail-hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.detail-hero__features span::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.detail-summary {
  padding-block: 30px 20px;
}

.detail-summary-grid {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr) 250px;
  gap: 24px;
  align-items: start;
}

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

.gallery-thumbs {
  display: grid;
  gap: 12px;
}

.gallery-thumbs button,
.gallery-main {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.gallery-thumbs button {
  height: 58px;
  padding: 4px;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.gallery-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.gallery-main img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.gallery-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(0, 28, 63, 0.72);
  transform: translate(-50%, -50%);
}

.gallery-actions {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: -2px;
  color: var(--color-muted);
  font-size: 12px;
}

.detail-product-info {
  padding: 8px 0;
}

.detail-product-info h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.28;
}

.detail-product-info > p {
  margin-bottom: 18px;
  color: var(--color-muted);
  line-height: 1.75;
}

.detail-key-params {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.detail-key-params div {
  padding: 14px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.detail-key-params span {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
}

.detail-key-params strong {
  color: var(--color-text);
  font-size: 16px;
}

.detail-mini-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-muted);
  font-size: 12px;
}

.detail-mini-icons span::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 6px;
  border: 2px solid var(--color-blue-700);
  border-radius: 50%;
}

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

.quick-plan-card {
  overflow: hidden;
  padding-bottom: 18px;
}

.quick-plan-card h2 {
  margin-bottom: 0;
  padding: 18px 20px 4px;
  color: var(--color-white);
  background: var(--color-navy-900);
  font-size: 20px;
}

.quick-plan-card > p {
  margin-bottom: 0;
  padding: 0 20px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-navy-900);
  font-size: 12px;
}

.quick-plan-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.quick-plan-form label {
  display: grid;
  gap: 6px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.quick-plan-form input,
.quick-plan-form textarea {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
}

.quick-plan-form textarea {
  height: 70px;
  padding-block: 10px;
  resize: none;
}

.detail-selling-points {
  padding-bottom: 28px;
}

.detail-point-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.detail-point-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 10px;
  min-height: 76px;
  padding: 14px;
  border-right: 1px solid var(--color-border);
}

.detail-point-grid div:last-child {
  border-right: 0;
}

.detail-point-grid span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-blue-700);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.detail-point-grid strong {
  line-height: 1.2;
}

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

.detail-content,
.detail-section,
.detail-download-faq,
.detail-related {
  padding-bottom: 28px;
}

.detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

.detail-panel {
  padding: 22px;
}

.product-params table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-muted);
  font-size: 13px;
}

.product-params th,
.product-params td {
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
}

.product-params th {
  width: 18%;
  color: var(--color-text);
  background: var(--color-bg-soft);
  font-weight: 700;
}

.detail-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.detail-panel-head h2 {
  margin-bottom: 0;
}

.detail-panel-head a {
  color: var(--color-blue-700);
  font-size: 13px;
  font-weight: 700;
}

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

.industry-grid a {
  position: relative;
  overflow: hidden;
  height: 76px;
  border-radius: var(--radius-md);
}

.industry-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-grid span {
  position: absolute;
  inset: auto 0 0;
  padding: 8px;
  color: var(--color-white);
  background: linear-gradient(180deg, transparent, rgba(0, 28, 63, 0.74));
  text-align: center;
  font-weight: 700;
}

.detail-section-title {
  margin-bottom: 14px;
}

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

.detail-advantage-row article {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.detail-advantage-row img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.detail-advantage-row h3 {
  margin: 14px 16px 6px;
  font-size: 16px;
}

.detail-advantage-row p {
  margin: 0 16px 16px;
  color: var(--color-muted);
  font-size: 12px;
}

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

.download-file-grid a {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 126px;
  padding: 14px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.download-file-grid strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 48px;
  color: var(--color-white);
  background: var(--color-red-500);
  border-radius: 4px;
  font-size: 12px;
}

.download-file-grid span {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
}

.download-file-grid small {
  color: var(--color-subtle);
  font-weight: 400;
}

.download-file-grid em {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-style: normal;
  font-weight: 800;
}

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

.zz-product-card--small img {
  height: 84px;
}

.zz-product-card--small h3 {
  min-height: 42px;
  font-size: 14px;
}

.related-solutions {
  display: grid;
  gap: 12px;
}

.related-solutions > a {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.related-solutions img {
  width: 110px;
  height: 66px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.related-solutions strong,
.related-solutions small {
  display: block;
}

.related-solutions strong {
  margin-bottom: 4px;
  color: var(--color-text);
}

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

.product-inquiry--detail {
  padding-bottom: 0;
}

.product-inquiry--detail .product-inquiry__inner {
  border-radius: 0;
  max-width: none;
  width: 100%;
}

.product-inquiry-form--inline {
  grid-template-columns: repeat(4, minmax(0, 1fr)) 150px;
}

.product-inquiry-form--inline input {
  height: 42px;
}

/* ================================
   14. Solutions and Case Pages Only
   Scoped additions for solutions.html, cases.html, and case-detail.html.
   ================================ */
body[data-page="solutions"],
body[data-page="cases"],
body[data-page="case-detail"] {
  background: #f7faff;
}

.product-inquiry-form select {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
}

/* Solution page */
.solution-hero {
  min-height: 360px;
}

.solution-hero::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.96), rgba(0, 43, 102, 0.76) 50%, rgba(0, 43, 102, 0.16)),
    var(--banner-image, url("../images/banners/solutions-industry.jpg"));
}

.solution-hero__inner {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: center;
  min-height: 360px;
  padding-block: 44px;
}

.solution-hero__content h1 {
  margin-bottom: 14px;
  font-size: 46px;
  font-weight: 800;
}

.solution-hero__content p {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 700;
}

.solution-hero__content span {
  display: block;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.solution-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: 30px;
}

.solution-hero__points strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
}

.solution-hero__points strong::before {
  content: "";
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.solution-hero-form {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 18px 42px rgba(0, 20, 52, 0.22);
}

.solution-hero-form h2 {
  margin-bottom: 6px;
  color: var(--color-navy-900);
  font-size: 22px;
}

.solution-hero-form p {
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 13px;
}

.solution-hero-form form {
  display: grid;
  gap: 10px;
}

.solution-hero-form input,
.solution-hero-form select,
.solution-hero-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  color: var(--color-text);
  outline: none;
}

.solution-hero-form input,
.solution-hero-form select {
  height: 40px;
  padding: 0 12px;
}

.solution-hero-form textarea {
  height: 74px;
  padding: 10px 12px;
  resize: none;
}

.solution-hero-form button {
  width: 100%;
  min-height: 42px;
}

.solution-stats {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.solution-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.solution-stats__inner div {
  min-height: 96px;
  padding: 22px 24px;
  border-right: 1px solid var(--color-border);
  text-align: center;
}

.solution-stats__inner div:last-child {
  border-right: 0;
}

.solution-stats__inner strong,
.solution-stats__inner span {
  display: block;
}

.solution-stats__inner strong {
  color: var(--color-blue-700);
  font-size: 30px;
  line-height: 1.1;
}

.solution-stats__inner span {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 14px;
}

.solution-section {
  padding-block: 34px;
}

.solution-section-title {
  margin-bottom: 24px;
  text-align: center;
}

.solution-section-title h2 {
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 28px;
  line-height: 1.25;
}

.solution-section-title p {
  margin-bottom: 0;
  color: var(--color-muted);
}

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

.solution-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.solution-card > div {
  padding: 18px;
}

.solution-card h3 {
  margin-bottom: 8px;
  color: var(--color-navy-900);
  font-size: 19px;
  line-height: 1.35;
}

.solution-card h4 {
  margin: 16px 0 7px;
  color: var(--color-blue-700);
  font-size: 14px;
}

.solution-card p,
.solution-card li {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
}

.solution-card li {
  position: relative;
  padding-left: 12px;
}

.solution-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-blue-700);
}

.solution-more {
  display: flex;
  width: max-content;
  margin: 24px auto 0;
}

body[data-page="solutions"] .solution-section > .container > .solution-more {
  justify-content: center;
  text-align: center;
  margin-inline: auto;
}

.solution-why-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.solution-why-row div {
  display: grid;
  gap: 6px;
  padding: 22px 20px;
  border-right: 1px solid var(--color-border);
}

.solution-why-row div:last-child {
  border-right: 0;
}

.solution-why-row strong {
  color: var(--color-blue-700);
  font-size: 16px;
}

.solution-why-row span {
  color: var(--color-muted);
  font-size: 13px;
}

.solution-process-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.solution-process-row div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.solution-process-row div:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 24px;
  right: -12px;
  color: var(--color-blue-700);
  font-weight: 800;
}

.solution-process-row span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-weight: 800;
}

.solution-process-row strong {
  color: var(--color-text);
  font-size: 15px;
}

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

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

.solution-case-grid a {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 190px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.solution-case-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 28, 63, 0.08), rgba(0, 28, 63, 0.88));
}

.solution-case-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-case-grid strong,
.solution-case-grid span,
.solution-case-grid em {
  position: relative;
  z-index: 1;
}

.solution-case-grid strong {
  margin-bottom: 4px;
  font-size: 19px;
}

.solution-case-grid span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.solution-case-grid em {
  color: #f8fbff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.solution-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 980px);
  margin-inline: auto;
}

.solution-faq-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.solution-faq-grid span {
  color: var(--color-blue-700);
  font-size: 20px;
}

.solution-inquiry {
  padding-top: 18px;
}

/* Case list and shared case banner */
.case-banner {
  min-height: 270px;
}

.case-banner::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.96), rgba(0, 43, 102, 0.76) 50%, rgba(0, 43, 102, 0.12)),
    var(--banner-image, url("../images/banners/cases-worksite.jpg"));
}

.case-banner__inner {
  min-height: 270px;
  padding-block: 44px;
}

.case-banner h1 {
  font-size: 46px;
}

.case-banner p {
  font-size: 22px;
  font-weight: 700;
}

.case-banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 50px;
  margin-top: 28px;
}

.case-banner-stats span {
  display: inline-grid;
  gap: 2px;
  min-width: 108px;
  color: rgba(255, 255, 255, 0.88);
}

.case-banner-stats span::before {
  content: "";
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.case-banner-stats strong {
  color: var(--color-white);
  font-size: 24px;
  line-height: 1;
}

.case-list-section {
  padding-block: 24px 28px;
}

.case-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.case-filter-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.case-filter-bar a,
.case-filter-bar button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-text);
  font-weight: 700;
}

.case-filter-bar a.is-active,
.case-filter-bar a:hover {
  color: var(--color-white);
  background: var(--color-blue-700);
}

.case-filter-bar button {
  border-color: var(--color-border);
  background: var(--color-white);
  color: var(--color-muted);
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.case-card > div {
  padding: 16px;
}

.case-card h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
}

.case-card h2 span {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-size: 12px;
  font-weight: 700;
}

.case-card p {
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 13px;
}

.case-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 10px;
  margin: 0 0 14px;
}

.case-card dt {
  color: var(--color-muted);
  font-size: 12px;
}

.case-card dd {
  grid-row: 2;
  margin: 0;
  color: var(--color-orange-600);
  font-size: 18px;
  font-weight: 800;
}

.case-card a {
  display: inline-flex;
  color: var(--color-blue-700);
  font-weight: 800;
}

.case-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.case-feature-cover,
.case-feature-info,
.case-feature-data,
.case-related-strip article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.case-feature-cover {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 310px;
  overflow: hidden;
  padding: 24px;
  color: var(--color-white);
}

.case-feature-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 28, 63, 0.08), rgba(0, 28, 63, 0.9));
}

.case-feature-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-feature-cover div {
  position: relative;
  z-index: 1;
}

.case-feature-cover h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.case-feature-cover span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.case-feature-cover p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.case-feature-info,
.case-feature-data {
  padding: 22px;
}

.case-feature-info h2,
.case-feature-data h2 {
  margin-bottom: 14px;
  color: var(--color-navy-900);
  font-size: 20px;
}

.case-feature-info h3 {
  margin: 16px 0 8px;
  color: var(--color-blue-700);
  font-size: 15px;
}

.case-feature-info p,
.case-feature-info li {
  color: var(--color-muted);
}

.case-feature-info li {
  position: relative;
  padding-left: 14px;
}

.case-feature-info li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue-700);
}

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

.case-feature-data h2 {
  grid-column: 1 / -1;
}

.case-feature-data div {
  display: grid;
  gap: 3px;
}

.case-feature-data strong {
  color: var(--color-blue-700);
  font-size: 24px;
  line-height: 1;
}

.case-feature-data span {
  color: var(--color-muted);
  font-size: 13px;
}

.case-related-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.case-related-strip article {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.case-related-strip article:nth-child(2) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-related-strip h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--color-navy-900);
  font-size: 20px;
}

.case-related-strip a {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.case-related-strip img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.case-related-strip span {
  width: 100%;
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
}

.case-inquiry {
  padding-top: 0;
}

body[data-page="cases"] .case-inquiry .product-inquiry-form--inline .btn::after {
  content: none;
  display: none;
}

body[data-page="cases"] .cases-mobile {
  display: none;
}

/* Case detail page */
.case-detail-breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.case-detail-main {
  padding-block: 26px 28px;
}

.case-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.case-detail-content {
  display: grid;
  gap: 16px;
}

.case-detail-summary,
.case-detail-card,
.case-sidebar-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.case-detail-summary {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 26px;
  padding: 18px;
}

.case-detail-summary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.case-detail-summary h1 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.25;
}

.case-detail-summary h1 span {
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-size: 13px;
  vertical-align: middle;
}

.case-detail-summary p {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 15px;
}

.case-detail-summary dl {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px 16px;
  margin: 0;
}

.case-detail-summary dt {
  color: var(--color-muted);
  font-weight: 700;
}

.case-detail-summary dd {
  margin: 0;
  color: var(--color-orange-600);
  font-weight: 800;
}

.case-detail-card {
  padding: 24px;
}

.case-detail-card h2 {
  margin-bottom: 12px;
  color: var(--color-navy-900);
  font-size: 22px;
}

.case-detail-card p,
.case-detail-card li {
  color: var(--color-muted);
}

.case-detail-card p:last-child,
.case-detail-card li:last-child {
  margin-bottom: 0;
}

.case-detail-card li {
  position: relative;
  padding-left: 16px;
}

.case-detail-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue-700);
}

.case-solution-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 24px;
  align-items: center;
}

.case-solution-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

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

.case-benefit-row div {
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  text-align: center;
}

.case-benefit-row span,
.case-benefit-row strong {
  display: block;
}

.case-benefit-row span {
  color: var(--color-muted);
  font-size: 12px;
}

.case-benefit-row strong {
  margin-top: 5px;
  color: var(--color-orange-600);
  font-size: 24px;
  line-height: 1;
}

.case-comment blockquote {
  margin: 0 0 14px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  color: var(--color-muted);
}

.case-comment p {
  margin-bottom: 0;
  color: var(--color-text);
  text-align: right;
  font-weight: 700;
}

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

.case-related-cards a {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.case-related-cards img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.case-related-cards strong,
.case-related-cards span {
  display: block;
  padding-inline: 12px;
}

.case-related-cards strong {
  padding-top: 10px;
  color: var(--color-text);
}

.case-related-cards span {
  padding-bottom: 12px;
  color: var(--color-orange-600);
  font-size: 13px;
  font-weight: 800;
}

.case-detail-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
}

.case-sidebar-card {
  padding: 22px;
}

.case-sidebar-card h2 {
  margin-bottom: 16px;
  color: var(--color-navy-900);
  font-size: 21px;
}

.case-sidebar-card h3 {
  margin: 12px 0;
  color: var(--color-text);
  font-size: 16px;
  text-align: center;
}

.case-sidebar-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.case-sidebar-card p,
.case-sidebar-card li {
  color: var(--color-muted);
  font-size: 13px;
}

.case-sidebar-card li {
  padding-block: 5px;
  border-bottom: 1px solid var(--color-border);
}

.case-sidebar-card li:last-child {
  border-bottom: 0;
}

.case-sidebar-card > a:not(.btn) {
  display: inline-flex;
  margin-top: 10px;
  color: var(--color-blue-700);
  font-weight: 800;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-size: 12px;
  font-weight: 700;
}

.case-share {
  display: flex;
  gap: 10px;
}

.case-share a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-blue-700);
  font-weight: 800;
}

.case-share a:nth-child(2) {
  background: var(--color-orange-600);
}

.case-share a:nth-child(3) {
  background: var(--color-green-500);
}

.case-share a:nth-child(4) {
  background: #f0aa20;
}

.case-subscribe {
  padding-bottom: 28px;
}

.case-subscribe__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 34px;
  align-items: center;
  padding: 28px 34px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-blue-700), var(--color-navy-900));
  box-shadow: 0 18px 42px rgba(0, 43, 102, 0.24);
}

.case-subscribe h2 {
  margin-bottom: 6px;
  font-size: 28px;
}

.case-subscribe p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.case-subscribe form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 12px;
}

.case-subscribe input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
}

/* ================================
   15. News and About Pages Only
   Scoped additions for news.html, news-detail.html, and about.html.
   ================================ */
body[data-page="news"],
body[data-page="news-detail"],
body[data-page="about"] {
  background: #f7faff;
}

/* News list and detail pages */
.news-banner {
  min-height: 245px;
}

.news-banner::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.95), rgba(0, 43, 102, 0.76) 48%, rgba(0, 43, 102, 0.12)),
    var(--banner-image, url("../images/banners/news-industrial-production.jpg"));
}

.news-banner__inner {
  min-height: 245px;
  padding-block: 40px;
}

.news-banner h1 {
  margin-bottom: 10px;
  font-size: 42px;
}

.news-banner p {
  font-size: 20px;
  font-weight: 700;
}

.news-breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.news-list-section,
.news-detail-section {
  padding-block: 24px 20px;
}

.news-layout,
.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.news-main-card,
.news-side-card,
.news-feature-card,
.news-article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.news-main-card {
  padding: 18px;
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.news-tabs a {
  min-width: 104px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  background: var(--color-white);
  font-weight: 700;
}

.news-tabs a.is-active,
.news-tabs a:hover {
  color: var(--color-white);
  border-color: var(--color-blue-700);
  background: var(--color-blue-700);
}

.news-list {
  display: grid;
}

.news-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.news-list-item:last-child {
  border-bottom: 0;
}

.news-list-item img {
  width: 270px;
  height: 128px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.news-tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-size: 12px;
  font-weight: 800;
}

.news-list-item h2 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.35;
}

.news-list-item h2 a:hover {
  color: var(--color-blue-700);
}

.news-list-item p {
  margin-bottom: 12px;
  color: var(--color-muted);
  line-height: 1.75;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--color-subtle);
  font-size: 13px;
}

body[data-page="news"] .news-meta {
  align-items: center;
}

body[data-page="news"] .news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.news-meta span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  vertical-align: middle;
}

body[data-page="news"] {
  --news-icon-calendar: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%225%22%20width%3D%2217%22%20height%3D%2215.5%22%20rx%3D%222%22/%3E%3Cpath%20d%3D%22M8%203.5v3M16%203.5v3M3.5%209h17%22/%3E%3C/svg%3E");
  --news-icon-eye: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M2.8%2012s3.7-6.5%209.2-6.5S21.2%2012%2021.2%2012s-3.7%206.5-9.2%206.5S2.8%2012%202.8%2012Z%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223.1%22/%3E%3C/svg%3E");
}

body[data-page="news"] .news-meta span::before {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-right: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

body[data-page="news"] .news-meta span:nth-child(1)::before {
  background-image: var(--news-icon-calendar);
}

body[data-page="news"] .news-meta span:nth-child(2)::before {
  background-image: var(--news-icon-eye);
}

body[data-page="news"] .news-meta span:nth-child(3)::before {
  background-image: var(--icon-chat);
}

.news-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--color-blue-700);
  font-size: 28px;
  line-height: 1;
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.news-pagination a,
.news-pagination span {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  background: var(--color-white);
  font-weight: 700;
}

.news-pagination a.is-active,
.news-pagination a:hover {
  color: var(--color-white);
  border-color: var(--color-blue-700);
  background: var(--color-blue-700);
}

.news-sidebar {
  display: grid;
  gap: 18px;
}

.news-side-card {
  padding: 22px;
}

.news-side-card h2 {
  margin-bottom: 16px;
  color: var(--color-navy-900);
  font-size: 22px;
}

.news-rank-list {
  display: grid;
  gap: 12px;
}

.news-rank-list a {
  display: grid;
  grid-template-columns: 34px 78px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.news-rank-list span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 42px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-blue-700);
  font-weight: 800;
}

.news-rank-list img {
  grid-row: 1 / span 2;
  width: 78px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.news-rank-list strong {
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-rank-list small {
  color: var(--color-subtle);
  font-size: 12px;
}

.news-recommend-list {
  display: grid;
  gap: 9px;
}

.news-recommend-list a {
  position: relative;
  display: block;
  padding-left: 14px;
  color: var(--color-muted);
}

.news-recommend-list a::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue-700);
}

.news-recommend-list a:hover {
  color: var(--color-blue-700);
}

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

.news-tag-cloud a {
  padding: 5px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-blue-700);
  background: var(--color-bg-soft);
  font-size: 12px;
  font-weight: 700;
}

.news-contact-card p,
.news-contact-card span {
  display: block;
  color: var(--color-muted);
}

.news-contact-card strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--color-blue-700);
  font-size: 20px;
}

.news-contact-card .btn {
  margin-top: 16px;
}

@media (min-width: 769px) {
  body[data-page="news"] .news-contact-card .btn {
    display: flex;
    width: max-content;
    margin: 16px auto 0;
    justify-content: center;
  }
}

.news-feature-section {
  padding-bottom: 22px;
}

.news-feature-card {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) 250px;
  gap: 24px;
  align-items: center;
  padding: 20px;
}

.news-feature-card > img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.news-feature-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.news-feature-meta span,
.news-feature-meta em {
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-style: normal;
  font-weight: 800;
}

.news-feature-meta span {
  color: var(--color-blue-700);
  background: var(--color-blue-100);
}

.news-feature-meta em {
  color: var(--color-white);
  background: var(--color-orange-600);
}

.news-feature-card h2 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.35;
}

.news-feature-card p,
.news-feature-card li {
  color: var(--color-muted);
}

.news-feature-card ol {
  margin: 0 0 18px;
  padding-left: 18px;
}

.news-feature-card aside {
  display: grid;
  gap: 12px;
}

.news-feature-card aside h3 {
  margin-bottom: 0;
  color: var(--color-navy-900);
  font-size: 18px;
}

.news-feature-card aside a:not(.btn) {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.news-feature-card aside img {
  width: 86px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.news-feature-card aside span {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.news-subscribe {
  padding-block: 0 24px;
}

.news-subscribe__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 32px;
  align-items: center;
  padding: 24px 34px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-blue-700), var(--color-navy-900));
  box-shadow: 0 18px 42px rgba(0, 43, 102, 0.2);
}

.news-subscribe h2 {
  margin-bottom: 5px;
  font-size: 28px;
}

.news-subscribe p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.news-subscribe form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 12px;
}

.news-subscribe input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--color-text);
  outline: none;
}

.news-faq-strip {
  padding-block: 4px 28px;
}

.news-faq-strip h2 {
  margin-bottom: 16px;
  text-align: center;
  font-size: 24px;
}

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

.news-faq-grid a {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.news-faq-grid strong,
.news-faq-grid span {
  display: block;
}

.news-faq-grid strong {
  margin-bottom: 8px;
  color: var(--color-text);
}

.news-faq-grid span {
  color: var(--color-muted);
  font-size: 13px;
}

.news-quote {
  padding-top: 0;
}

.news-article {
  padding: 34px;
}

.news-article__header h1 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.35;
}

.news-article__header p {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  color: var(--color-muted);
  background: var(--color-bg-soft);
}

.news-article__cover {
  width: 100%;
  height: 330px;
  margin: 28px 0 24px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.news-article__body p {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 2;
}

.news-share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.news-share-row span {
  color: var(--color-muted);
}

.news-share-row a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-green-500);
  font-size: 12px;
  font-weight: 800;
}

.news-share-row a:nth-child(3) {
  background: var(--color-red-500);
}

.news-share-row a:nth-child(4) {
  background: var(--color-blue-600);
}

.news-share-row a:nth-child(5) {
  background: #f0aa20;
}

.news-prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-soft);
}

.news-prev-next a {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 16px 22px;
  border-right: 1px solid var(--color-border);
}

.news-prev-next a:last-child {
  border-right: 0;
  text-align: right;
}

.news-prev-next span {
  color: var(--color-subtle);
  font-size: 12px;
}

.news-prev-next strong {
  color: var(--color-text);
}

.news-related-section {
  margin-top: 30px;
}

.news-related-section h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

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

.news-related-grid a {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.news-related-grid img {
  width: 100%;
  height: 105px;
  object-fit: cover;
}

.news-related-grid strong,
.news-related-grid span {
  display: block;
  padding-inline: 12px;
}

.news-related-grid strong {
  padding-top: 10px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.45;
}

.news-related-grid span {
  padding-bottom: 12px;
  color: var(--color-subtle);
  font-size: 12px;
}

/* About page */
.about-banner {
  min-height: 260px;
}

.about-banner::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.95), rgba(0, 43, 102, 0.78) 50%, rgba(0, 43, 102, 0.18)),
    var(--banner-image, url("../images/banners/about-factory-workshop.png"));
}

.about-banner__inner {
  min-height: 260px;
  padding-block: 42px;
}

.about-banner h1 {
  font-size: 42px;
}

.about-banner-crumb {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.about-banner-crumb a:hover,
.about-banner-crumb strong {
  color: var(--color-white);
}

.about-tabs {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
}

.about-tabs__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--color-white);
}

.about-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-right: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 700;
}

.about-tabs a:last-child {
  border-right: 0;
}

.about-tabs a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-blue-700);
  transform: translateX(-50%) scaleX(0);
  transition: transform var(--transition);
}

.about-tabs a.is-active,
.about-tabs a:hover {
  color: var(--color-blue-700);
}

.about-tabs a.is-active::after,
.about-tabs a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.about-intro-section {
  padding-block: 32px 24px;
  background: var(--color-white);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 590px;
  gap: 58px;
  align-items: center;
}

.about-intro h2,
.about-team-section h2,
.about-values-section h2 {
  margin-bottom: 20px;
  color: var(--color-text);
  font-size: 28px;
  line-height: 1.25;
}

.about-intro h2::after,
.about-team-section h2::after,
.about-values-section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--color-blue-700);
}

.about-intro p {
  margin-bottom: 18px;
  color: var(--color-muted);
  line-height: 2;
}

.about-intro-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 20px;
}

.about-intro-stats div {
  min-height: 70px;
  text-align: center;
}

.about-intro-stats strong,
.about-intro-stats span {
  display: block;
}

.about-intro-stats strong {
  color: var(--color-blue-700);
  font-size: 22px;
  line-height: 1.25;
}

.about-intro-stats strong > .about-desktop-only {
  display: block;
  color: var(--color-blue-700);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.about-intro-stats span {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
}

.about-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-video img {
  width: 100%;
  height: 292px;
  object-fit: cover;
}

.about-video button {
  position: absolute;
  inset: 0;
  width: 72px;
  height: 72px;
  margin: auto;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(0, 28, 63, 0.34);
  font-size: 28px;
}

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

.about-stats-row div {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.about-stats-row strong,
.about-stats-row span {
  display: block;
}

.about-stats-row strong {
  color: var(--color-blue-700);
  font-size: 25px;
  line-height: 1.1;
}

.about-stats-row span {
  margin-top: 6px;
  color: var(--color-muted);
}

.about-timeline-section {
  padding-block: 24px 34px;
  background: var(--color-bg-soft);
}

.about-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.about-section-head h2 {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 26px;
}

.about-section-head a {
  color: var(--color-blue-700);
  font-weight: 800;
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  padding-top: 12px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--color-border-strong);
}

.about-timeline div {
  position: relative;
  padding-top: 22px;
}

.about-timeline div::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-blue-700);
}

.about-timeline strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-blue-700);
  font-size: 18px;
}

.about-timeline span {
  color: var(--color-muted);
  font-size: 13px;
}

.about-factory-section {
  padding-block: 28px 34px;
  background: var(--color-white);
}

.about-factory-section h2 {
  margin-bottom: 20px;
  color: var(--color-text);
  font-size: 26px;
}

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

.about-factory-grid article {
  display: grid;
  gap: 8px;
  text-align: center;
}

.about-factory-grid img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.about-factory-grid strong {
  color: var(--color-blue-700);
  font-size: 24px;
  line-height: 1.2;
}

.about-factory-grid span {
  color: var(--color-muted);
  font-size: 13px;
}

.about-mixed-section,
.about-team-section,
.about-values-section {
  padding-block: 34px;
  background: var(--color-white);
}

.about-triple-section {
  padding-block: 34px;
  background: var(--color-bg-soft);
}

.about-triple-grid {
  display: grid;
  grid-template-columns: .9fr 1fr 1.45fr;
  gap: 28px;
}

.about-mixed-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
}

.about-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.about-culture,
.about-advantages {
  padding: 24px;
}

.about-culture h2,
.about-advantages h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.about-culture div,
.about-advantages div {
  display: grid;
  gap: 4px;
  padding: 13px 0 13px 54px;
  border-bottom: 1px solid var(--color-border);
}

.about-culture div:last-child,
.about-advantages div:last-child {
  border-bottom: 0;
}

.about-culture strong,
.about-advantages strong {
  position: relative;
  color: var(--color-blue-700);
  font-size: 16px;
}

.about-culture strong::before,
.about-advantages strong::before {
  content: "";
  position: absolute;
  left: -54px;
  top: -6px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--color-blue-700);
  border-radius: 50%;
}

.about-culture strong::after,
.about-advantages strong::after {
  content: "";
  position: absolute;
  left: -44px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--color-blue-700);
  -webkit-mask: var(--about-item-icon) center / contain no-repeat;
          mask: var(--about-item-icon) center / contain no-repeat;
}

.about-culture div:nth-of-type(1) strong {
  --about-item-icon: var(--icon-target);
}

.about-culture div:nth-of-type(2) strong {
  --about-item-icon: var(--icon-lightning);
}

.about-culture div:nth-of-type(3) strong {
  --about-item-icon: var(--icon-check);
}

.about-advantages div:nth-of-type(1) strong {
  --about-item-icon: var(--icon-cpu);
}

.about-advantages div:nth-of-type(2) strong {
  --about-item-icon: var(--icon-shield);
}

.about-advantages div:nth-of-type(3) strong {
  --about-item-icon: var(--icon-lightning);
}

.about-advantages div:nth-of-type(4) strong {
  --about-item-icon: var(--icon-support);
}

.about-culture p,
.about-advantages p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.about-honors {
  padding: 24px;
}

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

.about-honor-grid a {
  display: grid;
  gap: 10px;
  text-align: center;
}

.about-honor-grid img {
  width: 100%;
  height: 115px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.about-honor-grid span {
  color: var(--color-text);
  font-weight: 700;
}

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

body[data-page="about"] .about-honors > .btn.btn-primary.btn-sm {
  display: flex;
  width: max-content;
  margin: 14px auto 0;
}

.about-team-section h2,
.about-values-section h2 {
  text-align: left;
}

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

.about-team-grid article {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.about-team-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.about-team-grid h3 {
  margin: 12px 0 4px;
  color: var(--color-blue-700);
  font-size: 16px;
}

.about-team-grid p {
  margin-bottom: 16px;
  color: var(--color-muted);
}

.about-values-section {
  padding-top: 18px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.about-values-grid div {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 20px;
  border-right: 1px solid var(--color-border);
  text-align: center;
}

.about-values-grid div:last-child {
  border-right: 0;
}

.about-values-grid strong {
  color: var(--color-blue-700);
  font-size: 16px;
}

.about-values-grid span {
  color: var(--color-muted);
  font-size: 13px;
}

.about-contact-strip {
  padding-block: 22px 28px;
  background: var(--color-white);
}

.about-contact-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 670px;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-navy-900), var(--color-blue-700));
  box-shadow: 0 18px 42px rgba(0, 43, 102, 0.22);
}

.about-contact-copy h2 {
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 28px;
}

.about-contact-copy p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.about-contact-copy span {
  display: inline-flex;
  margin-right: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.about-contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
}

.about-contact-form label {
  display: grid;
  gap: 6px;
  color: var(--color-text);
  font-weight: 700;
}

.about-contact-form input,
.about-contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
}

.about-contact-form input {
  height: 40px;
  padding: 0 12px;
}

.about-contact-form textarea {
  min-height: 46px;
  padding: 10px 12px;
  resize: vertical;
}

.about-contact-form__wide {
  grid-column: span 2;
}

.about-contact-form button {
  align-self: end;
}

@media (min-width: 1200px) {
  body[data-page="about"] .about-intro {
    grid-template-columns: minmax(0, 1.08fr) 540px;
    gap: 48px;
  }

  body[data-page="about"] .about-video img {
    height: 280px;
  }

  body[data-page="about"] .about-timeline-section {
    padding-block: 12px 30px;
  }

  body[data-page="about"] .about-section-head {
    margin-bottom: 18px;
  }

  body[data-page="about"] .about-timeline {
    gap: 14px;
  }

  body[data-page="about"] .about-timeline div {
    padding-top: 18px;
  }

  body[data-page="about"] .about-timeline strong {
    margin-bottom: 4px;
  }

  body[data-page="about"] .about-factory-section {
    padding-block: 22px 28px;
  }

  body[data-page="about"] .about-factory-grid {
    gap: 12px;
  }

  body[data-page="about"] .about-factory-grid article {
    gap: 6px;
  }

  body[data-page="about"] .about-factory-grid img {
    height: 140px;
  }

  body[data-page="about"] .about-mixed-section,
  body[data-page="about"] .about-team-section,
  body[data-page="about"] .about-values-section {
    padding-block: 24px 28px;
  }

  body[data-page="about"] .about-triple-section {
    padding-block: 24px 28px;
  }

  body[data-page="about"] .about-triple-grid {
    gap: 22px;
  }

  body[data-page="about"] .about-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body[data-page="about"] .about-culture,
  body[data-page="about"] .about-advantages {
    padding: 18px 20px;
  }

  body[data-page="about"] .about-culture div,
  body[data-page="about"] .about-advantages div {
    gap: 3px;
    padding: 11px 0 11px 50px;
  }

  body[data-page="about"] .about-honors {
    padding: 18px 20px;
  }

  body[data-page="about"] .about-honor-grid {
    gap: 14px;
  }

  body[data-page="about"] .about-honor-grid img {
    height: 108px;
  }

  body[data-page="about"] .about-honors > .btn.btn-primary.btn-sm {
    margin-top: 12px;
  }

  body[data-page="about"] .about-team-grid {
    gap: 14px;
  }

  body[data-page="about"] .about-team-grid article {
    display: flex;
    flex-direction: column;
  }

  body[data-page="about"] .about-team-grid img {
    height: 188px;
  }

  body[data-page="about"] .about-team-grid h3 {
    margin: 8px 10px 2px;
  }

  body[data-page="about"] .about-team-grid p {
    margin: 0 10px 12px;
  }

  body[data-page="about"] .about-values-section {
    padding-top: 16px;
  }

  body[data-page="about"] .about-values-grid div {
    gap: 4px;
    min-height: 76px;
    padding: 16px;
    align-content: center;
  }

  body[data-page="about"] .about-contact-strip {
    padding-block: 16px 22px;
  }

  body[data-page="about"] .about-contact-strip__inner {
    gap: 28px;
    padding: 22px;
  }

  body[data-page="about"] .about-contact-form {
    padding: 14px;
  }

  body[data-page="about"] .about-contact-form label {
    gap: 4px;
  }

  body[data-page="about"] .about-contact-form textarea {
    min-height: 42px;
  }
}

/* ================================
   16. Service Support Pages Only
   Shared templates for support, FAQ, download, video, policy, and after-sale pages.
   ================================ */
body[data-page="support"],
body[data-page="faq"],
body[data-page="faq-detail"],
body[data-page="download"],
body[data-page="download-detail"],
body[data-page="video"],
body[data-page="video-detail"],
body[data-page="service-policy"],
body[data-page="service-policy-detail"],
body[data-page="after-sale"] {
  background: #f7faff;
}

.service-banner {
  min-height: 260px;
}

.service-banner::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.96), rgba(0, 43, 102, 0.76) 52%, rgba(0, 43, 102, 0.16)),
    var(--banner-image, url("../images/banners/support-engineer.jpg"));
}

.service-banner__inner {
  min-height: 260px;
  padding-block: 42px;
}

.service-banner h1 {
  margin-bottom: 10px;
  font-size: 44px;
}

.service-banner p {
  font-size: 21px;
  font-weight: 700;
}

.service-banner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.service-banner-points span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-orange-500);
  vertical-align: middle;
}

.service-breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.service-nav-section {
  position: relative;
  z-index: 2;
  margin-top: -24px;
}

.service-nav-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.service-nav-card a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 100px;
  padding: 18px 12px 16px;
  border-right: 1px solid var(--color-border);
  text-align: center;
}

.service-nav-card a:last-child {
  border-right: 0;
}

.service-nav-card a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-blue-700);
  transform: translateX(-50%) scaleX(0);
  transition: transform var(--transition);
}

.service-nav-card a.is-active::after,
.service-nav-card a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.service-nav-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-blue-700);
  font-weight: 800;
}

.service-nav-card strong {
  color: var(--color-text);
  font-size: 16px;
}

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

.service-home-section,
.service-main-section,
.service-section {
  padding-block: 28px;
}

.service-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 28px;
}

.service-card,
.service-side-card,
.service-help-card,
.service-list-panel,
.service-category-card,
.service-article,
.service-download-detail,
.service-video-detail {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.service-card,
.service-side-card,
.service-help-card,
.service-list-panel,
.service-article,
.service-download-detail,
.service-video-detail {
  padding: 24px;
}

.service-section-head,
.service-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.service-section-head h2,
.service-list-head h2,
.service-flow-section h2 {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 24px;
}

.service-section-head a,
.service-card-link {
  color: var(--color-blue-700);
  font-weight: 800;
}

.service-accordion-list {
  display: grid;
  gap: 10px;
}

.service-accordion-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.service-accordion-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  color: var(--color-blue-700);
  font-weight: 800;
  cursor: pointer;
}

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

.service-accordion-list summary::after {
  content: "+";
  color: var(--color-blue-700);
  font-size: 20px;
}

.service-accordion-list details[open] summary::after {
  content: "-";
}

.service-accordion-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--color-muted);
}

.service-file-list {
  display: grid;
  gap: 10px;
}

.service-file-list a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
  min-height: 54px;
}

.service-file-list span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 38px;
  border: 1px solid rgba(255, 106, 26, 0.28);
  border-radius: var(--radius-sm);
  color: var(--color-orange-600);
  background: #fff4ec;
  font-size: 11px;
  font-weight: 900;
}

.service-file-list strong {
  color: var(--color-text);
  line-height: 1.35;
}

.service-file-list small {
  color: var(--color-subtle);
}

.service-file-list em {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  min-height: 30px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-blue-700);
  font-style: normal;
  font-weight: 800;
}

.service-file-list--compact a {
  grid-template-columns: 38px minmax(0, 1fr);
}

.service-file-list--compact em {
  grid-column: 1 / -1;
  grid-row: auto;
  width: 70px;
  min-height: 28px;
}

.service-video-strip,
.service-video-grid {
  display: grid;
  gap: 16px;
}

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

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

.service-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.service-video-card img {
  width: 100%;
  height: 105px;
  object-fit: cover;
}

.service-video-grid .service-video-card img {
  height: 118px;
}

.service-video-card > span {
  position: absolute;
  top: 42px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(0, 28, 63, 0.72);
  transform: translateX(-50%);
}

.service-video-card strong,
.service-video-card small {
  display: block;
  padding-inline: 12px;
}

.service-video-card strong {
  padding-top: 10px;
  color: var(--color-text);
  line-height: 1.4;
}

.service-video-card small {
  padding-bottom: 12px;
  color: var(--color-subtle);
  font-size: 12px;
}

.service-flow-section {
  text-align: center;
}

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

.service-flow div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.service-flow div:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 20px;
  right: -10px;
  color: var(--color-blue-700);
  font-size: 24px;
}

.service-flow span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-weight: 900;
}

.service-flow strong {
  color: var(--color-text);
}

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

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

.service-layout {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.service-layout--left-right {
  grid-template-columns: 170px minmax(0, 1fr) 310px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.service-category-card {
  overflow: hidden;
  padding-block: 10px;
}

.service-category-card strong,
.service-category-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 800;
}

.service-category-card a:last-child {
  border-bottom: 0;
}

.service-category-card a.is-active,
.service-category-card a:hover {
  color: var(--color-white);
  background: var(--color-blue-700);
}

.service-category-card em {
  color: inherit;
  font-size: 12px;
  font-style: normal;
  opacity: 0.82;
}

.service-list-head {
  min-height: 42px;
}

.service-list-head span {
  margin-right: auto;
  color: var(--color-muted);
}

.service-list-head button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-muted);
  font-weight: 700;
}

.service-faq-list {
  display: grid;
  gap: 10px;
}

.service-faq-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 800;
}

.service-faq-list a:hover {
  color: var(--color-blue-700);
  border-color: rgba(0, 70, 184, 0.28);
}

.service-pagination {
  margin-top: 22px;
}

.service-sidebar {
  display: grid;
  gap: 18px;
}

.service-side-card h2,
.service-help-card h2 {
  margin-bottom: 16px;
  color: var(--color-navy-900);
  font-size: 22px;
}

.service-rank-list,
.service-guide-list,
.service-related-list,
.service-bullet-list {
  display: grid;
  gap: 12px;
}

.service-rank-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.service-rank-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 34px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-blue-700);
  font-weight: 900;
}

.service-rank-list strong,
.service-guide-list strong,
.service-related-list strong {
  display: block;
  color: var(--color-text);
  line-height: 1.45;
}

.service-rank-list small,
.service-guide-list small,
.service-related-list small {
  display: block;
  margin-top: 2px;
  color: var(--color-subtle);
  font-size: 12px;
}

body[data-page="video"] .service-side-card {
  padding: 22px 20px 20px;
}

body[data-page="video"] .service-side-card h2 {
  margin-bottom: 14px;
}

body[data-page="video"] .service-side-card--rank .service-rank-list {
  gap: 6px;
}

body[data-page="video"] .service-side-card--rank .service-rank-list a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: start;
  padding: 6px 0;
  transition: transform var(--transition), color var(--transition);
}

body[data-page="video"] .service-side-card--rank .service-rank-list a:hover {
  transform: translateX(2px);
}

body[data-page="video"] .service-side-card--rank .service-rank-list a:hover strong {
  color: var(--color-blue-700);
}

body[data-page="video"] .service-side-card--rank .service-rank-list span {
  grid-row: 1 / span 2;
  align-self: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 12px;
}

body[data-page="video"] .service-side-card--rank .service-rank-list strong {
  grid-column: 2;
  margin-top: 0;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body[data-page="video"] .service-side-card--rank .service-rank-list small {
  grid-column: 2;
  margin-top: 0;
  color: var(--color-subtle);
  font-size: 10px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-help-card p,
.service-help-card span,
.service-bullet-list,
.service-bullet-list a {
  color: var(--color-muted);
}

.service-help-card strong {
  display: block;
  margin: 12px 0 5px;
  color: var(--color-blue-700);
  font-size: 20px;
}

.service-help-card .btn {
  margin-top: 16px;
}

.service-bullet-list li {
  position: relative;
  padding-left: 14px;
}

.service-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue-700);
}

.service-support-strip {
  padding-block: 20px 28px;
}

.service-support-strip .product-inquiry__inner {
  grid-template-columns: minmax(0, 1fr) 220px 210px;
}

.service-hotline strong,
.service-hotline span {
  display: block;
}

.service-hotline strong {
  color: var(--color-white);
  font-size: 22px;
}

.service-hotline span {
  color: rgba(255, 255, 255, 0.82);
}

.service-table,
.service-policy-list,
.service-after-table {
  display: grid;
}

.service-table-head {
  display: grid;
  align-items: center;
  min-height: 48px;
  padding-inline: 18px;
  border-radius: var(--radius-md);
  color: var(--color-muted);
  background: var(--color-bg-soft);
  font-weight: 800;
}

.service-download-table .service-table-head {
  grid-template-columns: 1.45fr 1.8fr 0.6fr 0.85fr 0.6fr 0.5fr;
}

.service-download-table > a {
  display: grid;
  grid-template-columns: 1.45fr 1.8fr 0.6fr 0.85fr 0.6fr 0.5fr;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border);
}

.service-download-table strong {
  color: var(--color-text);
}

.service-download-table p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.service-download-table span {
  color: var(--color-muted);
}

.service-download-table em {
  display: grid;
  place-items: center;
  min-height: 30px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-blue-700);
  font-style: normal;
  font-weight: 800;
}

.service-download-hero {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.service-download-hero > img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.service-download-hero h1,
.service-video-detail h1 {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 28px;
}

.service-download-hero h1 span,
.service-article header h1 span {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-size: 12px;
  vertical-align: middle;
}

body[data-page="service-policy-detail"] .service-article header h1 br {
  display: none;
}

.service-download-hero p {
  color: var(--color-muted);
}

.service-download-hero dl {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
  gap: 10px 18px;
  margin: 18px 0 22px;
}

.service-download-hero dt {
  color: var(--color-muted);
  font-weight: 800;
}

.service-download-hero dd {
  margin: 0;
  color: var(--color-text);
}

.service-action-row {
  display: flex;
  gap: 16px;
}

.service-tabs {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  border-bottom: 1px solid var(--color-border);
}

.service-tabs a {
  position: relative;
  padding: 0 0 14px;
  color: var(--color-muted);
  font-weight: 800;
}

.service-tabs a.is-active {
  color: var(--color-blue-700);
}

.service-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-blue-700);
}

.service-article {
  color: var(--color-muted);
}

.service-article header h1 {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 28px;
  line-height: 1.35;
}

.service-article header p {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
}

.service-article section {
  margin-top: 24px;
}

.service-article h2 {
  margin-bottom: 12px;
  color: var(--color-blue-700);
  font-size: 22px;
}

.service-article p,
.service-article li {
  line-height: 1.9;
}

.service-article ol {
  padding-left: 20px;
  list-style: decimal;
}

.service-article ul {
  display: grid;
  gap: 6px;
}

.service-article img {
  width: 340px;
  height: 230px;
  margin: 16px 0 0 auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.service-article table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.service-article th,
.service-article td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
}

.service-article th {
  color: var(--color-text);
  background: var(--color-bg-soft);
}

.service-article--inner {
  margin-top: 0;
  padding: 24px 0 0;
  border: 0;
  box-shadow: none;
}

.service-doc-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 36px;
  margin-top: 12px;
  color: var(--color-text);
}

.service-tip {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-weight: 700;
}

.service-guide-list a,
.service-related-list a {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.service-guide-list a:last-child,
.service-related-list a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-video-player {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
  background: var(--color-navy-950);
}

.service-video-player img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  opacity: 0.86;
}

.service-video-player button {
  position: absolute;
  inset: 0;
  width: 76px;
  height: 76px;
  margin: auto;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(0, 28, 63, 0.38);
  font-size: 32px;
}

.service-video-control {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--color-white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.service-chapter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-chapter-row a {
  display: grid;
  min-height: 54px;
  padding: 12px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  background: var(--color-bg-soft);
  font-weight: 800;
}

.service-chapter-row span {
  color: var(--color-subtle);
  font-size: 12px;
}

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

.service-play-list {
  display: grid;
  gap: 10px;
}

.service-play-list a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: var(--radius-md);
}

.service-play-list a.is-active,
.service-play-list a:hover {
  background: var(--color-blue-100);
}

.service-play-list img {
  grid-row: 1 / span 2;
  width: 86px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.service-play-list strong {
  color: var(--color-text);
  line-height: 1.35;
}

.service-play-list small {
  color: var(--color-subtle);
}

.service-policy-list {
  gap: 12px;
}

.service-policy-list a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.service-policy-list > a > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-weight: 900;
}

.service-policy-list h3 {
  margin-bottom: 5px;
  color: var(--color-text);
  font-size: 18px;
}

.service-policy-list p {
  margin-bottom: 5px;
  color: var(--color-muted);
}

.service-policy-list small {
  color: var(--color-subtle);
}

.service-policy-list em {
  color: var(--color-blue-700);
  font-size: 24px;
  font-style: normal;
}

.service-after-table .service-table-head {
  grid-template-columns: minmax(0, 1fr) 120px 120px 110px;
}

.service-after-table > a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 95px 92px 100px 18px;
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border);
}

.service-after-table > a::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-blue-100);
  grid-row: 1 / span 2;
}

.service-after-table strong {
  display: block;
  grid-column: 2;
  color: var(--color-text);
}

.service-after-table p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 12px;
}

.service-after-table span {
  color: var(--color-muted);
}

.service-after-table span:nth-of-type(1) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.service-after-table span:nth-of-type(2) {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.service-after-table span:nth-of-type(3) {
  grid-column: 5;
  grid-row: 1 / span 2;
}

.service-after-table em {
  grid-column: 6;
  grid-row: 1 / span 2;
  color: var(--color-blue-700);
  font-style: normal;
  font-size: 20px;
}

/* ================================
   17. Contact Page Only
   These rules style the contact page while reusing global header, footer, cards, buttons, and forms.
   ================================ */
.contact-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 48%, #ffffff 100%);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy-950);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.98) 0%, rgba(0, 43, 102, 0.76) 54%, rgba(0, 28, 63, 0.4) 100%),
    var(--banner-image, url("../images/banners/contact-factory-office.jpg"));
  background-size: cover;
  background-position: center;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  min-height: 250px;
  padding-block: 34px;
}

.contact-hero h1 {
  margin-bottom: 8px;
  font-size: 46px;
  line-height: 1.15;
}

.contact-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  font-weight: 700;
}

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

.contact-hero__points span {
  position: relative;
  min-height: 54px;
  padding-left: 50px;
}

.contact-hero__points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contact-hero__points strong,
.contact-hero__points small {
  display: block;
}

.contact-hero__points strong {
  color: var(--color-white);
  font-size: 15px;
}

.contact-hero__points small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

body[data-page="contact"] .contact-hero__points span:nth-child(1)::before {
  background-image: var(--icon-clock);
}

body[data-page="contact"] .contact-hero__points span:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23ffffff%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M21 7.5a5.5 5.5 0 0 1-7.2 5.2L7.1 19.4a2 2 0 1 1-2.8-2.8l6.7-6.7A5.5 5.5 0 0 1 21 7.5Z%22/%3E%3Cpath d=%22m14.4 6.1 3.5 3.5%22/%3E%3C/svg%3E");
}

body[data-page="contact"] .contact-hero__points span:nth-child(3)::before {
  background-image: var(--icon-location);
}

body[data-page="contact"] .contact-hero__points span:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23ffffff%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M6.4 9.3A5.6 5.6 0 0 1 12 4a5.6 5.6 0 0 1 5.6 5.3%22/%3E%3Cpath d=%22M4.8 11.4A2.3 2.3 0 0 1 7.1 9.1h.4v6.4h-.4a2.3 2.3 0 0 1-2.3-2.3z%22/%3E%3Cpath d=%22M19.2 11.4A2.3 2.3 0 0 1 16.9 9.1h-.4v6.4h.4a2.3 2.3 0 0 0 2.3-2.3z%22/%3E%3Cpath d=%22M8 17h4%22/%3E%3C/svg%3E");
}

body[data-page="contact"] .contact-hero__points span::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.contact-hotline-card {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  text-align: center;
  box-shadow: 0 18px 46px rgba(0, 16, 42, 0.28);
}

.contact-hotline-card > span,
.contact-hotline-card p {
  color: var(--color-muted);
}

.contact-hotline-card strong {
  display: block;
  margin: 4px 0 6px;
  color: var(--color-navy-900);
  font-size: 34px;
  line-height: 1.2;
}

.contact-hotline-card div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.contact-main {
  padding-block: 22px 34px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 98px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contact-info-card > span {
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-weight: 900;
}

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

.contact-info-card strong {
  display: block;
  color: var(--color-blue-700);
  font-size: 17px;
  line-height: 1.35;
}

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

.contact-info-card--qr {
  grid-template-columns: 54px minmax(0, 1fr) 74px;
}

.contact-info-card--qr img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.contact-map-grid,
.contact-form-grid,
.contact-support-grid {
  display: grid;
  gap: 18px;
}

.contact-map-grid {
  grid-template-columns: minmax(0, 1fr) 1.08fr;
  align-items: stretch;
  margin-bottom: 20px;
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-blue-100);
  box-shadow: var(--shadow-soft);
}

.contact-map-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  opacity: 0.78;
}

.contact-map-pin {
  position: absolute;
  left: 90px;
  top: 78px;
  width: min(330px, calc(100% - 48px));
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.contact-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 22px;
  height: 22px;
  border: 6px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-blue-700);
  box-shadow: 0 8px 18px rgba(0, 70, 184, 0.26);
}

.contact-map-pin strong,
.contact-map-pin span {
  display: block;
}

.contact-map-pin strong {
  margin-bottom: 5px;
  color: var(--color-text);
  font-size: 16px;
}

.contact-map-pin span {
  color: var(--color-muted);
}

.contact-branches {
  padding: 22px;
}

.contact-section-head h2,
.contact-form-card h2,
.contact-panel h2 {
  margin-bottom: 12px;
  color: var(--color-navy-900);
  font-size: 24px;
  line-height: 1.3;
}

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

.contact-branch-grid article {
  position: relative;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.contact-branch-grid article.is-main {
  background: linear-gradient(180deg, #ffffff, #f2f7ff);
}

.contact-branch-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--color-text);
  font-size: 16px;
}

.contact-branch-grid em {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-blue-700);
  font-size: 12px;
  font-style: normal;
}

.contact-branch-grid p {
  margin-bottom: 7px;
  color: var(--color-muted);
}

.contact-branch-grid a {
  color: var(--color-blue-700);
  font-weight: 800;
}

.contact-branch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  color: var(--color-muted);
}

.contact-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.contact-form-card {
  padding: 26px;
}

.contact-form-card p {
  margin-bottom: 18px;
  color: var(--color-muted);
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--color-text);
  font-weight: 700;
}

.contact-form label span {
  color: var(--color-orange-600);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input,
.contact-form select {
  height: 42px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 90px;
  padding: 11px 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-blue-700);
  box-shadow: 0 0 0 3px rgba(0, 70, 184, 0.12);
}

body[data-page="contact"] .contact-form__label {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  font: inherit;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form__check {
  display: flex !important;
  align-items: center;
  gap: 8px !important;
  color: var(--color-muted) !important;
  font-weight: 600 !important;
}

.contact-form__check input {
  width: 14px;
  height: 14px;
}

.contact-upload {
  grid-template-columns: minmax(0, 1fr) 110px;
  align-items: center;
  padding: 12px;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
}

.contact-upload > span,
.contact-upload small {
  grid-column: 1;
}

.contact-form .contact-upload > span {
  color: var(--color-text);
}

.contact-upload input {
  grid-column: 2;
  grid-row: 1 / span 2;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-upload small {
  color: var(--color-muted);
  font-weight: 500;
}

.contact-support-grid {
  grid-template-columns: 1fr 1.1fr 1fr;
  margin-bottom: 18px;
}

.contact-panel {
  padding: 22px;
}

.contact-mini-faq {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-mini-faq details {
  border-bottom: 1px solid var(--color-border);
}

.contact-mini-faq summary {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--color-text);
  font-weight: 800;
  cursor: pointer;
}

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

.contact-mini-faq summary::after {
  content: "⌄";
  color: var(--color-blue-700);
}

.contact-mini-faq p {
  margin-bottom: 10px;
  color: var(--color-muted);
}

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

.contact-trust-grid article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-left: 8px;
}

.contact-trust-grid span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  font-weight: 900;
}

.contact-trust-grid strong {
  color: var(--color-text);
}

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

.contact-number-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.contact-number-row strong,
.contact-number-row span {
  display: block;
}

.contact-number-row strong {
  color: var(--color-blue-700);
  font-size: 20px;
}

.contact-number-row span {
  color: var(--color-muted);
  font-size: 12px;
}

.contact-review-list {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-review-list blockquote {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--color-border);
}

.contact-review-list blockquote:last-child {
  border-bottom: 0;
}

.contact-review-list p {
  margin-bottom: 8px;
  color: var(--color-muted);
}

.contact-review-list span {
  display: block;
  color: var(--color-orange-600);
  letter-spacing: 2px;
}

.contact-review-list cite {
  display: block;
  margin-top: 4px;
  color: var(--color-text);
  font-style: normal;
  font-weight: 800;
}

body[data-page="contact"] .contact-form__check a {
  color: var(--color-blue-700);
  text-decoration: none;
}

body[data-page="contact"] .contact-form__check a:hover {
  text-decoration: underline;
}

@media (min-width: 769px) {
  body[data-page="contact"] .contact-panel > .btn.btn-outline.btn-sm {
    display: flex;
    width: max-content;
    margin: 16px auto 0;
    justify-content: center;
  }
}

.contact-phone-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px minmax(360px, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 18px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-blue-700), var(--color-navy-950));
  box-shadow: 0 18px 40px rgba(0, 43, 102, 0.22);
}

.contact-phone-cta h2 {
  margin-bottom: 4px;
  color: var(--color-white);
  font-size: 26px;
}

.contact-phone-cta h2 strong {
  color: var(--color-orange-500);
}

.contact-phone-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-phone-cta > div > span {
  display: grid;
  place-items: center;
  float: left;
  width: 46px;
  height: 46px;
  margin-right: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.contact-phone-cta ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-phone-cta li {
  position: relative;
  padding-left: 18px;
}

.contact-phone-cta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-orange-500);
}

.contact-bottom-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.contact-bottom-prompt strong {
  display: block;
  color: var(--color-blue-700);
  font-size: 19px;
}

.contact-bottom-prompt p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.contact-bottom-prompt > div:last-child {
  display: flex;
  gap: 14px;
}

/* ================================
   18. Contact-A Service Network Page
   Reuses the shared header/footer and the existing contact hero shell.
   ================================ */
body.contact-a-page .contact-a-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

body.contact-a-page .contact-a-hero__stat {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

body.contact-a-page .contact-a-hero__stat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

body.contact-a-page .contact-a-hero__stat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

body.contact-a-page .contact-a-hero__stat strong,
body.contact-a-page .contact-a-hero__stat small {
  display: block;
}

body.contact-a-page .contact-a-hero__stat strong {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.2;
}

body.contact-a-page .contact-a-hero__stat small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

body.contact-a-page .contact-a-filter-shell {
  padding-block: 18px 20px;
}

body.contact-a-page .contact-a-filter-card {
  padding: 18px 20px 20px;
}

body.contact-a-page .contact-a-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 124px 100px;
  gap: 12px;
  align-items: end;
}

body.contact-a-page .contact-a-filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

body.contact-a-page .contact-a-filter-grid input,
body.contact-a-page .contact-a-filter-grid select {
  height: 44px;
  padding-inline: 12px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

body.contact-a-page .contact-a-filter-grid input:focus,
body.contact-a-page .contact-a-filter-grid select:focus {
  border-color: var(--color-blue-700);
  box-shadow: 0 0 0 3px rgba(0, 70, 184, 0.12);
}

body.contact-a-page .contact-a-filter-grid .btn {
  min-height: 44px;
  padding-inline: 18px;
}

body.contact-a-page .contact-a-network {
  padding-block: 4px 24px;
}

body.contact-a-page .contact-a-network__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.45fr);
  gap: 18px;
  align-items: start;
}

body.contact-a-page .contact-a-list,
body.contact-a-page .contact-a-map {
  padding: 20px;
}

body.contact-a-page .contact-a-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

body.contact-a-page .contact-a-section-head h2 {
  margin-bottom: 0;
  color: var(--color-navy-900);
  font-size: 24px;
  line-height: 1.25;
}

body.contact-a-page .contact-a-section-head p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 12px;
}

body.contact-a-page .contact-a-list__items {
  display: grid;
  gap: 12px;
}

body.contact-a-page .contact-a-list__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

body.contact-a-page .contact-a-list__item.is-main {
  border-color: rgba(0, 70, 184, 0.32);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 16px 34px rgba(0, 43, 102, 0.08);
}

body.contact-a-page .contact-a-list__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
}

body.contact-a-page .contact-a-list__icon svg {
  width: 20px;
  height: 20px;
}

body.contact-a-page .contact-a-list__body {
  min-width: 0;
}

body.contact-a-page .contact-a-list__title-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 70px;
}

body.contact-a-page .contact-a-list__body strong {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.35;
}

body.contact-a-page .contact-a-list__body p {
  margin: 4px 0 6px;
  color: var(--color-muted);
  font-size: 13px;
}

body.contact-a-page .contact-a-list__body a {
  color: var(--color-blue-700);
  font-weight: 800;
}

body.contact-a-page .contact-a-list__tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-blue-700);
  font-size: 12px;
  font-weight: 800;
}

body.contact-a-page .contact-a-list__distance {
  align-self: center;
  color: var(--color-muted);
  font-size: 13px;
  white-space: nowrap;
}

body.contact-a-page .contact-a-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 14px;
}

body.contact-a-page .contact-a-pagination a,
body.contact-a-page .contact-a-pagination span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  background: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

body.contact-a-page .contact-a-pagination a.is-active {
  border-color: var(--color-blue-700);
  color: var(--color-white);
  background: var(--color-blue-700);
}

body.contact-a-page .contact-a-map__stage {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fbff 0%, #e8f2ff 100%);
}

body.contact-a-page .contact-a-map__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.72) brightness(1.05);
  mix-blend-mode: multiply;
}

body.contact-a-page .contact-a-map__overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(242, 248, 255, 0.46)),
    radial-gradient(circle at 70% 42%, rgba(0, 70, 184, 0.14), transparent 34%),
    radial-gradient(circle at 26% 68%, rgba(0, 70, 184, 0.08), transparent 22%);
}

body.contact-a-page .contact-a-map__pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

body.contact-a-page .contact-a-map__pin::before {
  content: "";
  display: block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-blue-700);
  box-shadow: 0 0 0 5px rgba(0, 70, 184, 0.12);
}

body.contact-a-page .contact-a-map__pin--main::before {
  background: var(--color-orange-500);
  box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.16);
}

body.contact-a-page .contact-a-map__legend {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

body.contact-a-page .contact-a-map__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
}

body.contact-a-page .contact-a-map__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blue-700);
}

body.contact-a-page .contact-a-map__legend-dot--main {
  background: var(--color-orange-500);
}

body.contact-a-page .contact-a-map__zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

body.contact-a-page .contact-a-map__zoom button {
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-size: 20px;
  font-weight: 700;
}

body.contact-a-page .contact-a-map__zoom button + button {
  border-top: 1px solid var(--color-border);
}

body.contact-a-page .contact-a-cta {
  padding: 2px 0 28px;
}

body.contact-a-page .contact-a-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.82fr) minmax(0, 0.96fr);
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-radius: 18px;
  color: var(--color-white);
  background: linear-gradient(90deg, #003e9f 0%, #002b63 100%);
  box-shadow: 0 18px 40px rgba(0, 43, 102, 0.2);
}

body.contact-a-page .contact-a-cta__copy h2 {
  margin-bottom: 6px;
  color: var(--color-white);
  font-size: 28px;
  line-height: 1.2;
}

body.contact-a-page .contact-a-cta__copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

body.contact-a-page .contact-a-cta__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

body.contact-a-page .contact-a-cta__form select {
  height: 46px;
  padding-inline: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  outline: none;
}

body.contact-a-page .contact-a-cta__form select:focus {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

body.contact-a-page .contact-a-cta__form .btn {
  height: 46px;
  padding-inline: 22px;
}

body.contact-a-page .contact-a-cta__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.contact-a-page .contact-a-cta__meta-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

body.contact-a-page .contact-a-cta__meta-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

body.contact-a-page .contact-a-cta__meta-icon svg {
  width: 20px;
  height: 20px;
}

body.contact-a-page .contact-a-cta__meta-item small,
body.contact-a-page .contact-a-cta__meta-item strong {
  display: block;
}

body.contact-a-page .contact-a-cta__meta-item small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

body.contact-a-page .contact-a-cta__meta-item strong {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.35;
}

/* Contact-A page merge: keep the service-network content but pull it into the shared visual system. */
body.contact-a-page .contact-hero {
  background: var(--color-navy-950);
}

body.contact-a-page .contact-hero::before {
  background-image:
    var(--banner-overlay),
    var(--banner-image, url("../images/banners/contact-factory-office.jpg"));
  background-position: var(--banner-position);
}

body.contact-a-page .contact-hero__inner {
  min-height: 280px;
  padding-block: 44px;
}

body.contact-a-page .contact-hero h1 {
  font-size: var(--font-banner-title);
  line-height: 1.18;
}

body.contact-a-page .contact-hero p {
  font-size: var(--font-banner-desc);
  line-height: 1.55;
}

body.contact-a-page .contact-a-hero__stats {
  gap: var(--card-gap);
  margin-top: 18px;
}

body.contact-a-page .contact-a-hero__stat {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

body.contact-a-page .contact-a-filter-card,
body.contact-a-page .contact-a-list,
body.contact-a-page .contact-a-map,
body.contact-a-page .contact-a-cta__inner {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

body.contact-a-page .contact-a-filter-grid input,
body.contact-a-page .contact-a-filter-grid select,
body.contact-a-page .contact-a-cta__form select {
  height: var(--form-control-height);
  border-radius: var(--radius-md);
}

body.contact-a-page .contact-a-filter-grid .btn,
body.contact-a-page .contact-a-cta__form .btn {
  min-height: var(--form-control-height);
  border-radius: var(--radius-md);
}

body.contact-a-page .contact-a-list__item {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

body.contact-a-page .contact-a-pagination a,
body.contact-a-page .contact-a-pagination span {
  border-radius: var(--radius-md);
}

body.contact-a-page .contact-a-map__stage {
  border-radius: var(--radius-lg);
}

body.contact-a-page .contact-a-map__legend,
body.contact-a-page .contact-a-map__zoom {
  border-radius: var(--radius-md);
}

body.contact-a-page .contact-a-cta__inner {
  background: linear-gradient(90deg, var(--color-blue-700) 0%, var(--color-navy-900) 100%);
  box-shadow: 0 18px 40px rgba(0, 43, 102, 0.2);
}

body.contact-a-page .contact-a-cta__meta-item {
  border-radius: var(--radius-md);
}

/* ================================
   18. Desktop Visual Consistency Pass
   Shared desktop overrides that keep all generated pages visually aligned.
   ================================ */
@media (min-width: 961px) {
  :root {
    --container-wide: 1200px;
    --banner-height: 260px;
    --hero-height: 360px;
    --form-control-height: 44px;
    --unified-card-shadow: 0 8px 24px rgba(15, 35, 70, 0.07);
  }

  /* Header and footer should be identical because both come from shared partials. */
  .navbar__inner {
    gap: 30px;
  }

  .main-nav {
    gap: 22px;
  }

  .site-header,
  .navbar {
    background: var(--color-white);
  }

  .topbar,
  .site-footer {
    background: var(--color-navy-950);
  }

  .site-footer .footer-cta {
    display: none;
  }

  /* Inner-page banners share one height and type scale; homepage/solution hero keeps the larger campaign height. */
  .page-banner,
  .page-banner__inner,
  .product-banner,
  .product-banner__inner,
  .detail-hero,
  .detail-hero__inner,
  .case-banner,
  .case-banner__inner,
  .news-banner,
  .news-banner__inner,
  .about-banner,
  .about-banner__inner,
  .service-banner,
  .service-banner__inner,
  .contact-hero,
  .contact-hero__inner {
    min-height: var(--banner-height);
  }

  .home-hero,
  .home-hero__inner,
  .solution-hero,
  .solution-hero__inner {
    min-height: var(--hero-height);
  }

  .page-banner h1,
  .product-banner h1,
  .detail-hero h1,
  .case-banner h1,
  .news-banner h1,
  .about-banner h1,
  .service-banner h1,
  .contact-hero h1 {
    font-size: var(--text-4xl);
    line-height: 1.18;
  }

  .page-banner p,
  .product-banner p,
  .detail-hero p,
  .case-banner p,
  .news-banner p,
  .about-banner p,
  .service-banner p,
  .contact-hero p {
    font-size: var(--text-xl);
    line-height: 1.55;
  }

  /* Buttons use one blue system and one orange CTA system. */
  .btn {
    min-height: var(--form-control-height);
    border-radius: var(--radius-md);
    font-weight: 700;
  }

  .btn-sm {
    min-height: 36px;
  }

  .btn-primary {
    background: var(--color-blue-700);
  }

  .btn-primary:hover {
    background: var(--color-blue-600);
  }

  .btn-accent,
  button.btn-accent,
  a.btn-accent {
    color: var(--color-white);
    background: var(--color-orange-600);
  }

  .btn-accent:hover,
  button.btn-accent:hover,
  a.btn-accent:hover {
    background: var(--color-orange-500);
  }

  /* Cards, panels, sidebars, and repeated items share radius, border, and shadow. */
  :where(
    .card,
    .home-product-card,
    .home-case-card,
    .home-about-card,
    .home-support-card,
    .product-side-card,
    .product-filter-card,
    .helper-card,
    .detail-panel,
    .quick-plan-card,
    .zz-product-card,
    .solution-hero-form,
    .solution-card,
    .case-card,
    .case-detail-summary,
    .case-detail-card,
    .case-sidebar-card,
    .news-main-card,
    .news-side-card,
    .news-feature-card,
    .news-article,
    .about-panel,
    .service-card,
    .service-side-card,
    .service-help-card,
    .service-list-panel,
    .service-category-card,
    .service-article,
    .service-download-detail,
    .service-video-detail,
    .service-video-card,
    .contact-hotline-card,
    .contact-info-card,
    .contact-map-card,
    .contact-branches,
    .contact-form-card,
    .contact-panel,
    .contact-bottom-prompt
  ) {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--unified-card-shadow);
  }

  :where(
    .product-inquiry__inner,
    .case-subscribe__inner,
    .news-subscribe__inner,
    .about-contact-strip__inner,
    .contact-phone-cta,
    .home-quote
  ) {
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 38px rgba(0, 43, 102, 0.2);
  }

  /* Section rhythm: standard content bands and CTA bands use a consistent vertical cadence. */
  :where(
    .home-section,
    .product-list-section,
    .product-helper-section,
    .service-guarantee,
    .detail-summary,
    .detail-selling-points,
    .detail-content,
    .detail-section,
    .detail-download-faq,
    .detail-related,
    .solution-stats,
    .solution-section,
    .case-list-section,
    .case-detail-main,
    .news-list-section,
    .news-detail-section,
    .news-feature-section,
    .news-faq-strip,
    .about-intro-section,
    .about-timeline-section,
    .about-factory-section,
    .about-triple-section,
    .about-team-section,
    .about-values-section,
    .service-home-section,
    .service-main-section,
    .service-section,
    .contact-main
  ) {
    padding-block: 32px;
  }

  :where(
    .home-quote,
    .product-inquiry,
    .case-subscribe,
    .news-subscribe,
    .about-contact-strip,
    .service-support-strip
  ) {
    padding-block: 24px 32px;
  }

  /* One desktop form-control height across global, product, service, news, about, and contact forms. */
  :where(
    input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
    select,
    .banner-search input,
    .footer-cta__form input,
    .home-quote-form input,
    .home-quote-form select,
    .product-inquiry-form input,
    .product-inquiry-form select,
    .solution-hero-form input,
    .solution-hero-form select,
    .quick-plan-form input,
    .contact-form input,
    .contact-form select,
    .about-contact-form input,
    .news-subscribe input,
    .case-subscribe input
  ) {
    height: var(--form-control-height);
    min-height: var(--form-control-height);
    border-radius: var(--radius-md);
  }

  :where(
    textarea,
    .form-field textarea,
    .product-inquiry-form textarea,
    .solution-hero-form textarea,
    .quick-plan-form textarea,
    .contact-form textarea,
    .about-contact-form textarea
  ) {
    min-height: 96px;
    border-radius: var(--radius-md);
  }

  .banner-search input,
  .banner-search button {
    height: var(--form-control-height);
    min-height: var(--form-control-height);
  }

  /* Typography hierarchy: compact cards stay compact, section titles stay one shared scale. */
  :where(.section-header h2, .home-section-title h2, .solution-section h2, .service-section-head h2, .service-list-head h2, .about-section-head h2) {
    font-size: var(--text-2xl);
    line-height: 1.28;
  }

  :where(.card h3, .zz-product-card h3, .case-card h2, .news-list-item h2, .service-side-card h2, .contact-panel h2) {
    line-height: 1.35;
  }

  /* Keep all main content widths on the same 1200px grid. */
  .container,
  .container--wide {
    width: min(100% - 48px, var(--container));
  }
}

/* ================================
   19. Desktop Banner Height Harmonization
   Keeps campaign heroes and inner-page banners from drifting in height.
   ================================ */
@media (min-width: 961px) {
  .page-banner,
  .product-banner,
  .detail-hero,
  .case-banner,
  .news-banner,
  .about-banner,
  .service-banner,
  .contact-hero {
    height: var(--banner-height);
    min-height: var(--banner-height);
    overflow: hidden;
  }

  .page-banner__inner,
  .product-banner__inner,
  .detail-hero__inner,
  .case-banner__inner,
  .news-banner__inner,
  .about-banner__inner,
  .service-banner__inner,
  .contact-hero__inner {
    height: var(--banner-height);
    min-height: var(--banner-height);
    padding-block: 32px;
  }

  .home-hero,
  .solution-hero {
    height: var(--hero-height);
    min-height: var(--hero-height);
  }

  .home-hero__inner,
  .solution-hero__inner {
    height: var(--hero-height);
    min-height: var(--hero-height);
  }

  .home-hero__inner {
    padding-block: 48px 42px;
  }

  .home-hero__features {
    margin-top: 30px;
  }

  .banner-actions,
  .banner-stats {
    gap: 12px;
    margin-top: 18px;
  }

  .banner-search {
    margin-top: 16px;
  }

  .detail-hero__crumb {
    margin-bottom: 14px;
  }

  .detail-hero h1,
  .case-banner h1,
  .service-banner h1,
  .contact-hero h1 {
    margin-bottom: 8px;
  }

  .detail-hero p {
    margin-bottom: 14px;
  }

  .detail-hero__features,
  .case-banner-stats,
  .service-banner-points,
  .contact-hero__points {
    margin-top: 16px;
  }

  .detail-hero__features {
    gap: 18px 24px;
  }

  .detail-hero__features span::before {
    width: 30px;
    height: 30px;
  }

  .case-banner-stats {
    gap: 18px 36px;
  }

  .case-banner-stats span {
    min-width: 96px;
  }

  .case-banner-stats span::before {
    width: 34px;
    height: 34px;
    margin-bottom: 2px;
  }

  .case-banner-stats strong {
    font-size: var(--text-xl);
  }

  .service-banner-points {
    gap: 18px 24px;
  }

  .solution-hero__inner {
    gap: 44px;
    padding-block: 36px;
  }

  .solution-hero__content h1 {
    margin-bottom: 10px;
    font-size: var(--text-4xl);
  }

  .solution-hero__content p {
    font-size: var(--text-xl);
    line-height: 1.45;
  }

  .solution-hero__points {
    gap: 14px 24px;
    margin-top: 22px;
  }

  .solution-hero__points strong::before {
    width: 32px;
    height: 32px;
  }

  .solution-hero-form {
    padding: 18px 20px;
  }

  .solution-hero-form h2 {
    margin-bottom: 4px;
    font-size: var(--text-lg);
  }

  .solution-hero-form p {
    margin-bottom: 10px;
  }

  .solution-hero-form form {
    gap: 8px;
  }

  .solution-hero-form textarea {
    height: 64px;
    min-height: 64px;
  }

  .solution-hero-form button {
    min-height: var(--form-control-height);
  }

  .contact-hero__inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 42px;
  }

  .contact-hero__points {
    gap: 12px;
  }

  .contact-hero__points span {
    min-height: 46px;
    padding-left: 44px;
  }

  .contact-hero__points span::before {
    width: 34px;
    height: 34px;
  }

  .contact-hotline-card {
    padding: 18px 22px;
  }

  .contact-hotline-card strong {
    font-size: var(--text-2xl);
  }

  .contact-hotline-card div {
    gap: 10px;
    margin-top: 12px;
  }
}

/* ================================
   20. Home Desktop Reference Alignment
   CSS-only refinements scoped to index.html desktop.
   ================================ */
@media (min-width: 961px) {
  body[data-page="home"] .container {
    width: min(100% - 72px, 1280px);
  }

  body[data-page="home"] .home-hero {
    height: 344px;
    min-height: 344px;
  }

  body[data-page="home"] .home-hero::before {
    background-image:
      linear-gradient(90deg, rgba(0, 28, 63, 0.96) 0%, rgba(0, 43, 102, 0.84) 43%, rgba(0, 43, 102, 0.38) 64%, rgba(0, 43, 102, 0.12) 100%),
      url("../images/banners/home-banner.jpg");
    background-position: center 45%;
  }

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

  body[data-page="home"] .home-hero__inner {
    height: 344px;
    min-height: 344px;
    padding-block: 44px 38px;
  }

  body[data-page="home"] .home-hero__content {
    max-width: 660px;
  }

  body[data-page="home"] .home-hero h1 {
    margin-bottom: 16px;
    font-size: 46px;
    line-height: 1.14;
  }

  body[data-page="home"] .home-hero p {
    font-size: 20px;
    line-height: 1.62;
  }

  body[data-page="home"] .home-hero__features {
    gap: 42px;
    margin-top: 30px;
  }

  body[data-page="home"] .home-hero-feature {
    grid-template-columns: 50px 1fr;
    min-width: 154px;
  }

  body[data-page="home"] .home-hero-feature__icon {
    width: 50px;
    height: 50px;
  }

  body[data-page="home"] .home-hero-feature strong {
    font-size: 17px;
  }

  body[data-page="home"] .home-section {
    padding-block: 18px;
  }

  body[data-page="home"] .home-products {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  body[data-page="home"] .home-advantages,
  body[data-page="home"] .home-solutions,
  body[data-page="home"] .home-cases {
    padding-block: 14px;
  }

  body[data-page="home"] .home-about-support {
    padding-block: 14px 16px;
  }

  body[data-page="home"] .home-news {
    padding-top: 6px;
    padding-bottom: 24px;
  }

  body[data-page="home"] .home-section-title {
    margin-bottom: 16px;
  }

  body[data-page="home"] .home-section-title h2,
  body[data-page="home"] .home-news-heading h2 {
    font-size: 27px;
  }

  body[data-page="home"] .home-section-title p {
    font-size: 12px;
  }

  body[data-page="home"] .home-product-grid {
    gap: 28px;
  }

  body[data-page="home"] .home-product-card {
    min-height: 238px;
    padding: 14px 20px 16px;
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(12, 38, 82, 0.07);
    transition: transform var(--transition), box-shadow var(--transition);
  }

  body[data-page="home"] .home-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(12, 38, 82, 0.11);
  }

  body[data-page="home"] .home-product-card img {
    height: 104px;
    margin-bottom: 8px;
    border-radius: 4px;
    background-color: #fff;
    object-fit: cover !important;
  }

  body[data-page="home"] .home-product-card h3 {
    margin-bottom: 6px;
    font-size: 17px;
  }

  body[data-page="home"] .home-product-card p {
    min-height: 34px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  body[data-page="home"] .home-outline-btn {
    min-width: 116px;
    min-height: 32px;
    padding-inline: 20px;
    border-radius: 4px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  }

  body[data-page="home"] .home-outline-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 70, 184, 0.14);
  }

  body[data-page="home"] .home-advantage-strip {
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(12, 38, 82, 0.06);
  }

  body[data-page="home"] .home-advantage-item {
    min-height: 132px;
    padding: 18px 14px 16px;
  }

  body[data-page="home"] .home-advantage-item span {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }

  body[data-page="home"] .home-solution-card {
    height: 106px;
    border-radius: 6px;
  }

  body[data-page="home"] .home-case-grid {
    gap: 16px;
  }

  body[data-page="home"] .home-case-card {
    border-radius: 6px;
    transition: transform var(--transition), box-shadow var(--transition);
  }

  body[data-page="home"] .home-case-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(12, 38, 82, 0.11);
  }

  body[data-page="home"] .home-case-card img {
    height: 118px;
  }

  body[data-page="home"] .home-case-card div {
    padding: 12px 14px 14px;
  }

  body[data-page="home"] .home-case-card h3 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  body[data-page="home"] .home-case-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  body[data-page="home"] .home-about-support__grid {
    gap: 30px;
  }

  body[data-page="home"] .home-about-card,
  body[data-page="home"] .home-support-card {
    min-height: 258px;
  }

  body[data-page="home"] .home-about-card__body {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
  }

  body[data-page="home"] .home-about-card__body img {
    height: 168px;
  }

  body[data-page="home"] .home-about-card__body p {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.75;
  }

  body[data-page="home"] .home-support-list a {
    min-height: 36px;
    font-size: 12px;
  }

  body[data-page="home"] .home-news-grid {
    gap: 42px;
  }

  body[data-page="home"] .home-news-list article {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    min-height: 70px;
  }

  body[data-page="home"] .home-news-list img {
    width: 120px;
    height: 64px;
  }

  body[data-page="home"] .home-news-list h3 {
    font-size: 14px;
  }

  body[data-page="home"] .home-quote {
    border-radius: 0;
    box-shadow: none;
  }

  body[data-page="home"] .home-quote__inner {
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 12px 30px;
    padding-block: 20px;
  }

  body[data-page="home"] .home-quote h2 {
    font-size: 32px;
  }

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

  body[data-page="home"] .home-quote-form input,
  body[data-page="home"] .home-quote-form select,
  body[data-page="home"] .home-quote-form button {
    height: 40px;
    min-height: 40px;
    border-radius: 4px;
  }

  body[data-page="home"] .home-quote__points {
    gap: 28px;
    font-size: 13px;
  }

  body[data-page="home"] .site-footer .footer-main {
    padding-block: 28px;
  }

  body[data-page="home"] .site-footer .footer-main__grid {
    grid-template-columns: 1.15fr 2.35fr 166px;
    gap: 40px;
  }

  body[data-page="home"] .site-footer .footer-company h2 {
    font-size: 24px;
  }

  body[data-page="home"] .site-footer .footer-company p,
  body[data-page="home"] .site-footer .footer-contact,
  body[data-page="home"] .site-footer .footer-links a,
  body[data-page="home"] .site-footer .footer-qrcode p {
    font-size: 13px;
  }

  body[data-page="home"] .site-footer .footer-links {
    gap: 24px;
  }

  body[data-page="home"] .site-footer .footer-links a {
    margin-top: 7px;
  }

  body[data-page="home"] .site-footer .footer-qrcode img {
    width: 96px;
    height: 96px;
    border-width: 5px;
  }

  body[data-page="home"] .site-footer .footer-bottom__inner {
    min-height: 48px;
  }

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

/* ================================
   21. Solutions Desktop Reference Polish
   CSS-only desktop adjustments scoped to solutions.html.
   ================================ */
@media (min-width: 961px) {
  body[data-page="solutions"] {
    background: #f5f8fc;
  }

  body[data-page="solutions"] .solution-hero {
    height: 388px;
    min-height: 388px;
  }

  body[data-page="solutions"] .solution-hero::before {
    background-image:
      linear-gradient(90deg, rgba(0, 28, 63, 0.94) 0%, rgba(0, 43, 102, 0.76) 42%, rgba(0, 43, 102, 0.22) 76%, rgba(0, 28, 63, 0.48) 100%),
      var(--banner-image, url("../images/banners/solutions-industry.jpg"));
    background-position: center 54%;
  }

  body[data-page="solutions"] .solution-hero__inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 70px;
    height: 388px;
    min-height: 388px;
    padding-block: 42px;
  }

  body[data-page="solutions"] .solution-hero__content h1 {
    margin-bottom: 12px;
    font-size: 50px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  body[data-page="solutions"] .solution-hero__content p {
    max-width: 760px;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.45;
  }

  body[data-page="solutions"] .solution-hero__content span {
    max-width: 820px;
    font-size: 15px;
    line-height: 1.8;
  }

  body[data-page="solutions"] .solution-hero__points {
    gap: 16px 30px;
    margin-top: 26px;
  }

  body[data-page="solutions"] .solution-hero__points strong:nth-child(1) {
    --solution-hero-icon: var(--icon-factory);
  }

  body[data-page="solutions"] .solution-hero__points strong:nth-child(2) {
    --solution-hero-icon: var(--icon-lightning);
  }

  body[data-page="solutions"] .solution-hero__points strong:nth-child(3) {
    --solution-hero-icon: var(--icon-shield);
  }

  body[data-page="solutions"] .solution-hero__points strong:nth-child(4) {
    --solution-hero-icon: var(--icon-support);
  }

  body[data-page="solutions"] .solution-hero__points strong {
    position: relative;
    min-height: 38px;
    padding-left: 50px;
    font-size: 14px;
    line-height: 1.25;
  }

  body[data-page="solutions"] .solution-hero__points strong::before {
    position: absolute;
    left: 0;
    width: 38px;
    height: 38px;
    border-color: rgba(255, 255, 255, 0.86);
    background-color: rgba(255, 255, 255, 0.1);
    background-image: var(--solution-hero-icon);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.08);
    color: var(--color-white);
  }

  body[data-page="solutions"] .solution-hero-form {
    padding: 18px 22px 20px;
    border-radius: 7px;
    box-shadow: 0 18px 48px rgba(0, 20, 52, 0.24);
  }

  body[data-page="solutions"] .solution-hero-form h2 {
    font-size: 19px;
    line-height: 1.3;
  }

  body[data-page="solutions"] .solution-hero-form p {
    margin-bottom: 10px;
    font-size: 13px;
  }

  body[data-page="solutions"] .solution-hero-form form {
    gap: 8px;
  }

  body[data-page="solutions"] .solution-hero-form input,
  body[data-page="solutions"] .solution-hero-form select {
    height: 38px;
    min-height: 38px;
    background: #f7faff;
  }

  body[data-page="solutions"] .solution-hero-form textarea {
    height: 58px;
    min-height: 58px;
    background: #f7faff;
  }

  body[data-page="solutions"] .solution-hero-form button {
    min-height: 40px;
  }

  body[data-page="solutions"] .solution-stats {
    margin-top: -34px;
    padding-block: 0 16px;
  }

  body[data-page="solutions"] .solution-stats__inner {
    border-color: #dbe6f3;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 28, 63, 0.09);
  }

  body[data-page="solutions"] .solution-stats__inner div {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
    min-height: 82px;
    padding: 16px 30px;
    text-align: left;
  }

  body[data-page="solutions"] .solution-stats__inner div:nth-child(1) {
    --solution-stat-icon: var(--icon-clock);
  }

  body[data-page="solutions"] .solution-stats__inner div:nth-child(2) {
    --solution-stat-icon: var(--icon-factory);
  }

  body[data-page="solutions"] .solution-stats__inner div:nth-child(3) {
    --solution-stat-icon: var(--icon-users);
  }

  body[data-page="solutions"] .solution-stats__inner div:nth-child(4) {
    --solution-stat-icon: var(--icon-support);
  }

  body[data-page="solutions"] .solution-stats__inner div::before {
    content: "";
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-blue-700);
    border-radius: 10px;
    background-color: #f4f8ff;
    background-image: var(--solution-stat-icon);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    color: var(--color-blue-700);
  }

  body[data-page="solutions"] .solution-stats__inner strong {
    font-size: 29px;
    line-height: 1;
  }

  body[data-page="solutions"] .solution-stats__inner span {
    margin-top: 4px;
    font-size: 13px;
  }

  body[data-page="solutions"] .solution-section {
    padding-block: 24px;
  }

  body[data-page="solutions"] .solution-section-title {
    margin-bottom: 32px;
  }

  body[data-page="solutions"] .solution-section-title h2 {
    margin-bottom: 5px;
    font-size: 30px;
    line-height: 1.22;
  }

  body[data-page="solutions"] .solution-section-title p {
    font-size: 14px;
  }

  body[data-page="solutions"] .solution-card-grid,
  body[data-page="solutions"] .solution-case-grid {
    gap: 16px;
  }

  body[data-page="solutions"] .solution-card {
    position: relative;
    border-color: #dce6f3;
    border-radius: 7px;
    box-shadow: 0 8px 22px rgba(15, 35, 70, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }

  body[data-page="solutions"] .solution-card:nth-child(1) {
    --solution-card-badge: var(--icon-cpu);
  }

  body[data-page="solutions"] .solution-card:nth-child(2) {
    --solution-card-badge: var(--icon-factory);
  }

  body[data-page="solutions"] .solution-card:nth-child(3) {
    --solution-card-badge: var(--icon-target);
  }

  body[data-page="solutions"] .solution-card:nth-child(4) {
    --solution-card-badge: var(--icon-wrench);
  }

  body[data-page="solutions"] .solution-card::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--color-blue-700);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.96);
    background-image: var(--solution-card-badge);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    color: var(--color-blue-700);
    box-shadow: 0 8px 16px rgba(0, 43, 102, 0.12);
    pointer-events: none;
  }

  body[data-page="solutions"] .solution-card:hover {
    border-color: #cbd9ec;
    box-shadow: 0 14px 30px rgba(15, 35, 70, 0.1);
    transform: translateY(-3px);
  }

  body[data-page="solutions"] .solution-card img {
    height: 158px;
    object-position: center;
  }

  body[data-page="solutions"] .solution-card > div {
    padding: 17px 18px 18px;
  }

  body[data-page="solutions"] .solution-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  body[data-page="solutions"] .solution-card h4 {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 15px 0 6px;
    font-size: 13px;
  }

  body[data-page="solutions"] .solution-card h4:nth-of-type(1) {
    --solution-card-h4-icon: var(--icon-target);
  }

  body[data-page="solutions"] .solution-card h4:nth-of-type(2) {
    --solution-card-h4-icon: var(--icon-cpu);
  }

  body[data-page="solutions"] .solution-card h4:nth-of-type(3) {
    --solution-card-h4-icon: var(--icon-check);
  }

  body[data-page="solutions"] .solution-card h4::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 1.5px solid var(--color-blue-700);
    border-radius: 50%;
    background-color: #f4f8ff;
    background-image: var(--solution-card-h4-icon);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 9px 9px;
    color: var(--color-blue-700);
  }

  body[data-page="solutions"] .solution-card p,
  body[data-page="solutions"] .solution-card li {
    font-size: 13px;
    line-height: 1.58;
  }

  body[data-page="solutions"] .solution-more {
    display: flex;
    width: max-content;
    min-height: 38px;
    margin: 20px auto 0;
    padding-inline: 24px;
    border-radius: 5px;
    font-size: 13px;
  }

  body[data-page="solutions"] .solution-why-row {
    border-color: #dce6f3;
    border-radius: 7px;
    box-shadow: 0 8px 22px rgba(15, 35, 70, 0.05);
  }

  body[data-page="solutions"] .solution-why-row div {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    padding: 17px 20px;
  }

  body[data-page="solutions"] .solution-why-row div:nth-child(1) {
    --solution-why-icon: var(--icon-target);
  }

  body[data-page="solutions"] .solution-why-row div:nth-child(2) {
    --solution-why-icon: var(--icon-cpu);
  }

  body[data-page="solutions"] .solution-why-row div:nth-child(3) {
    --solution-why-icon: var(--icon-wrench);
  }

  body[data-page="solutions"] .solution-why-row div:nth-child(4) {
    --solution-why-icon: var(--icon-clock);
  }

  body[data-page="solutions"] .solution-why-row div:nth-child(5) {
    --solution-why-icon: var(--icon-support);
  }

  body[data-page="solutions"] .solution-why-row div::before {
    content: "";
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-blue-700);
    border-radius: 9px;
    background-color: #f4f8ff;
    background-image: var(--solution-why-icon);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    color: var(--color-blue-700);
  }

  body[data-page="solutions"] .solution-why-row strong {
    font-size: 15px;
    line-height: 1.25;
  }

  body[data-page="solutions"] .solution-why-row span {
    font-size: 12px;
    line-height: 1.45;
  }

  body[data-page="solutions"] .solution-process-row {
    gap: 18px;
  }

  body[data-page="solutions"] .solution-process-row div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    right: -18px;
    width: 18px;
    height: 18px;
    background-image: var(--icon-arrowRight);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #86a9d8;
  }

  body[data-page="solutions"] .solution-process-row span {
    width: 64px;
    height: 64px;
    border: 1px solid #dce6f3;
    background: #eef5ff;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.58);
  }

  body[data-page="solutions"] .solution-process-row strong {
    font-size: 14px;
  }

  body[data-page="solutions"] .solution-process-row small {
    font-size: 12px;
    line-height: 1.45;
  }

  body[data-page="solutions"] .solution-case-grid a {
    position: relative;
    min-height: 196px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(15, 35, 70, 0.08);
  }

  body[data-page="solutions"] .solution-case-grid a:nth-child(1) {
    --solution-case-icon: var(--icon-factory);
  }

  body[data-page="solutions"] .solution-case-grid a:nth-child(2) {
    --solution-case-icon: var(--icon-cpu);
  }

  body[data-page="solutions"] .solution-case-grid a:nth-child(3) {
    --solution-case-icon: var(--icon-target);
  }

  body[data-page="solutions"] .solution-case-grid a:nth-child(4) {
    --solution-case-icon: var(--icon-shield);
  }

  body[data-page="solutions"] .solution-case-grid a::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--color-blue-700);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.96);
    background-image: var(--solution-case-icon);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    color: var(--color-blue-700);
    box-shadow: 0 8px 16px rgba(0, 43, 102, 0.12);
    pointer-events: none;
  }

  body[data-page="solutions"] .solution-case-grid a::after {
    background: linear-gradient(180deg, rgba(0, 28, 63, 0.04) 0%, rgba(0, 43, 102, 0.28) 44%, rgba(0, 28, 63, 0.76) 100%);
  }

  body[data-page="solutions"] .solution-case-grid img {
    object-position: center;
  }

  body[data-page="solutions"] .solution-case-grid strong {
    font-size: 20px;
    line-height: 1.2;
  }

  body[data-page="solutions"] .solution-case-grid span,
  body[data-page="solutions"] .solution-case-grid em {
    font-size: 13px;
  }

  body[data-page="solutions"] .solution-faq-grid {
    gap: 10px 14px;
    width: min(100%, 960px);
  }

  body[data-page="solutions"] .solution-faq-grid a {
    min-height: 44px;
    padding-inline: 18px;
    border-color: #dce6f3;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(15, 35, 70, 0.04);
  }

  body[data-page="solutions"] .solution-faq-grid span {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border: 1.5px solid var(--color-blue-700);
    border-radius: 50%;
    background-color: #fff;
    color: var(--color-blue-700);
    font-size: 0;
    line-height: 0;
  }

  body[data-page="solutions"] .solution-faq-grid span::before {
    content: "";
    width: 11px;
    height: 11px;
    background-image: var(--icon-chevronRight);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  body[data-page="solutions"] .solution-inquiry {
    padding-block: 24px 40px;
  }

  body[data-page="solutions"] .solution-inquiry .product-inquiry__inner {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    padding: 26px 34px;
    border-radius: 8px;
    background: linear-gradient(90deg, #003a8c 0%, #0046b8 48%, #002b66 100%);
    box-shadow: 0 14px 34px rgba(0, 43, 102, 0.2);
  }

  body[data-page="solutions"] .solution-inquiry h2 {
    position: relative;
    padding-left: 42px;
    font-size: 29px;
  }

  body[data-page="solutions"] .solution-inquiry h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23ffffff%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M6.4 9.3A5.6 5.6 0 0 1 12 4a5.6 5.6 0 0 1 5.6 5.3%22/%3E%3Cpath d=%22M4.8 11.4A2.3 2.3 0 0 1 7.1 9.1h.4v6.4h-.4a2.3 2.3 0 0 1-2.3-2.3z%22/%3E%3Cpath d=%22M19.2 11.4A2.3 2.3 0 0 1 16.9 9.1h-.4v6.4h.4a2.3 2.3 0 0 0 2.3-2.3z%22/%3E%3Cpath d=%22M8 17h4%22/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    color: var(--color-white);
    transform: translateY(-50%);
  }

  body[data-page="solutions"] .solution-inquiry p {
    font-size: 14px;
  }

  body[data-page="solutions"] .solution-inquiry .product-inquiry-form {
    grid-template-columns: repeat(4, minmax(0, 1fr)) 136px;
    gap: 10px;
  }

  body[data-page="solutions"] .solution-inquiry .product-inquiry-form input,
  body[data-page="solutions"] .solution-inquiry .product-inquiry-form select,
  body[data-page="solutions"] .solution-inquiry .product-inquiry-form button {
    height: 40px;
    min-height: 40px;
    border-radius: 5px;
  }

  body[data-page="solutions"] .site-footer {
    background: linear-gradient(180deg, #002b66 0%, #001c3f 100%);
  }

  body[data-page="solutions"] .site-footer .footer-main {
    padding-block: 30px;
  }

  body[data-page="solutions"] .site-footer .footer-main__grid {
    grid-template-columns: 1.15fr 2.3fr 170px;
    gap: 38px;
  }

  body[data-page="solutions"] .site-footer .footer-company h2 {
    font-size: 25px;
  }

  body[data-page="solutions"] .site-footer .footer-company p,
  body[data-page="solutions"] .site-footer .footer-contact,
  body[data-page="solutions"] .site-footer .footer-links a,
  body[data-page="solutions"] .site-footer .footer-qrcode p {
    font-size: 13px;
    line-height: 1.65;
  }

  body[data-page="solutions"] .site-footer .footer-links {
    gap: 24px;
  }

  body[data-page="solutions"] .site-footer .footer-links h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  body[data-page="solutions"] .site-footer .footer-links a {
    margin-top: 6px;
  }

  body[data-page="solutions"] .site-footer .footer-qrcode img {
    width: 98px;
    height: 98px;
    border-width: 5px;
  }

  body[data-page="solutions"] .site-footer .footer-bottom__inner {
    min-height: 48px;
  }

  body[data-page="solutions"] .floating-contact {
    display: none;
  }
}

/* ================================
   22. Video Detail Desktop Reference Polish
   CSS-only desktop adjustments scoped to video-detail.html.
   ================================ */
@media (min-width: 961px) {
  body[data-page="video-detail"] {
    background: #f4f8fd;
  }

  body[data-page="video-detail"] .service-banner {
    height: 250px;
    min-height: 250px;
  }

  body[data-page="video-detail"] .service-banner::before {
    background-image:
      linear-gradient(90deg, rgba(0, 28, 63, 0.96) 0%, rgba(0, 43, 102, 0.82) 43%, rgba(0, 43, 102, 0.28) 76%, rgba(0, 28, 63, 0.34) 100%),
      var(--banner-image, url("../images/banners/products-machines.jpg"));
    background-position: center 56%;
  }

  body[data-page="video-detail"] .service-banner__inner {
    height: 250px;
    min-height: 250px;
    padding-block: 34px;
  }

  body[data-page="video-detail"] .service-banner h1 {
    margin-bottom: 8px;
    font-size: 42px;
    line-height: 1.15;
  }

  body[data-page="video-detail"] .service-banner p {
    max-width: 760px;
    font-size: 21px;
    line-height: 1.45;
  }

  body[data-page="video-detail"] .banner-search {
    grid-template-columns: minmax(0, 420px) 100px;
    width: 520px;
    max-width: 100%;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 12px 30px rgba(0, 20, 52, 0.18);
  }

  body[data-page="video-detail"] .banner-search input,
  body[data-page="video-detail"] .banner-search button {
    height: 44px;
    min-height: 44px;
    border-radius: 0;
  }

  body[data-page="video-detail"] .banner-search input {
    border: 0;
    background: rgba(255, 255, 255, 0.98);
  }

  body[data-page="video-detail"] .service-breadcrumb {
    padding-block: 14px;
    background: var(--color-white);
  }

  body[data-page="video-detail"] .service-main-section {
    padding-block: 26px 28px;
  }

  body[data-page="video-detail"] .service-video-detail-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
  }

  body[data-page="video-detail"] .service-video-detail {
    padding: 22px 24px 24px;
    border-color: #dbe6f3;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(15, 35, 70, 0.06);
  }

  body[data-page="video-detail"] .service-video-player {
    margin-bottom: 20px;
    border-radius: 7px;
  }

  body[data-page="video-detail"] .service-video-player img {
    height: 350px;
    opacity: 0.92;
    object-position: center 48%;
  }

  body[data-page="video-detail"] .service-video-player::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
    pointer-events: none;
  }

  body[data-page="video-detail"] .service-video-player button {
    z-index: 2;
    width: 68px;
    height: 68px;
    border-width: 2px;
    background: rgba(0, 28, 63, 0.28);
    font-size: 29px;
  }

  body[data-page="video-detail"] .service-video-control {
    z-index: 2;
    min-height: 38px;
    padding: 9px 14px;
    font-size: 13px;
  }

  body[data-page="video-detail"] .service-video-detail h1 {
    margin-bottom: 9px;
    font-size: 26px;
    line-height: 1.32;
  }

  body[data-page="video-detail"] .news-meta {
    gap: 14px;
    margin-bottom: 18px;
    color: #7f8da3;
    font-size: 13px;
  }

  body[data-page="video-detail"] .service-video-detail > section {
    margin-top: 18px;
  }

  body[data-page="video-detail"] .service-video-detail > section h2 {
    margin-bottom: 10px;
    color: var(--color-text);
    font-size: 21px;
    line-height: 1.3;
  }

  body[data-page="video-detail"] .service-video-detail > section p {
    margin-bottom: 0;
    color: #43536a;
    font-size: 14px;
    line-height: 1.85;
  }

  body[data-page="video-detail"] .service-chapter-row {
    gap: 10px;
  }

  body[data-page="video-detail"] .service-chapter-row a {
    min-height: 56px;
    padding: 12px 14px;
    border-radius: 5px;
    background: #f5f8fc;
    font-size: 13px;
    line-height: 1.35;
  }

  body[data-page="video-detail"] .service-chapter-row span {
    margin-top: 3px;
    font-size: 12px;
  }

  body[data-page="video-detail"] .service-video-strip--compact {
    gap: 14px;
  }

  body[data-page="video-detail"] .service-video-card {
    border-color: #dbe6f3;
    border-radius: 7px;
    box-shadow: 0 7px 18px rgba(15, 35, 70, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }

  body[data-page="video-detail"] .service-video-card:hover {
    border-color: #cbd9ec;
    box-shadow: 0 12px 24px rgba(15, 35, 70, 0.1);
    transform: translateY(-2px);
  }

  body[data-page="video-detail"] .service-video-strip--compact .service-video-card img {
    height: 112px;
  }

  body[data-page="video-detail"] .service-video-card > span {
    top: 39px;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  body[data-page="video-detail"] .service-video-card strong {
    padding: 9px 11px 0;
    font-size: 13px;
    line-height: 1.35;
  }

  body[data-page="video-detail"] .service-video-card small {
    padding: 3px 11px 11px;
    font-size: 12px;
  }

  body[data-page="video-detail"] .service-sidebar {
    gap: 16px;
  }

  body[data-page="video-detail"] .service-side-card {
    padding: 22px;
    border-color: #dbe6f3;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(15, 35, 70, 0.06);
  }

  body[data-page="video-detail"] .service-side-card h2 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.25;
  }

  body[data-page="video-detail"] .service-side-card h2 small {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
  }

  body[data-page="video-detail"] .service-play-list {
    gap: 9px;
  }

  body[data-page="video-detail"] .service-play-list a {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    min-height: 58px;
    padding: 7px;
    border-radius: 6px;
  }

  body[data-page="video-detail"] .service-play-list img {
    width: 78px;
    height: 49px;
    border-radius: 5px;
  }

  body[data-page="video-detail"] .service-play-list strong {
    font-size: 13px;
    line-height: 1.35;
  }

  body[data-page="video-detail"] .service-play-list small {
    margin-top: 2px;
    font-size: 12px;
  }

  body[data-page="video-detail"] .service-file-list {
    gap: 12px;
  }

  body[data-page="video-detail"] .service-file-list--compact a {
    min-height: 56px;
    gap: 12px;
  }

  body[data-page="video-detail"] .service-card-link {
    display: inline-flex;
    margin-top: 12px;
    font-size: 13px;
  }

  body[data-page="video-detail"] .service-support-strip {
    padding-block: 22px 30px;
  }

  body[data-page="video-detail"] .service-support-strip .product-inquiry__inner {
    grid-template-columns: minmax(0, 1fr) 230px 210px;
    gap: 28px;
    min-height: 112px;
    padding: 24px 32px;
    border-radius: 8px;
    background: linear-gradient(90deg, #0046b8 0%, #003a8c 48%, #002b66 100%);
    box-shadow: 0 14px 34px rgba(0, 43, 102, 0.2);
  }

  body[data-page="video-detail"] .service-support-strip h2 {
    margin-bottom: 6px;
    font-size: 30px;
    line-height: 1.22;
  }

  body[data-page="video-detail"] .service-support-strip p {
    font-size: 14px;
  }

  body[data-page="video-detail"] .service-support-strip .btn {
    min-height: 44px;
    padding-inline: 26px;
    border-radius: 5px;
  }

  body[data-page="video-detail"] .service-hotline strong {
    font-size: 26px;
    line-height: 1.15;
  }

  body[data-page="video-detail"] .service-hotline span {
    margin-top: 5px;
    font-size: 13px;
  }

  body[data-page="video-detail"] .site-footer {
    background: linear-gradient(180deg, #002b66 0%, #001c3f 100%);
  }

  body[data-page="video-detail"] .site-footer .footer-main {
    padding-block: 30px;
  }

  body[data-page="video-detail"] .site-footer .footer-main__grid {
    grid-template-columns: 1.15fr 2.3fr 170px;
    gap: 38px;
  }

  body[data-page="video-detail"] .site-footer .footer-company h2 {
    font-size: 25px;
  }

  body[data-page="video-detail"] .site-footer .footer-company p,
  body[data-page="video-detail"] .site-footer .footer-contact,
  body[data-page="video-detail"] .site-footer .footer-links a,
  body[data-page="video-detail"] .site-footer .footer-qrcode p {
    font-size: 13px;
    line-height: 1.65;
  }

  body[data-page="video-detail"] .site-footer .footer-links {
    gap: 24px;
  }

  body[data-page="video-detail"] .site-footer .footer-links h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  body[data-page="video-detail"] .site-footer .footer-links a {
    margin-top: 6px;
  }

  body[data-page="video-detail"] .site-footer .footer-qrcode img {
    width: 98px;
    height: 98px;
    border-width: 5px;
  }

  body[data-page="video-detail"] .site-footer .footer-bottom__inner {
    min-height: 48px;
  }

body[data-page="video-detail"] .floating-contact {
  right: 20px;
  bottom: 120px;
}
}

/* ================================
   23. Shared Form System
   Unifies static form controls across the site without changing structure or submission behavior.
   ================================ */
body[data-page] .js-form:not(.banner-search) :is(input:not([type="checkbox"]):not([type="radio"]):not([type="file"]), select),
body[data-page] .banner-search input,
body[data-page] .product-filters select {
  width: 100%;
  height: var(--form-control-height);
  min-height: var(--form-control-height);
  padding: 0 var(--form-control-padding-x);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

body[data-page] .js-form:not(.banner-search) {
  gap: var(--form-control-gap);
}

body[data-page] .banner-search input {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

body[data-page] .banner-search button,
body[data-page] .js-form:not(.banner-search) .btn,
body[data-page] .js-form:not(.banner-search) button,
body[data-page] .product-filters button {
  height: var(--form-control-height);
  min-height: var(--form-control-height);
}

body[data-page] .banner-search button {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

body[data-page] .js-form:not(.banner-search) :is(input:not([type="checkbox"]):not([type="radio"]):not([type="file"]), select, textarea)::placeholder,
body[data-page] .banner-search input::placeholder,
body[data-page] .footer-cta__form input::placeholder {
  color: var(--form-placeholder);
  opacity: 1;
}

body[data-page] .js-form:not(.banner-search) :is(input:not([type="checkbox"]):not([type="radio"]):not([type="file"]), select, textarea):focus,
body[data-page] .banner-search input:focus,
body[data-page] .product-filters select:focus {
  border-color: var(--color-blue-700);
  box-shadow: 0 0 0 3px rgba(0, 70, 184, 0.12);
}

body[data-page] .js-form:not(.banner-search).is-submitted::after,
body[data-page] .js-form.is-error::after {
  grid-column: 1 / -1;
  display: block;
  margin-top: 2px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

body[data-page] .js-form:not(.banner-search).is-submitted::after {
  content: "提交成功，我们会尽快与您联系。";
  border: 1px solid var(--form-success-border);
  color: var(--form-success-text);
  background: var(--form-success-bg);
}

body[data-page] .js-form.is-error::after {
  content: "提交未完成，请检查填写项后再试。";
  border: 1px solid var(--form-error-border);
  color: var(--form-error-text);
  background: var(--form-error-bg);
}

body[data-page] .js-form.is-error :is(input:not([type="checkbox"]):not([type="radio"]):not([type="file"]), select, textarea),
body[data-page] .js-form [aria-invalid="true"] {
  border-color: var(--form-error-border);
  box-shadow: 0 0 0 3px rgba(233, 75, 53, 0.12);
}

body[data-page] .form-message,
body[data-page] .form-status,
body[data-page] .form-alert {
  display: grid;
  gap: 4px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.55;
}

body[data-page] .form-message--success,
body[data-page] .form-status--success,
body[data-page] .form-alert--success {
  border: 1px solid var(--form-success-border);
  color: var(--form-success-text);
  background: var(--form-success-bg);
}

body[data-page] .form-message--error,
body[data-page] .form-status--error,
body[data-page] .form-alert--error {
  border: 1px solid var(--form-error-border);
  color: var(--form-error-text);
  background: var(--form-error-bg);
}

/* ================================
   24. Shared Search System
   Unifies all static search bars and keeps future header search markup aligned.
   ================================ */
body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) {
  display: flex;
  width: min(520px, 100%);
  margin-top: 24px;
  height: calc(var(--form-control-height) + 2px);
  min-height: calc(var(--form-control-height) + 2px);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) :is(input[type="search"], input:not([type="checkbox"]):not([type="radio"]):not([type="file"])) {
  flex: 1 1 auto;
  min-width: 0;
  height: var(--form-control-height);
  min-height: var(--form-control-height);
  padding: 0 var(--form-control-padding-x);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  box-shadow: none;
}

body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 92px;
  height: var(--form-control-height);
  min-height: var(--form-control-height);
  padding-inline: 36px 18px;
  border: 0;
  border-left: 1px solid var(--color-border-strong);
  border-radius: 0;
  color: var(--color-white);
  background-color: var(--color-blue-700);
  background-image: var(--search-icon);
  background-repeat: no-repeat;
  background-position: 16px 50%;
  background-size: 14px 14px;
  box-shadow: none;
  transform: none;
}

body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) button:hover {
  background-color: var(--color-blue-600);
  transform: none;
}

body[data-page] :is(.banner-search, .search-form, .site-search, .header-search):focus-within {
  border-color: var(--color-blue-700);
  box-shadow: 0 0 0 3px rgba(0, 70, 184, 0.12);
}

body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) :is(input[type="search"], input:not([type="checkbox"]):not([type="radio"]):not([type="file"]))::placeholder {
  color: var(--form-placeholder);
  opacity: 1;
}

body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) :is(input[type="search"], input:not([type="checkbox"]):not([type="radio"]):not([type="file"])):focus {
  box-shadow: none;
}

body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) input[type="search"]::-webkit-search-decoration,
body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) input[type="search"]::-webkit-search-cancel-button,
body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) input[type="search"]::-webkit-search-results-button,
body[data-page] :is(.banner-search, .search-form, .site-search, .header-search) input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

body[data-page] .header-search {
  width: min(220px, 100%);
  margin-top: 0;
}

body[data-page] .header-search input {
  padding-inline: 12px;
}

/* ==========================================================
   Solutions list page variant: solutions-s.html
   Keeps the new industry list page aligned with the shared
   industrial header/footer while preserving the existing pages.
   ========================================================== */
body[data-page="solutions-s"] {
  background: #f7faff;
}

body[data-page="solutions-s"] .floating-contact {
  display: none;
}

body[data-page="solutions-s"] .page-banner {
  min-height: 246px;
}

body[data-page="solutions-s"] .page-banner::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.96) 0%, rgba(0, 43, 102, 0.82) 48%, rgba(0, 43, 102, 0.16) 100%),
    var(--banner-image, url("../images/banners/solutions-industry.jpg"));
  background-position: center right;
}

body[data-page="solutions-s"] .page-banner__inner {
  min-height: 246px;
  padding-block: 38px 30px;
}

body[data-page="solutions-s"] .solutions-s-banner__content {
  max-width: 760px;
}

body[data-page="solutions-s"] .solutions-s-banner__content h1 {
  margin-bottom: 12px;
  font-size: 46px;
  line-height: 1.18;
}

body[data-page="solutions-s"] .solutions-s-banner__content p {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

body[data-page="solutions-s"] .solutions-s-banner__content span {
  display: block;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.6;
}

body[data-page="solutions-s"] .solution-hero__points {
  gap: 16px 30px;
  margin-top: 28px;
}

body[data-page="solutions-s"] .solution-hero__points strong {
  font-size: 14px;
}

body[data-page="solutions-s"] .solution-hero__points strong::before {
  width: 34px;
  height: 34px;
  border-width: 2px;
}

body[data-page="solutions-s"] .solutions-s-breadcrumb {
  padding-block: 14px 0;
  background: #fff;
}

body[data-page="solutions-s"] .solutions-s-breadcrumb .breadcrumb__list {
  gap: 7px;
  font-size: 12px;
}

body[data-page="solutions-s"] .solutions-s-toolbar {
  padding-block: 18px 8px;
}

body[data-page="solutions-s"] .solutions-s-toolbar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

body[data-page="solutions-s"] .solutions-s-toolbar__tabs {
  display: flex;
  flex: 1 1 auto;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

body[data-page="solutions-s"] .solutions-s-toolbar__tabs::-webkit-scrollbar {
  display: none;
}

body[data-page="solutions-s"] .solutions-s-toolbar__tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #d9e4f1;
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

body[data-page="solutions-s"] .solutions-s-toolbar__tabs button:hover {
  border-color: var(--color-blue-700);
  color: var(--color-blue-700);
}

body[data-page="solutions-s"] .solutions-s-toolbar__tabs button.is-active {
  border-color: var(--color-blue-700);
  color: var(--color-white);
  background: var(--color-blue-700);
  box-shadow: 0 8px 18px rgba(0, 70, 184, 0.16);
}

body[data-page="solutions-s"] .solutions-s-toolbar__more svg {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}

body[data-page="solutions-s"] .solutions-s-toolbar__search {
  flex: 0 0 250px;
  width: 250px;
  margin-top: 0;
}

body[data-page="solutions-s"] .solutions-s-toolbar__search input {
  height: 42px;
}

body[data-page="solutions-s"] .solutions-s-toolbar__search button {
  min-width: 84px;
  padding-inline: 34px 18px;
}

body[data-page="solutions-s"] .solutions-s-stats {
  position: relative;
  z-index: 2;
  margin-top: 14px;
}

body[data-page="solutions-s"] .solutions-s-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dce6f3;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(0, 43, 102, 0.08);
}

body[data-page="solutions-s"] .solutions-s-stats__inner div {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 18px 24px;
  border-right: 1px solid #e3edf8;
  text-align: left;
}

body[data-page="solutions-s"] .solutions-s-stats__inner div:last-child {
  border-right: 0;
}

body[data-page="solutions-s"] .solutions-s-stats__icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--color-blue-700);
  border-radius: 12px;
  color: var(--color-blue-700);
  background: linear-gradient(135deg, rgba(0, 70, 184, 0.08), rgba(255, 255, 255, 0.92));
}

body[data-page="solutions-s"] .solutions-s-stats__icon svg {
  width: 22px;
  height: 22px;
}

body[data-page="solutions-s"] .solutions-s-stats__inner strong,
body[data-page="solutions-s"] .solutions-s-stats__inner span {
  display: block;
}

body[data-page="solutions-s"] .solutions-s-stats__inner strong {
  color: var(--color-blue-700);
  font-size: 28px;
  line-height: 1.05;
}

body[data-page="solutions-s"] .solutions-s-stats__inner span {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
}

body[data-page="solutions-s"] .solutions-s-section {
  padding-block: 30px;
}

body[data-page="solutions-s"] .solutions-s-section .solution-section-title {
  margin-bottom: 22px;
}

body[data-page="solutions-s"] .solutions-s-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="solutions-s"] .solutions-s-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce6f3;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 8px 22px rgba(15, 35, 70, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

body[data-page="solutions-s"] .solutions-s-card:hover {
  border-color: #cbd9ec;
  box-shadow: 0 14px 30px rgba(15, 35, 70, 0.1);
  transform: translateY(-3px);
}

body[data-page="solutions-s"] .solutions-s-card__media {
  position: relative;
  overflow: hidden;
}

body[data-page="solutions-s"] .solutions-s-card__media img {
  width: 100%;
  height: 158px;
  object-fit: cover;
}

body[data-page="solutions-s"] .solutions-s-card__icon {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-blue-700);
  border-radius: 10px;
  color: var(--color-blue-700);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 16px rgba(0, 43, 102, 0.12);
}

body[data-page="solutions-s"] .solutions-s-card__icon svg {
  width: 20px;
  height: 20px;
}

body[data-page="solutions-s"] .solutions-s-card__body {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
}

body[data-page="solutions-s"] .solutions-s-card h3 {
  margin-bottom: 0;
  color: var(--color-navy-900);
  font-size: 18px;
  line-height: 1.32;
}

body[data-page="solutions-s"] .solutions-s-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

body[data-page="solutions-s"] .solutions-s-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

body[data-page="solutions-s"] .solutions-s-card__tags li {
  position: relative;
  padding-left: 14px;
  color: var(--color-blue-700);
  font-size: 12px;
  line-height: 1.4;
}

body[data-page="solutions-s"] .solutions-s-card__tags li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--color-blue-700);
  border-radius: 50%;
  background: #fff;
}

body[data-page="solutions-s"] .solutions-s-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--color-blue-700);
  font-size: 13px;
  font-weight: 700;
}

body[data-page="solutions-s"] .solutions-s-card__more svg {
  width: 14px;
  height: 14px;
}

body[data-page="solutions-s"] .solutions-s-pagination {
  margin-top: 24px;
}

body[data-page="solutions-s"] .solutions-s-inquiry {
  padding-block: 20px 32px;
}

body[data-page="solutions-s"] .solutions-s-inquiry .product-inquiry__inner {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  padding: 26px 30px;
  border-radius: 10px;
  background: linear-gradient(90deg, #003a8c 0%, #0046b8 48%, #002b66 100%);
  box-shadow: 0 14px 34px rgba(0, 43, 102, 0.2);
}

body[data-page="solutions-s"] .solutions-s-inquiry .product-inquiry__copy h2 {
  font-size: 28px;
}

body[data-page="solutions-s"] .solutions-s-inquiry .product-inquiry__copy p {
  font-size: 14px;
}

body[data-page="solutions-s"] .solutions-s-inquiry .product-inquiry-form {
  grid-template-columns: repeat(4, minmax(0, 1fr)) 136px;
  gap: 10px;
}

body[data-page="solutions-s"] .solutions-s-inquiry .product-inquiry-form input,
body[data-page="solutions-s"] .solutions-s-inquiry .product-inquiry-form select,
body[data-page="solutions-s"] .solutions-s-inquiry .product-inquiry-form button {
  height: 40px;
}

/* ================================
   23. Solutions Y Page
   钣金加工解决方案内容页（solutions-y.html）
   ================================ */
body[data-page="solutions-y"] {
  background: #f7faff;
}

body[data-page="solutions-y"] .floating-contact {
  display: none;
}

body[data-page="solutions-y"] .page-banner {
  min-height: 288px;
}

body[data-page="solutions-y"] .page-banner::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 63, 0.94) 0%, rgba(0, 43, 102, 0.82) 46%, rgba(0, 43, 102, 0.2) 100%),
    var(--banner-image, url("../images/banners/default-industrial-factory.png"));
  background-position: center right;
}

body[data-page="solutions-y"] .page-banner__inner {
  min-height: 288px;
  padding-block: 34px 30px;
}

body[data-page="solutions-y"] .solutions-y-banner__content {
  max-width: 780px;
}

body[data-page="solutions-y"] .solutions-y-breadcrumb {
  padding-bottom: 12px;
}

body[data-page="solutions-y"] .solutions-y-breadcrumb .breadcrumb__list {
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

body[data-page="solutions-y"] .solutions-y-breadcrumb a,
body[data-page="solutions-y"] .solutions-y-breadcrumb li:last-child {
  color: rgba(255, 255, 255, 0.84);
}

body[data-page="solutions-y"] .solutions-y-banner__content h1 {
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 1.16;
}

body[data-page="solutions-y"] .solutions-y-banner__content > p {
  max-width: 690px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

body[data-page="solutions-y"] .solutions-y-banner__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 26px;
}

body[data-page="solutions-y"] .solutions-y-banner__points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
}

body[data-page="solutions-y"] .solutions-y-banner__points i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.96);
}

body[data-page="solutions-y"] .solutions-y-banner__points svg {
  width: 16px;
  height: 16px;
}

body[data-page="solutions-y"] .solutions-y-banner__points small {
  font-size: 14px;
  font-weight: 700;
}

body[data-page="solutions-y"] .solutions-y-tabs {
  position: relative;
  z-index: 2;
  margin-top: -22px;
}

body[data-page="solutions-y"] .solutions-y-tabs__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 14px;
  border: 1px solid #dce6f3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(0, 28, 63, 0.08);
  scrollbar-width: none;
}

body[data-page="solutions-y"] .solutions-y-tabs__nav::-webkit-scrollbar {
  display: none;
}

body[data-page="solutions-y"] .solutions-y-tabs__nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

body[data-page="solutions-y"] .solutions-y-tabs__nav a:hover {
  color: var(--color-blue-700);
}

body[data-page="solutions-y"] .solutions-y-tabs__nav a.is-active {
  border-color: var(--color-blue-700);
  color: var(--color-white);
  background: var(--color-blue-700);
  box-shadow: 0 10px 22px rgba(0, 70, 184, 0.16);
}

body[data-page="solutions-y"] .solutions-y-section {
  padding-block: 34px;
}

body[data-page="solutions-y"] .solutions-y-section-heading {
  margin-bottom: 18px;
  text-align: left;
}

body[data-page="solutions-y"] .solutions-y-section-heading h2 {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 32px;
  line-height: 1.22;
}

body[data-page="solutions-y"] .solutions-y-section-heading p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

body[data-page="solutions-y"] .solutions-y-overview__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

body[data-page="solutions-y"] .solutions-y-overview__copy {
  display: grid;
  align-content: start;
}

body[data-page="solutions-y"] .solutions-y-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
  margin-top: 24px;
}

body[data-page="solutions-y"] .solutions-y-metric {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid #dce6f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 35, 70, 0.06);
}

body[data-page="solutions-y"] .solutions-y-metric__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--color-blue-700);
  border-radius: 12px;
  color: var(--color-blue-700);
  background: linear-gradient(135deg, rgba(0, 70, 184, 0.08), rgba(255, 255, 255, 0.92));
}

body[data-page="solutions-y"] .solutions-y-metric__icon svg {
  width: 22px;
  height: 22px;
}

body[data-page="solutions-y"] .solutions-y-metric strong {
  display: block;
  color: var(--color-blue-700);
  font-size: 30px;
  line-height: 1;
}

body[data-page="solutions-y"] .solutions-y-metric small {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.4;
}

body[data-page="solutions-y"] .solutions-y-overview__media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid #dce6f3;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(15, 35, 70, 0.08);
}

body[data-page="solutions-y"] .solutions-y-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="solutions-y"] .solutions-y-scenario-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce6f3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 35, 70, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

body[data-page="solutions-y"] .solutions-y-scenario-card:hover {
  border-color: #cbd9ec;
  box-shadow: 0 14px 30px rgba(15, 35, 70, 0.1);
  transform: translateY(-3px);
}

body[data-page="solutions-y"] .solutions-y-scenario-card__icon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-blue-700);
  border-radius: 10px;
  color: var(--color-blue-700);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 16px rgba(0, 43, 102, 0.12);
}

body[data-page="solutions-y"] .solutions-y-scenario-card__icon svg {
  width: 20px;
  height: 20px;
}

body[data-page="solutions-y"] .solutions-y-scenario-card img {
  width: 100%;
  height: 158px;
  object-fit: cover;
}

body[data-page="solutions-y"] .solutions-y-scenario-card__body {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
}

body[data-page="solutions-y"] .solutions-y-scenario-card h3 {
  margin-bottom: 0;
  color: var(--color-navy-900);
  font-size: 18px;
  line-height: 1.3;
}

body[data-page="solutions-y"] .solutions-y-scenario-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

body[data-page="solutions-y"] .solutions-y-scenario-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="solutions-y"] .solutions-y-scenario-card li {
  position: relative;
  padding-left: 14px;
  color: var(--color-blue-700);
  font-size: 12px;
  line-height: 1.4;
}

body[data-page="solutions-y"] .solutions-y-scenario-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--color-blue-700);
  border-radius: 50%;
  background: #fff;
}

body[data-page="solutions-y"] .solutions-y-scenario-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--color-blue-700);
  font-size: 13px;
  font-weight: 700;
}

body[data-page="solutions-y"] .solutions-y-scenario-card__more svg {
  width: 14px;
  height: 14px;
}

body[data-page="solutions-y"] .solutions-y-advantages__panel {
  padding: 30px 20px;
  border: 1px solid #dce6f3;
  border-radius: 12px;
  background: linear-gradient(180deg, #eef5ff 0%, #f7fbff 100%);
  box-shadow: 0 10px 26px rgba(0, 43, 102, 0.08);
}

body[data-page="solutions-y"] .solutions-y-advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body[data-page="solutions-y"] .solutions-y-advantage {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 8px 16px 6px;
  text-align: center;
}

body[data-page="solutions-y"] .solutions-y-advantage + .solutions-y-advantage {
  border-left: 1px solid #dce6f3;
}

body[data-page="solutions-y"] .solutions-y-advantage__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: var(--color-blue-700);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 70, 184, 0.08);
}

body[data-page="solutions-y"] .solutions-y-advantage__icon svg {
  width: 30px;
  height: 30px;
}

body[data-page="solutions-y"] .solutions-y-advantage strong {
  color: var(--color-navy-900);
  font-size: 16px;
  line-height: 1.25;
}

body[data-page="solutions-y"] .solutions-y-advantage p {
  max-width: 190px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
}

body[data-page="solutions-y"] .solutions-y-process__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

body[data-page="solutions-y"] .solutions-y-process__item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

body[data-page="solutions-y"] .solutions-y-process__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 24px;
  right: -18px;
  color: #8daedc;
  font-size: 24px;
  line-height: 1;
}

body[data-page="solutions-y"] .solutions-y-process__item span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #dce6f3;
  border-radius: 50%;
  color: var(--color-blue-700);
  background: #eef5ff;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.58);
}

body[data-page="solutions-y"] .solutions-y-process__item span svg {
  width: 28px;
  height: 28px;
}

body[data-page="solutions-y"] .solutions-y-process__item strong {
  color: var(--color-navy-900);
  font-size: 14px;
  line-height: 1.25;
}

body[data-page="solutions-y"] .solutions-y-process__item small {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

body[data-page="solutions-y"] .solutions-y-inquiry {
  padding-block: 20px 32px;
}

body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry__inner {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  padding: 26px 30px;
  border-radius: 10px;
  background: linear-gradient(90deg, #003a8c 0%, #0046b8 48%, #002b66 100%);
  box-shadow: 0 14px 34px rgba(0, 43, 102, 0.2);
}

body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry__copy h2 {
  font-size: 28px;
}

body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry__copy p {
  font-size: 14px;
}

body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry-form {
  grid-template-columns: repeat(4, minmax(0, 1fr)) 136px;
  gap: 10px;
}

body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry-form input,
body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry-form select,
body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry-form textarea,
body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry-form button {
  height: 40px;
  min-height: 40px;
  border-radius: 5px;
}

body[data-page="solutions-y"] .solutions-y-inquiry .product-inquiry-form textarea {
  padding-block: 10px;
  resize: none;
}

/* ================================
   25. Global UI Unification
   Shared header/footer/icon polish that sits on top of page-specific rules.
   ================================ */
:root {
  --icon-phone: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M22%2016.92v3a2%202%200%200%201-2.18%202A19.8%2019.8%200%200%201%203.08%205.18%202%202%200%200%201%205.08%203h3a2%202%200%200%201%202%201.72c.1.89.3%201.76.6%202.58a2%202%200%200%201-.45%202.11L8.09%2010.9a16%2016%200%200%200%205%205l1.49-1.17a2%202%200%200%201%202.11-.45c.82.29%201.69.49%202.58.6A2%202%200%200%201%2022%2016.92z%22%2F%3E%3C%2Fsvg%3E");
  --icon-mail: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%225.5%22%20width%3D%2217%22%20height%3D%2213%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22m4.5%207%207.2%205.2c.2.1.5.1.6%200L19.5%207%22%2F%3E%3C%2Fsvg%3E");
  --icon-search: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%227%22%2F%3E%3Cpath%20d%3D%22m20%2020-3.5-3.5%22%2F%3E%3C%2Fsvg%3E");
  --icon-play: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M9%207.5v9L17%2012Z%22%2F%3E%3C%2Fsvg%3E");
  --icon-chat: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%206.5h14a2%202%200%200%201%202%202v5a2%202%200%200%201-2%202h-6.8L8%2019v-3.5H5a2%202%200%200%201-2-2v-5a2%202%200%200%201%202-2Z%22%2F%3E%3Cpath%20d%3D%22M8.5%2010.5h.01M12%2010.5h.01M15.5%2010.5h.01%22%2F%3E%3C%2Fsvg%3E");
  --icon-shield: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203%2019%206v5c0%204.9-3%208.4-7%2010-4-1.6-7-5.1-7-10V6l7-3Z%22%2F%3E%3Cpath%20d%3D%22m9%2012%202%202%204-5%22%2F%3E%3C%2Fsvg%3E");
  --icon-wrench: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M21%207.5a5.5%205.5%200%200%201-7.2%205.2L7.1%2019.4a2%202%200%201%201-2.8-2.8l6.7-6.7A5.5%205.5%200%200%201%2021%207.5Z%22%2F%3E%3Cpath%20d%3D%22m14.4%206.1%203.5%203.5%22%2F%3E%3C%2Fsvg%3E");
  --icon-download: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203v10%22%2F%3E%3Cpath%20d%3D%22m8%209%204%204%204-4%22%2F%3E%3Cpath%20d%3D%22M5%2019h14%22%2F%3E%3C%2Fsvg%3E");
  --icon-video: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%226%22%20width%3D%2214%22%20height%3D%2212%22%20rx%3D%222.2%22%2F%3E%3Cpath%20d%3D%22m13%2011%205-3v8l-5-3Z%22%2F%3E%3C%2Fsvg%3E");
  --icon-home: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2011.5%2012%205l8%206.5%22%2F%3E%3Cpath%20d%3D%22M6%2010.5V20h12v-9.5%22%2F%3E%3Cpath%20d%3D%22M10%2020v-6h4v6%22%2F%3E%3C%2Fsvg%3E");
  --icon-products: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%226%22%20height%3D%226%22%20rx%3D%221.2%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%224%22%20width%3D%226%22%20height%3D%226%22%20rx%3D%221.2%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%2214%22%20width%3D%226%22%20height%3D%226%22%20rx%3D%221.2%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%226%22%20height%3D%226%22%20rx%3D%221.2%22%2F%3E%3C%2Fsvg%3E");
  --icon-target: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%227.2%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223.1%22%2F%3E%3Cpath%20d%3D%22M12%202.8v3.2M12%2018v3.2M2.8%2012H6M18%2012h3.2%22%2F%3E%3C%2Fsvg%3E");
  --icon-support: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6.4%209.3A5.6%205.6%200%200%201%2012%204a5.6%205.6%200%200%201%205.6%205.3%22%2F%3E%3Cpath%20d%3D%22M4.8%2011.4A2.3%202.3%200%200%201%207.1%209.1h.4v6.4h-.4a2.3%202.3%200%200%201-2.3-2.3z%22%2F%3E%3Cpath%20d%3D%22M19.2%2011.4A2.3%202.3%200%200%201%2016.9%209.1h-.4v6.4h.4a2.3%202.3%200%200%200%202.3-2.3z%22%2F%3E%3Cpath%20d%3D%22M8%2017h4%22%2F%3E%3C%2Fsvg%3E");
  --icon-contact: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2022s6-4.2%206-10a6%206%200%200%200-12%200c0%205.8%206%2010%206%2010Z%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%222.2%22%2F%3E%3C%2Fsvg%3E");
  --icon-location: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2021s6-5.1%206-10a6%206%200%200%200-12%200c0%204.9%206%2010%206%2010Z%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2211%22%20r%3D%222.2%22%2F%3E%3C%2Fsvg%3E");
  --icon-factory: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020V9l6%203V9l6%203V7l4%202v11H4Z%22%2F%3E%3Cpath%20d%3D%22M7%2020v-4h2v4M12%2020v-5h2v5M17%2020v-3h2v3%22%2F%3E%3C%2Fsvg%3E");
  --icon-users: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%229%22%20cy%3D%228%22%20r%3D%223%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%229.5%22%20r%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M3.5%2020a5.5%205.5%200%200%201%2011%200%22%2F%3E%3Cpath%20d%3D%22M14%2020a4%204%200%200%201%207.5%200%22%2F%3E%3C%2Fsvg%3E");
  --icon-clock: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228%22%2F%3E%3Cpath%20d%3D%22M12%208v4l3%202%22%2F%3E%3C%2Fsvg%3E");
  --icon-chevronRight: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M9%206l6%206-6%206%22%2F%3E%3C%2Fsvg%3E");
  --icon-chevronDown: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E");
  --icon-check: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m5.5%2012.5%204%204%209-9%22%2F%3E%3C%2Fsvg%3E");
  --icon-arrowRight: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%2012h11%22%2F%3E%3Cpath%20d%3D%22m12%206%206%206-6%206%22%2F%3E%3C%2Fsvg%3E");
  --icon-cpu: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%226.5%22%20y%3D%226.5%22%20width%3D%2211%22%20height%3D%2211%22%20rx%3D%221.8%22%2F%3E%3Cpath%20d%3D%22M9%203.5v3M12%203.5v3M15%203.5v3M9%2017.5v3M12%2017.5v3M15%2017.5v3M3.5%209h3M3.5%2012h3M3.5%2015h3M17.5%209h3M17.5%2012h3M17.5%2015h3%22%2F%3E%3C%2Fsvg%3E");
  --icon-lightning: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M13%202%205%2013h5l-1%209%208-11h-5l1-9Z%22%2F%3E%3C%2Fsvg%3E");
  --search-icon: var(--icon-search);
}

body[data-page] .site-header,
.site-header {
  position: relative;
  z-index: 30;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

body[data-page] .topbar,
.topbar {
  display: block;
  min-height: var(--header-top-height);
  color: rgba(255, 255, 255, 0.88);
  background: var(--color-navy-950);
  font-size: var(--text-xs);
}

body[data-page] .topbar__inner,
body[data-page] .topbar__contact,
body[data-page] .topbar__links {
  display: flex;
  align-items: center;
}

body[data-page] .topbar__inner {
  justify-content: space-between;
  min-height: var(--header-top-height);
}

body[data-page] .topbar__contact,
body[data-page] .topbar__links {
  gap: 24px;
}

body[data-page] .topbar__contact a,
.footer-contact li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body[data-page] .topbar__contact a::before,
.footer-contact li::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: center / contain no-repeat;
  opacity: 0.96;
}

body[data-page] .topbar__contact a[href^="tel:"]::before {
  background-image: var(--icon-phone);
}

body[data-page] .topbar__contact a[href^="mailto:"]::before {
  background-image: var(--icon-mail);
}

body[data-page] .navbar,
body[data-page] .navbar__inner {
  min-height: var(--header-main-height);
}

body[data-page] .navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

body[data-page] .main-nav {
  gap: 22px;
}

body[data-page] .main-nav a {
  min-height: var(--header-main-height);
}

body[data-page] .header-actions {
  gap: 12px;
}

body[data-page] .site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--color-navy-950);
}

body[data-page] .site-footer .footer-cta {
  display: block;
  background: linear-gradient(90deg, var(--color-navy-900), var(--color-blue-700));
}

body[data-page] .site-footer .footer-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 32px;
  align-items: center;
  padding-block: 30px;
}

body[data-page] .site-footer .footer-cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}

body[data-page] .site-footer .footer-main {
  padding-block: 44px;
}

body[data-page] .site-footer .footer-main__grid {
  display: grid;
  grid-template-columns: 1.2fr 2.4fr 180px;
  gap: 48px;
}

body[data-page] .site-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

body[data-page] .site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body[data-page] .site-footer .footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  font-size: var(--text-xs);
}

body[data-page] .site-footer .footer-contact {
  gap: 6px;
}

body[data-page] .site-footer .footer-qrcode img {
  width: var(--icon-qr);
  height: var(--icon-qr);
}

body[data-page] .footer-contact li:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.08 5.18 2 2 0 0 1 5.08 3h3a2 2 0 0 1 2 1.72c.1.89.3 1.76.6 2.58a2 2 0 0 1-.45 2.11L8.09 10.9a16 16 0 0 0 5 5l1.49-1.17a2 2 0 0 1 2.11-.45c.82.29 1.69.49 2.58.6A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

body[data-page] .footer-contact li:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2'/%3E%3Cpath d='m4.5 7 7.2 5.2c.2.1.5.1.6 0L19.5 7'/%3E%3C/svg%3E");
}

body[data-page] .footer-contact li:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.1 6-10a6 6 0 0 0-12 0c0 4.9 6 10 6 10Z'/%3E%3Ccircle cx='12' cy='11' r='2.2'/%3E%3C/svg%3E");
}

body[data-page] .footer-contact li:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5.5 12.5 4 4 9-9'/%3E%3C/svg%3E");
}

body[data-page] .footer-contact li {
  align-items: flex-start;
}

body[data-page] .btn,
body[data-page] .home-outline-btn {
  display: inline-flex;
  align-items: center;
}

body[data-page] :is(.btn, .home-outline-btn)::after {
  content: none;
  display: none;
}

body[data-page] .home-outline-btn {
  gap: 6px;
}

body[data-page] .banner-search button::after {
  content: none;
}

body[data-page] :where(
  .home-hero-feature__icon,
  .home-advantage-item span,
  .service-nav-card span,
  .service-video-card > span,
  .gallery-play,
  .detail-point-grid span,
  .contact-info-card > span,
  .contact-trust-grid span
) {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55% 55%;
}

body[data-page="home"] .home-hero-feature__icon,
body[data-page="home"] .home-advantage-item span,
body[data-page] .service-nav-card span,
body[data-page] .service-video-card > span,
body[data-page] .gallery-play,
body[data-page="product-detail"] .detail-point-grid span,
body[data-page="contact"] .contact-info-card > span,
body[data-page="contact"] .contact-trust-grid span {
  font-size: 0;
  line-height: 0;
}

body[data-page="home"] .home-hero-feature:nth-child(1) .home-hero-feature__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23ffffff%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M4 20V9l6 3V9l6 3V7l4 2v11H4Z%22/%3E%3Cpath d=%22M7 20v-4h2v4M12 20v-5h2v5M17 20v-3h2v3%22/%3E%3C/svg%3E");
}

body[data-page="home"] .home-hero-feature:nth-child(2) .home-hero-feature__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23ffffff%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M21 7.5a5.5 5.5 0 0 1-7.2 5.2L7.1 19.4a2 2 0 1 1-2.8-2.8l6.7-6.7A5.5 5.5 0 0 1 21 7.5Z%22/%3E%3Cpath d=%22m14.4 6.1 3.5 3.5%22/%3E%3C/svg%3E");
}

body[data-page="home"] .home-hero-feature:nth-child(3) .home-hero-feature__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23ffffff%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M6.4 9.3A5.6 5.6 0 0 1 12 4a5.6 5.6 0 0 1 5.6 5.3%22/%3E%3Cpath d=%22M4.8 11.4A2.3 2.3 0 0 1 7.1 9.1h.4v6.4h-.4a2.3 2.3 0 0 1-2.3-2.3z%22/%3E%3Cpath d=%22M19.2 11.4A2.3 2.3 0 0 1 16.9 9.1h-.4v6.4h.4a2.3 2.3 0 0 0 2.3-2.3z%22/%3E%3Cpath d=%22M8 17h4%22/%3E%3C/svg%3E");
}

body[data-page="home"] .home-advantage-item:nth-child(1) span {
  background-image: var(--icon-target);
}

body[data-page="home"] .home-advantage-item:nth-child(2) span {
  background-image: var(--icon-shield);
}

body[data-page="home"] .home-advantage-item:nth-child(3) span {
  background-image: var(--icon-lightning);
}

body[data-page="home"] .home-advantage-item:nth-child(4) span {
  background-image: var(--icon-cpu);
}

body[data-page="home"] .home-advantage-item:nth-child(5) span {
  background-image: var(--icon-wrench);
}

body[data-page="home"] .home-advantage-item:nth-child(6) span {
  background-image: var(--icon-support);
}

body[data-page] .service-nav-card a:nth-child(1) span {
  background-image: var(--icon-chat);
}

body[data-page] .service-nav-card a:nth-child(2) span {
  background-image: var(--icon-download);
}

body[data-page] .service-nav-card a:nth-child(3) span {
  background-image: var(--icon-video);
}

body[data-page] .service-nav-card a:nth-child(4) span {
  background-image: var(--icon-support);
}

body[data-page] .service-nav-card a:nth-child(5) span {
  background-image: var(--icon-shield);
}

body[data-page] .service-video-card > span,
body[data-page] .gallery-play {
  background-image: var(--icon-play);
}

body[data-page="product-detail"] .detail-point-grid div:nth-child(1) span {
  background-image: var(--icon-factory);
}

body[data-page="product-detail"] .detail-point-grid div:nth-child(2) span {
  background-image: var(--icon-target);
}

body[data-page="product-detail"] .detail-point-grid div:nth-child(3) span {
  background-image: var(--icon-cpu);
}

body[data-page="product-detail"] .detail-point-grid div:nth-child(4) span {
  background-image: var(--icon-lightning);
}

body[data-page="product-detail"] .detail-point-grid div:nth-child(5) span {
  background-image: var(--icon-wrench);
}

body[data-page="product-detail"] .detail-point-grid div:nth-child(6) span {
  background-image: var(--icon-support);
}

body[data-page="product-detail"] .detail-mini-icons span::before {
  border-color: rgba(0, 70, 184, 0.16);
  background-color: var(--color-blue-100);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55% 55%;
}

body[data-page="product-detail"] .detail-mini-icons span:nth-child(1)::before {
  background-image: var(--icon-shield);
}

body[data-page="product-detail"] .detail-mini-icons span:nth-child(2)::before {
  background-image: var(--icon-cpu);
}

body[data-page="product-detail"] .detail-mini-icons span:nth-child(3)::before {
  background-image: var(--icon-lightning);
}

body[data-page="product-detail"] .detail-mini-icons span:nth-child(4)::before {
  background-image: var(--icon-support);
}

body[data-page="contact"] .contact-info-card:nth-child(1) > span {
  background-image: var(--icon-phone);
}

body[data-page="contact"] .contact-info-card:nth-child(2) > span {
  background-image: var(--icon-mail);
}

body[data-page="contact"] .contact-info-card:nth-child(3) > span {
  background-image: var(--icon-location);
}

body[data-page="contact"] .contact-info-card:nth-child(4) > span {
  background-image: var(--icon-chat);
}

body[data-page="contact"] .contact-trust-grid article:nth-child(1) span {
  background-image: var(--icon-factory);
}

body[data-page="contact"] .contact-trust-grid article:nth-child(2) span {
  background-image: var(--icon-users);
}

body[data-page="contact"] .contact-trust-grid article:nth-child(3) span {
  background-image: var(--icon-clock);
}

body[data-page="contact"] .contact-trust-grid article:nth-child(4) span {
  background-image: var(--icon-shield);
}

body[data-page="products"] .product-faq-card span,
body[data-page="product-detail"] .detail-faq-panel span,
body[data-page="faq"] .service-faq-list a span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--color-blue-700);
  background: center / contain no-repeat;
}

body[data-page="products"] .product-faq-card span,
body[data-page="product-detail"] .detail-faq-panel span,
body[data-page="faq"] .service-faq-list a span {
  font-size: 0;
  line-height: 0;
}

body[data-page="products"] .product-faq-card span,
body[data-page="product-detail"] .detail-faq-panel span,
body[data-page="faq"] .service-faq-list a span {
  background-image: var(--icon-chevronRight);
}

body[data-page="support"] .service-accordion-list summary::after,
body[data-page="contact"] .contact-mini-faq summary::after {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  background: var(--icon-chevronDown) center / contain no-repeat;
  transition: transform var(--transition);
}

body[data-page="support"] .service-accordion-list details[open] summary::after,
body[data-page="contact"] .contact-mini-faq details[open] summary::after {
  transform: rotate(180deg);
}

body[data-page="support"] .service-accordion-list details {
  overflow: hidden;
}

body[data-page="support"] .service-accordion-list p {
  display: block;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 18px;
  opacity: 0;
  transition:
    max-height var(--transition),
    opacity 0.22s ease,
    padding-top var(--transition),
    padding-bottom var(--transition);
}

body[data-page="support"] .service-accordion-list details[open] p {
  max-height: 260px;
  padding: 0 18px 18px;
  opacity: 1;
}

body[data-page="support"] .service-video-card strong,
body[data-page="support"] .service-video-card small {
  width: 100%;
  padding-inline: 0;
  text-align: center;
}

body[data-page="support"] .service-guarantee-grid div:nth-child(1) {
  --service-guarantee-icon: var(--icon-shield);
}

body[data-page="support"] .service-guarantee-grid div:nth-child(2) {
  --service-guarantee-icon: var(--icon-clock);
}

body[data-page="support"] .service-guarantee-grid div:nth-child(3) {
  --service-guarantee-icon: var(--icon-factory);
}

body[data-page="support"] .service-guarantee-grid div:nth-child(4) {
  --service-guarantee-icon: var(--icon-support);
}

body[data-page="support"] .service-guarantee-grid span {
  font-size: 0;
  line-height: 0;
}

body[data-page="support"] .service-guarantee-grid span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: var(--service-guarantee-icon) center / contain no-repeat;
}

body[data-page] .download-file-grid em,
body[data-page] .service-file-list em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

body[data-page] .download-file-grid em::before,
body[data-page] .service-file-list em::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  background: var(--icon-download) center / contain no-repeat;
}

body[data-page] .floating-contact {
  position: fixed;
  right: 18px;
  bottom: 110px;
  z-index: 40;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

body[data-page] .floating-contact a,
body[data-page] .floating-contact button {
  display: grid;
  place-items: center;
  width: 74px;
  min-height: 52px;
  padding: 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  background: var(--color-navy-800);
  font-size: var(--text-xs);
  line-height: 1.3;
}

body[data-page] .floating-contact a:hover,
body[data-page] .floating-contact button:hover {
  background: var(--color-blue-700);
}

body.site-floating-contact-hidden .floating-contact {
  display: none !important;
}

/* ================================
   26. Final UI Rhythm Pass
   Shared banner, spacing, and surface harmonization for inner pages.
   ================================ */
body[data-page]:not([data-page="home"]) :is(
  .section,
  .product-list-section,
  .product-helper-section,
  .service-guarantee,
  .detail-summary,
  .detail-selling-points,
  .detail-content,
  .detail-section,
  .detail-download-faq,
  .detail-related,
  .solution-stats,
  .solution-section,
  .case-list-section,
  .case-detail-main,
  .news-list-section,
  .news-detail-section,
  .news-feature-section,
  .news-faq-strip,
  .about-intro-section,
  .about-timeline-section,
  .about-factory-section,
  .about-triple-section,
  .about-team-section,
  .about-values-section,
  .service-home-section,
  .service-main-section,
  .service-section,
  .contact-a-filter-shell,
  .contact-a-network,
  .contact-a-cta,
  .contact-main
) {
  padding-block: 56px;
}

body[data-page]:not([data-page="home"]) :is(
  .page-banner,
  .product-banner,
  .detail-hero,
  .case-banner,
  .news-banner,
  .about-banner,
  .service-banner,
  .contact-hero,
  .solution-hero
) {
  min-height: 280px;
}

body[data-page]:not([data-page="home"]) :is(
  .page-banner__inner,
  .product-banner__inner,
  .detail-hero__inner,
  .case-banner__inner,
  .news-banner__inner,
  .about-banner__inner,
  .service-banner__inner,
  .contact-hero__inner,
  .solution-hero__inner
) {
  min-height: 280px;
  padding-block: 44px;
}

body[data-page]:not([data-page="home"]) :is(.banner-actions, .banner-stats, .banner-search) {
  margin-top: 24px;
}

body[data-page]:not([data-page="home"]) :is(.banner-actions, .banner-stats) {
  gap: 14px;
}

body[data-page]:not([data-page="home"]) :is(
  .card,
  .service-card,
  .service-side-card,
  .service-help-card,
  .service-list-panel,
  .service-article,
  .service-download-detail,
  .service-video-detail,
  .product-side-card,
  .product-filter-card,
  .helper-card,
  .quick-plan-card,
  .news-main-card,
  .news-side-card,
  .news-feature-card,
  .news-contact-card,
  .case-card,
  .case-detail-card,
  .case-sidebar-card,
  .case-solution-card,
  .solution-card,
  .contact-info-card,
  .contact-trust-grid article,
  .contact-a-filter-card,
  .contact-a-list,
  .contact-a-map,
  .contact-a-cta,
  .service-video-card,
  .product-faq-card,
  .product-download-card,
  .product-guide-card
) {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

body[data-page]:not([data-page="home"]) :is(
  .card,
  .service-card,
  .service-side-card,
  .service-help-card,
  .service-list-panel,
  .service-article,
  .service-download-detail,
  .service-video-detail,
  .product-side-card,
  .product-filter-card,
  .helper-card,
  .quick-plan-card,
  .news-main-card,
  .news-side-card,
  .news-feature-card,
  .news-contact-card,
  .case-card,
  .case-detail-card,
  .case-sidebar-card,
  .case-solution-card,
  .solution-card,
  .contact-info-card,
  .contact-trust-grid article,
  .contact-a-filter-card,
  .contact-a-list,
  .contact-a-map,
  .contact-a-cta,
  .service-video-card,
  .product-faq-card,
  .product-download-card,
  .product-guide-card
):hover {
  transform: translateY(-2px);
  border-color: rgba(0, 70, 184, 0.16);
  box-shadow: var(--shadow-card);
}

body[data-page="home"] :is(
  .home-product-card,
  .home-case-card,
  .home-about-card,
  .home-support-card,
  .home-solution-card,
  .home-news-list article
) {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

body[data-page="home"] :is(
  .home-product-card,
  .home-case-card,
  .home-about-card,
  .home-support-card,
  .home-solution-card,
  .home-news-list article
):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

@media (min-width: 961px) {
  body[data-page="solutions"] .solution-section {
    padding-block: 24px !important;
  }

  body[data-page="solutions"] .solution-section-title {
    margin-bottom: 32px !important;
  }

  body[data-page="solutions"] .solution-inquiry {
    padding-block: 24px 40px !important;
  }
}

/* ================================
   27. Final Header Normalization Pass
   Shared desktop header sizing and spacing that overrides page-family variants.
   ================================ */
@media (min-width: 961px) {
  body[data-page] .site-header .container {
    width: min(100% - 72px, 1280px);
  }

  body[data-page] .site-header .topbar,
  body[data-page] .site-header .topbar__inner {
    min-height: 28px;
  }

  body[data-page] .site-header .topbar {
    display: block;
    font-size: 12px;
  }

  body[data-page] .site-header .topbar__inner {
    justify-content: space-between;
  }

  body[data-page] .site-header .topbar__contact,
  body[data-page] .site-header .topbar__links {
    gap: 24px;
  }

  body[data-page] .site-header .navbar,
  body[data-page] .site-header .navbar__inner {
    min-height: 66px;
  }

  body[data-page] .site-header .navbar__inner {
    gap: 28px;
  }

  body[data-page] .site-header .brand {
    gap: 10px;
  }

  body[data-page] .site-header .brand__mark {
    width: 38px;
    height: 38px;
    border-width: 2px;
    border-radius: 8px;
    font-size: 14px;
  }

  body[data-page] .site-header .brand__text strong { font-size: var(--font-brand-main); }

  body[data-page] .site-header .brand__text small { font-size: var(--font-brand-sub); }

  body[data-page] .site-header .main-nav {
    gap: 20px;
  }

  body[data-page] .site-header .main-nav a {
    min-height: 66px;
    font-size: 13px;
  }

  body[data-page] .site-header .header-actions {
    gap: 10px;
  }

  body[data-page] .site-header .header-actions .btn-sm {
    min-height: 34px;
    padding-inline: 18px;
    border-radius: 5px;
  }
}

/* ================================
   28. Video Page Rhythm Tightening
   Desktop-only tightening so video.html stays close to the reference template.
   ================================ */
@media (min-width: 961px) {
  body[data-page="video"] .service-main-section {
    padding-block: 52px 54px;
  }

  body[data-page="video"] .service-layout {
    gap: 20px;
  }

  body[data-page="video"] .service-support-strip {
    padding-block: 16px 24px;
  }

  body[data-page="video"] .service-support-strip .product-inquiry__inner {
    gap: 24px;
  }
}

/* ================================
   29. Support Page Rhythm Tightening
   Desktop-only tuning so support.html stays closer to the reference template.
   ================================ */
@media (min-width: 961px) {
  body[data-page="support"] .service-home-section,
  body[data-page="support"] .service-section {
    padding-block: 24px;
  }

  body[data-page="support"] .service-nav-section {
    clear: both;
    margin-top: 16px;
  }

  body[data-page="support"] .service-home-grid {
    gap: 22px;
  }

  body[data-page="support"] .service-card,
  body[data-page="support"] .service-side-card,
  body[data-page="support"] .service-help-card,
  body[data-page="support"] .service-list-panel {
    padding: 22px;
  }

  body[data-page="support"] .service-section-head,
  body[data-page="support"] .service-list-head {
    margin-bottom: 16px;
  }

  body[data-page="support"] .service-section-head h2,
  body[data-page="support"] .service-list-head h2,
  body[data-page="support"] .service-flow-section h2 {
    font-size: 22px;
  }

  body[data-page="support"] .service-accordion-list {
    gap: 8px;
  }

  body[data-page="support"] .service-accordion-list summary {
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  body[data-page="support"] .service-accordion-list p {
    padding: 0 16px 16px;
    font-size: 13px;
    line-height: 1.6;
  }

@media (min-width: 769px) {
  body[data-page="support"] .service-home-download .service-file-list {
    gap: 6px;
  }

  body[data-page="support"] .service-home-download .service-file-list a {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 54px;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 2px;
    align-items: start;
    min-height: 0;
    padding: 8px 0;
    overflow: hidden;
  }

  body[data-page="support"] .service-home-download .service-file-list span {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: 30px;
    height: 34px;
    font-size: 10px;
  }

  body[data-page="support"] .service-home-download .service-file-list strong {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  body[data-page="support"] .service-home-download .service-file-list small {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    margin-top: 0;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body[data-page="support"] .service-home-download .service-file-list em {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: center;
    width: 54px;
    min-height: 28px;
    font-size: 11px;
  }
}

body[data-page="support"] .service-support-strip {
  padding-block: 16px 24px;
}

  body[data-page="support"] .service-support-strip .product-inquiry__inner {
    gap: 24px;
  }
}

/* ================================
   20. Visual System Unification Pass
   Shared final-pass typography, button, and icon rhythm for the whole site.
   ================================ */
body[data-page] {
  font-size: var(--font-body);
}

body[data-page] :is(
  .page-banner h1,
  .product-banner h1,
  .detail-hero h1,
  .case-banner h1,
  .news-banner h1,
  .about-banner h1,
  .service-banner h1,
  .contact-hero h1,
  .home-hero h1,
  .solution-hero h1
) {
  font-size: var(--font-h1);
  line-height: 1.18;
}

body[data-page] :is(
  .section-header h2,
  .home-section-title h2,
  .home-news-heading h2,
  .solution-section h2,
  .service-section-head h2,
  .service-list-head h2,
  .about-section-head h2,
  .service-flow-section h2,
  .footer-cta h2,
  .footer-company h2
) {
  font-size: var(--font-section-title);
  line-height: 1.28;
}

body[data-page] :is(
  .section-header p,
  .home-section-title p,
  .home-news-heading p,
  .solution-section p,
  .service-section-head p,
  .service-list-head p,
  .about-section-head p
) {
  font-size: var(--font-section-desc);
  line-height: 1.55;
}

body[data-page] :is(
  .card h3,
  .home-product-card h3,
  .home-case-card h3,
  .solution-card h3,
  .news-card h3,
  .news-list-item h2,
  .service-side-card h2,
  .contact-panel h2,
  .zz-product-card h3,
  .case-card h2,
  .helper-card h2,
  .product-side-card h2,
  .product-filter-card h2
) {
  font-size: var(--font-card-title);
  line-height: 1.35;
}

body[data-page] :is(
  .card p,
  .home-product-card p,
  .home-case-card p,
  .solution-card p,
  .news-card p,
  .news-list-item p,
  .service-side-card p,
  .contact-panel p,
  .zz-product-card p,
  .case-card p,
  .helper-card p,
  .product-side-card p,
  .product-filter-card p
) {
  font-size: var(--font-card-desc);
  line-height: 1.55;
}

body[data-page] :is(
  .btn,
  .banner-search button,
  .footer-cta .btn,
  .service-support-strip .btn,
  .contact-phone-cta .btn,
  .contact-bottom-prompt .btn,
  .news-contact-card .btn,
  .service-help-card .btn
) {
  min-height: var(--btn-height);
  font-size: var(--font-body);
}

body[data-page] .btn-sm {
  min-height: var(--btn-height-sm);
  font-size: var(--font-small);
}

body[data-page] .home-outline-btn {
  min-height: var(--btn-height-sm);
  font-size: var(--font-small);
}

body[data-page] :is(.feature-card__icon) {
  width: var(--icon-lg);
  height: var(--icon-lg);
}

body[data-page] .service-nav-card a::before,
body[data-page] .service-category-card a::before,
body[data-page] .product-category-list a::before {
  width: var(--icon-card);
  height: var(--icon-card);
}

body[data-page] :is(.home-hero-feature__icon, .home-advantage-item span) {
  width: var(--icon-xl);
  height: var(--icon-xl);
}

body[data-page] :is(.social-links a svg) {
  width: var(--icon-sm);
  height: var(--icon-sm);
}

body[data-page] .brand__text strong {
  font-size: var(--font-brand-main);
}

body[data-page] .brand__text small {
  font-size: var(--font-brand-sub);
}

body[data-page] .footer-qrcode img {
  width: var(--icon-qr);
  height: var(--icon-qr);
}

body[data-page] .site-header .brand__mark {
  width: var(--icon-brand-mark);
  height: var(--icon-brand-mark);
}

body[data-page] .home-hero h1 {
  font-size: var(--font-hero-title);
}

body[data-page] .home-hero p {
  font-size: var(--font-hero-desc);
}

body[data-page] .home-quote h2 {
  font-size: var(--font-quote-title);
}

body[data-page] .home-quote p {
  font-size: var(--font-body);
}

body[data-page] .product-banner h1 {
  font-size: var(--font-banner-title);
}

body[data-page] .product-banner p {
  font-size: var(--font-banner-desc);
}

body[data-page] .product-banner span {
  font-size: var(--font-small);
}

body[data-page] .home-solution-card span {
  font-size: var(--font-card-title);
}

body[data-page] .home-case-card h3,
body[data-page] .home-news-list h3 {
  font-size: var(--font-card-title);
}

body[data-page] .home-case-card p,
body[data-page] .home-news-list p,
body[data-page] .home-support-download-body strong,
body[data-page] .home-support-video-body strong {
  font-size: var(--font-body);
}

body[data-page] .home-about-stats strong {
  font-size: var(--font-stat-number);
}

body[data-page] .home-about-stats span,
body[data-page] .home-news-list span,
body[data-page] .home-support-download-body small,
body[data-page] .home-support-video-body small {
  font-size: var(--font-small);
}

body[data-page] .home-support-download-icon {
  width: var(--icon-card);
  height: var(--icon-card);
  font-size: var(--font-small);
}

body[data-page] .home-quote-form input,
body[data-page] .home-quote-form select,
body[data-page] .home-quote-form button {
  height: var(--btn-height);
  min-height: var(--btn-height);
}

body[data-page] .home-support-tabs button,
body[data-page] .product-tabs a,
body[data-page] .product-filters select {
  min-height: var(--btn-height-sm);
  font-size: var(--font-body);
}

body[data-page] .product-category-list a {
  min-height: var(--btn-height);
  font-size: var(--font-body);
}

@media (min-width: 1200px) {
  body[data-page="cases"]:not([data-page="home"]) .case-list-section {
    padding-top: 40px !important;
    padding-bottom: 48px !important;
  }

  body[data-page="cases"] .case-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  body[data-page="cases"] .case-card > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 16px 15px;
  }

  body[data-page="cases"] .case-card h2 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  body[data-page="cases"] .case-card p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 40px;
    margin-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  body[data-page="cases"] .case-card dl {
    gap: 2px 8px;
    margin-bottom: 12px;
  }

  body[data-page="cases"] .case-card dt {
    font-size: 11px;
  }

  body[data-page="cases"] .case-card dd {
    font-size: 16px;
  }

  body[data-page="cases"] .case-feature {
    margin-top: 48px;
  }

  body[data-page="cases"] .case-feature-info,
  body[data-page="cases"] .case-feature-data {
    padding: 18px;
  }

  body[data-page="cases"] .case-feature-info h2,
  body[data-page="cases"] .case-feature-data h2 {
    margin-bottom: 12px;
  }

  body[data-page="cases"] .case-feature-info h3 {
    margin: 12px 0 6px;
  }

  body[data-page="cases"] .case-feature-data {
    gap: 12px;
  }

  body[data-page="cases"] .case-feature-data div {
    gap: 2px;
  }

  body[data-page="cases"] .case-feature-data strong {
    font-size: 20px;
  }

  body[data-page="cases"] .case-feature-data span {
    font-size: 12px;
  }

  body[data-page="cases"] .case-related-strip {
    gap: 16px;
    margin-top: 48px;
  }

  body[data-page="cases"] .case-related-strip article {
    gap: 12px;
    padding: 16px;
  }

  body[data-page="cases"] .case-related-strip h2 {
    margin-bottom: 16px;
  }

  body[data-page="cases"] .case-related-strip a {
    gap: 6px;
  }

  body[data-page="cases"] .case-related-strip img {
    height: 86px;
  }
}

@media (min-width: 961px) {
  body[data-page="support"] .service-banner {
    min-height: 252px;
  }

  body[data-page="support"] .service-banner__inner {
    min-height: 252px;
    padding-block: 34px;
  }

  body[data-page="support"] .service-banner-points {
    margin-top: 18px;
    gap: 20px;
  }

  body[data-page="support"] .service-nav-section {
    margin-top: -18px;
  }

  body[data-page="support"] .service-nav-card a {
    min-height: 96px;
    padding: 14px 10px 12px;
    gap: 3px;
  }

  body[data-page="support"] .service-nav-card span {
    width: 30px;
    height: 30px;
  }

  body[data-page="support"] .service-nav-card strong {
    font-size: 15px;
  }

  body[data-page="support"] .service-nav-card small {
    font-size: 11px;
    line-height: 1.25;
  }

  body[data-page="support"] .service-home-section,
  body[data-page="support"] .service-section {
    padding-block: 24px;
  }

  body[data-page="support"] .service-home-grid {
    gap: 20px;
  }

  body[data-page="support"] .service-card,
  body[data-page="support"] .service-side-card,
  body[data-page="support"] .service-help-card,
  body[data-page="support"] .service-list-panel {
    padding: 20px;
  }

  body[data-page="support"] .service-section-head,
  body[data-page="support"] .service-list-head,
  body[data-page="support"] .service-flow-section h2 {
    margin-bottom: 32px;
  }

  body[data-page="support"] .service-section-head h2,
  body[data-page="support"] .service-list-head h2,
  body[data-page="support"] .service-flow-section h2 {
    font-size: 22px;
  }

  body[data-page="support"] .service-accordion-list {
    gap: 8px;
  }

  body[data-page="support"] .service-accordion-list summary {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  body[data-page="support"] .service-accordion-list p {
    padding: 0 16px 16px;
    font-size: 13px;
    line-height: 1.6;
  }

  body[data-page="support"] .service-flow {
    margin-top: 0;
    gap: 12px;
  }

  body[data-page="support"] .service-flow div {
    gap: 5px;
  }

  body[data-page="support"] .service-flow div:not(:last-child)::after {
    top: 18px;
  }

  body[data-page="support"] .service-flow span {
    width: 54px;
    height: 54px;
  }

  body[data-page="support"] .service-flow strong {
    font-size: 14px;
  }

  body[data-page="support"] .service-flow small {
    font-size: 11px;
  }

  body[data-page="support"] .service-guarantee-grid div {
    min-height: 68px;
    padding: 10px 12px;
    gap: 2px 8px;
  }

  body[data-page="support"] .service-guarantee-grid span {
    width: 36px;
    height: 36px;
  }

  body[data-page="support"] .service-guarantee-grid span::before {
    width: 18px;
    height: 18px;
  }

  body[data-page="support"] .service-guarantee-grid strong {
    font-size: 15px;
  }

  body[data-page="support"] .service-guarantee-grid small {
    font-size: 11px;
  }

  body[data-page="support"] .service-support-strip {
    padding-block: 24px 20px;
  }

  body[data-page="support"] .service-support-strip .product-inquiry__inner {
    gap: 24px;
    padding: 24px 28px;
  }

  body[data-page="support"] .service-support-strip h2 {
    font-size: 28px;
  }

  body[data-page="support"] .service-support-strip p {
    font-size: 15px;
  }

  body[data-page="support"] .service-hotline strong {
    font-size: 20px;
  }
}

/* Hide pagination statistics on list pages while keeping navigation intact. */
body[data-page="news"] .pagination .page-status,
body[data-page="products"] .pagination .page-status,
body[data-page="products"] .news-pagination.service-pagination.video-pagination.pagination .page-status,
body[data-page="products"] .product-mobile-pagination .page-status,
body[data-page="cases"] .pagination .page-status,
body[data-page="cases"] .news-pagination .page-status,
body[data-page="cases"] .cases-mobile__pagination .page-status,
body[data-page="faq"] .pagination .page-status,
body[data-page="faq"] .news-pagination .page-status,
body[data-page="faq"] .service-pagination .page-status {
  display: none !important;
}
