/* ===================================================
   HARDTEC - 1:1 Replica of en.ygbzjc.cn Layout
   All measurements, colors, animations match reference
   =================================================== */

/* --- Brand color palette (Primary: #003A8C) --- */
:root {
  --blue-primary: #003A8C;             /* primary - section labels, card borders, primary brand */
  --blue-header: #003A8C;              /* header bg (same as primary) */
  --blue-hover: #1E5BB8;               /* nav underline hover (lighter variant) */
  --blue-navy: #002B67;                /* dropdown hover (darker variant) */
  --blue-gradient-a: #0A4FB0;          /* about gradient start (mid light tone) */
  --blue-gradient-b: #002B67;          /* about gradient end (dark tone) */
  --blue-deep: #002B67;                /* advantages bottom line (dark tone) */
  --blue-service: #0A4FB0;             /* floating widget (mid light tone, keeps it visible) */
  --blue-hi: #1E5BB8;                  /* products bullet active (light tone) */
  --blue-arrow: #0A4FB0;               /* banner arrow hover text (mid light tone) */
  --orange: rgba(241,141,21,1);        /* #F18D15 - CTA buttons, divider */
  --orange-hover: #DBAB65;             /* inquiry btn hover */
  --green-hover: #6eb847;              /* industry nav arrow hover */
  --cyan-hover: #1E5BB8;               /* footer link hover (light blue) */
  --text-dark: rgba(51,51,51,1);       /* #333 main headings */
  --text-body: rgba(102,102,102,1);    /* #666 body text */
  --text-muted: rgba(107,107,107,1);   /* #6B6B6B card desc */
  --text-card: rgb(33,37,41);          /* #212529 advantage title */
  --bg-gray: rgba(242,242,242,1);      /* #F2F2F2 news bg */
  --bg-card: rgba(245,245,245,1);      /* #F5F5F5 advantage cards */
  --bg-bullet: #EAF0FA;                /* products bullet bg (light tint of primary) */
  --dark: rgba(17,26,44,1);            /* #111A2C footer bg */
  --white: #FFFFFF;

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-arial: arial, sans-serif;
  --container: 1600px;
  --width: 94%;
  --header-h: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font); font-weight: 700; color: var(--text-dark); line-height: 1.3; }

/* ===================================================
   HEADER - Fixed 100px, blue, flex layout
   Reference: #c_navigation_006_P_4512
   =================================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 11;
  background: var(--blue-header);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header__inner {
  display: flex;
  width: var(--width);
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  flex: 0 0 20%;
  max-width: 250px;
  align-self: center;
  display: flex;
  align-items: center;
}

/* Both logo paths must obey the nav-bar height cap:
   - .header__logo-img  : artwork bundled with the theme
   - .custom-logo       : printed by WordPress' the_custom_logo()
   Without the .custom-logo rule an uploaded logo renders at its natural size
   and blows out the header layout. Desktop 72px stays under the nav link
   line-height floor (80px) and inside the 100px bar; mobile caps at 46px. */
.header__logo-img,
.header__logo .custom-logo {
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Last-resort text logo, used only when no image file is available at all. */
.header__logo-text {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
}

.header__nav a {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  padding: 0 clamp(0.8rem, 0.398rem + 1.14vw, 1.25rem);
  line-height: clamp(5rem, 4.545rem + 2.27vw, 6.25rem);
  position: relative;
  transition: all 0.3s;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue-hover);
  transition: width 0.3s;
  transform: translateX(-50%);
}

.header__nav a:hover { font-weight: 700; }
.header__nav a:hover::after { width: 50%; }

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 20px;
}

.header__phone {
  display: none;
}

.header__phone svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* INQUIRY button - highlighted CTA with orange gradient + pulse */
.header__inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 12px 26px;
  border: 2px solid #003A8C;
  border-radius: 30px;
  background: linear-gradient(135deg, #003A8C 0%, #003A8C 55%, #003A8C 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font);
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0,58,140,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
  animation: inquiry-pulse 2.4s ease-in-out infinite;
}

.header__inquiry-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.header__inquiry-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px rgba(0,58,140,0.65), inset 0 1px 0 rgba(255,255,255,0.35);
  border-color: #003A8C;
  animation-play-state: paused;
}
/* Quote button hover text follows the nav palette per header state */
.header__inquiry-btn:hover { color: #9AA0A6; }
body:has(.banner) .header:not(.header--scrolled) .header__inquiry-btn:hover { color: #003A8C; }

.header__inquiry-btn:hover::before {
  left: 100%;
}

.header__inquiry-btn:active {
  transform: translateY(0) scale(0.98);
}

.header__inquiry-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

@keyframes inquiry-pulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(0,58,140,0.45), 0 0 0 0 rgba(0,58,140,0.7), inset 0 1px 0 rgba(255,255,255,0.25);
  }
  50% {
    box-shadow: 0 4px 14px rgba(0,58,140,0.45), 0 0 0 10px rgba(0,58,140,0), inset 0 1px 0 rgba(255,255,255,0.25);
  }
}

.header__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.header__toggle span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,58,140,0.98);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav--open { opacity: 1; pointer-events: all; }
.mobile-nav__close { position: absolute; top: 24px; right: 24px; font-size: 28px; color: #fff; cursor: pointer; background: none; border: none; }
.mobile-nav__links { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-nav__links a { font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.9); }

/* ===================================================
   BANNER - Full width slider (Reference: #c_banner_028)
   =================================================== */
.banner {
  width: 100%; height: 850px;
  position: relative; overflow: hidden;
  margin-top: 0; background: var(--blue-navy);
}
.banner__slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s var(--ease); }
.banner__slide--active { opacity: 1; }
.banner__slide-bg { width: 100%; height: 100%; object-fit: cover; display: block; }
.banner__slide--active .banner__slide-bg { animation: bannerZoom 14s var(--ease) forwards; }
/* YouTube video background layer: covers the slide, sits above the image
   but below the overlay (z-index:1) and content (z-index:3). The iframe is
   oversized with the classic viewport-cover trick so the 16:9 video always
   fills the banner regardless of its aspect ratio; excess is clipped by the
   slide's overflow:hidden. */
.banner__slide-video { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.banner__slide-video iframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  border: 0; pointer-events: none;
}
@keyframes bannerZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.banner__overlay { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.35); }
.banner__content {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: var(--width); max-width: var(--container); z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}
.banner__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: #003A8C; font-size: var(--ht-eyebrow-size, 14px); font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px;
}
.banner__eyebrow::before { content: ''; width: 44px; height: 2px; background: #003A8C; }
.banner__eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: #003A8C; }
.banner__title {
  font-size: var(--ht-title-size, clamp(44px, 6vw, 92px)); font-weight: 800; line-height: 1.06;
  letter-spacing: -1px; color: var(--white); max-width: 900px;
  margin-bottom: 26px; font-family: var(--font);
}
.banner__desc {
  font-size: var(--ht-desc-size, 17px); line-height: 1.75; color: rgba(255,255,255,0.85);
  max-width: 560px; margin-bottom: 42px; font-family: var(--font);
}.banner__cta { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.banner__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 17px 40px; border-radius: 999px;
  background: #003A8C; color: var(--white);
  font-size: var(--ht-btn-size, 16px); font-weight: 700; transition: all 0.3s var(--ease);
}
.banner__btn:hover { background: #002B67; transform: translateY(-2px); }
.banner__call { display: inline-flex; align-items: center; gap: 14px; color: var(--white); }
.banner__call-icon {
  width: 56px; height: 56px; flex: 0 0 56px; border-radius: 50%;
  background: var(--white); color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
}
.banner__call-text { display: flex; flex-direction: column; gap: 2px; }
.banner__call-text small { font-size: 14px; color: rgba(255,255,255,0.8); }
.banner__call-text strong { font-size: 18px; font-weight: 800; color: var(--white); }
.banner__watermark {
  position: absolute; left: 0; right: 0; bottom: -0.14em;
  z-index: 2; overflow: hidden; pointer-events: none; user-select: none;
}
.banner__watermark-track { display: flex; width: max-content; animation: bannerMarquee 36s linear infinite; }
.banner__watermark-track span {
  padding-right: 0.6em;
  font-size: var(--ht-watermark-size, clamp(96px, 15vw, 220px)); font-weight: 800; line-height: 1;
  letter-spacing: 0.02em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
}
@keyframes bannerMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
body:has(.banner) .header { background: transparent; }
body:has(.banner) .header--scrolled { background: var(--blue-header); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
/* Logo flips to pure white whenever the solid blue bar is showing:
   - banner pages after scroll (.header--scrolled)
   - every non-banner page (header is solid from the top)
   brightness(0) invert(1) turns any uploaded artwork into a white
   silhouette, so no second white logo asset is needed. */
.header__logo-img,
.header__logo .custom-logo { transition: filter .35s var(--ease); }
.header--scrolled .header__logo-img,
.header--scrolled .header__logo .custom-logo,
body:not(:has(.banner)) .header__logo-img,
body:not(:has(.banner)) .header__logo .custom-logo { filter: brightness(0) invert(1); }
@media (max-width: 1024px) {
  .banner__title { font-size: clamp(38px, 7vw, 60px); }
}
@media (max-width: 768px) {
  .banner { height: 88vh; }
  .banner__call { display: none; }
  .banner__watermark-track span { font-size: 90px; }
}

/* ===================================================
   SECTION HEADER PATTERN (used across Products/Advantages/News)
   Label 18px #003A8C + Title 40px #333
   =================================================== */
.section-header {
  position: relative;
  text-align: center;
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}
/* Outlined watermark word behind every section header (solari pattern) */
.section-header__watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; margin: 0; text-align: center; z-index: 0;
  font-size: clamp(64px, 8vw, 130px); font-weight: 800; line-height: 1;
  letter-spacing: 4px; text-transform: uppercase;
  white-space: nowrap; overflow: hidden;
  color: transparent; -webkit-text-stroke: 1px rgba(0,58,140,0.10);
  pointer-events: none; user-select: none;
}
.section-header__label {
  position: relative; z-index: 1;
  font-size: 18px;
  color: var(--blue-primary);
  font-weight: 700;
  line-height: 1;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 12px;
  text-align: center;
  font-family: var(--font);
}
.section-header__label em {
  font-style: normal;
  background: var(--blue-primary); color: var(--white);
  padding: 6px 10px; border-radius: 3px;
  font-size: 14px; letter-spacing: 1px; line-height: 1;
}
.section-header__title {
  position: relative; z-index: 1;
  font-size: 40px;
  color: var(--text-dark);
  font-weight: 800;
  text-align: center;
  font-family: var(--font);
}
@media (max-width: 768px) {
  .section-header__watermark { font-size: 52px; letter-spacing: 2px; }
}

/* ===================================================
   PRODUCTS - Pure white bg, 2-row x 4-col grid per page
   Draggable pagination (8 products per page)
   =================================================== */
.products {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.products__inner {
  position: relative;
  z-index: 2;
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}

/* Solari services pattern: icon cards row, hover reveals category photo */
.products__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
  margin-top: 50px;
}

/* Bento mosaic: large left tile (2 rows) + wide top-right + 3 small bottom-right */
.product-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #eef1f5;
}

.product-tile:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
.product-tile:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
.product-tile:nth-child(3) { grid-column: 4 / 5; grid-row: 2 / 3; }
.product-tile:nth-child(4) { grid-column: 5 / 6; grid-row: 2 / 3; }
.product-tile:nth-child(5) { grid-column: 6 / 7; grid-row: 2 / 3; }

.product-tile__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product-tile:hover .product-tile__img { transform: scale(1.06); }

.product-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 34%, rgba(0,0,0,0) 64%);
}

