/* ==========================================================================
   NEXORA — design tokens (reference-inspired: green + deep navy)
   ========================================================================== */
:root {
  --primary: #172338;
  --primary-trans: rgba(23, 35, 56, .07);
  --secondary: #f06438;
  --secondary-dark: #d84f27;
  --header-dark: #111a29;
  --heading-color: #172338;
  --text-color: #667085;
  --border-color: #dfe5ec;
  --white: #ffffff;
  --bg-soft: #f2f5f8;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 6px 24px rgba(16, 32, 57, .06);
  --shadow-md: 0 14px 40px rgba(16, 32, 57, .10);
  --shadow-lg: 0 24px 60px rgba(16, 32, 57, .14);
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.75;
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  line-height: 1.3;
}

p {
  margin: 0;
}

a {
  transition: color .3s ease, background-color .3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.two {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bg-light {
  background: var(--bg-soft);
}

/* ==========================================================================
   Buttons (reference clip-path ripple)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 21px 40px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: color .4s ease, border-color .4s ease;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path cubic-bezier(0, .96, .58, 1.1) .8s;
}

.btn:hover::after {
  clip-path: circle(100% at 50% 50%);
}

.btn i {
  font-size: 16px;
}

.btn-primary {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn-primary::after {
  background: var(--primary);
}

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

.btn-dark {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-dark::after {
  background: var(--secondary);
}

.btn-dark:hover {
  color: var(--white);
  border-color: var(--secondary);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}

.btn-outline::after {
  background: var(--white);
}

.btn-outline:hover {
  color: var(--primary);
  border-color: var(--white);
}

@media (max-width: 767px) {
  .btn {
    padding: 19px 32px;
  }
}

@media (max-width: 575px) {
  .btn {
    padding: 17px 30px;
    font-size: 14px;
  }
}

/* ==========================================================================
   Section title
   ========================================================================== */
.sec-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.sec-title h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.5px;
}

.sec-title p {
  margin-top: 16px;
  max-width: 620px;
  font-size: 16px;
}

.sec-title-blog {
  margin-bottom: 30px;
}

.sec-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 21px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: var(--white);
  background: var(--secondary);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: color .4s ease;
}

.sec-view-all::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--primary);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path cubic-bezier(0, .96, .58, 1.1) .8s;
}

.sec-view-all:hover {
  color: var(--white);
}

.sec-view-all:hover::after {
  clip-path: circle(100% at 50% 50%);
}

.sec-view-all i {
  font-size: 16px;
}

@media (max-width: 767px) {
  .sec-view-all {
    padding: 19px 32px;
  }
}

@media (max-width: 575px) {
  .sec-view-all {
    padding: 17px 30px;
    font-size: 14px;
  }
}

/* ==========================================================================
   Header  (topbar 42px + navbar 80px ≈ 122px)
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 24px rgba(16, 32, 57, .06);
}

.topbar {
  height: 42px;
  background: var(--header-dark);
  color: rgba(255, 255, 255, .78);
  font-size: 13.5px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-contact i,
.topbar-social a {
  color: inherit;
}

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

.topbar-social a:hover {
  color: var(--secondary);
}

.navbar {
  height: 80px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .5px;
}

.logo img {
  width: 160px;
  height: auto;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li.has-mega {
  position: static;
}

.nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 80px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--heading-color);
  position: relative;
}

.nav-menu>li>a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 22px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.nav-menu>li>a i {
  font-size: 10px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a {
  color: var(--secondary);
}

.nav-menu>li:hover>a::after,
.nav-menu>li.active>a::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-search-btn {
  font-size: 17px;
  color: var(--heading-color);
  cursor: pointer;
}

.nav-search-btn:hover {
  color: var(--secondary);
}

.nav-burger {
  display: none;
  font-size: 22px;
  color: var(--heading-color);
  cursor: pointer;
}

/* plain dropdown: Case / Blog */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--secondary);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .3s;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-color);
}

.dropdown-menu li a:hover {
  color: var(--secondary);
  background: var(--primary-trans);
  padding-left: 32px;
}

/* mega nav: Products */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 12px);
  width: min(940px, 92vw);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--secondary);
  padding: 44px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 1000;
}

.mega-panel .row {
  row-gap: 28px;
}

.has-mega:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-col-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.mega-col-title:hover {
  color: var(--secondary);
}

.mega-col ul li {
  margin-bottom: 13px;
}

.mega-col ul li:last-child {
  margin-bottom: 0;
}

.mega-col ul li a {
  font-size: 14.5px;
  color: var(--text-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mega-col ul li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0;
  transition: .3s;
}

.mega-col ul li a:hover {
  color: var(--secondary);
}

.mega-col ul li a:hover::before {
  opacity: 1;
}

/* search box */
/* full-screen search overlay */
.search-wrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, .96);
  display: none;
  overflow: hidden;
}

.search-wrap.is-open {
  display: block;
}

.search-cell {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.search-field-holder {
  width: 50%;
  margin: 0 auto;
  position: relative;
  animation: searchSlideUp .4s ease;
}

@keyframes searchSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-search-input {
  width: 100%;
  height: 72px;
  border: 0;
  border-bottom: 2px solid var(--secondary);
  background: transparent;
  padding: 0 40px;
  font-size: 26px;
  font-family: var(--font-body);
  color: var(--primary);
  text-align: center;
  letter-spacing: 1px;
}

.main-search-input:focus {
  outline: none;
}

.main-search-input::placeholder {
  color: var(--secondary);
  opacity: .7;
}

.search-close {
  position: absolute;
  top: 46px;
  right: 52px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}

.search-close:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: rotate(90deg);
}

@media (max-width: 991px) {
  .search-field-holder {
    width: 72%;
  }
}

@media (max-width: 575px) {
  .search-field-holder {
    width: 84%;
  }

  .main-search-input {
    height: 54px;
    font-size: 18px;
    padding: 0 10px;
  }

  .search-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 32, 57, .55);
  z-index: 150;
}

.nav-overlay.is-open {
  display: block;
}

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero-slider {
  position: relative;
}

.hero-swiper .swiper-slide {
  position: relative;
}

.slide-img {
  height: 720px;
  overflow: hidden;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 7s ease;
}

.hero-swiper .swiper-slide-active .slide-img img {
  transform: scale(1);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(16, 32, 57, .88) 0%, rgba(16, 32, 57, .55) 48%, rgba(16, 32, 57, .12) 100%);
}

.slide-content .container {
  width: 100%;
}

.slide-inner {
  max-width: 660px;
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 9px 22px;
  margin-bottom: 24px;
}

.slide-inner h1,
.slide-inner .slide-title {
  color: var(--white);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.slide-inner p {
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 36px;
}

/* slide entrance animation */
.slide-eyebrow,
.slide-inner h1,
.slide-inner .slide-title,
.slide-inner p,
.slide-inner .btn {
  opacity: 0;
  transform: translateY(40px);
}

.swiper-slide-active .slide-eyebrow,
.swiper-slide-active .slide-inner h1,
.swiper-slide-active .slide-inner .slide-title,
.swiper-slide-active .slide-inner p,
.swiper-slide-active .slide-inner .btn {
  animation: slideUp .9s forwards;
}

.swiper-slide-active .slide-inner h1,
.swiper-slide-active .slide-inner .slide-title {
  animation-delay: .2s;
}

.swiper-slide-active .slide-inner p {
  animation-delay: .4s;
}

.swiper-slide-active .slide-inner .btn {
  animation-delay: .6s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
  transition: .3s;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
  font-size: 18px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, .55);
  opacity: 1;
  border-radius: 5px;
  transition: width .4s ease, background-color .4s ease;
  margin: 0 6px !important;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--secondary);
}

/* ==========================================================================
   Card component (shared: product / case / solution / blog)
   ========================================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-img {
  display: block;
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

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

.card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  background: var(--secondary);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 0 15px;
  z-index: 2;
}

.card-body {
  padding: 30px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
}

.card-body h3 a {
  color: inherit;
}

.card-body h3 a:hover,
.card:hover .card-body h3 a {
  color: var(--secondary);
}

.card-body .two {
  font-size: 15px;
  margin-bottom: 22px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
}

.card-link i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-trans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .3s, background-color .3s, color .3s;
}

.card-link:hover {
  color: var(--secondary);
}

.card-link:hover i {
  background: var(--secondary);
  color: var(--white);
  transform: translateX(5px);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-color);
  margin-bottom: 14px;
}

.card-meta i {
  color: var(--secondary);
  font-size: 13px;
}

/* ==========================================================================
   Product module (tabs + carousel)
   ========================================================================== */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.tab-nav li {
  padding: 14px 32px;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--white);
  transition: .3s;
}

.tab-nav li:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

.tab-nav li.active {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn .5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.tab-desc {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: 16px;
}

.product-swiper {
  padding: 18px 18px 66px;
  margin: -18px -18px 0;
}

.product-swiper .swiper-slide {
  height: auto;
}

.product-swiper .swiper-pagination {
  bottom: 0;
}

/* ==========================================================================
   Service module (feature tiles) — dark section
   ========================================================================== */
.service-section {
  background: var(--primary);
  position: relative;
}

.service-section .sec-title h2 {
  color: var(--white);
}

.service-section .feature-card {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .1);
}