.product-tile__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 24px 26px 28px;
}

.product-tile__title {
  margin: 0 0 16px;
  font-size: 22px; font-weight: 800; line-height: 1.3;
  color: var(--white);
}

.product-tile:nth-child(1) .product-tile__title { font-size: 32px; }
.product-tile:nth-child(2) .product-tile__title { font-size: 26px; }

.product-tile__btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #003A8C;
  color: var(--white);
  font-size: 13px; font-weight: 600;
  transition: background 0.3s var(--ease);
}

.product-tile:hover .product-tile__btn,
.product-tile__btn:hover { background: #002B67; }

@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 280px; }
  .product-tile:nth-child(1),
  .product-tile:nth-child(2),
  .product-tile:nth-child(5) { grid-column: 1 / -1; grid-row: auto; }
  .product-tile:nth-child(3),
  .product-tile:nth-child(4) { grid-column: auto; grid-row: auto; }
}

@media (max-width: 640px) {
  .products__grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .product-tile:nth-child(1),
  .product-tile:nth-child(2),
  .product-tile:nth-child(3),
  .product-tile:nth-child(4),
  .product-tile:nth-child(5) { grid-column: 1 / -1; grid-row: auto; }
}
/* MORE PRODUCTS button - Reference: 180px, padding 10px 8px, border 1px #666, radius 25px */
.btn-more {
  display: block;
  width: 180px;
  padding: 10px 8px;
  border: 1px solid var(--text-body);
  border-radius: 25px;
  font-size: 15px;
  color: var(--text-body);
  background: transparent;
  margin: 30px auto 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font);
}

.btn-more:hover { border-color: var(--blue-primary); color: var(--blue-primary); }

/* ===================================================
   STATS - Reference: #c_static_001_P_71906
   bg-attachment: fixed, padding-top:4%, padding-bottom:18%
   =================================================== */
.stats {
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80') center center / cover no-repeat;
  background-attachment: fixed;
  padding-top: 4%;
  padding-bottom: 18%;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}

.stats__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--width);
  max-width: var(--container);
  margin: auto;
}

.stats__left { flex: 1; }

/* Reference: clamp(30px, 2.4vw, 48px), #fff, bold, line-height 1.5 */
.stats__heading {
  font-size: clamp(30px, 2.4vw, 48px);
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

/* Reference: border-top 3px solid #F18D15, width 60px */
.stats__divider {
  border: none;
  border-top: 3px solid var(--orange);
  width: 60px;
  margin: 20px 0 0 0;
}

/* Reference: flex 0 0 40%, align-self center */
/* 3 stat-items right-aligned in a single horizontal row */
.stats__right {
  flex: 0 0 50%;
  align-self: center;
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.stat-item { text-align: left; }

/* Reference: height 60px, line-height 60px, font-size 3.4vw, #fff */
.stat-item__value {
  height: 60px;
  line-height: 60px;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
}

.stat-item__value span { font-size: 18px; }

/* Reference: font-size 16px, #fff, line-height 2, margin-top 10px */
.stat-item__label {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  margin-top: 10px;
}

/* ===================================================
   ABOUT - Reference: #c_static_001_P_71907
   margin-top: -14%, blue gradient, border-bottom-left-radius: 50px
   =================================================== */
.about {
  margin-top: -14%;
  position: relative;
  z-index: 3;
  min-height: 300px;
  padding-bottom: 5%;
}

/* Reference: display flex, width 96%, max-width 1600px, margin auto */
.about__inner {
  display: flex;
  width: 96%;
  max-width: var(--container);
  margin: auto;
  background: linear-gradient(to right, var(--blue-gradient-a) 0%, var(--blue-gradient-b) 100%);
  border-bottom-left-radius: 50px;
  overflow: hidden;
}

/* Reference: padding 0 2%, align-self center */
.about__text {
  flex: 1;
  padding: 60px 2%;
  align-self: center;
}

.about__text-inner {
  width: 90%;
  margin: auto;
}

/* Reference: clamp(24px, 2.2vw, 42px), #fff, bold, margin-bottom 15px */
.about__title {
  font-size: clamp(24px, 2.2vw, 42px);
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Reference: font-size 16px, #fff, line-height 2, text-align justify, line-clamp 4 */
.about__desc {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  text-align: justify;
}

.about__desc p { margin-bottom: 12px; }

/* Reference: 180x45, radius 22, bg #F18D15, margin-top 5%, complex hover */
.about__btn {
  display: inline-block;
  width: 180px;
  height: 45px;
  line-height: 45px;
  border-radius: 22px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  border: none;
  text-align: center;
  margin-top: 5%;
  cursor: pointer;
  position: relative;
  transition: all 0.4s;
  font-family: var(--font);
  z-index: 1;
  overflow: hidden;
}

.about__btn:hover { color: #1857c5; background: transparent; }

.about__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid #1857c5;
  border-radius: 22px;
  transform: scale(0);
  transition: transform 0.4s;
  z-index: -1;
}

.about__btn:hover::before { transform: scale(1); }

/* Reference: flex 0 0 50%, padding-bottom 60% (aspect ratio trick) */
.about__image {
  flex: 0 0 50%;
  position: relative;
  width: 50%;
  padding-bottom: 30%;
  overflow: hidden;
}

.about__image img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.about__image:hover img { transform: translate(-50%, -50%) scale(1.05); }

/* ===================================================
   INDUSTRY - full-bleed draggable case carousel
   (solari case-studies pattern: watermark head + swipe row + dots)
   =================================================== */
.industry {
  padding: 90px 0 70px;
  background: #f5f7fa;
  overflow: hidden;
}

.industry .section-header { margin-bottom: 55px; }

/* Viewport-wide carousel window; cards overflow both edges while dragging */
.industry__carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.industry__carousel.is-dragging { cursor: grabbing; }

.industry__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 max(3vw, calc((100vw - 1600px) / 2));
  will-change: transform;
}

.industry__track.is-dragging { transition: none; }

/* Three wide cards per view on desktop; the rest reveal by sliding */
.industry-case {
  flex: 0 0 calc((100vw - 2 * max(3vw, (100vw - 1600px) / 2) - 40px) / 3);
  width: calc((100vw - 2 * max(3vw, (100vw - 1600px) / 2) - 40px) / 3);
  height: 560px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.industry-case__img { position: absolute; inset: 0; }

.industry-case__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.industry-case:hover .industry-case__img img { transform: scale(1.05); }

.industry-case::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}

/* White info box sliding up on hover (always visible on touch devices) */
.industry-case__box {
  position: absolute;
  left: 20px; right: 20px; bottom: 24px;
  z-index: 2;
  background: var(--white);
  border-radius: 6px;
  padding: 18px 22px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.industry-case:hover .industry-case__box {
  opacity: 1;
  transform: none;
}

@media (hover: none) {
  .industry-case__box { opacity: 1; transform: none; }
}

.industry-case__cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.industry-case__cat::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--text-body);
}

.industry-case__title {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.industry__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.industry__dot {
  width: 8px; height: 8px;
  padding: 0; border: none;
  border-radius: 50%;
  background: rgba(0, 58, 140, 0.2);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.industry__dot.is-active {
  background: var(--blue-primary);
  transform: scale(1.25);
}

@media (max-width: 1024px) {
  .industry-case {
    flex: 0 0 calc((100vw - 6vw - 20px) / 2);
    width: calc((100vw - 6vw - 20px) / 2);
    height: 460px;
  }
}

@media (max-width: 640px) {
  .industry { padding: 60px 0 50px; }
  .industry-case { flex: 0 0 94vw; width: 94vw; height: 420px; }
}

/* ===================================================
   ADVANTAGES - Reference: #c_static_634
   padding 5% 0, 3-col flex, cards with special borders
   =================================================== */
.advantages {
  padding-top: 5%;
  padding-bottom: 5%;
  background: transparent;
}

.advantages__inner {
  width: var(--width);
  max-width: var(--container);
  margin: auto;
}

/* Reference: display flex, margin 40px auto 0 */
/* 5 cards in a row - tighter gap */
.advantages__grid {
  display: flex;
  width: var(--width);
  max-width: var(--container);
  margin: 40px auto 0;
  gap: 15px;
}

/* Reference: flex 1, max-width 95%, margin auto */
.advantage-card {
  flex: 1;
  max-width: 95%;
  margin: auto;
  border-top-left-radius: 20px;
  border-bottom: 5px solid var(--blue-primary);
  background-color: var(--bg-card);
  transition: all 0.4s cubic-bezier(0.42, 0, 1, 1);
  position: relative;
  overflow: hidden;
}

/* Reference: hover margin-top -10px */
.advantage-card { background: #fff; transition: margin-top 0.4s, background 0.4s, box-shadow 0.4s; }
.advantage-card:hover { margin-top: -10px; background: #f0f4ff; box-shadow: 0 8px 24px rgba(0,58,140,0.12); }

/* Reference: margin 80px 30px 50px (inner content) */
/* Tighter padding for 5-card layout */
.advantage-card__inner {
  margin: 60px 20px 40px;
  position: relative;
  z-index: 2;
}

/* Reference: transition all 0.4s, hover rotateY(180deg) */
.advantage-card__icon {
  width: 60px;
  height: 60px;
  transition: all 0.4s;
  color: var(--blue-primary);
  display: inline-block;
  position: relative;
}
.advantage-card__icon-outline { transition: opacity 0.3s; }
.advantage-card__icon-solid { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.3s; }
.advantage-card:hover .advantage-card__icon-outline { opacity: 0; }
.advantage-card:hover .advantage-card__icon-solid { opacity: 1; }
.advantage-card:hover .advantage-card__icon { transform: rotateY(180deg); }

/* Reference: font-size 24px, Manrope-Medium, margin 24px 0 18px, color #212529 */
/* Smaller title for 5-card layout */
.advantage-card__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-card);
  margin: 20px 0 14px;
  font-family: var(--font);
  transition: font-weight 0.3s;
}
.advantage-card:hover .advantage-card__title { font-weight: 700; }

/* Reference: font-size 15px, #6B6B6B, line-height 1.8, height 56px */
/* Fixed height for consistent card sizing */
.advantage-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  height: 72px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Reference: border-top 7px #155EAB, width 0 -> animated on hover */
.advantage-card__line {
  border: none;
  border-top: 7px solid var(--blue-deep);
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.6s;
  z-index: 3;
  margin: 0;
}

.advantage-card:hover .advantage-card__line { width: 100%; }

/* ===================================================
   NEWS - Reference: #c_grid-1669110401388
   bg #F2F2F2, padding-top 5% padding-bottom 70px
   =================================================== */
.news {
  background-color: var(--bg-gray);
  padding-top: 5%;
  padding-bottom: 70px;
}

.news__inner {
  width: var(--width);
  max-width: var(--container);
  margin: auto;
}

/* Solari blog pattern: 1 featured vertical card + horizontal side cards */
.news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: var(--width);
  max-width: var(--container);
  margin: 50px auto 0;
  align-items: stretch;
}
.news__col-main,
.news__col-side {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-card {
  display: block;
  background: var(--white);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }
.news-card__img { border-radius: 4px; overflow: hidden; }
.news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card__img img { transform: scale(1.06); }
.news-card--featured .news-card__img { aspect-ratio: 16 / 10; flex: 1 1 auto; min-height: 220px; }
/* Height parity: featured card and side cards flex-fill their columns */
.news__col-main .news-card--featured { flex: 1 1 auto; display: flex; flex-direction: column; }
.news-card__body { padding-top: 18px; }
.news-card__meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,58,140,0.12);
  font-size: 14px; color: var(--text-muted);
}
.news-card__meta-item { display: inline-flex; align-items: center; gap: 8px; }
.news-card__meta-item svg { color: var(--blue-primary); flex: none; }
.news-card__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-dark);
  margin: 0 0 18px;
  transition: color 0.3s;
}
.news-card:hover .news-card__title { color: var(--blue-primary); }
.news-card__excerpt {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: -6px 0 16px;
}
.news-card__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 26px; border-radius: 999px;
  background: var(--blue-primary); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.news-card:hover .news-card__btn { background: var(--blue-navy); }
.news-card__btn--outline {
  background: transparent;
  color: var(--text-dark);
  box-shadow: inset 0 0 0 1px rgba(0,58,140,0.25);
}
.news-card:hover .news-card__btn--outline { background: var(--blue-primary); color: #fff; }
/* Side cards: horizontal layout (image left, content right) */
.news-card--side { display: flex; gap: 20px; align-items: stretch; flex: 1 1 0%; }
.news-card--side .news-card__img { width: 44%; flex: none; }
.news-card--side .news-card__img img { min-height: 190px; }
.news-card--side .news-card__body { padding-top: 4px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.news-card--side .news-card__meta { gap: 16px; }
.news-card--side .news-card__title { font-size: 20px; margin-bottom: 16px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; min-height: 2.7em; }
@media (max-width: 1024px) {
  .news__grid { grid-template-columns: minmax(0, 1fr); }
  .news__col-main, .news__col-side { min-width: 0; }
}
@media (max-width: 768px) {
  .news-card--side { flex-direction: column; }
  .news-card--side .news-card__img { width: 100%; aspect-ratio: 16 / 9; }
  .news-card--side .news-card__img img { min-height: 0; }
  /* aspect-ratio + min-height couple a 352px min-content width; drop it on phones */
  .news-card--featured .news-card__img { min-height: 0; }
  .news-card { min-width: 0; }
}

/* ===================================================
   INQUIRY CTA - slim solid-color bar; the full form
   lives in the quote modal (see QUOTE MODAL block)
   =================================================== */
.inquiry {
  padding: 58px 0;
  background: var(--blue-primary);
}

.inquiry__inner {
  width: var(--width);
  max-width: var(--container);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.inquiry__info { max-width: 760px; }

.inquiry__info h2 {
  font-size: clamp(24px, 2.6vw, 38px);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.inquiry__info > p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
  line-height: 1.8;
}

.inquiry__action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.inquiry__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.inquiry__cta-btn svg { transition: transform 0.3s var(--ease); }

.inquiry__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.inquiry__cta-btn:hover svg { transform: translateX(4px); }

.inquiry__minor {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}

.inquiry__minor:hover { color: #fff; }

@media (max-width: 900px) {
  .inquiry { padding: 44px 0; }
  .inquiry__inner { flex-direction: column; align-items: center; text-align: center; gap: 26px; }
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form__group { display: flex; flex-direction: column; }
.form__group--full { grid-column: span 2; }

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form__label span { color: #dc3545; }

.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font);
  border: 1.5px solid #E0E0E0;
  border-radius: 6px;
  background: #fff;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}

.form__input:focus, .form__select:focus, .form__textarea:focus { border-color: var(--blue-primary); }
.form__textarea { min-height: 100px; resize: vertical; }

.form__submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--blue-header);
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 15px;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.form__submit-btn:hover { background: var(--blue-primary); }

/* ===================================================
   FOOTER - Reference: #c_navigation_163
   bg #111A2C, multi-column layout
   =================================================== */
/* =====================================================
   PARTNERS LOGO STRIP (nested under the advantages cards)
   ===================================================== */
.partners {
  padding: 70px 0 0;
  background: transparent;
}

.partners__inner {
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.partners__inner.is-dragging { cursor: grabbing; }

/* Logo row spans exactly the container width: 5 slots per view,
   first/last logo flush with the edges of the cards above */
.partners__track {
  display: flex;
  gap: 56px;
  width: max-content;
}

.partners__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__item img {
  max-width: 100%;
  width: auto;
  max-height: 54px;
  height: auto;
  opacity: 0.8;
  filter: grayscale(30%);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease), transform 0.3s var(--ease);
}

.partners__item:hover img,
.partners__item a:hover img {
  opacity: 1;
  filter: none;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .partners { padding: 48px 0 0; }
  .partners__track { gap: 36px; }
  .partners__item img { max-height: 44px; }
}

/* =====================================================
   CERTIFICATES - qualification card slider (solari project-row pattern)
   ===================================================== */
.certificates {
  padding: 90px 0 90px;
  background: transparent;
}

.certificates .section-header { margin-bottom: 55px; }

/* Split head per reference: title left, intro paragraph right */
.certificates__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}

.certificates__head-main { max-width: 520px; }

.certificates__head .section-header__label { justify-content: flex-start; }

.certificates__head .section-header__title { text-align: left; }

.certificates__intro {
  max-width: 440px;
  padding-bottom: 6px;
}

.certificates__intro p {
  margin: 0;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.9;
}

.certificates__intro-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
}

.certificates__intro-arrow {
  width: 46px; height: 46px;
  border: 1px solid rgba(18, 35, 60, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.certificates__intro-link:hover .certificates__intro-arrow {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
}

@media (max-width: 900px) {
  .certificates__head { flex-direction: column; align-items: flex-start; gap: 24px; }
}

.certificates__inner {
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}

.certificates__carousel {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.certificates__carousel.is-dragging { cursor: grabbing; }

.certificates__track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.cert-card {
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(10, 30, 60, 0.06);
}

.cert-card img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.cert-card:hover img { transform: scale(1.05); }

/* Dot pagination inside a white pill (reference layout) */
.certificates__dots {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 36px auto 0;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(10, 30, 60, 0.08);
}

.certificates__dot {
  width: 8px; height: 8px;
  padding: 0; border: none;
  border-radius: 50%;
  background: rgba(0, 58, 140, 0.18);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.certificates__dot.is-active {
  background: var(--blue-primary);
  transform: scale(1.25);
}

@media (max-width: 1024px) {
  .cert-card img { height: 380px; }
}

@media (max-width: 640px) {
  .certificates { padding: 60px 0 60px; }
  .cert-card img { height: 340px; }
}
/* ===================================================
   FAQ - accordion left + stacked images right
   =================================================== */
.faq {
  padding: 90px 0;
  background: #f7f9fc;
  overflow: hidden;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: stretch;
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}

.faq__head {
  width: 100%;
  margin: 0 0 38px;
  text-align: left;
}

.faq__head .section-header__label { justify-content: flex-start; }
.faq__head .section-header__title { text-align: left; }

.faq-item {
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(10, 30, 60, 0.06);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-dark);
  text-align: left;
}

.faq-item__icon {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0, 58, 140, 0.08);
  color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--blue-primary);
  color: var(--white);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-item__a p {
  margin: 0;
  padding: 0 56px 20px 22px;
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.85;
}

.faq__media {
  display: flex;
}

.faq__media img {
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.faq__media-main { width: 100%; height: 100%; min-height: 420px; }

@media (max-width: 900px) {
  .faq { padding: 60px 0; }
  .faq__inner { grid-template-columns: 1fr; gap: 44px; }
  .faq__media-main { height: 320px; min-height: 0; }
}
.footer {
  background: #1a1a1a;
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr;
  gap: 40px;
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 40px;
}

/* Col 1: Brand */
.footer__col--brand {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 16px;
}

/* Render the default (dark) logo as a white silhouette on the dark footer */
.footer__logo--invert {
  filter: brightness(0) invert(1);
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0 0 20px;
}

.footer__cta-btn {
  display: inline-block;
  background: #003A8C;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
  margin-bottom: 24px;
  width: fit-content;
}

.footer__cta-btn:hover {
  background: #002B67;
}

.footer__social-circle {
  display: flex;
  gap: 12px;
}

.footer__social-circle a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: background 0.3s, color 0.3s;
}

.footer__social-circle a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.footer__social-circle svg {
  width: 18px;
  height: 18px;
}

/* Col 2-4: Links */
.footer__col-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.footer__col-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col-links li {
  margin-bottom: 4px;
}

.footer__col-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.3s;
}

.footer__col-links a:hover {
  color: #fff;
}

.footer__all-link {
  margin-top: 8px;
  font-weight: 500;
}

/* Contact list with icons */
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__contact-icon--pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8772E'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.footer__contact-icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8772E'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.footer__contact-icon--email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.5)'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer__contact-icon--whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325D366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.footer__contact-list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__contact-list a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer__bottom {
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}.footer__provider {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: right;
  transition: color 0.3s;
}

.footer__provider:hover { color: #fff; }

/* ===================================================
   FOOTER SERVICE BAR (bottom hotline strip)
   Reference: .footer_service - static, bg #fff, color #333
   =================================================== */
.footer-service {
  background: #fff;
  color: var(--text-dark);
  padding: 20px 0;
  border-top: 1px solid #eee;
  font-size: 13px;
}

.footer-service__inner {
  width: var(--width);
  max-width: var(--container);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-service__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
}

.footer-service__item svg {
  width: 20px; height: 20px;
  fill: var(--blue-primary);
}

.footer-service__item a { color: var(--blue-primary); font-weight: 600; }
.footer-service__item a:hover { color: var(--blue-hover); }

.footer-service__divider {
  width: 1px;
  height: 20px;
  background: #ddd;
}

/* ===================================================
   FLOATING SERVICE WIDGET
   Reference: .pl_service2 .service_item bg #0A4FB0
   =================================================== */
.float-service {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
}

/* Reference: bg #0A4FB0, hover #003A8C */
.float-service__item {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--blue-service);
  color: rgba(255,255,255,0.8);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.float-service__item:hover { background: var(--blue-primary); color: #fff; }

.float-service__item--top { background: var(--orange); }
.float-service__item--top:hover { background: #d97b0f; }

/* Tooltip on hover */
.float-service__tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  margin-right: 8px;
}

.float-service__item:hover .float-service__tooltip { opacity: 1; }

/* ===================================================
   ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal--visible { opacity: 1; transform: translateY(0); }

/* Ripple animation for stats video button (reference) */
@keyframes ripple-wave1 {
  0% { box-shadow: 0 0 0 0 rgba(241,141,21,0.6), 0 0 0 10px rgba(241,141,21,0.3), 0 0 0 20px rgba(241,141,21,0.1); }
  100% { box-shadow: 0 0 0 10px rgba(241,141,21,0.3), 0 0 0 20px rgba(241,141,21,0.1), 0 0 0 30px rgba(241,141,21,0); }
}

/* ===================================================
   RESPONSIVE - Reference breakpoints: 768 / 1024 / 1440
   =================================================== */
@media (max-width: 1440px) {
  .header__nav a { font-size: 16px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 70px; }

  .header__nav { display: none; }
  .header__toggle { display: flex; }
  .header__logo-img, .header__logo .custom-logo { height: 46px; }
  .header__phone { display: none; }
  .header__right { margin-left: auto; gap: 12px; }
  .header__inquiry-btn {
    min-width: auto;
    padding: 10px 18px;
    font-size: 13px;
    letter-spacing: 1px;
    animation: none;
  }
  .header__nav a { font-size: 14px; }


  .section-header__title { font-size: 40px; }

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

  .stats__inner { flex-direction: column; gap: 30px; text-align: center; }
  .stats__right { flex: none; justify-content: center; gap: 20px; }
  .stats__divider { margin: 20px auto 0; }
  .stat-item { text-align: center; }

  .about__inner { flex-direction: column; }
  .about__image { flex: none; width: 100%; padding-bottom: 50%; }
  .about { margin-top: -8%; }
  .about__text { padding: 40px 5%; }

  .industry__inner { flex-direction: column; padding: 0 4%; }
  .industry__left { width: 100%; padding-right: 0; margin-bottom: 30px; }
  .industry__right { width: 100%; }
  .industry-card { flex: 0 0 320px; width: 320px; height: 445px; }
  .industry-card__number { font-size: 30px; }
  .industry-card__title { font-size: 18px; }

  .advantages__grid { flex-direction: column; }
  .advantage-card { max-width: 100%; }

  .news__grid { flex-direction: column; }
  .news__col-main, .news__col-side { width: 100%; padding: 0; }

  .inquiry__inner { flex-direction: column; }

  .footer__inner { flex-direction: column; width: 90%; }
  .footer__nav { flex-wrap: wrap; gap: 30px; padding-bottom: 40px; }
  .footer__contact { flex: none; padding-bottom: 40px; }
}

@media (max-width: 768px) {
  .banner__content { width: 85%; }

  .header__inquiry-btn {
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.8px;
    border-radius: 24px;
    gap: 6px;
  }
  .header__inquiry-icon { width: 14px; height: 14px; }

  .products { padding: 50px 0; }
  .products__page { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); gap: 16px; }
  .section-header__title { font-size: 24px; }

  .stats { background-attachment: scroll; padding-bottom: 10%; }
  .stats__heading { font-size: 24px; }
  .stats__right { gap: 14px; flex-wrap: wrap; }
  .stat-item__value { font-size: 28px; height: 40px; line-height: 40px; }
  .stat-item__label { font-size: 14px; }

  .about { margin-top: -30px; }
  .about__inner { border-bottom-left-radius: 24px; }
  .about__text { padding: 30px 5%; }

  .industry { padding-bottom: 60px; background-size: 40%; }
  .industry-card { flex: 0 0 280px; width: 280px; height: 390px; }
  .industry-card__number { font-size: 24px; }
  .industry-card__title { font-size: 14px; }
  .industry-card__content { bottom: 12px; padding: 0 12px; }

  .advantage-card__inner { margin: 40px 20px 30px; }

  .news { padding-bottom: 30px; }
  .news-card { flex-direction: column; }
  .news-card__img { flex: none; width: 100%; height: 180px; }

  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

  .float-service { top: auto; bottom: 80px; transform: none; }

  .form__row { grid-template-columns: 1fr; }
  .form__group--full { grid-column: span 1; }

  .footer-service__inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-service__divider { display: none; }
}

/* ===================================================
   COMPANY INTRO - About block + 4 selling-point cards
   Cards sit BELOW the about content (per client req).
   Reference: solari about; brand blue replaces green.
   =================================================== */
.intro { position: relative; padding: 110px 0 90px; background: var(--bg-gray); overflow: hidden; }
.intro__watermark {
  position: absolute; top: 60px; left: 4%; z-index: 0;
  font-size: clamp(80px, 10vw, 150px); font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(0,58,140,0.10);
  pointer-events: none; user-select: none;
}
.intro__inner {
  position: relative; z-index: 1;
  width: var(--width); max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 60px;
}
.intro__left { flex: 1 1 50%; }
.intro__right { flex: 1 1 45%; position: relative; display: flex; align-items: center; gap: 24px; }
.intro__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  color: var(--blue-primary); text-transform: uppercase; margin-bottom: 22px;
}
.intro__eyebrow em { font-style: normal; background: var(--blue-primary); color: var(--white); padding: 6px 12px; }
.intro__title { font-size: clamp(32px, 3.4vw, 52px); font-weight: 800; line-height: 1.15; color: var(--text-dark); margin-bottom: 26px; }
.intro__desc { font-size: 16px; line-height: 1.8; color: var(--text-body); margin-bottom: 36px; max-width: 560px; }
.intro__stats { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 40px; }
.intro__stat { display: flex; align-items: center; gap: 14px; }
.intro__stat-icon { color: var(--blue-primary); display: flex; }
.intro__stat-text { display: flex; flex-direction: column; }
.intro__stat-text strong { font-size: 26px; font-weight: 800; color: var(--blue-primary); line-height: 1.2; }
.intro__stat-text span { font-size: 14px; color: var(--text-body); }
.intro__cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.intro__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px; border-radius: 4px;
  background: var(--blue-primary); color: var(--white);
  font-size: 15px; font-weight: 700; transition: all 0.3s var(--ease);
}
.intro__btn:hover { background: var(--blue-hover); transform: translateY(-2px); }
.intro__call { display: inline-flex; align-items: center; gap: 12px; }
.intro__call-icon {
  width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%;
  background: var(--white); color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.intro__call-text { display: flex; flex-direction: column; }
.intro__call-text small { font-size: 13px; color: var(--text-body); }
.intro__call-text strong { font-size: 17px; font-weight: 800; color: var(--text-dark); }
.intro__line { width: 3px; border-radius: 2px; background: var(--blue-primary); }
.intro__line--a { height: 220px; }
.intro__line--b { height: 320px; }
.intro__media { position: relative; flex: 1 1 auto; }
.intro__media img { width: 100%; height: 460px; object-fit: cover; display: block; border-radius: 6px; }
.intro__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border: none; border-radius: 50%;
  background: var(--blue-primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.3s var(--ease);
}
.intro__play:hover { transform: translate(-50%,-50%) scale(1.06); }
.intro__badge {
  position: absolute; left: -30px; bottom: 60px;
  background: var(--white); border: 1px solid var(--blue-primary); border-radius: 6px;
  padding: 16px 22px; display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.intro__badge strong { font-size: 26px; font-weight: 800; color: var(--text-dark); }
.intro__badge span { font-size: 14px; color: var(--text-body); }
.intro__cards {
  position: relative; z-index: 1;
  width: var(--width); max-width: var(--container); margin: 70px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.intro__card {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: 6px; padding: 34px 28px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.intro__card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(2,20,45,0.55), rgba(2,20,45,0.72)), var(--card-img);
  background-size: cover, cover; background-position: center, center;
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.intro__card:nth-child(1) { --card-img: url(https://images.unsplash.com/photo-1466611653911-950814ff680c?w=600&q=60); }
.intro__card:nth-child(2) { --card-img: url(https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=600&q=60); }
.intro__card:nth-child(3) { --card-img: url(https://images.unsplash.com/photo-1565043666747-69f6646db940?w=600&q=60); }
.intro__card:nth-child(4) { --card-img: url(https://images.unsplash.com/photo-1537462715879-360eeb61a0ad?w=600&q=60); }
.intro__card:hover { transform: scale(1.04); box-shadow: 0 22px 48px rgba(0,0,0,0.22); z-index: 2; }
.intro__card:hover::before { opacity: 1; }
.intro__card-icon {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(0,58,140,0.25); color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.intro__card-title {
  position: relative; z-index: 1;
  font-size: 18px; font-weight: 800; letter-spacing: 0.5px; color: var(--text-dark);
  text-transform: uppercase; margin-bottom: 12px;
  transition: color 0.35s var(--ease);
}
.intro__card-desc {
  position: relative; z-index: 1;
  font-size: 14px; line-height: 1.7; color: var(--text-muted);
  transition: color 0.35s var(--ease);
}
.intro__card:hover .intro__card-icon { color: var(--white); border-color: rgba(255,255,255,0.55); }
.intro__card:hover .intro__card-title { color: var(--white); }
.intro__card:hover .intro__card-desc { color: rgba(255,255,255,0.85); }
@media (max-width: 1024px) {
  .intro__inner { flex-direction: column; align-items: flex-start; }
  .intro__right { width: 100%; }
  .intro__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .intro { padding: 70px 0 60px; }
  .intro__cards { grid-template-columns: 1fr; }
  .intro__line--a, .intro__line--b { display: none; }
  .intro__badge { left: 12px; bottom: 12px; }
  .intro__media img { height: 320px; }
}

/* ===================================================
   QUOTE MODAL - header INQUIRY button popup
   =================================================== */
.quote-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  visibility: hidden; opacity: 0;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.quote-modal.is-open { visibility: visible; opacity: 1; }

.quote-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(4, 16, 36, 0.6);
}

.quote-modal__panel {
  position: relative;
  width: min(1060px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
  border-radius: 14px;
  padding: 46px 48px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
}

.quote-modal.is-open .quote-modal__panel { transform: none; }

.quote-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  border: 1px solid rgba(18, 35, 60, 0.25);
  border-radius: 4px;
  background: transparent;
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.quote-modal__close:hover { background: var(--blue-primary); border-color: var(--blue-primary); color: var(--white); }

.quote-modal__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
}

.quote-modal__left h3 {
  margin: 0 0 24px;
  font-size: 28px; font-weight: 800;
  color: var(--text-dark);
}

.quote-modal__right p {
  margin: 0 0 22px;
  font-size: 17px; font-weight: 700; line-height: 1.6;
  color: var(--text-dark);
}

.quote-modal__right img {
  width: 100%; height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.quote-modal__submit {
  margin-top: 4px;
  padding: 12px 30px;
  border: 0; border-radius: 999px;
  background: var(--blue-primary);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.quote-modal__submit:hover { background: #002e70; }
.quote-modal__submit:disabled { opacity: 0.7; cursor: default; }

@media (max-width: 900px) {
  .quote-modal__panel { padding: 34px 22px; }
  .quote-modal__grid { grid-template-columns: 1fr; gap: 28px; }
  .quote-modal__right img { height: 220px; }
}
/* ===================================================
   INNER PAGE HERO - outlined watermark + breadcrumbs
   =================================================== */
.page-hero {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-header);
}

.page-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.page-hero__overlay { position: absolute; inset: 0; background: rgba(4, 20, 45, 0.5); }

.page-hero__watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 17vw, 240px);
  font-weight: 800;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.16);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.page-hero__content { position: relative; text-align: center; padding: 0 20px; }

.page-hero__title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.15;
}

.page-hero__crumbs {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; row-gap: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.page-hero__crumbs a { color: rgba(255,255,255,0.85); transition: color 0.3s var(--ease); }
.page-hero__crumbs a:hover { color: var(--white); }

/* ===================================================
   CONTACT PAGE - info cards + form/map
   =================================================== */
.contact-cards { padding: 90px 0 30px; background: #f7f9fc; }

.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}

.contact-card { background: #eef1f5; border-radius: 4px; overflow: hidden; }

.contact-card__media { position: relative; height: 190px; }

.contact-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
}

.contact-card__icon {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--white);
  color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.contact-card__body { padding: 28px 22px 32px; text-align: center; }

.contact-card__label {
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue-primary);
}

.contact-card__value {
  margin-top: 12px;
  font-size: 19px; font-weight: 800; line-height: 1.45;
  color: var(--text-dark);
}

.contact-card__value a { color: inherit; transition: color 0.3s var(--ease); }
.contact-card__value a:hover { color: var(--blue-primary); }

.contact-main { padding: 50px 0 100px; background: #f7f9fc; }

.contact-main__inner {
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  padding: 42px 40px;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(10,30,60,0.08);
}

.contact-form__title { margin: 0 0 8px; font-size: 26px; font-weight: 800; color: var(--text-dark); }
.contact-form__sub { margin: 0 0 26px; font-size: 14px; line-height: 1.8; color: var(--text-body); }
.contact-form .form__field { margin-bottom: 14px; }
.contact-form .form__submit-btn { margin-top: 8px; }

/* RFQ form: numbered sections, 3-col field grid, upload dropzone, check pills */
.contact-form__section { margin-top: 30px; }

.contact-form__section-title {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 14px;
  font-size: 16px; font-weight: 800; color: var(--text-dark);
}

.contact-form__section-num {
  flex: 0 0 auto;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue-primary); color: var(--white);
  font-size: 12px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

.contact-form__section-sub { margin: 0 0 12px; font-size: 13px; color: var(--text-body); }

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 16px;
}

.contact-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-dark);
}

.contact-form__field label span { color: #dc3545; }

.contact-form__part {
  margin-top: 38px;
  padding: 18px 22px;
  background: rgba(0,58,140,0.06);
  border-left: 3px solid var(--blue-primary);
  border-radius: 0 8px 8px 0;
}

.contact-form__part-title { margin: 0; font-size: 20px; font-weight: 800; color: var(--blue-primary); }
.contact-form__part-sub { margin: 4px 0 0; font-size: 13.5px; color: var(--text-body); }
.contact-form__part-desc { margin: 10px 0 0; font-size: 13.5px; line-height: 1.8; color: var(--text-body); }
.contact-form__textarea { margin-top: 14px; min-height: 150px; resize: vertical; }

.contact-upload {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 30px 20px;
  border: 2px dashed rgba(0,58,140,0.35);
  border-radius: 10px;
  background: rgba(0,58,140,0.03);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.contact-upload:hover { border-color: var(--blue-primary); background: rgba(0,58,140,0.06); }

.contact-upload input[type='file'] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.contact-upload svg { color: var(--blue-primary); margin-bottom: 4px; }

.contact-upload__title { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.contact-upload__title span { color: #dc3545; }
.contact-upload__hint { font-size: 12.5px; color: var(--text-body); }
.contact-upload__files { font-size: 12.5px; font-weight: 600; color: var(--blue-primary); }
.contact-upload__error { display: block; font-size: 12px; font-weight: 600; color: #dc3545; margin-top: 4px; }

.contact-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 14px;
}

.contact-check {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: #f2f4f8;
  border-radius: 6px;
  font-size: 13.5px; color: var(--text-dark);
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.contact-check:hover { background: #e8ecf4; }

.contact-check input { flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--blue-primary); }

.contact-form__submit-row { margin-top: 34px; }

.contact-form__note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12.5px; line-height: 1.7;
  color: var(--text-body);
}

@media (max-width: 1024px) {
  .contact-form__grid, .contact-checks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .contact-form__grid, .contact-checks { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .contact-cards__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .page-hero { height: 380px; }
  .contact-main__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .contact-cards__grid { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
}

/* ===================================================
   BLOG LIST PAGE - inner hero + horizontal post cards + pager
   (solari blog-list pattern: media left, meta / title / excerpt right)
   =================================================== */
.blog-page { padding: 90px 0 100px; background: #f7f9fc; }

.blog-page__inner {
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}

.blog-page__head { text-align: center; margin-bottom: 46px; }

.blog-page__count {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue-primary);
}

.blog-list { display: flex; flex-direction: column; gap: 30px; }

/* Two-column layout: post list left, solari-style widget sidebar right */
.blog-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.blog-main { min-width: 0; }

.blog-sidebar { display: flex; flex-direction: column; gap: 30px; min-width: 0; }

.blog-widget {
  background: var(--white);
  border-radius: 6px;
  padding: 30px 28px 32px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
}

.blog-widget__title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 58, 140, 0.12);
  font-size: 20px; font-weight: 800;
  color: var(--text-dark);
}

.blog-widget__title::after {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  width: 44px; height: 2px;
  background: var(--blue-primary);
}

/* Search widget: input with a round submit button inside the right end */
.blog-search { position: relative; }

.blog-search__input {
  width: 100%; height: 50px;
  padding: 0 58px 0 18px;
  border: 1px solid rgba(0, 58, 140, 0.14);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font);
  font-size: 14px; color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.blog-search__input:focus { border-color: var(--blue-primary); }

.blog-search__btn {
  position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: var(--blue-primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.blog-search__btn:hover { background: var(--blue-navy); }

/* Categories widget: light rows with the post count on the right */
.blog-widget__cat {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  background: #f1f3f6;
  border-radius: 3px;
  font-size: 14px; color: var(--text-body);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.blog-widget__cat + .blog-widget__cat { margin-top: 10px; }
.blog-widget__cat:hover { color: var(--blue-primary); background: #e8edf4; }
.blog-widget__cat-count { flex: none; font-size: 13px; color: var(--text-muted); }

/* Recent posts widget: square thumb + date + blue title */
.blog-widget__post { display: flex; gap: 14px; align-items: flex-start; }
.blog-widget__post + .blog-widget__post { margin-top: 20px; }

.blog-widget__post-body { display: block; min-width: 0; }

a.blog-widget__post:hover .blog-widget__post-title { color: var(--blue-navy); }

.blog-widget__post-img {
  flex: none;
  width: 62px; height: 62px;
  border-radius: 4px; overflow: hidden;
}

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

.blog-widget__post-date {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--text-muted);
}

.blog-widget__post-date svg { color: var(--blue-primary); flex: none; }

.blog-widget__post-title {
  display: block;
  margin: 6px 0 0;
  font-size: 14.5px; font-weight: 700; line-height: 1.5;
  color: var(--blue-primary);
  transition: color 0.3s var(--ease);
}

.blog-widget__post-title:hover { color: var(--blue-navy); }

/* Tags widget: small pill cloud */
.blog-widget__tags { display: flex; flex-wrap: wrap; gap: 8px; }

.blog-widget__tag {
  display: inline-block;
  padding: 8px 14px;
  background: #f1f3f6;
  border-radius: 3px;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-body);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.blog-widget__tag:hover { background: var(--blue-primary); color: var(--white); }

.blog-item {
  display: block;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.blog-item:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10); }

.blog-item__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; }

.blog-item__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}

.blog-item:hover .blog-item__media img { transform: scale(1.06); }

.blog-item__body {
  padding: 26px 30px 32px;
  display: flex; flex-direction: column;
}

.blog-item__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 58, 140, 0.12);
  font-size: 14px; color: var(--text-muted);
}

.blog-item__meta-item { display: inline-flex; align-items: center; gap: 8px; }
.blog-item__meta-item svg { color: var(--blue-primary); flex: none; }

.blog-item__meta-cat { color: var(--blue-primary); font-weight: 700; transition: color 0.3s var(--ease); }
.blog-item__meta-cat:hover { color: var(--blue-hover); }

.blog-item__title {
  margin: 0 0 14px;
  font-size: 24px; font-weight: 800; line-height: 1.4;
  color: var(--text-dark);
}

.blog-item__title a { color: inherit; transition: color 0.3s var(--ease); }
.blog-item:hover .blog-item__title a,
.blog-item__title a:hover { color: var(--blue-primary); }

.blog-item__excerpt {
  margin: 0 0 26px;
  font-size: 15.5px; line-height: 1.85;
  color: var(--text-body);
}

.blog-item__btn {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  background: var(--blue-primary); color: var(--white);
  border-radius: 4px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.6px;
  transition: background 0.3s var(--ease);
}

.blog-item__btn svg { transition: transform 0.3s var(--ease); }
.blog-item__btn:hover { background: var(--blue-navy); color: var(--white); }
.blog-item__btn:hover svg { transform: translateX(5px); }

/* Pager - works with paginate_links() output and the static demo markup */
.blog-pager {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px; margin-top: 56px;
}

.blog-pager .page-numbers,
.blog-pager__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 46px; padding: 0 14px;
  background: var(--white); color: var(--text-dark);
  border: 1px solid rgba(0, 58, 140, 0.14);
  border-radius: 4px;
  font-size: 15px; font-weight: 700;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.blog-pager .page-numbers:hover,
.blog-pager__link:hover { border-color: var(--blue-primary); color: var(--blue-primary); }

.blog-pager .page-numbers.current,
.blog-pager__link.is-active {
  background: var(--blue-primary); border-color: var(--blue-primary); color: var(--white);
}

.blog-pager .page-numbers.dots { background: transparent; border-color: transparent; }

/* Empty / no-results state */
.blog-empty {
  background: var(--white);
  border-radius: 6px;
  padding: 76px 30px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
}

.blog-empty__title { margin: 0 0 12px; font-size: 26px; font-weight: 800; color: var(--text-dark); }
.blog-empty__text { margin: 0; font-size: 15.5px; line-height: 1.8; color: var(--text-body); }

@media (max-width: 1100px) {
  .blog-page__layout { grid-template-columns: 1fr; }
  .blog-item__media { aspect-ratio: 16 / 9; }
  .blog-item__body { padding: 24px 24px 28px; }
  .blog-widget { padding: 26px 24px 28px; }
}

@media (max-width: 768px) {
  .blog-page { padding: 56px 0 70px; }
  .blog-list { gap: 22px; }
  .blog-item__title { font-size: 21px; }
  .blog-item__excerpt { font-size: 14.5px; margin-bottom: 22px; }
  .blog-item__meta { gap: 14px; font-size: 13px; }
  .blog-pager { margin-top: 38px; gap: 8px; }
  .blog-pager .page-numbers, .blog-pager__link { min-width: 40px; height: 40px; font-size: 14px; }
}
/* Blog detail (single post) */
.blog-detail {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
}

.blog-detail__media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-detail__body { padding: 34px 38px 40px; }

.blog-detail__content p {
  margin: 0 0 22px;
  font-size: 15.5px; line-height: 1.9;
  color: var(--text-body);
}

.blog-detail__content h2,
.blog-detail__content h3,
.blog-detail__content h4 {
  margin: 34px 0 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.blog-detail__content h2 { font-size: 26px; }
.blog-detail__content h3 { font-size: 22px; }
.blog-detail__content h4 { font-size: 18px; }

.blog-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.blog-detail__content ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.blog-detail__content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px; line-height: 1.7;
  color: var(--text-body);
}

.blog-detail__content ul li::before {
  content: '\2713';
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 11px; line-height: 18px;
  text-align: center;
}

/* Centered quote card, solari blog-detail style */
.blog-detail__content blockquote {
  margin: 30px 0;
  padding: 40px 34px;
  background: #f7f9fc;
  border-radius: 6px;
  text-align: center;
}

.blog-detail__content blockquote::before {
  content: '\201C';
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px; line-height: 1;
  color: var(--blue-primary);
}

.blog-detail__content blockquote p {
  margin: 0 0 18px;
  font-size: 17px; line-height: 1.8;
  font-style: italic; font-weight: 600;
  color: var(--text-dark);
}

.blog-detail__content blockquote cite {
  display: block;
  font-style: normal;
  font-size: 15px; font-weight: 700;
  color: var(--blue-primary);
}

/* Tag row under the article */
.blog-detail__tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 58, 140, 0.12);
}

.blog-detail__tags-label {
  margin-right: 6px;
  font-size: 14px; font-weight: 800;
  color: var(--text-dark);
}

.blog-detail__tag {
  display: inline-block;
  padding: 8px 14px;
  background: #f1f3f6;
  border-radius: 3px;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-body);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.blog-detail__tag:hover { background: var(--blue-primary); color: var(--white); }

/* Author box */
.blog-author {
  display: flex; gap: 22px; align-items: flex-start;
  margin-top: 30px;
  padding: 28px;
  background: #f7f9fc;
  border-radius: 6px;
}

.blog-author__avatar {
  flex: none;
  width: 84px; height: 84px;
  border-radius: 6px;
  overflow: hidden;
}

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

.blog-author__name {
  margin: 0 0 8px;
  font-size: 18px; font-weight: 800;
  color: var(--text-dark);
}

.blog-author__bio {
  margin: 0;
  font-size: 14px; line-height: 1.8;
  color: var(--text-body);
}

/* Comments inside the content card */
.blog-detail .comments-area {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 58, 140, 0.12);
}

.comments-title,
.comment-reply-title {
  margin: 0 0 10px;
  font-size: 22px; font-weight: 800;
  color: var(--text-dark);
}

.comment-notes {
  margin: 0 0 20px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.comment-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.comment-list .comment {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 58, 140, 0.08);
  font-size: 14.5px; line-height: 1.8;
  color: var(--text-body);
}

.comment-form p { margin: 0 0 16px; }

.comment-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 13.5px; font-weight: 700;
  color: var(--text-dark);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 58, 140, 0.14);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus { border-color: var(--blue-primary); }

.comment-form .submit {
  display: inline-block;
  padding: 13px 30px;
  border: 0;
  border-radius: 4px;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.comment-form .submit:hover { background: var(--blue-navy); }

@media (max-width: 768px) {
  .blog-detail__body { padding: 24px 22px 30px; }
  .blog-detail__content blockquote { padding: 30px 22px; }
  .blog-author { flex-direction: column; }
}
/* Products category page (left category nav + category sections) */
.products-page { padding: 90px 0 100px; background: #f7f9fc; }
.products-page__inner { width: var(--width); max-width: var(--container); margin: 0 auto; }
.products-page__layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 40px; align-items: start; }
.pcat-nav { position: sticky; top: 110px; background: var(--white); border-radius: 6px; padding: 26px 24px 30px; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05); }
.pcat-nav__title { margin: 0 0 10px; padding-bottom: 14px; border-bottom: 1px solid rgba(0, 58, 140, 0.12); font-size: 18px; font-weight: 800; color: var(--text-dark); }
.pcat-nav__list { display: flex; flex-direction: column; }
.pcat-nav__link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 2px; border-bottom: 1px solid #f1f3f6; font-size: 14px; font-weight: 600; color: var(--text-body); transition: color .25s var(--ease); }
.pcat-nav__list .pcat-nav__link:last-child { border-bottom: 0; }
.pcat-nav__link svg { flex: none; color: var(--text-muted); transition: transform .25s var(--ease), color .25s var(--ease); }
.pcat-nav__link:hover { color: var(--blue-primary); }
.pcat-nav__link:hover svg { color: var(--blue-primary); transform: translateX(2px); }
.prod-section + .prod-section { margin-top: 56px; }
.prod-section__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid rgba(0, 58, 140, 0.12); }
.prod-section__title { margin: 0; font-size: 24px; font-weight: 800; color: var(--text-dark); }
.prod-section__more { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.prod-section__more:hover { color: var(--blue-primary); }
.prod-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.prod-card { display: flex; flex-direction: column; padding: 18px 18px 24px; background: var(--white); border-radius: 8px; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05); text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0, 43, 103, 0.12); }
.prod-card__media { position: relative; margin-bottom: 16px; border-radius: 6px; overflow: hidden; aspect-ratio: 1 / 1; background: #f5f7fa; }
.prod-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.prod-card:hover .prod-card__media img { transform: scale(1.06); }
.prod-card__badge { position: absolute; top: 10px; right: 10px; padding: 5px 13px; border-radius: 999px; background: #14181f; color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.prod-card__title { margin: 0 0 8px; font-size: 15.5px; font-weight: 700; line-height: 1.45; color: var(--text-dark); }
.prod-card__desc { flex: 1 1 auto; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0 0 18px; font-size: 12.5px; line-height: 1.7; color: var(--text-muted); }
.prod-card__btn { align-self: center; padding: 11px 30px; border-radius: 999px; background: #14181f; color: var(--white); font-size: 12.5px; font-weight: 700; letter-spacing: .02em; transition: background .3s var(--ease); }
.prod-card__btn:hover { background: var(--blue-primary); }
.products-page__empty { padding: 60px 0; text-align: center; color: var(--text-muted); }
@media (max-width: 1100px) {
  .products-page__layout { grid-template-columns: 1fr; }
  .pcat-nav { position: static; }
  .pcat-nav__list { flex-direction: row; flex-wrap: wrap; gap: 8px 22px; }
  .pcat-nav__link { border-bottom: 0; padding: 6px 0; }
}
@media (max-width: 900px) { .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .prod-grid { grid-template-columns: 1fr; } .products-page { padding: 60px 0 70px; } }
/* ═══ PRODUCT CATEGORY PAGE (SECOND LEVEL) ═══ */
.pcat-nav__list--accordion .pcat-nav__link { border-bottom: 0; }
.pcat-nav__group { border-bottom: 1px solid #f1f3f6; }
.pcat-nav__group:last-child { border-bottom: 0; }
.pcat-nav__link svg { flex: 0 0 auto; transition: transform .3s var(--ease); }
.pcat-nav__group.is-open > .pcat-nav__link { color: var(--blue-primary); }
.pcat-nav__group.is-open > .pcat-nav__link svg { transform: rotate(180deg); }
.pcat-nav__subs { display: flex; flex-direction: column; margin: 0 0 12px 10px; padding-left: 14px; border-left: 1px solid rgba(0, 58, 140, 0.18); }
.pcat-nav__sublink { padding: 7px 2px; font-size: 12.5px; font-weight: 600; color: var(--text-muted); transition: color .25s var(--ease); }
.pcat-nav__sublink:hover { color: var(--blue-primary); }
.pcat-nav__sublink.is-active { color: var(--blue-primary); font-weight: 700; }
.prod-pager { margin-top: 48px; }
.prod-pager .blog-pager__link { min-width: 44px; height: 44px; padding: 0 16px; border-color: transparent; border-radius: 999px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07); font-size: 13.5px; }
.prod-pager .blog-pager__link.is-active { background: #14181f; border-color: #14181f; color: var(--white); }
.prod-pager .blog-pager__link:hover { background: var(--blue-primary); border-color: var(--blue-primary); color: var(--white); }
/* ═══ PRODUCT DETAIL PAGE (THIRD LEVEL) ═══ */
.pdetail { padding: 90px 0 100px; background: #f7f9fc; }
.pdetail__inner { width: var(--width); max-width: var(--container); margin: 0 auto; }
.pdetail__top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.pdetail__media { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05); }
.pdetail__media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pdetail__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.pdetail__chip { padding: 7px 16px; border: 1px solid rgba(0, 58, 140, 0.22); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--blue-primary); transition: background .25s var(--ease), color .25s var(--ease); }
.pdetail__chip:hover { background: var(--blue-primary); color: var(--white); }
.pdetail__desc { margin: 0 0 22px; font-size: 15px; line-height: 1.85; color: var(--text-body); }
.pdetail__hl { margin: 0 0 28px; padding: 0; list-style: none; }
.pdetail__hl li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 14px; font-weight: 600; color: var(--text-body); }
.pdetail__hl li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--blue-primary); font-weight: 800; }
.pdetail__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.pdetail__inquiry { padding: 13px 36px; font-size: 13.5px; }
.pdetail__back { font-size: 13px; font-weight: 700; color: var(--text-muted); border-bottom: 1px solid rgba(0, 58, 140, 0.3); padding-bottom: 2px; transition: color .25s var(--ease); }
.pdetail__back:hover { color: var(--blue-primary); }
.pdetail__specs { margin-top: 48px; padding: 30px 34px 34px; background: var(--white); border-radius: 8px; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05); }
.pdetail__specs-title { margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(0, 58, 140, 0.12); font-size: 20px; font-weight: 800; color: var(--text-dark); }
.pdetail__table { width: 100%; border-collapse: collapse; }
.pdetail__table th, .pdetail__table td { padding: 13px 10px; border-bottom: 1px solid #f1f3f6; text-align: left; font-size: 14px; }
.pdetail__table tr:last-child th, .pdetail__table tr:last-child td { border-bottom: 0; }
.pdetail__table th { width: 220px; font-weight: 700; color: var(--text-muted); }
.pdetail__table td { color: var(--text-body); }
.pdetail__related { margin-top: 56px; }
.prod-card__title a { color: inherit; transition: color .25s var(--ease); }
.prod-card__title a:hover { color: var(--blue-primary); }
@media (max-width: 900px) { .pdetail__top { grid-template-columns: 1fr; } .pdetail { padding: 60px 0 70px; } .pdetail__table th { width: 130px; } }
/* Long-description card on the product detail page (CPT post content) */
.pdetail__content { margin-top: 32px; padding: 34px 38px; background: var(--white); border-radius: 8px; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05); }
.pdetail__content p { margin: 0 0 14px; font-size: 15px; line-height: 1.85; color: var(--text-body); }
.pdetail__content h2, .pdetail__content h3, .pdetail__content h4 { margin: 26px 0 12px; font-weight: 800; color: var(--text-dark); }
.pdetail__content h2 { font-size: 22px; }
.pdetail__content h3 { font-size: 18px; }
.pdetail__content h4 { font-size: 16px; }
.pdetail__content ul, .pdetail__content ol { margin: 0 0 16px; padding-left: 0; list-style: none; }
.pdetail__content ul li { position: relative; padding-left: 26px; margin-bottom: 8px; font-size: 14.5px; line-height: 1.7; color: var(--text-body); }
.pdetail__content ul li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--blue-primary); font-weight: 800; }
.pdetail__content ol { list-style: decimal; padding-left: 22px; }
.pdetail__content ol li { margin-bottom: 8px; font-size: 14.5px; line-height: 1.7; color: var(--text-body); }
.pdetail__content img { max-width: 100%; height: auto; border-radius: 8px; }
.pdetail__content blockquote { margin: 18px 0; padding: 14px 20px; border-left: 3px solid var(--blue-primary); background: #f7f9fc; border-radius: 0 8px 8px 0; font-size: 14.5px; color: var(--text-body); }
.pdetail__content > :last-child { margin-bottom: 0; }
@media (max-width: 900px) { .pdetail__content { padding: 26px 22px; } }
/* ===================================================
   HEADER CAPSULE NAV (reference: frosted pill menu)
   Links + search + CTA share one translucent capsule.
   =================================================== */
.header__capsule {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 7px 8px 7px 14px;
  border-radius: 999px;
  background: rgba(9, 13, 20, 0.42);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header__capsule .header__nav { margin-left: 0; justify-content: flex-start; }

.header__capsule .header__nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 15px;
  line-height: 46px;
}

.header__capsule .header__nav a::after { display: none; }
.header__capsule .header__nav a:hover { color: #9AA0A6; font-weight: 700; }
.header__capsule .header__nav a:hover::after { background: #9AA0A6; }
/* Transparent hero header: hover stays brand blue; once the bar turns
   solid (scrolled banner page / any inner page) hover flips to grey. */
body:has(.banner) .header:not(.header--scrolled) .header__nav a:hover { color: #003A8C; }
body:has(.banner) .header:not(.header--scrolled) .header__nav a:hover::after { background: #003A8C; }

.header__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 6px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.header__search-btn:hover { color: var(--orange); background: rgba(255, 255, 255, 0.08); }

.header__capsule .header__inquiry-btn {
  min-width: 0;
  margin-left: 6px;
  padding: 12px 26px;
  font-size: 13px;
}

/* Search drop panel under the capsule */
.header__search {
  position: absolute;
  top: calc(100% + 10px);
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: min(440px, calc(100vw - 48px));
  padding: 10px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 12;
}

.header--search-open .header__search { display: block; }

.header__search-form { display: flex; gap: 8px; }

.header__search-input {
  flex: 1;
  min-width: 0;
  padding: 11px 20px;
  border: 1px solid #e3e7ee;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.header__search-input:focus { border-color: var(--blue-primary); }

.header__search-submit {
  flex: 0 0 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.header__search-submit:hover { background: var(--orange-hover); }

@media (max-width: 1024px) {
  .header__capsule { padding: 6px 6px 6px 10px; }
  .header__search { right: 16px; }
}
/* ===================================================
   ABOUT US COLUMN PAGE (profile / facility / qc flow /
   equipment / audits / certifications / cta band)
   =================================================== */
.about-intro { padding: 100px 0 90px; background: #f7f9fc; }

.about-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}

/* Left-align the COMPANY PROFILE eyebrow inside the intro column */
.about-intro__text .section-header__label { justify-content: flex-start; text-align: left; }

.about-intro__title {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 14px 0 22px;
}

.about-intro__p { font-size: 15.5px; line-height: 1.9; color: var(--text-body); margin-bottom: 16px; }

.about-intro__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #e6eaf1;
}

.about-intro__stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue-primary);
  white-space: nowrap;
}

.about-intro__stat span { display: block; margin-top: 4px; font-size: 13px; color: var(--text-muted); }

.about-intro__media { position: relative; padding: 0 40px 46px 0; }

.about-intro__img-main { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }

.about-intro__img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 6px solid var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* No overlay image configured: drop the reserved overlay space */
.about-intro__media--nosub { padding: 0; }

.about-intro__badge {
  position: absolute;
  top: -18px;
  left: -18px;
  padding: 16px 22px;
  border-radius: 10px;
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 58, 140, 0.35);
}

.about-intro__badge strong { display: block; font-size: 30px; font-weight: 800; line-height: 1; }
.about-intro__badge span { display: block; margin-top: 4px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }

/* Facility gallery */
.about-facility { padding: 90px 0 100px; background: var(--white); }

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: var(--width);
  max-width: var(--container);
  margin: 54px auto 0;
}

.facility-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(15, 30, 60, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.facility-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15, 30, 60, 0.14); }

.facility-card__media { overflow: hidden; }

.facility-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.facility-card:hover .facility-card__media img { transform: scale(1.06); }

.facility-card__body { padding: 22px 24px 26px; }

.facility-card__title { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }

.facility-card__desc { font-size: 14px; line-height: 1.75; color: var(--text-body); }

/* Quality control flow */
.about-qc { padding: 90px 0 100px; background: #f7f9fc; }

.qc-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 44px;
  width: var(--width);
  max-width: var(--container);
  margin: 54px auto 0;
}

.qc-step {
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid #e6eaf1;
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.qc-step:hover { border-color: var(--blue-primary); box-shadow: 0 14px 34px rgba(0, 58, 140, 0.12); }

/* Arrow connector towards the next step in the same row */
.qc-step::after {
  content: '\2192';
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-primary);
}

.qc-step:nth-child(3n)::after { display: none; }

.qc-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.qc-step__title { font-size: 16.5px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }

.qc-step__desc { font-size: 13.5px; line-height: 1.75; color: var(--text-body); }

/* Testing equipment */
.about-equip { padding: 90px 0 100px; background: var(--white); }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: var(--width);
  max-width: var(--container);
  margin: 54px auto 0;
}