.service-section .feature-card:hover {
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.service-section .feature-icon {
  background: rgba(240, 100, 56, .16);
}

.service-section .feature-card h3 a {
  color: var(--white);
}

.service-section .feature-card .two {
  color: rgba(255, 255, 255, .68);
}

.service-section .feature-card .card-link {
  color: var(--white);
}

.service-section .feature-card .card-link i {
  background: rgba(255, 255, 255, .1);
}

.service-section .feature-num {
  color: var(--white);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 40px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: var(--primary-trans);
  color: var(--secondary);
  font-size: 28px;
  margin-bottom: 26px;
  transition: background-color .4s, color .4s;
}

.feature-card:hover .feature-icon {
  background: var(--secondary);
  color: var(--white);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature-card h3 a {
  color: inherit;
}

.feature-card h3 a:hover,
.feature-card:hover h3 a {
  color: var(--secondary);
}

.feature-card .two {
  font-size: 15px;
  margin-bottom: 24px;
}

/* ==========================================================================
   About module
   ========================================================================== */
.about-section {
  background: var(--primary);
}

.about-section .container {
  position: relative;
  z-index: 2;
}

/* dual-image composition: main image + green offset frame + bordered sub image */
.about-figure {
  position: relative;
  padding: 0 60px 60px 0;
}

.about-figure::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 78%;
  border: 6px solid var(--secondary);
  z-index: 0;
}

.about-figure-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-figure-main img {
  width: 100%;
  /* aspect-ratio: 564 / 616; */
  /* object-fit: cover; */
  display: block;
}

.about-figure-sub {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 240px;
  max-width: 44%;
  z-index: 2;
  border: 10px solid var(--white);
  overflow: hidden;
}

.about-figure-sub img {
  width: 100%;
  aspect-ratio: 280 / 340;
  object-fit: cover;
  display: block;
}

.about-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 3;
}

.about-play-btn::before,
.about-play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(240, 100, 56, .7);
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-ring 2.4s ease-out infinite;
}

.about-play-btn::after {
  animation-delay: 1.2s;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.about-content {
  padding-left: 40px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}

.about-content h1,
.about-content h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}

.about-content>p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 18px;
}

.about-list {
  margin: 28px 0 6px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.about-list li:not(:last-child) {
  margin-bottom: 16px;
}

.about-list li i {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.about-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 44px;
}

.counter-row {
  --gutter-x: 20px;
}

.counter-item {
  padding: 26px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  transition: transform .3s, background-color .3s, border-color .3s;
}

.counter-item:hover {
  transform: translateY(-6px);
  background: rgba(240, 100, 56, .14);
  border-color: var(--secondary);
}

.counter-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
}

.counter-num .suffix {
  font-size: 26px;
  color: var(--secondary);
}

.counter-item p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--header-dark);
  color: rgba(255, 255, 255, .7);
}

.footer-top {
  padding: 90px 0 55px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14.5px;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.footer-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 28px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  background: var(--secondary);
  transition: .3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14.5px;
}

.footer-contact li i {
  color: var(--secondary);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 24px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 13.5px;
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .3s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
}

/* ==========================================================================
   Service — numbered feature tiles with watermark number
   ========================================================================== */
.feature-card .feature-num {
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  opacity: .07;
  transition: opacity .4s, color .4s;
}

.feature-card:hover .feature-num {
  color: var(--secondary);
  opacity: .18;
}

/* ==========================================================================
   Case — borderless, hover overlay + green circle arrow, green bar title
   ========================================================================== */
/* gallery-style: description overlay slides up over image, title sits below */

.case-section {
  overflow: hidden;
}

.case-section .swiper {
  overflow: visible;
}

.case-item .case-image {
  position: relative;
  overflow: hidden;
  display: block;
}


/* About page rebuild */
.about-intro-section {
  overflow: hidden;
  background: #fff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: center;
}

.about-intro-media {
  position: relative;
  padding: 0 42px 54px 0;
}

.about-intro-media::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 68%;
  background: #edf1f4;
}

.about-intro-media>img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.about-media-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(250px, 47%);
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--secondary);
}

.about-media-note span {
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.about-media-note strong {
  max-width: 160px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.45;
}

.about-intro-copy h1 {
  max-width: 680px;
  margin: 14px 0 24px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.1;
}

.about-intro-lead {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-color);
}

.about-value-list {
  margin: 30px 0 34px;
  padding: 0;
  border-top: 1px solid var(--border-color);
}

.about-value-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--primary);
}

.about-value-list span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

.about-counter-section {
  padding: 34px 0 78px;
  background: #fff;
}

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

.about-counter-item {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.about-counter-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: invert(45%) sepia(79%) saturate(2498%) hue-rotate(341deg) brightness(99%) contrast(90%);
}

.about-counter-item strong {
  display: block;
  color: var(--primary);
  font-size: 38px;
  line-height: 1;
}

.about-counter-item p {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-color);
}

.about-advantage-v2 {
  position: relative;
  overflow: hidden;
  background-color: #f2f5f8;
  background-image: radial-gradient(rgba(23, 35, 56, .08) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
}

.about-advantage-heading,
.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 44px;
}

.about-history-heading h2,
.about-advantage-heading h2,
.gallery-heading h2 {
  /* margin-top: 10px; */
  font-size: 32px;
}

.about-advantage-summary {
  max-width: 560px;
  margin: 0 0 4px;
  line-height: 1.75;
}

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

.about-advantage-item {
  position: relative;
  min-width: 0;
  min-height: 280px;
  padding: 42px 40px 96px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(23, 35, 56, .07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.about-advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(23, 35, 56, .12);
}

.about-advantage-item h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.about-advantage-item .two {
  display: block;
  max-width: 88%;
  overflow: visible;
  line-height: 1.8;
  -webkit-line-clamp: unset;
}

.about-advantage-icon {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: grid;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  place-items: center;
  overflow: visible;
  background: rgba(240, 100, 56, .16);
}

.about-advantage-icon::after {
  content: '';
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: .82;
}

.about-advantage-icon img {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 1;
  display: block;
  width: 50px;
  height: 50px !important;
  max-height: 50px;
  aspect-ratio: 1;
  border-radius: 5px;
  object-fit: cover;
}

.about-video-section {
  background: #fff;
}

.about-video-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.about-video-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 27, 44, .55);
  transition: background .3s ease;
}

.about-video-link:hover::after {
  background: rgba(14, 27, 44, .43);
}

.about-video-link img {
  display: block;
  width: 100%;
  height: clamp(380px, 34vw, 610px);
  object-fit: cover;
}

.about-video-link span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  place-items: center;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease;
}

.about-video-link:hover span {
  border-color: var(--secondary);
  background: var(--secondary);
}

.about-history {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #172338 url('../images/hero-1.jpg') center / cover fixed;
}

.about-history::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 40, .88);
}

.about-history .container,
.about-history-bottom {
  position: relative;
  z-index: 1;
}

.about-history-heading {
  text-align: center;
}

.about-history-heading h2 {
  color: #fff;
}

.about-history-heading p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .68);
}

.about-history-center {
  position: relative;
  margin-top: 40px;
}

.about-history-center .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
}

.about-history-title {
  color: #fff;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
}

.about-history-title::before {
  content: '';
  display: block;
  width: 82px;
  height: 3px;
  margin: 0 auto 10px;
  background: var(--secondary);
}

.about-history-text {
  max-width: 860px;
  min-height: 52px;
  margin: 18px auto 0;
  padding: 0 60px;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.7;
}

.about-history-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, .09);
  font-size: clamp(90px, 12vw, 180px);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.about-history-prev,
.about-history-next,
.gallery-controls button {
  position: relative;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  transition: color .3s ease, background .3s ease;
}

.about-history-prev,
.about-history-next {
  position: absolute;
  z-index: 2;
  top: 70px;
}

.about-history-prev {
  left: 0;
}

.about-history-next {
  right: 0;
}

.about-history-prev::before,
.about-history-next::before,
.gallery-controls button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.about-history-prev::before,
.about-history-next::before {
  color: var(--secondary);
}

.about-history-prev::before,
.gallery-controls button:first-child::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.about-history-next::before,
.gallery-controls button:last-child::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.about-history-prev:hover,
.about-history-next:hover,
.gallery-controls button:hover {
  color: #fff;
  background: var(--secondary);
}

.about-history-prev:hover::before,
.about-history-next:hover::before {
  color: #fff;
}

.about-history-bottom {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
}

.about-history-bottom .swiper {
  bottom: -5px;
  width: 100%;
  overflow: visible;
}

.about-history-bottom .swiper-slide {
  width: auto;
  padding: 0 54px;
  cursor: pointer;
  text-align: center;
}

.about-history-bottom .swiper-slide div {
  margin-bottom: 15px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  opacity: .45;
  transition: opacity .3s ease;
}

.about-history-bottom .swiper-slide span {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  opacity: .45;
}

.about-history-bottom .swiper-slide span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(240, 100, 56, .42);
  opacity: 0;
}

.about-history-bottom .swiper-slide-thumb-active div,
.about-history-bottom .swiper-slide-thumb-active span,
.about-history-bottom .swiper-slide-thumb-active span::before {
  opacity: 1;
}

.about-gallery-section {
  background: #fff;
}

.certificate-gallery-section {
  background: #f2f5f8;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-controls button {
  border: 1px solid var(--border-color);
  background: transparent;
}

.about-gallery-swiper {
  overflow: hidden;
}

.about-gallery-swiper img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}


.certificate-swiper img {
  object-fit: contain;
  padding: 22px;
  background: #fff;
}

@media (max-width: 1199px) {
  .about-counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
  }
}

@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-intro-media {
    max-width: 690px;
  }

  .about-advantage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-history-bottom .swiper-slide {
    padding: 0 34px;
  }
}

@media (max-width: 767px) {
  .about-intro-media {
    padding: 0 24px 38px 0;
  }

  .about-media-note {
    min-height: 132px;
    padding: 20px;
  }

  .about-media-note span {
    font-size: 34px;
  }

  .about-media-note strong {
    margin-top: 7px;
    font-size: 12px;
  }

  .about-counter-grid,
  .about-advantage-grid {
    grid-template-columns: 1fr;
  }

  .about-counter-item img {
    width: 62px;
    height: 62px;
  }

  .about-counter-item strong {
    font-size: 32px;
  }

  .about-advantage-heading,
  .gallery-heading {
    display: block;
    margin-bottom: 30px;
  }

  .about-advantage-summary {
    margin-top: 18px;
  }

  .about-video-link img {
    height: 320px;
  }

  .about-video-link span {
    width: 82px;
    height: 82px;
  }

  .about-history {
    background-attachment: scroll;
  }

  .about-history-center {
    margin-top: 34px;
  }

  .about-history-text {
    padding: 0 46px;
  }

  .about-history-sub {
    margin-top: 22px;
    font-size: 21vw;
  }

  .about-history-prev,
  .about-history-next {
    top: 54px;
    width: 40px;
    height: 40px;
  }

  .about-history-bottom {
    margin-top: 28px;
  }

  .about-history-bottom .swiper-slide {
    padding: 0 24px;
  }

  .about-history-bottom .swiper-slide div {
    font-size: 20px;
  }

  .gallery-controls {
    margin-top: 20px;
  }

  .gallery-controls button {
    width: 44px;
    height: 44px;
  }

  .about-gallery-swiper img {
    height: 260px;
  }


}

.case-item .case-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}

.case-item:hover .case-image img {
  transform: scale(1.06);
}

.case-item .case-image::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 0;
  top: auto;
  bottom: 0;
  background: rgba(16, 32, 57, .5);
  transition: height .5s ease;
  z-index: 1;
}

.case-item:hover .case-image::before {
  height: 100%;
}

/* description overlay on the image */
.case-desc {
  position: absolute;
  left: 32px;
  bottom: -140px;
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 74px 22px 26px;
  background: rgba(16, 32, 57, .55);
  backdrop-filter: blur(5px);
  border-left: 4px solid var(--secondary);
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease-in-out;
}

.case-item:hover .case-desc {
  bottom: 28px;
  opacity: 1;
  visibility: visible;
}

.case-desc .two {
  color: rgba(255, 255, 255, .92);
  font-size: 14.5px;
  margin: 0;
}

.case-desc .case-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-40deg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: .4s;
}

.case-item:hover .case-desc .case-arrow {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-50%) rotate(0);
}

/* title below the image */
.case-item .case-title {
  margin-top: 22px;
  position: relative;
  padding-left: 16px;
}

.case-item .case-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--secondary);
}

.case-item .case-title h3 {
  font-size: 21px;
  font-weight: 700;
}

.case-item .case-title h3 a {
  color: inherit;
}

.case-item .case-title h3 a:hover {
  color: var(--secondary);
}

.case-item .case-cat {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.case-swiper {
  padding-bottom: 56px;
}

.case-swiper .swiper-slide {
  height: auto;
}

.case-swiper .swiper-pagination {
  bottom: 0;
}

/* ==========================================================================
   Swiper pagination — dot with ring on active (demo2 style)
   ========================================================================== */
.product-swiper .swiper-pagination-bullet,
.case-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--border-color);
  opacity: 1;
  border-radius: 5px;
  transition: width .4s ease, background-color .4s ease;
  margin: 0 6px !important;
}

.product-swiper .swiper-pagination-bullet-active,
.case-swiper .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--secondary);
}

/* ==========================================================================
   Solution — image + overlapping lifted content box (top green edge)
   ========================================================================== */
.card.is-solution {
  border: none;
  box-shadow: var(--shadow-sm);
}

.card.is-solution .card-body {
  border-top: 3px solid var(--secondary);
  padding: 30px 28px 32px;
}

.card.is-solution .card-tag {
  top: 18px;
  left: 18px;
}

/* ==========================================================================
   Blog — floating date badge over image, clean body
   ========================================================================== */
.card.is-blog {
  border: none;
  box-shadow: var(--shadow-sm);
}

.card.is-blog .card-img {
  overflow: visible;
}

.card.is-blog .card-img img {
  overflow: hidden;
  border-radius: 0;
}

.blog-date {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 3;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 12px 18px;
  line-height: 1.1;
  box-shadow: var(--shadow-sm);
}

.blog-date .day {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
}

.blog-date .mon {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card.is-blog .card-body {
  padding-top: 34px;
}

.card.is-blog .blog-cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1199px) {
  .slide-img {
    height: 600px;
  }

  .slide-inner h1,
  .slide-inner .slide-title {
    font-size: 46px;
  }

  .sec-title h2,
  .about-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .nav-burger {
    display: block;
  }

  .nav-search-btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 84vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 26px 30px;
    overflow-y: auto;
    transition: right .35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    z-index: 200;
  }

  .nav-menu.is-open {
    right: 0;
  }

  .nav-menu>li {
    width: 100%;
  }

  .nav-menu>li>a {
    width: 100%;
    height: auto;
    padding: 15px 0;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu>li>a::after {
    display: none;
  }

  .dropdown-menu,
  .mega-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    width: 100%;
    max-width: none;
    padding: 6px 0 10px 14px;
    display: none;
  }

  .has-dropdown.is-open .dropdown-menu,
  .has-mega.is-open .mega-panel {
    display: block;
  }

  .mega-panel .row {
    flex-direction: column;
  }

  .mega-panel .col-lg-4 {
    width: 100%;
    margin-bottom: 22px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .about-figure {
    padding: 0 40px 40px 0;
  }
}

@media (max-width: 767px) {
  .slide-img {
    height: 520px;
  }

  .sec-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .slide-inner h1,
  .slide-inner .slide-title {
    font-size: 32px;
  }

  .slide-inner p {
    font-size: 15px;
  }

  .about-btns {
    flex-direction: column;
  }

  .footer-top {
    padding: 60px 0 30px;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 575px) {
  .topbar-contact span:last-child {
    display: none;
  }

  .logo,
  .footer-logo {
    font-size: 25px;
  }

}

/* ==========================================================================
   Inner pages
   ========================================================================== */
.inner-banner {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: var(--primary);
}

.inner-banner>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .52;
}

.inner-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 32, 57, .9), rgba(16, 32, 57, .42));
}

.inner-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.inner-banner h1,
.inner-banner-title {
  max-width: 780px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 50px;
  line-height: 1.16;
  font-weight: 700;
  margin-bottom: 18px;
}

.inner-banner p {
  max-width: 650px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 28px;
}

.breadcrumb-nav {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 18px 0;
  font-size: 14.5px;
}

.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-color);
}

.breadcrumb-nav li:not(:last-child)::after {
  content: '/';
  color: #a9afb7;
}

.breadcrumb-nav a {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-nav a:hover {
  color: var(--secondary);
}

.sec-title-center {
  justify-content: center;
  text-align: center;
}

.sec-title-center h1,
.sec-title-center h2,
.page-main-title {
  font-size: 40px;
  font-weight: 700;
}

.sec-title-center p {
  margin-left: auto;
  margin-right: auto;
}

.category-tile {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.category-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.category-tile img {
  width: 100%;
  aspect-ratio: 800 / 700;
  object-fit: cover;
}

.category-tile>div {
  padding: 30px;
}

.category-tile h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.category-tile h3 a:hover {
  color: var(--secondary);
}

.category-tile .two {
  margin-bottom: 22px;
}

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

.product-sidebar,
.blog-sidebar,
.contact-info-panel {
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.product-sidebar {
  position: sticky;
  top: 24px;
  padding: 28px;
}

.sidebar-title {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}

.side-category {
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
}

.side-category-head {
  display: flex;
  align-items: stretch;
  background: var(--white);
}

.side-category-link {
  display: flex;
  flex: 1;
  min-width: 0;
  min-height: 54px;
  padding: 0 8px 0 18px;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
}

.side-category-toggle {
  flex: 0 0 50px;
  min-height: 54px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

.side-category-toggle i {
  font-size: 12px;
  transition: transform .25s;
}

.side-category.is-open .side-category-toggle i {
  transform: rotate(180deg);
}

.side-category.active .side-category-head {
  background: var(--secondary);
}

.side-category.active .side-category-link,
.side-category.active .side-category-toggle {
  color: var(--white);
}

.side-category ul {
  display: none;
  padding: 14px 18px 18px;
}

.side-category.is-open ul {
  display: block;
}

.side-category li:not(:last-child) {
  margin-bottom: 10px;
}

.side-category a {
  font-size: 14.5px;
  color: var(--text-color);
}

.side-category a:hover,
.side-category a.active {
  color: var(--secondary);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.pagination a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--white);
  font-weight: 700;
}

.pagination a:hover,
.pagination a.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 0 28px;
  background: var(--white);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: var(--heading-color);
  font-weight: 700;
  cursor: pointer;
}

.faq-question i {
  color: var(--secondary);
  font-size: 13px;
  transition: transform .25s;
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 26px;
}

.cta-form-section {
  background: var(--primary);
}

.cta-form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.cta-copy h2,
.contact-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-copy h2,
.cta-copy p {
  color: var(--white);
}

.cta-copy p {
  opacity: .78;
}

.site-form {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

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

.site-form input,
.site-form textarea,
.search-page-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--border-color);
  background: var(--bg-soft);
  padding: 0 18px;
  color: var(--primary);
  font-family: var(--font-body);
  margin-bottom: 16px;
  transition: .3s;
}

.site-form textarea {
  height: 132px;
  padding-top: 16px;
  resize: vertical;
}

.site-form input:focus,
.site-form textarea:focus,
.search-page-form input:focus {
  border-color: var(--secondary);
  background: var(--white);
}

.product-gallery {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  padding: 18px;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 800 / 700;
  object-fit: cover;
}

.gallery-thumbs {
  margin-top: 14px;
}

.gallery-thumbs .swiper-slide {
  opacity: .55;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--secondary);
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-summary {
  padding-left: 24px;
}

.product-summary h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 18px;
}