.equip-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(15, 30, 60, 0.07);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.equip-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15, 30, 60, 0.12); }

/* Photo slot: equipment photo once uploaded, icon disc as placeholder */
.equip-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2f8 0%, #e2eaf5 100%);
  overflow: hidden;
}

.equip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.equip-card:hover .equip-card__media img { transform: scale(1.06); }

.equip-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(0, 58, 140, 0.08);
  color: var(--blue-primary);
}

.equip-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px 24px;
}

.equip-card__title { font-size: 15.5px; font-weight: 800; color: var(--text-dark); line-height: 1.4; }

.equip-card__model {
  display: inline-block;
  margin: 8px 0 10px;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(241, 141, 21, 0.12);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.equip-card__desc { font-size: 13px; line-height: 1.7; color: var(--text-body); }

/* Customer audits - testimonial marquee (left intro column + scrolling quote
   cards with monogram avatar riding a blue footer band; cards fade out as
   they reach the copy column) */
.about-audits { padding: 110px 0; background: #f4f6f9; overflow: hidden; }

.about-audits__layout {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: center;
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
}

.audit-intro { position: relative; z-index: 2; }

.audit-intro__star { display: inline-block; color: var(--blue-primary); margin-bottom: 14px; }

.audit-intro__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.audit-intro__title {
  margin: 14px 0 18px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-dark);
}

.audit-intro__desc { font-size: 15px; line-height: 1.9; color: var(--text-body); }

/* Scrolling viewport: gradient fade toward the copy column on the left */
.audit-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 22px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 250px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 250px, #000 calc(100% - 60px), transparent 100%);
}