.product-summary>p {
  font-size: 18px;
  margin-bottom: 24px;
}

.product-summary ul {
  margin-bottom: 30px;
}

.product-summary li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.product-summary li i {
  color: var(--secondary);
  font-size: 20px;
}

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

.detail-tabs {
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.detail-tab-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-color);
}

.detail-tab-nav li {
  padding: 19px 34px;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  border-right: 1px solid var(--border-color);
}

.detail-tab-nav li.active {
  color: var(--white);
  background: var(--secondary);
}

.detail-tab-panel {
  display: none;
  padding: 40px;
}

.detail-tab-panel.active {
  display: block;
}

.media-row {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.media-row+.media-row {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--border-color);
}

.media-row.reverse {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.media-row.reverse img {
  order: 2;
}

.media-row img {
  width: 100%;
  aspect-ratio: 800 / 600;
  object-fit: cover;
}

.media-row h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

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

.download-list a {
  min-height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-weight: 700;
}

.download-list a i {
  font-size: 20px;
}

.download-list a:hover {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}

.parameter-table {
  width: 100%;
  border-collapse: collapse;
}

.parameter-table td {
  padding: 18px 20px;
  border: 1px solid var(--border-color);
}

.parameter-table td:first-child {
  width: 32%;
  color: var(--primary);
  font-weight: 700;
  background: var(--bg-soft);
}

.detail-page h1,
.blog-detail-layout h1 {
  font-size: 38px;
  margin: 0 0 18px;
}

.lead {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 18px;
}

.detail-hero-img {
  width: 100%;
  aspect-ratio: 800 / 520;
  object-fit: cover;
}

.detail-page p+p {
  margin-top: 16px;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 800 / 600;
  object-fit: cover;
}

.post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.post-nav a {
  padding: 24px;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--primary);
}

.post-nav a:hover {
  color: var(--secondary);
}

.post-nav span {
  display: block;
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.post-nav strong {
  font-family: var(--font-heading);
  font-size: 20px;
}

.filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 38px;
}

.filter-nav li {
  padding: 12px 28px;
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
}

.filter-nav li.active,
.filter-nav li:hover {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}

.case-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.case-card-img img {
  width: 100%;
  aspect-ratio: 800 / 600;
  object-fit: cover;
}

.case-card-body {
  padding: 28px;
}

.case-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.case-card .two {
  margin-bottom: 22px;
}

.about-inner {
  background: var(--white);
}

.about-inner-img {
  width: 100%;
  aspect-ratio: 800 / 680;
  object-fit: cover;
}

.about-inner-copy {
  padding-left: 34px;
}

.about-inner-copy h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-list.dark li {
  color: var(--primary);
}

.video-marquee {
  background: var(--primary);
  overflow: hidden;
}

.video-panel {
  position: relative;
  display: block;
  max-height: 520px;
  overflow: hidden;
}

.video-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: .62;
}

.video-panel span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--white);
  font-size: 28px;
}

.marquee-line {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 42px;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding: 22px 0;
}

.marquee-line div {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

.advantage-card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--border-color);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.advantage-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  margin-bottom: 22px;
}

.advantage-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.simple-swiper,
.image-swiper {
  padding-bottom: 56px;
}

.timeline-card {
  height: 100%;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.timeline-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.image-swiper img {
  width: 100%;
  aspect-ratio: 800 / 550;
  object-fit: cover;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--text-color);
}

.article-meta img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.article-section {
  padding-top: 12px;
}

.article-section h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border-color);
}

.share-row span {
  color: var(--primary);
  font-weight: 700;
}

.share-row a,
.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-trans);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.share-row a:hover,
.contact-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

.author-card {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
  padding: 26px;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
}

.author-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
}

.author-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.blog-sidebar {
  position: sticky;
  top: 24px;
  padding: 28px;
}

.sidebar-block:not(:last-child) {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border-color);
}

.anchor-link,
.sidebar-list a {
  display: block;
  padding: 9px 0;
  color: var(--text-color);
}

.anchor-link.active,
.anchor-link:hover,
.sidebar-list a:hover {
  color: var(--secondary);
}

.mini-post {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.35;
}

.mini-post:not(:last-child) {
  margin-bottom: 14px;
}

.mini-post img {
  width: 82px;
  height: 64px;
  object-fit: cover;
}

.inline-faq .space,
.inline-faq .sec-title {
  padding: 0;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: start;
}

.contact-section h2 {
  color: var(--heading-color);
}

.contact-section p {
  margin-bottom: 26px;
}

.contact-info-panel {
  padding: 30px;
}