.audit-marquee__track {
  display: flex;
  width: max-content;
  animation: audit-marquee-scroll 46s linear infinite;
}

.audit-marquee:hover .audit-marquee__track { animation-play-state: paused; }

@keyframes audit-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.audit-marquee__group { display: flex; gap: 28px; padding-right: 28px; }

.audit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 560px;
  width: 560px;
  padding: 34px 38px 0;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 58, 140, 0.10);
  overflow: hidden;
}

/* Blue footer band */
.audit-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 46px;
  background: var(--blue-primary);
  z-index: 1;
}

/* Dome circle hugging the avatar ring and merging into the band */
.audit-card::after {
  content: '';
  position: absolute;
  left: 24px; bottom: 30px;
  width: 124px; height: 124px;
  border-radius: 50%;
  background: var(--blue-primary);
  z-index: 1;
}

.audit-card__quote {
  margin: 0;
  min-height: 96px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
}

.audit-card__foot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding-bottom: 44px;
  z-index: 2;
}

/* Decorative domes riding the band */
.audit-card__foot::before,
.audit-card__foot::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: var(--blue-primary);
  z-index: 1;
}

.audit-card__foot::before { left: 52%; width: 120px; height: 64px; border-radius: 60px 60px 0 0; }

.audit-card__foot::after { left: 78%; width: 88px; height: 50px; border-radius: 44px 44px 0 0; }

.audit-card__avatar {
  position: relative;
  flex: 0 0 96px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a4fb0, var(--blue-primary));
  border: 6px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 2;
}

.audit-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Customer logo variant: white disc behind the uploaded logo */
.audit-card__avatar--logo { background: var(--white); padding: 12px; }

.audit-card__who { position: relative; z-index: 2; }

.audit-card__stars { display: inline-flex; gap: 4px; color: var(--blue-primary); margin-bottom: 7px; }

.audit-card__stars svg { width: 19px; height: 19px; }

.audit-card__name { margin: 0; font-size: 20px; font-weight: 800; color: var(--text-dark); }

.audit-card__role { display: block; margin-top: 3px; font-size: 13px; color: var(--text-muted); }

.audit-card__qmark {
  margin-left: auto;
  flex: 0 0 64px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0, 58, 140, 0.08);
  color: rgba(0, 58, 140, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .about-audits__layout { grid-template-columns: 1fr; gap: 34px; }
  .audit-intro { max-width: 560px; }
  .audit-marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 40px), transparent 100%);
  }
  .audit-card { flex-basis: 480px; width: 480px; }
}

@media (max-width: 640px) {
  .audit-card { flex-basis: 320px; width: 320px; padding: 26px 24px 0; }
  .audit-card__quote { min-height: 0; font-size: 14.5px; }
  .audit-card__foot { gap: 14px; }
  .audit-card__avatar { flex-basis: 76px; width: 76px; height: 76px; font-size: 22px; border-width: 5px; }
  .audit-card::after { left: 12px; bottom: 32px; width: 100px; height: 100px; }
  .audit-card__foot::before { left: 56%; width: 90px; height: 52px; border-radius: 45px 45px 0 0; }
  .audit-card__foot::after { display: none; }
  .audit-card__qmark { flex-basis: 48px; width: 48px; height: 48px; }
  .audit-card__name { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .audit-marquee__track { animation: none; }
  .audit-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .cert-marquee__track { animation: none; }
  .cert-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
/* Certifications - full-bleed auto-scrolling certificate gallery
   (uniform card size; certificate image slot with icon placeholder) */
.about-certs { padding: 90px 0 100px; background: var(--white); overflow: hidden; }

.cert-marquee {
  margin-top: 54px;
  overflow: hidden;
  padding: 10px 0 26px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
}

.cert-marquee__track {
  display: flex;
  width: max-content;
  animation: cert-marquee-scroll 40s linear infinite;
}

.cert-marquee:hover .cert-marquee__track { animation-play-state: paused; }

@keyframes cert-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.cert-marquee__group { display: flex; gap: 26px; padding-right: 26px; }

/* Uniform portrait certificate card: pure image, 350 x 460 */
.certitem {
  flex: 0 0 350px;
  width: 350px;
  height: 460px;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(15, 30, 60, 0.07);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.certitem:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15, 30, 60, 0.12); }

.certitem__media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2f8 0%, #e2eaf5 100%);
  overflow: hidden;
}