.contact-info-panel>div:not(.contact-social) {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-info-panel i {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-trans);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-panel span {
  color: var(--text-color);
  font-size: 13px;
}

.contact-info-panel strong {
  color: var(--primary);
  font-weight: 700;
}

.contact-social {
  display: flex;
  gap: 12px;
  padding-top: 24px;
}

.map-panel {
  margin-top: 40px;
  height: 440px;
  position: relative;
  overflow: hidden;
  background: #eef3f7;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px;
  gap: 0;
  margin: 24px 0 34px;
}

.search-page-form input {
  margin: 0;
  min-height: 62px;
}

.search-page-form button {
  border: 0;
  background: var(--secondary);
  color: var(--white);
  font-size: 19px;
  cursor: pointer;
}

.search-result-item {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.search-result-item span {
  display: block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.search-result-item:hover span {
  color: var(--secondary);
}

.status-page {
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
}

.status-page h1 {
  font-size: clamp(58px, 11vw, 110px);
  line-height: 1;
  margin-bottom: 18px;
}

.status-page p {
  max-width: 620px;
  margin: 0 auto 30px;
}

.side-tools {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 180;
  transform: translateY(-50%);
  display: grid;
  gap: 8px;
}

.side-tool {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.side-tool i {
  font-size: 19px;
}

.side-tool span {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--primary);
  color: var(--white);
  padding: 7px 11px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}

.side-tool:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.side-tool:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

/* Make the existing home case module keep all text outside the image. */
.case-item .case-image {
  overflow: visible;
}

.case-item .case-image::before {
  display: none;
}

.case-desc {
  position: static;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  margin-top: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 0;
  backdrop-filter: none;
}

.case-item:hover .case-desc {
  bottom: auto;
}

.case-desc .two {
  color: var(--text-color);
}

.case-desc .case-arrow {
  position: static;
  transform: none;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  background: var(--primary-trans);
}

.case-item:hover .case-desc .case-arrow {
  transform: none;
  background: var(--secondary);
  color: var(--white);
}

@media (max-width: 1199px) {

  .inner-banner h1,
  .inner-banner-title {
    font-size: 42px;
  }

  .product-list-layout,
  .contact-grid {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

@media (max-width: 991px) {
  .inner-banner {
    height: 380px;
  }

  .product-list-layout,
  .cta-form-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-sidebar,
  .blog-sidebar {
    position: static;
  }

  .product-summary,
  .about-inner-copy {
    padding-left: 0;
  }

  .media-row,
  .media-row.reverse {
    grid-template-columns: 1fr;
  }

  .media-row.reverse img {
    order: 0;
  }

  .blog-sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {

  .inner-banner h1,
  .inner-banner-title,
  .product-summary h1,
  .detail-page h1,
  .blog-detail-layout h1,
  .about-inner-copy h1,
  .cta-copy h2,
  .contact-section h2,
  .sec-title-center h2,
  .sec-title-center h1,
  .page-main-title {
    font-size: 32px;
  }

  .inner-banner {
    height: 340px;
  }

  .detail-tab-nav li {
    flex: 1 1 100%;
    border-right: 0;
  }

  .detail-tab-panel {
    padding: 26px;
  }

  .form-row,
  .article-gallery,
  .post-nav {
    grid-template-columns: 1fr;
  }

  .site-form {
    padding: 24px;
  }

  .side-tools {
    right: 12px;
  }

  .side-tool {
    width: 44px;
    height: 44px;
  }

  .marquee-line {
    font-size: 28px;
  }
}

/* ==========================================================================
   Refinements after xft demo review
   ========================================================================== */
body.search-open {
  overflow: hidden;
}

.search-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(8, 20, 38, .78);
  backdrop-filter: blur(7px);
  transition: opacity .25s ease, visibility .25s ease;
}

.search-wrap.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-inner {
  width: min(920px, calc(100% - 34px));
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(8, 20, 38, .28);
  border-top: 4px solid var(--secondary);
}

.search-cell {
  width: 100%;
  display: block;
  padding: 58px 46px 48px;
}

.search-field-holder {
  width: 100%;
  max-width: none;
  position: relative;
  animation: none;
}

.main-search-input {
  width: 100%;
  height: 72px;
  border: 1px solid var(--border-color);
  background: var(--bg-soft);
  padding: 0 88px 0 28px;
  color: var(--heading-color);
  font-size: 22px;
}

.search-submit {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 56px;
  height: 56px;
  border: 0;
  background: var(--secondary);
  color: var(--white);
  cursor: pointer;
}

.search-close {
  top: -24px;
  right: -24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.search-close:hover {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
  transform: none;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Restore home case: description overlays image, title remains outside. */
.case-item .case-image {
  position: relative;
  overflow: hidden;
}

.case-item .case-image::before {
  display: block;
}

.case-desc {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: -140px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 74px 22px 26px;
  margin-top: 0;
  background: rgba(16, 32, 57, .58);
  border: 0;
  border-left: 4px solid var(--secondary);
  backdrop-filter: blur(5px);
}

.case-item:hover .case-desc {
  bottom: 28px;
  opacity: 1;
  visibility: visible;
}

.case-desc .two {
  color: rgba(255, 255, 255, .92);
  margin: 0;
}

.case-desc .case-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-40deg);
  flex: none;
  width: 44px;
  height: 44px;
  background: var(--white);
}

.case-item:hover .case-desc .case-arrow {
  transform: translateY(-50%) rotate(0);
  background: var(--secondary);
  color: var(--white);
}

.faq-section {
  background: linear-gradient(180deg, var(--white) 0%, #f4f7f9 100%);
}

.faq-wrapper {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: center;
  margin-top: 0;
}

.faq-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.faq-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .2);
}

.faq-play:hover {
  background: var(--secondary);
  color: var(--white);
}

.faq-content h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.faq-content>p {
  margin-bottom: 26px;
}

.faq-list {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-item {
  background: #f7f7f7;
  margin-bottom: 14px;
}

.faq-item:not(:last-child) {
  border-bottom: 0;
}

.faq-question {
  min-height: 64px;
  padding: 18px 26px;
  background: #f7f7f7;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  color: var(--heading-color);
  font-size: 17px;
}

.faq-question>span {
  color: var(--secondary);
  font-weight: 800;
}

.faq-answer {
  padding: 0 34px 26px 74px;
  background: #f7f7f7;
}

.contact-cta-section {
  background: #f3f6f8;
}

.contact-cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-cta-copy {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.contact-cta-copy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
}

.contact-cta-overlay {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  color: var(--white);
}

.contact-cta-overlay .section-kicker,
.contact-cta-overlay p {
  color: rgba(255, 255, 255, .78);
}

.contact-cta-overlay strong {
  display: block;
  color: var(--white);
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-cta-form {
  padding: 54px;
}

.contact-cta-form h2 {
  font-size: 38px;
  margin-bottom: 14px;
}

.contact-cta-form>p {
  margin-bottom: 26px;
}

.contact-cta-form .shared-form-wrap {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.product-theme-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--primary);
  box-shadow: var(--shadow-sm);
}

.product-theme-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(0deg, rgba(16, 32, 57, .9), transparent);
  z-index: 1;
}

.product-theme-img img {
  width: 100%;
  aspect-ratio: 800 / 700;
  object-fit: cover;
  transition: transform .55s ease;
}

.product-theme-card:hover .product-theme-img img {
  transform: scale(1.06);
}

.product-theme-body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.product-theme-body span {
  display: inline-block;
  color: var(--secondary);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.product-theme-body h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.product-theme-body h3 a,
.product-theme-body .two,
.product-theme-body .card-link {
  color: var(--white);
}

.product-list-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 250px;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.product-list-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.product-list-img img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.product-list-info {
  padding: 28px 30px;
}

.product-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-list-info h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.product-list-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.product-list-info li {
  padding: 7px 12px;
  background: var(--primary-trans);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.solution-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.solution-img {
  display: block;
  margin: 18px 18px 0;
  overflow: hidden;
}

.solution-img img {
  width: 100%;
  aspect-ratio: 800 / 600;
  object-fit: cover;
  transition: transform .55s ease;
}

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

.solution-body {
  padding: 26px 30px 30px;
}

.solution-body>span {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.solution-body h3,
.case-card h3,
.blog-list-body h3 {
  font-size: 23px;
}

.blog-list-body h3 a:hover {
  color: var(--secondary);
}

.list-case-card {
  border: 0;
  box-shadow: 0 18px 45px rgba(16, 32, 57, .08);
}

.list-case-card .case-card-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.list-case-card .case-card-img span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 13px;
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.list-case-card .case-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 32, 57, .55), transparent 55%);
  z-index: 1;
}

.blog-list-card {
  height: 100%;
  background: var(--white);
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.blog-list-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.blog-list-img {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-list-img img {
  width: 100%;
  aspect-ratio: 800 / 600;
  object-fit: cover;
}

.blog-list-body {
  padding: 28px 30px 30px;
}

.blog-list-body>.card-link,
.blog-list-body>div {
  margin-top: 8px;
}

.blog-meta-line {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--text-color);
  font-size: 13px;
  margin-bottom: 13px;
}

.product-detail-hero {
  background: linear-gradient(180deg, #f5f8fa 0%, var(--white) 100%);
}

.product-detail-hero .product-gallery {
  padding: 16px;
  background: var(--white);
  border: 0;
  box-shadow: var(--shadow-md);
}

.product-detail-hero .product-summary {
  padding: 44px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary);
}

.product-mini-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.product-mini-specs div {
  padding: 16px;
  background: var(--bg-soft);
}

.product-mini-specs span {
  display: block;
  color: var(--text-color);
  font-size: 12px;
  margin-bottom: 6px;
}

.product-mini-specs strong {
  color: var(--primary);
  font-size: 14px;
}

.product-detail-tabs-section {
  background: var(--primary);
}

.product-detail-tabs-section .detail-tabs {
  border: 0;
  box-shadow: var(--shadow-md);
}

.tab-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.tab-intro h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.download-list a {
  background: var(--bg-soft);
}

.about-story-section {
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
}

.about-story-media {
  position: relative;
}

.about-story-media img {
  width: 100%;
  aspect-ratio: 800 / 720;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  right: -28px;
  bottom: 34px;
  max-width: 210px;
  padding: 26px;
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.about-experience strong {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.about-story-copy h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.about-video-band {
  background: var(--primary);
}

.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: -58px auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.about-stats-strip div {
  padding: 26px 24px;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.about-stats-strip div:last-child {
  border-right: 0;
}

.about-stats-strip strong {
  display: block;
  color: var(--primary);
  font-size: 36px;
  line-height: 1.1;
}

.about-stats-strip span {
  color: var(--text-color);
  font-size: 14px;
}

.advantage-card {
  border: 0;
  box-shadow: 0 16px 45px rgba(16, 32, 57, .08);
}

.timeline-card {
  position: relative;
  border: 0;
}

.timeline-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.factory-swiper,
.certificate-swiper {
  height: 100%;
}

.certificate-card {
  height: 100%;
  padding: 24px;
  background: var(--bg-soft);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 800 / 600;
  object-fit: cover;
  margin-bottom: 22px;
}

.main-sidebar.blog-sidebar {
  position: sticky;
  top: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.main-sidebar .single-sidebar-widget {
  padding: 34px 30px;
  background: #f8f8f8;
  margin-bottom: 28px;
}

.main-sidebar .wid-title {
  margin-bottom: 24px;
}

.main-sidebar .wid-title div {
  position: relative;
  padding-bottom: 14px;
  color: var(--heading-color);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
}

.main-sidebar .wid-title div::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: var(--secondary);
}

.main-sidebar .anchor-link {
  display: block;
  padding: 14px 18px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.main-sidebar .anchor-link+.anchor-link {
  margin-top: 10px;
}

.main-sidebar .anchor-link.active,
.main-sidebar .anchor-link:hover {
  background: var(--secondary);
  color: var(--white);
}

.news-widget-categories li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  background: var(--white);
  transition: .3s;
}

.news-widget-categories li:not(:last-child) {
  margin-bottom: 10px;
}

.news-widget-categories a,
.news-widget-categories span {
  color: var(--primary);
  font-weight: 700;
}

.news-widget-categories li.active,
.news-widget-categories li:hover {
  background: var(--secondary);
}

.news-widget-categories li.active a,
.news-widget-categories li.active span,
.news-widget-categories li:hover a,
.news-widget-categories li:hover span {
  color: var(--white);
}

.recent-items {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--primary);
}

.recent-items:not(:last-child) {
  margin-bottom: 18px;
}

.recent-items img {
  width: 86px;
  height: 72px;
  object-fit: cover;
  grid-row: span 2;
}

.recent-items span {
  color: var(--secondary);
  font-size: 13px;
}

.recent-items strong {
  color: var(--primary);
  line-height: 1.35;
}

.sidebar-faq .faq-item {
  margin-bottom: 10px;
  background: var(--white);
}

.sidebar-faq .faq-question {
  min-height: 54px;
  padding: 15px;
  background: var(--white);
  font-size: 14px;
}

.sidebar-faq .faq-answer {
  padding: 0 16px 18px 52px;
  background: var(--white);
}

.contact-info-section {
  padding-top: 92px;
}

.space-bottom {
  padding-bottom: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border-color);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  padding: 34px 30px;
  border-right: 1px solid var(--border-color);
}

.contact-info-item:last-child {
  border-right: 0;
}

.contact-info-item .icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--primary-trans);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.contact-info-item h2 {
  font-size: 22px;
  margin-bottom: 9px;
}

.contact-info-item p {
  margin: 0;
  color: var(--text-color);
  font-weight: 600;
}

.contact-info-item p a {
  color: inherit;
}

.contact-info-item p a:hover,
.footer-contact a:hover {
  color: var(--secondary);
}

.contact-page-wrap {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: stretch;
  background: var(--white);
}

.contact-page-copy {
  padding: 52px;
  background: var(--primary);
  color: var(--white);
}

.contact-page-copy h1,
.contact-page-copy h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 18px;
}

.contact-page-copy p {
  color: rgba(255, 255, 255, .75);
}

.contact-page-form {
  padding: 52px 52px 52px 0;
}

.contact-page-form .contact-form-wrap {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.contact-page-form .contact-form-wrap input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact-page-form .contact-form-wrap textarea {
  background: var(--bg-soft);
  border-color: var(--border-color);
}

.contact-page-form .contact-form-wrap input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus,
.contact-page-form .contact-form-wrap textarea:focus {
  background: var(--white);
  border-color: var(--secondary);
}

.contact-page-form .contact-form-wrap input[type="submit"],
.contact-page-form .contact-form-wrap button[type="submit"],
.contact-page-form .contact-form-wrap .main-btn {
  background: var(--secondary);
  color: var(--white);
}

.contact-page-copy .contact-social a {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.contact-page-copy .contact-social a:hover {
  background: var(--secondary);
}

@media (max-width: 1199px) {
  .product-list-card {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .contact-info-row {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .contact-info-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 991px) {

  .faq-wrapper,
  .contact-cta-wrap,
  .about-story-grid,
  .contact-page-wrap {
    grid-template-columns: 1fr;
  }

  .faq-image,
  .faq-image img {
    min-height: 420px;
  }

  .about-experience {
    right: 24px;
  }

  .about-stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .contact-page-form {
    padding: 0 52px 52px;
  }

  .main-sidebar.blog-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .search-inner {
    min-height: 180px;
  }

  .search-cell {
    padding: 44px 20px 34px;
  }

  .main-search-input {
    height: 62px;
    font-size: 17px;
    padding-right: 74px;
  }

  .search-submit {
    width: 48px;
    height: 48px;
    top: 7px;
    right: 7px;
  }

  .search-close {
    right: 0;
  }

  .product-list-card,
  .product-mini-specs,
  .about-stats-strip {
    grid-template-columns: 1fr;
  }

  .product-list-img img {
    min-height: auto;
    aspect-ratio: 800 / 600;
  }

  .contact-cta-form,
  .contact-page-copy,
  .contact-page-form {
    padding: 30px;
  }

  .contact-cta-copy {
    min-height: 380px;
  }

  .contact-cta-overlay {
    left: 26px;
    right: 26px;
    bottom: 26px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-answer {
    padding-left: 48px;
  }
}

/* ==========================================================================
   Cleaner product/about pass
   ========================================================================== */
.product-theme-card {
  position: static;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.product-theme-card::before {
  display: none;
}

.product-theme-img {
  display: block;
  background: #f7f9fb;
}

.product-theme-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}

.product-theme-card:hover .product-theme-img img {
  transform: none;
}

.product-theme-body {
  position: static;
  padding: 28px 30px 30px;
}

.product-theme-body h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.product-theme-body h3 a {
  color: var(--heading-color);
}

.product-theme-body h3 a:hover {
  color: var(--secondary);
}

.product-theme-body .two {
  color: var(--text-color);
}

.product-theme-body .card-link {
  color: var(--primary);
  margin-top: 8px;
}

.product-theme-body .card-link:hover {
  color: var(--secondary);
}

.product-list-card {
  display: block;
  min-height: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.product-list-card:hover {
  transform: translateY(-5px);
}

.product-list-img {
  display: block;
  background: #f7f9fb;
}

.product-list-img img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: initial;
}

.product-list-info {
  padding: 26px 30px 30px;
}

.product-list-info h3 {
  font-size: 24px;
}

.product-list-info .two {
  margin-bottom: 20px;
}

.product-tag,
.product-list-info ul {
  display: none;
}

.faq-wrapper {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.faq-image {
  min-height: 500px;
  background: #eef3f7;
}

.faq-image img {
  display: block;
  min-height: 500px;
  opacity: 1;
}

.faq-play {
  display: none;
}

.contact-cta-wrap {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.contact-cta-copy {
  min-height: 500px;
  background: #eef3f7;
}

.contact-cta-copy img {
  display: block;
  opacity: 1;
}

.contact-cta-overlay {
  display: none;
}

.gallery-thumbs {
  max-width: 330px;
  margin: 14px auto 0;
}

.gallery-thumbs .swiper-slide {
  height: 76px;
}

.gallery-thumbs img {
  height: 72px;
  aspect-ratio: auto;
}

.product-detail-tabs-section {
  background: #f4f7f9;
}

.product-detail-tabs-section .detail-tabs {
  background: transparent;
  box-shadow: none;
}

.detail-tab-nav {
  gap: 10px;
  border-bottom: 0;
  margin-bottom: 28px;
}

.detail-tab-nav li {
  border: 1px solid var(--border-color);
  background: var(--white);
  padding: 16px 28px;
}

.detail-tab-panel {
  background: var(--white);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.tab-intro {
  margin-bottom: 26px;
}

.tab-intro h2 {
  font-size: 30px;
  margin-bottom: 0;
}

.tab-intro p {
  display: none;
}

.media-row {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  padding: 22px;
  background: var(--bg-soft);
}

.media-row+.media-row {
  margin-top: 20px;
  padding-top: 22px;
  border-top: 0;
}

.media-row.reverse {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.media-row img {
  display: block;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  background: var(--white);
}

.download-list a {
  min-height: 58px;
  background: var(--white);
}

.parameter-table {
  background: var(--white);
}

.related-product-swiper .card,
.blog-list-card {
  border: 1px solid var(--border-color);
  box-shadow: none;
}

.related-product-swiper .card:hover,
.blog-list-card:hover {
  box-shadow: var(--shadow-sm);
}

.blog-list-img img {
  display: block;
}

.about-story-section {
  background: #f4f7f9;
}

.about-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: 0;
  align-items: stretch;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-hero-card .about-story-copy {
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-card .about-story-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

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

.about-stats-section {
  padding: 0 0 90px;
  background: #f4f7f9;
}

.about-stats-strip {
  margin: 0;
  max-width: none;
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.about-advantage-section .sec-title p,
.about-history-section .sec-title p,
.about-proof-section .sec-title p {
  max-width: 620px;
}

.advantage-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.advantage-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  margin: 0 0 24px;
}

.advantage-card h3,
.advantage-card p {
  padding-left: 26px;
  padding-right: 26px;
}

.advantage-card p {
  padding-bottom: 28px;
}

.about-video-band {
  padding: 90px 0 0;
  background: var(--primary);
}

.about-video-band .video-panel {
  max-height: none;
}

.about-video-band .video-panel img {
  height: auto;
  aspect-ratio: 16 / 7;
  opacity: .8;
}

.timeline-card {
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.factory-swiper img,
.certificate-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}

@media (max-width: 991px) {

  .about-hero-card,
  .faq-wrapper,
  .contact-cta-wrap {
    grid-template-columns: 1fr;
  }

  .about-hero-card .about-story-copy {
    padding: 38px;
  }

  .about-hero-card .about-story-media img {
    min-height: auto;
  }

  .media-row,
  .media-row.reverse {
    grid-template-columns: 1fr;
  }

  .media-row.reverse img {
    order: 0;
  }
}

@media (max-width: 767px) {
  .detail-tab-panel {
    padding: 24px;
  }

  .gallery-thumbs {
    max-width: 280px;
  }

  .gallery-thumbs .swiper-slide {
    height: 66px;
  }

  .gallery-thumbs img {
    height: 62px;
  }

  .about-hero-card .about-story-copy {
    padding: 28px;
  }
}

/* ========================================================================== 
   2026 visual system refresh
   ========================================================================== */
:root {
  --primary: #172338;
  --primary-trans: rgba(23, 35, 56, .07);
  --secondary: #f06438;
  --secondary-dark: #d84f27;
  --header-dark: #111a29;
  --heading-color: #172338;
  --text-color: #667085;
  --border-color: #dfe5ec;
  --bg-soft: #f2f5f8;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 10px 28px rgba(23, 35, 56, .07);
  --shadow-md: 0 18px 44px rgba(23, 35, 56, .11);
  --shadow-lg: 0 28px 64px rgba(23, 35, 56, .15);
}

h1,
h2,
h3,
h4,
h5,
h6,
.sec-title h2,
.about-content h1,
.about-content h2 {
  letter-spacing: 0;
}

.btn,
.sec-view-all {
  border-radius: 4px;
}

/* Navigation chevron */
.nav-chevron {
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s ease;
}

.has-dropdown:hover>a .nav-chevron,
.has-mega:hover>a .nav-chevron,
.has-dropdown.is-open>a .nav-chevron,
.has-mega.is-open>a .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

/* Give repeated modules distinct visual rhythms */
.card,
.product-theme-card,
.product-list-card,
.solution-card,
.case-card,
.feature-card,
.advantage-card,
.timeline-card,
.blog-list-card {
  border: 0;
  border-radius: 6px;
}

.card,
.product-theme-card,
.blog-list-card {
  box-shadow: var(--shadow-sm);
}

.card-img,
.product-theme-img,
.blog-list-img,
.solution-img,
.case-card-img {
  border-radius: 6px 6px 0 0;
}

.card-link i {
  border-radius: 4px;
}

.feature-card {
  background: #f4f6f9;
  box-shadow: none;
}

.feature-card:nth-child(even) {
  background: #eaf0f5;
}

.service-section .feature-card {
  border: 0;
  background: rgba(255, 255, 255, .06);
}

.service-section .feature-icon {
  background: rgba(240, 100, 56, .16);
}

/* Home about image: conventional 4:3 composition */
.about-figure {
  max-width: 700px;
  padding: 0 34px 34px 0;
}

/* .about-figure::before {
  width: 70%;
  height: 70%;
  border: 0;
  background: rgba(240, 100, 56, .22);
} */

/* .about-figure-main img {
  aspect-ratio: 4 / 3;
  max-height: 470px;
} */

.about-figure-sub {
  right: -10px;
  bottom: -10px;
  width: 180px;
  border: 7px solid var(--white);
  border-radius: 4px;
}

.about-figure-sub img {
  aspect-ratio: 4 / 3;
}

.about-play-btn {
  width: 54px;
  height: 54px;
  background: var(--secondary);
}

.about-play-btn::before,
.about-play-btn::after {
  border-color: rgba(240, 100, 56, .55);
}

/* FAQ: a calm full-width band with a balanced image */
.faq-section {
  background: #eaf0f5;
}

.faq-wrapper {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: center;
  background: transparent;
  box-shadow: none;
}

.faq-image {
  min-height: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-image img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.faq-list {
  border: 0;
  background: transparent;
}

.faq-item {
  margin-bottom: 10px;
  border: 0;
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(23, 35, 56, .055);
  overflow: hidden;
}

.faq-item:not(:last-child) {
  border-bottom: 0;
}

.faq-question {
  padding: 18px 22px;
}

.faq-question>span {
  color: var(--secondary);
}

.faq-answer {
  padding: 0 22px 20px 58px;
}

/* Product category: dark directory plus horizontal catalogue entries */
.product-list-layout {
  grid-template-columns: 282px minmax(0, 1fr);
  gap: 48px;
}

.product-sidebar {
  padding: 28px 22px;
  border-radius: 6px;
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

.product-sidebar .sidebar-title {
  color: var(--white);
  margin: 0 8px 22px;
}

.side-category {
  border: 0;
  margin-bottom: 6px;
}

.side-category-toggle {
  min-height: 50px;
  color: rgba(255, 255, 255, .78);
  background: transparent;
}

.side-category-head {
  border-radius: 4px;
  background: transparent;
}

.side-category-link {
  min-height: 50px;
  color: rgba(255, 255, 255, .78);
}

.side-category.active .side-category-head {
  color: var(--white);
  background: var(--secondary);
}

.side-category ul {
  padding: 15px 18px 18px;
}

.side-category a {
  color: rgba(255, 255, 255, .62);
}

.side-category a:hover,
.side-category a.active {
  color: var(--white);
}

.product-list-card {
  display: grid;
  grid-template-columns: minmax(250px, 34%) minmax(0, 1fr);
  align-items: center;
  min-height: 220px;
  overflow: hidden;
  background: #f4f6f9;
  box-shadow: none;
}

.product-list-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.product-list-img {
  align-self: stretch;
  display: flex;
  align-items: center;
  background: var(--white);
}

.product-list-img img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.product-list-info {
  padding: 32px 38px;
}

/* Solution and case lists no longer use category badges */
.solution-card {
  background: transparent;
}

.solution-img {
  aspect-ratio: 4 / 3;
}

.solution-body {
  position: relative;
  margin: -30px 18px 0;
  padding: 28px 26px 26px;
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.solution-body>span,
.list-case-card .case-card-img span,
.list-case-card .case-card-img::before {
  display: none;
}

.list-case-card {
  background: transparent;
  box-shadow: none;
}

.list-case-card .case-card-img {
  border-radius: 6px;
}

.list-case-card .case-card-body {
  margin: 0 14px;
  padding: 25px 6px 0;
  border-bottom: 3px solid var(--secondary);
}

/* Product detail: one composed hero and a restrained segmented tab control */
.product-detail-hero {
  background: #f2f5f8;
}

.product-detail-hero .container>.row {
  padding: 16px 6px;
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.product-detail-hero .product-gallery,
.product-detail-hero .product-summary {
  padding: 22px;
  border: 0;
  box-shadow: none;
}

.product-detail-hero .product-summary {
  padding-left: 18px;
}

.product-mini-specs {
  gap: 0;
  padding: 18px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: transparent;
}

.product-mini-specs>div {
  padding: 0 18px;
  border-right: 1px solid var(--border-color);
  background: transparent;
}

.product-mini-specs>div:first-child {
  padding-left: 0;
}

.product-mini-specs>div:last-child {
  border-right: 0;
}

.gallery-main {
  border-radius: 6px;
  background: #f4f6f9;
}

.gallery-thumbs {
  max-width: 280px;
  margin-top: 12px;
}

.gallery-thumbs .swiper-slide {
  height: 62px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide-thumb-active {
  border-color: var(--secondary);
}

.gallery-thumbs img {
  height: 58px;
  display: block;
}

.product-detail-tabs-section {
  background: var(--white);
}

.detail-tab-nav {
  display: inline-flex;
  gap: 0;
  margin-bottom: 38px;
  padding: 5px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #f2f5f8;
}

.detail-tab-nav li {
  min-width: 145px;
  padding: 13px 22px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  text-align: center;
}

.detail-tab-nav li.active {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 6px 16px rgba(23, 35, 56, .18);
}

.detail-tab-panel {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.media-row,
.media-row+.media-row {
  gap: 38px;
  margin-top: 0;
  margin-bottom: 22px;
  padding: 26px;
  border: 0;
  border-radius: 6px;
  background: #f2f5f8;
}

.product-detail-tabs-section .media-row {
  grid-template-columns: 550px minmax(0, 1fr);
}

.product-detail-tabs-section .media-row.reverse {
  grid-template-columns: minmax(0, 1fr) 550px;
}

.media-row:nth-child(odd) {
  background: #e8eef4;
}

.product-detail-tabs-section .media-row img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 4px;
}

.simple-detail-page {
  min-height: 520px;
  background: #f2f5f8;
}

.simple-detail-page .narrow {
  padding: 62px 68px;
  border-left: 4px solid var(--secondary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.simple-detail-page h1 {
  margin-bottom: 24px;
}

.simple-detail-page .lead {
  margin-bottom: 42px;
}

@media (max-width: 1400px) {
  .product-detail-tabs-section .media-row.reverse {
    grid-template-columns: minmax(0, 1fr) 440px;
  }

  .product-detail-tabs-section .media-row {
    grid-template-columns: 400px minmax(0, 1fr);
  }
}

@media (max-width: 991px) {

  .product-detail-tabs-section .media-row,
  .product-detail-tabs-section .media-row.reverse {
    grid-template-columns: 1fr;
  }

  .product-detail-tabs-section .media-row.reverse img {
    order: 0;
  }

  .product-detail-tabs-section .media-row img {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .product-detail-tabs-section .media-row img {
    height: 230px;
  }

  .simple-detail-page .narrow {
    padding: 38px 24px;
  }
}

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

.download-list a {
  min-height: 92px;
  border: 0;
  border-radius: 5px;
  background: #f2f5f8;
}

.parameter-table {
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

/* About page: editorial split instead of another outlined card */
.about-story-section {
  background: var(--white);
}

.about-hero-card {
  box-shadow: none;
  border-radius: 7px;
  overflow: hidden;
}

.about-hero-card .about-story-copy {
  color: rgba(255, 255, 255, .72);
  background: var(--primary);
}

.about-hero-card .about-story-copy h1,
.about-hero-card .about-list.dark li {
  color: var(--white);
}

.about-hero-card .about-story-media img {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.about-stats-section {
  padding-top: 26px;
  background: var(--white);
}

.about-stats-strip {
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--secondary);
}

.about-stats-strip div {
  border-color: rgba(255, 255, 255, .28);
}

.about-stats-strip strong,
.about-stats-strip span {
  color: var(--white);
}

.advantage-card {
  background: #f2f5f8;
}

.timeline-card {
  border: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Contact page and footer WhatsApp */
.contact-info-section {
  background: #f2f5f8;
}

.contact-info-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
}

.contact-info-item,
.contact-info-item:last-child {
  padding: 28px 24px;
  border: 0;
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-info-item span {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--header-dark);
  font-weight: 600;
}

.contact-info-item .icon {
  border-radius: 5px;
  background: rgba(240, 100, 56, .12);
  color: var(--secondary);
}

.contact-page-wrap {
  overflow: hidden;
  border-radius: 7px;
  box-shadow: var(--shadow-md);
}

.contact-page-copy {
  color: rgba(255, 255, 255, .72);
  background: var(--primary);
}

.contact-page-copy h1,
.contact-page-copy h2 {
  color: var(--white);
}


@media (max-width: 1199px) {
  .contact-info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {

  .faq-wrapper,
  .product-list-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

  .product-detail-hero .product-summary {
    padding-left: 22px;
  }

  .download-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .product-list-card {
    grid-template-columns: 1fr;
  }

  .detail-tab-nav {
    display: flex;
    width: 100%;
  }

  .detail-tab-nav li {
    min-width: 0;
    flex: 1 1 33.333%;
    padding: 12px 8px;
    font-size: 13px;
  }

  .contact-info-row {
    grid-template-columns: 1fr;
  }

  .product-mini-specs {
    grid-template-columns: 1fr;
  }

  .product-mini-specs>div,
  .product-mini-specs>div:first-child {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .product-mini-specs>div:last-child {
    border-bottom: 0;
  }
}

/* Home about counters: full-width row below the two-column story */
.home-about-counter {
  margin-top: 62px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.home-about-counter .about-counter-item strong {
  color: var(--white);
}

.home-about-counter .about-counter-item p {
  color: rgba(255, 255, 255, .64);
}

/* FAQ: questions on the left, supporting image on the right */
.faq-wrapper {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
}

.faq-content h2 {
  margin-top: 0;
}

/* Solution listing: compact image-led cards with a clear action row */
.solution-list-section {
  background: #f2f5f8;
}

.solution-list-section .solution-card {
  height: 100%;
  padding: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 32px rgba(23, 35, 56, .07);
  transition: transform .35s ease, box-shadow .35s ease;
}

.solution-list-section .solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(23, 35, 56, .12);
}

.solution-list-section .solution-img {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 4 / 3;
}

.solution-list-section .solution-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-list-section .solution-body {
  margin: 0;
  padding: 27px 20px 20px;
  border-radius: 0 0 5px 5px;
  background: var(--white);
  box-shadow: none;
}

.solution-list-section .solution-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.solution-list-section .solution-body h3 a:hover {
  color: var(--secondary);
}

.solution-list-section .solution-body .two {
  min-height: 52px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
}

.solution-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.solution-action i {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 4px;
  background: #f2f5f8;
  transition: color .3s ease, background .3s ease;
  font-size: 16px;
}

.solution-action:hover i {
  color: var(--white);
  background: var(--secondary);
}

/* Case listing: wider editorial entries, visually distinct from solutions */
.case-list-section {
  background: var(--white);
}

.case-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
}

.case-filter-nav a {
  display: flex;
  min-width: 145px;
  min-height: 58px;
  padding: 12px 28px;
  border: 1px solid var(--border-color);
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--white);
  font-weight: 700;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.case-filter-nav a:hover,
.case-filter-nav a.active {
  color: var(--white);
  border-color: var(--secondary);
  background: var(--secondary);
}

.case-list-section .list-case-card {
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .35s ease;
}

.case-list-section .list-case-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.case-list-section .case-card-img {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.case-list-section .case-card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .55s ease;
}

.case-list-section .list-case-card:hover .case-card-img img {
  transform: scale(1.035);
}

.case-list-section .case-card-body {
  position: relative;
  margin: 0 16px;
  padding: 28px 8px 22px;
  border-bottom: 3px solid var(--secondary);
}

.case-list-section .case-card-body h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.case-list-section .case-card-body h3 a:hover {
  color: var(--secondary);
}

.case-list-section .case-card-body .two {
  max-width: 92%;
  min-height: 56px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}

.case-list-section .case-card-body .card-link i {
  border-radius: 4px;
}

@media (max-width: 991px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-content {
    order: 1;
  }

  .faq-image {
    order: 2;
  }
}

@media (max-width: 767px) {

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .case-filter-nav a {
    min-width: 0;
    min-height: 50px;
    padding: 10px 12px;
  }

  .home-about-counter {
    margin-top: 42px;
    padding-top: 34px;
  }

  .case-list-section .case-card-body {
    margin: 0 8px;
    padding-inline: 4px;
  }

  .case-list-section .case-card-body h3 {
    font-size: 22px;
  }
}

/* Blog category links */
.filter-nav>a {
  display: flex;
  min-height: 50px;
  padding: 12px 28px;
  border: 1px solid var(--border-color);
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--white);
  font-weight: 700;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.filter-nav>a:hover,
.filter-nav>a.active {
  color: var(--white);
  border-color: var(--secondary);
  background: var(--secondary);
}



#text-side {
  display: none;
}

@media (min-width: 992px) {
  #text-side-phone {
    display: none;
  }

  #text-side {
    display: block;
  }
}

#toc-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.toc-container {
  line-height: 1.75;
}

.toc-item {
  color: #333;
  transition: ease-out .36s;
}

.toc-item-title {
  position: relative;
  font-size: 16px;
  padding: 5px 25px 5px 0;
}

.toc-sub-item {
  font-size: 14px;
  padding: 2px 0 4px 20px;
  color: #333;
}

.toc-item span {
  cursor: pointer;
  text-decoration: none;
}

.toc-item span:hover {
  text-decoration: underline;
}

.toc-item.active,
.toc-container:has(.toc-sub-list .active) .toc-item-title {
  color: var(--secondary);
}

.toc-sub-list {
  padding: 3px 0;
  display: none;
}

.toc-icon {
  position: absolute;
  right: 0;
  top: 6px;
  transform: rotate(-90deg);
  font-style: normal;
  transition: ease-out .36s;
  cursor: pointer;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toc-icon:before {
  content: "⌵";
  font-weight: bold;
}

.toc-item-title.on .toc-icon {
  transform: rotate(0deg);
}

#text-content em {
  font-style: italic;
}

#text-content * {
  margin: revert !important;
  padding: revert !important;
}

#text-content table,
#text-content table th,
#text-content table td {
  width: revert !important;
  height: revert !important;
  text-align: revert !important;
  border-spacing: revert !important;
  border-collapse: revert !important;
}

#text-content h1,
#text-content h2,
#text-content h3,
#text-content h4,
#text-content h5,
#text-content h6,
#text-content p {
  font-size: revert;
}



/* Mobile navigation refinement */
@media (max-width: 991px) {
  body.nav-open {
    overflow: hidden;
  }

  .navbar {
    height: 72px;
  }

  .navbar .logo img {
    width: 138px;
  }

  .nav-burger {
    position: relative;
    z-index: 210;
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    place-items: center;
    color: var(--white);
    background: var(--primary);
  }

  body.nav-open .nav-burger {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 260;
    background: var(--secondary);
  }

  body.nav-open .nav-burger i {
    display: none;
  }

  body.nav-open .nav-burger::before,
  body.nav-open .nav-burger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
  }

  body.nav-open .nav-burger::before {
    transform: rotate(45deg);
  }

  body.nav-open .nav-burger::after {
    transform: rotate(-45deg);
  }

  .nav-menu {
    right: min(-380px, -92vw);
    width: min(360px, 90vw);
    max-width: none;
    height: 100vh;
    height: 100dvh;
    padding: 80px 20px 28px;
    gap: 0;
    background: var(--white);
    overscroll-behavior: contain;
    box-shadow: -18px 0 50px rgba(23, 35, 56, .2);
  }

  .nav-menu::before {
    content: 'Menu';
    position: absolute;
    top: 27px;
    left: 22px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
  }

  .nav-menu>li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu>li>a {
    position: relative;
    min-height: 57px;
    padding: 16px 54px 16px 4px;
    border: 0;
    color: var(--primary);
    font-size: 16px;
  }

  .nav-menu>li.active>a {
    color: var(--secondary);
  }

  .nav-menu .nav-chevron {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 44px;
    height: 42px;
    margin: 0;
    border: 0;
    border-left: 1px solid var(--border-color);
    border-radius: 3px;
    background: var(--bg-soft);
    transform: translateY(-50%);
  }

  .nav-menu .nav-chevron::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 17px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .25s ease;
  }

  .has-dropdown:hover>a .nav-chevron,
  .has-mega:hover>a .nav-chevron,
  .has-dropdown.is-open>a .nav-chevron,
  .has-mega.is-open>a .nav-chevron {
    transform: translateY(-50%);
  }

  .has-dropdown.is-open>a .nav-chevron::before,
  .has-mega.is-open>a .nav-chevron::before {
    top: 19px;
    transform: rotate(225deg);
  }

  .dropdown-menu,
  .mega-panel {
    margin: 0 0 14px;
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--bg-soft);
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.is-open .dropdown-menu,
  .has-mega:hover .mega-panel,
  .has-mega.is-open .mega-panel {
    transform: none;
  }

  .dropdown-menu li a,
  .mega-col ul li a {
    display: flex;
    min-height: 40px;
    padding: 9px 6px;
    align-items: center;
    color: var(--text-color);
    font-size: 14px;
  }

  .dropdown-menu li a:hover {
    padding-left: 6px;
  }

  .mega-panel .row {
    margin: 0;
  }

  .mega-panel .col-lg-4 {
    margin: 0;
    padding: 0;
  }

  .mega-col-title {
    margin: 8px 0 4px;
    padding: 0 6px 8px;
    font-size: 12px;
  }

  .mega-col ul li {
    margin: 0;
  }

  .nav-overlay {
    background: rgba(17, 26, 41, .68);
    backdrop-filter: blur(2px);
  }

  .space {
    padding-top: 80px;
    padding-bottom: 0;
  }

}

@media (max-width: 767px) {

  .space {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .about-history-heading h2,
  .about-advantage-heading h2,
  .gallery-heading h2 {
    font-size: 26px;
  }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }

  .tab-nav li {
    padding: 10px 16px;
    font-size: 14px;
  }

  .index-product .sec-title {
    margin-bottom: 30px;
  }

}

@media (max-width: 575px) {
  .blog-filter-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .filter-nav>a {
    min-width: 0;
    padding: 10px 12px;
  }
}

/* Shared CF7 form output */
.cf7-form-wrap {
  background: transparent;
}

.cf7-form-wrap .wpcf7,
.cf7-form-wrap .wpcf7 form {
  margin: 0;
}

.cf7-form-wrap .wpcf7 p {
  margin: 0;
}

.cf7-form-wrap br {
  display: none;
}

.cf7-form-wrap .row {
  row-gap: 0;
}

.cf7-form-wrap .input-box {
  margin: 0;
}

.cf7-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.cf7-form-wrap input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.cf7-form-wrap textarea {
  display: block;
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--border-color);
  background: var(--bg-soft);
  padding: 0 18px;
  color: var(--primary);
  font-family: var(--font-body);
  margin-bottom: 16px;
  transition: .3s;
}

.cf7-form-wrap textarea {
  height: 132px;
  padding-top: 16px;
  resize: vertical;
}

.cf7-form-wrap input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus,
.cf7-form-wrap textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
}

.cf7-form-wrap .main-btn,
.cf7-form-wrap input[type="submit"],
.cf7-form-wrap button[type="submit"] {
  display: inline-flex;
  min-width: 180px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.cf7-form-wrap .main-btn:hover,
.cf7-form-wrap input[type="submit"]:hover,
.cf7-form-wrap button[type="submit"]:hover {
  background: var(--secondary-dark);
}

.cf7-form-wrap .wpcf7-spinner {
  margin: 0 0 0 12px;
}

.cf7-form-wrap .wpcf7-not-valid-tip {
  margin: -8px 0 12px;
  font-size: 13px;
}

.cf7-form-wrap .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-color: var(--border-color);
  color: var(--text-color);
}

/* Home module spacing, matching demo2 .space rhythm */
body .index-product.space {
  padding-bottom: 90px;
}

body .index-product + .service-section.space {
  padding-top: 0;
}

body .index-product + .service-section.space > .container {
  padding-top: 90px;
}

@media (max-width: 1199px) {
  body .index-product.space {
    padding-bottom: 80px;
  }

  body .index-product + .service-section.space {
    padding-top: 0;
  }

  body .index-product + .service-section.space > .container {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  body .index-product.space {
    padding-bottom: 60px;
  }

  body .index-product + .service-section.space {
    padding-top: 0;
  }

  body .index-product + .service-section.space > .container {
    padding-top: 60px;
  }
}