.certitem__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.certitem:hover .certitem__media img { transform: scale(1.05); }

.certitem__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 58, 140, 0.08);
  color: var(--blue-primary);
}

/* Closing CTA band */
.about-cta {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(120deg, #002d6d 0%, var(--blue-primary) 55%, #0a4ea8 100%);
  overflow: hidden;
}

.about-cta::before {
  content: 'YONTAI';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  text-align: center;
  font-size: clamp(90px, 14vw, 200px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  user-select: none;
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  width: var(--width);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.about-cta__title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; color: var(--white); }

.about-cta__desc { margin: 16px auto 34px; max-width: 620px; font-size: 16px; line-height: 1.8; color: rgba(255, 255, 255, 0.85); }

.about-cta__btns { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.about-cta__btn:hover { background: var(--orange-hover); transform: translateY(-2px); }

.about-cta__btn--ghost { background: transparent; border: 2px solid rgba(255, 255, 255, 0.6); }

.about-cta__btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }

@media (max-width: 1100px) {
  .about-intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-intro__media { max-width: 640px; }
  .facility-grid, .qc-flow, .audit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certitem { flex-basis: 300px; width: 300px; height: 394px; }
  .equip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-audits__layout { grid-template-columns: 1fr; gap: 40px; }
  .audit-intro { max-width: 640px; }
  .qc-step::after { display: none; }
}

@media (max-width: 700px) {
  .about-intro { padding: 70px 0 60px; }
  .about-intro__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-intro__stat strong { font-size: 24px; }
  .about-facility, .about-qc, .about-equip, .about-audits, .about-certs { padding: 64px 0 72px; }
  .facility-grid, .qc-flow, .audit-grid, .equip-grid { grid-template-columns: 1fr; }
  .certitem { flex-basis: 260px; width: 260px; height: 342px; }
  .about-intro__badge { left: 0; }
  .about-cta { padding: 70px 0; }
}

/* === PARTNERS AUTO MARQUEE (endless left scroll) === */
.partners__track {
  animation: hardtec-partners-marquee 40s linear infinite;
  will-change: transform;
}

.partners__inner:hover .partners__track {
  animation-play-state: paused;
}

@keyframes hardtec-partners-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(var(--ht-marquee-shift, -50%), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .partners__track { animation: none !important; }
}

/* === VIDEO LIGHTBOX (on-page YouTube/Vimeo player) === */
.hardtec-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hardtec-video-modal.is-open {
  display: flex;
}

.hardtec-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 20, 0.85);
}

.hardtec-video-modal__box {
  position: relative;
  width: min(960px, 92vw);
}

.hardtec-video-modal__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hardtec-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hardtec-video-modal__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.hardtec-video-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
