
:root {
  --primary: #000000;
  --brand-black: #000000;
  --brand-black-rgb: 0, 0, 0;
  --secondary: #f7f8fb;
  --text: #74777d;
  --accent: #e50909;
  --accent-dark: #ad0606;
  --brand-blue: #0035d8;
  --brand-blue-dark: #00249a;
  --brand-blue-rgb: 0, 53, 216;
  --accent-rgb: 229, 9, 9;
  --white: #ffffff;
  --divider: #e4e8ef;
  --dark: #111111;
  --dark-soft: #191919;
  --surface-soft: #f8fafc;
  --shadow: 0 18px 55px rgba(var(--brand-black-rgb), 0.12);
  --font: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  opacity: 1;
  transition: none;
}
body.page-ready { opacity: 1; }
body.menu-open { overflow: hidden; }
body.menu-open .social-float, body.menu-open .go-top { opacity: 0; visibility: hidden; pointer-events: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container, .container-lg, .container-xl, .container-xxl { padding-left: 15px; padding-right: 15px; }

.preloader { display: none; }

.btn-default, .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 46px 15px 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white) !important;
  font-weight: 800;
  text-transform: capitalize;
  box-shadow: none;
  overflow: hidden;
  transition: all 350ms ease;
}
.btn-default::after, .btn-primary::after {
  content: "\F138";
  position: absolute;
  right: 18px;
  font-family: bootstrap-icons;
  font-size: 1rem;
  color: var(--white);
  transition: transform 350ms ease;
}
.btn-default:hover, .btn-primary:hover { background: linear-gradient(135deg, var(--primary), var(--brand-blue-dark)); color: var(--white) !important; transform: translateY(-2px); }
.btn-default:hover::after, .btn-primary:hover::after { transform: translateX(4px); }
.btn-outline-light { min-height: 52px; border-radius: 10px; padding: 14px 24px; font-weight: 800; }

.topbar {
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--divider);
}
.topbar .container { max-width: 1300px; }
.topbar-logo img { width: auto; height: 92px; max-width: min(250px, 56vw); object-fit: contain; object-position: left center; }
.topbar-info { display: flex; align-items: center; justify-content: flex-end; gap: 28px; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 750; }
.topbar-info i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(229,9,9,.1); color: var(--accent); border: 1px solid rgba(229,9,9,.22); }
.topbar-info span i { background: rgba(var(--brand-blue-rgb),.1); color: var(--brand-blue); border-color: rgba(var(--brand-blue-rgb),.24); }

.site-header { position: sticky; top: 0; z-index: 1000; background: var(--brand-black); border-bottom: 3px solid var(--brand-blue); box-shadow: 0 10px 35px rgba(0,0,0,.12); }
.navbar { min-height: 78px; padding: 0; }
.navbar-brand { display: inline-flex; align-items: center; margin-right: 34px; }
.navbar-brand img { width: auto; height: 58px; max-width: min(168px, 50vw); object-fit: contain; filter: none; }
.navbar-nav { gap: 2px; }
.nav-link { color: rgba(255,255,255,.9) !important; font-weight: 800; padding: 28px 16px !important; text-transform: capitalize; transition: all 300ms ease; }
.nav-link:hover, .nav-link.active, .nav-mega:hover > .nav-link { color: var(--accent) !important; }
.nav-mega { position: relative; }
.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(720px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: all 300ms ease;
}
.nav-mega:hover .mega-panel, .nav-mega:focus-within .mega-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.mega-intro { padding: 22px; border-radius: 14px; background: var(--primary); color: var(--white); }
.mega-intro i { color: var(--accent); font-size: 2rem; }
.mega-intro h3 { color: var(--white); margin: 12px 0 8px; font-size: 1.15rem; font-weight: 900; }
.mega-intro p { margin: 0 0 14px; color: rgba(255,255,255,.7); }
.mega-intro a { color: var(--accent); font-weight: 900; }
.mega-columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.mega-group span { display: block; color: var(--primary); font-weight: 900; margin-bottom: 8px; }
.mega-group a { display: block; color: var(--text); font-weight: 750; padding: 6px 0; transition: color 300ms ease, padding-left 300ms ease; }
.mega-group a:hover { color: var(--accent); padding-left: 5px; }
.header-social-links { display: flex; gap: 10px; margin-left: 22px; }
.header-social-links a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(var(--brand-blue-rgb),.46); background: rgba(255,255,255,.06); color: var(--white); transition: all 300ms ease; }
.header-social-links a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.header-social-links a:nth-child(2) { border-color: rgba(var(--brand-blue-rgb),.62); color: #6f8dff; }
.header-social-links a:nth-child(2):hover { background: var(--brand-blue); }
.hamburger, .drawer-close { width: 52px; height: 52px; border-radius: 16px; border: 1px solid rgba(229,9,9,.22); background: var(--white); display: grid; place-items: center; box-shadow: 0 14px 34px rgba(14, 24, 36, .12); }
.hamburger { position: relative; align-content: center; gap: 7px; overflow: hidden; }
.hamburger::before { content: ""; position: absolute; inset: 9px; border-radius: 12px; background: linear-gradient(135deg, rgba(229,9,9,.14), rgba(255,255,255,0)); opacity: .9; }
.hamburger span { position: relative; display: block; width: 25px; height: 2.5px; background: var(--accent-dark); border-radius: 99px; transition: transform 320ms ease, width 320ms ease, background 320ms ease; }
.hamburger span:nth-child(2) { width: 17px; justify-self: end; }
.hamburger.is-active span { background: var(--primary); }
.hamburger.is-active span:nth-child(1) { width: 25px; transform: translateY(5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { width: 25px; transform: translateY(-5px) rotate(-45deg); }
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1200;
  width: min(390px, 92vw);
  max-width: 100vw;
  padding: 18px;
  background: var(--white);
  transform: translate3d(100%, 0, 0);
  transition: transform 420ms cubic-bezier(.16,1,.3,1), opacity 260ms ease, visibility 260ms ease;
  box-shadow: var(--shadow);
  overflow-y: auto;
  overflow-x: hidden;
  contain: paint;
}
.mobile-drawer.is-visible { display: block; }
.mobile-drawer.open {
  transform: translate3d(0, 0, 0);
}
.drawer-overlay { position: fixed; inset: 0; z-index: 1100; border: 0; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: all 300ms ease; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.drawer-header .brand-logo { width: auto; height: 58px; max-width: min(168px, 50vw); object-fit: contain; }
.drawer-close { background: var(--secondary); color: var(--primary); font-size: 1.25rem; }
.drawer-nav { display: grid; gap: 8px; }
.drawer-nav a,
.drawer-products summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid rgba(14, 24, 36, .08);
  background: var(--white);
  color: var(--primary);
  font-weight: 900;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(14,24,36,.05);
}
.drawer-nav a.active,
.drawer-products[open] summary {
  background: var(--secondary);
  border-color: rgba(229,9,9,.28);
  color: var(--accent-dark);
}
.drawer-products summary { cursor: pointer; list-style: none; }
.drawer-products summary::-webkit-details-marker { display: none; }
.drawer-products summary i { transition: transform 300ms ease; }
.drawer-products[open] summary i { transform: rotate(180deg); }
.drawer-submenu {
  display: grid;
  gap: 6px;
  padding: 8px 0 2px 14px;
  margin-left: 12px;
  border-left: 2px solid rgba(229,9,9,.24);
}
.drawer-submenu a {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--text);
  font-size: .94rem;
  font-weight: 850;
  box-shadow: none;
}
.drawer-contact {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
}
.drawer-contact span {
  display: block;
  max-width: 100%;
  color: rgba(255,255,255,.92);
  font-weight: 850;
  line-height: 1.42;
}
.drawer-contact-actions {
  display: grid;
  gap: 8px;
}
.drawer-contact a {
  display: block;
  width: fit-content;
  color: var(--accent);
  font-weight: 900;
  line-height: 1.25;
}

.section { padding: 100px 0; }
.section-row { margin-bottom: 52px; }
.section-title h3, .sub-heading { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: .86rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.section-title h3::before, .sub-heading::before { content: ""; width: 22px; height: 2px; background: var(--accent); }
.section-title h1, .section-title h2 { color: var(--primary); font-size: clamp(2.05rem, 4.8vw, 3.8rem); line-height: 1.08; font-weight: 900; letter-spacing: -.02em; }
.section-title h1 .heading-accent, .section-title h2 .heading-accent { color: var(--accent); }
.section-title p { margin-top: 18px; max-width: 680px; }
.dark-section h1, .dark-section h2, .dark-section h3 { color: var(--white); }
.dark-section h1 .heading-accent, .dark-section h2 .heading-accent { color: var(--accent); }
.dark-section p { color: rgba(255,255,255,.74); }
.section-title h1,
.section-title h2,
.page-banner h1 {
  overflow: visible;
}

.heading-word {
  display: inline-block;
  white-space: nowrap;
}

.heading-letter {
  display: inline-block;
  opacity: 0;
  transform: translate3d(-0.65em, 0.25em, 0) rotateY(28deg);
  transform-origin: left center;
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--letter-delay, 0ms);
  will-change: transform, opacity;
}

.is-letter-visible .heading-letter {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0);
}

.hero { position: relative; min-height: clamp(560px, calc(100svh - 250px), 660px); display: flex; align-items: center; overflow: hidden; background: var(--primary); color: var(--white); padding: clamp(44px, 5vh, 66px) 0 clamp(118px, 12vh, 140px); }
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 950ms ease, visibility 950ms ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide .container {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
  transition: opacity 240ms ease, transform 240ms ease, visibility 0s linear 240ms;
}
.hero-slide.active .container {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.16,1,.3,1), visibility 0s;
}
.hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,20,20,.92), rgba(20,20,20,.62), rgba(20,20,20,.28)),
    linear-gradient(180deg, rgba(20,20,20,.08), rgba(20,20,20,.46));
}
.hero-slide-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: translateZ(0);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding-top: 0; }
.hero-content h1 { margin: 0; color: var(--white); font-size: clamp(2.72rem, 4.7vw, 4.1rem); line-height: 1.02; font-weight: 900; letter-spacing: -.02em; }
.hero-content h1 .heading-accent { color: var(--accent); }
.hero-content p { margin: 22px 0 0; max-width: 650px; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.hero-btn { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-slide .section-title h3,
.hero-slide .section-title p,
.hero-slide .hero-btn {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(.16,1,.3,1);
}
.hero-slide.active .section-title h3,
.hero-slide.active .section-title p,
.hero-slide.active .hero-btn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-slide.active .section-title p { transition-delay: 160ms; }
.hero-slide.active .hero-btn { transition-delay: 260ms; }
.hero-slide:not(.active) .heading-letter,
.hero-slide:not(.active) .heading-word {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}
.hero-slider-controls {
  position: absolute;
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: 172px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: var(--white);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}
.hero-arrow:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}
.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-dot {
  width: 34px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.34);
  overflow: hidden;
}
.hero-dot::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--brand-blue));
  transform: scaleX(0);
  transform-origin: left center;
}
.hero-dot.active::before {
  animation: heroDotProgress 6.8s linear forwards;
}
@keyframes heroDotProgress {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dot.active::before {
    animation: none;
  }
}
.excellence-list { position: relative; z-index: 2; margin-top: -43px; margin-bottom: 76px; }
.excellence-list ul { margin: 0; padding: 28px 34px; list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; border-radius: 18px; background: linear-gradient(105deg, var(--primary) 0%, var(--accent) 54%, var(--brand-blue) 100%); color: var(--white); box-shadow: var(--shadow); }
.excellence-list li { position: relative; padding-left: 26px; font-weight: 900; }
.excellence-list li::before { content: "\F26A"; position: absolute; left: 0; font-family: bootstrap-icons; }

.about-image { position: relative; min-height: 520px; }
.about-img-1, .about-img-2, .image-anime { overflow: hidden; border-radius: 18px; }
.about-img-1 img, .about-img-2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms ease; }
.about-img-1:hover img, .about-img-2:hover img, .gallery-card:hover img, .product-card:hover img { transform: scale(1.06); }
.about-img-1 { width: 72%; height: 430px; }
.about-img-2 { position: absolute; right: 0; bottom: 0; width: 47%; height: 280px; border: 12px solid var(--white); box-shadow: var(--shadow); }
.about-contact-badge {
  position: absolute;
  left: 62%;
  top: 64%;
  z-index: 3;
  transform: translate(-50%, -50%);
}
.about-contact-badge:hover {
  transform: translate(-50%, -50%) scale(1.04);
}
.check-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--primary); font-weight: 750; }
.check-list li::before { content: "\F26E"; position: absolute; left: 0; top: 0; font-family: bootstrap-icons; color: var(--accent); }
.rating-box { margin-top: 28px; padding: 24px; border-radius: 16px; background: var(--secondary); display: inline-block; }
.rating-box strong { display: block; color: var(--primary); font-size: 2.2rem; line-height: 1; }
.rating-box span { color: var(--text); font-weight: 800; }

.home-about-redesign {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.home-about-redesign::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38,38,38,.035) 1px, transparent 1px),
    linear-gradient(rgba(38,38,38,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.home-about-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 14%, rgba(229,9,9,.28), transparent 28%),
    linear-gradient(135deg, var(--brand-black) 0%, var(--dark-soft) 100%);
  box-shadow: 0 24px 70px rgba(38,38,38,.16);
  color: rgba(255,255,255,.76);
  overflow: hidden;
}
.home-about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .35;
}
.home-about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: clamp(8px, 2vw, 18px) 0;
}
.home-about-content .section-title p {
  max-width: 620px;
  color: rgba(255,255,255,.72);
}
.home-about-content .section-title h2 {
  color: var(--white);
}
.home-about-content .section-title h2 .heading-accent {
  color: var(--accent);
}
.home-about-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}
.home-about-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-weight: 850;
}
.home-about-points i {
  color: var(--accent);
}
.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}
.home-about-note {
  color: rgba(255,255,255,.66);
  font-weight: 750;
}
.home-about-visual {
  position: relative;
  z-index: 1;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
}
.home-about-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.home-about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.72));
}
.home-about-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.home-about-badge span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  text-align: center;
  font-size: .82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.about-overview-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.about-overview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38,38,38,.035) 1px, transparent 1px),
    linear-gradient(rgba(38,38,38,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}
.about-overview-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .58fr);
  gap: clamp(28px, 4vw, 52px);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(229,9,9,.26), transparent 30%),
    linear-gradient(135deg, var(--brand-black) 0%, var(--dark-soft) 100%);
  color: rgba(255,255,255,.74);
  box-shadow: 0 24px 70px rgba(38,38,38,.16);
  overflow: hidden;
}
.about-overview-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .32;
}
.about-overview-content,
.about-overview-side,
.about-overview-highlights {
  position: relative;
  z-index: 1;
}
.about-overview-copy {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-top: 24px;
}
.about-overview-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
}
.about-overview-side {
  display: grid;
  gap: 16px;
  align-content: start;
}
.about-overview-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.13);
}
.about-overview-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.about-overview-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.about-overview-metrics article {
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.about-overview-metrics strong {
  display: block;
  color: var(--accent);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 900;
}
.about-overview-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.76);
  font-weight: 800;
}
.about-overview-highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}
.about-overview-highlights article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  transition: transform 350ms ease, border-color 350ms ease, background 350ms ease;
}
.about-overview-highlights article:hover {
  transform: translateY(-6px);
  border-color: rgba(229,9,9,.62);
  background: rgba(255,255,255,.1);
}
.about-overview-highlights i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.35rem;
}
.about-overview-highlights h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.about-overview-highlights p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .94rem;
}

.worker-feature {
  position: relative;
  margin: 0;
  padding: 92px 0 120px;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
  background:
    radial-gradient(circle at 78% 45%, rgba(var(--brand-blue-rgb), .12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #eef3ff 100%);
}
.worker-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(229, 9, 9, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 9, 9, .08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.worker-feature::after {
  content: "";
  position: absolute;
  right: clamp(28px, 8vw, 150px);
  top: 50%;
  width: min(500px, 34vw);
  height: min(500px, 34vw);
  z-index: -1;
  border: 1px solid rgba(229, 9, 9, .26);
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
  transform: translateY(-50%);
}
.worker-feature-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, .78fr);
  align-items: center;
  gap: 56px;
  min-height: 520px;
}
.worker-feature-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.worker-feature .section-title h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.2vw, 4.6rem);
}
.worker-feature-visual {
  position: relative;
  min-height: 560px;
  z-index: 3;
}
.worker-feature-visual::before {
  content: "";
  position: absolute;
  right: clamp(12px, 4vw, 70px);
  top: 20%;
  width: clamp(120px, 15vw, 210px);
  height: clamp(120px, 15vw, 210px);
  border-radius: 50%;
  border: 1px solid rgba(229, 9, 9, .36);
  background: rgba(255, 255, 255, .24);
  animation: breatheCircle 4.8s ease-in-out infinite;
}
.worker-popout-stage {
  position: absolute;
  right: clamp(-8px, 2vw, 34px);
  top: calc(50% - 28px);
  width: clamp(450px, 36vw, 560px);
  height: 590px;
  transform: translateY(-50%);
  z-index: 4;
}
.worker-popout-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 88%;
  height: 68%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(38, 38, 38, .08), transparent 62%),
    rgba(255,255,255,.26);
  transform: translate(-50%, -50%);
  animation: breatheCircleCenter 5.6s ease-in-out infinite;
}
.worker-popout-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 72%;
  height: 38px;
  border-radius: 50%;
  background: rgba(38, 38, 38, .28);
  filter: blur(18px);
  transform: translateX(-50%);
}
.worker-cutout {
  position: absolute;
  left: 50%;
  bottom: -82px;
  z-index: 5;
  width: clamp(450px, 32vw, 520px);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 30px rgba(38, 38, 38, .32));
}
@keyframes breatheCircle {
  0%, 100% { transform: scale(.94); opacity: .62; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes breatheCircleCenter {
  0%, 100% { transform: translate(-50%, -50%) scale(.96); opacity: .72; }
  50% { transform: translate(-50%, -50%) scale(1.07); opacity: 1; }
}
.workflow-worker-feature {
  margin: 196px 0 0px;
}

.what-we-do-section {
  position: relative;
  overflow: hidden;
  background: url("../images/what-we-do-bg.svg") left bottom / auto no-repeat, var(--primary);
  color: var(--white);
}
.what-we-do-content {
  height: 100%;
  padding: clamp(70px, 7vw, 110px) clamp(24px, 7vw, 120px);
}
.what-we-do-content .section-title h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.9rem);
  font-weight: 450;
  letter-spacing: 0;
}
.what-we-do-content .section-title h2 .heading-accent {
  color: var(--white);
  font-weight: 900;
}
.what-we-do-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}
.what-we-do-item {
  min-height: 240px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background: rgba(255,255,255,.02);
  transition: transform 400ms ease, background 400ms ease, border-color 400ms ease;
}
.what-we-do-item.is-muted,
.what-we-do-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}
.what-we-do-item:hover { transform: translateY(-8px); }
.what-we-do-item .icon-box {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
}
.what-we-do-item .icon-box img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.what-we-do-item h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 850;
}
.what-we-do-item p {
  margin: 0;
  color: rgba(255,255,255,.74);
}
.what-we-do-image {
  position: relative;
  height: 100%;
  min-height: 720px;
}
.what-we-do-image > img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}
.rotating-contact {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  transition: transform 350ms ease, filter 350ms ease;
}
.rotating-contact:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 16px 30px rgba(229,9,9,.28));
}
.rotating-contact img {
  width: 100%;
  height: 100%;
  animation: rotateCircle 18s linear infinite;
}
.rotating-contact-mid {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.rotating-contact-mid:hover { transform: translate(-50%, -50%) scale(1.04); }
@keyframes rotateCircle {
  to { transform: rotate(360deg); }
}

.key-feature-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}
.key-feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38,38,38,.035) 1px, transparent 1px),
    linear-gradient(rgba(38,38,38,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.key-feature-section .container {
  position: relative;
  z-index: 1;
}
.key-feature-section .section-row p {
  margin: 0;
  max-width: 620px;
}
.key-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.key-feature-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(38,38,38,.07);
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
  z-index: 1;
}
.key-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(229,9,9,.14), transparent 54%);
  opacity: 0;
  transition: opacity 350ms ease;
}
.key-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229,9,9,.42);
  box-shadow: 0 24px 60px rgba(38,38,38,.12);
}
.key-feature-card:hover::before { opacity: 1; }
.key-feature-card-accent {
  background:
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.18), transparent 34%),
    var(--accent);
  color: rgba(255,255,255,.84);
  border-color: var(--accent);
}
.key-feature-card .icon-box {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 1.5rem;
}
.key-feature-card .icon-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: filter 350ms ease, transform 350ms ease;
}
.key-feature-card-accent .icon-box {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.key-feature-card:hover .icon-box img {
  transform: translateY(-4px);
}
.key-feature-card-accent .icon-box img {
  filter: brightness(0) invert(1);
}
.key-feature-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 900;
}
.key-feature-card p {
  margin: 0;
  color: var(--text);
}
.key-feature-card-accent h3,
.key-feature-card-accent p {
  color: var(--white);
}
.key-feature-note {
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: 8px;
  background: var(--primary);
  color: rgba(255,255,255,.76);
  font-weight: 850;
  text-align: center;
}
.key-feature-note span {
  color: var(--white);
}

.service-intro, .dark-band { position: relative; background: var(--primary); color: var(--white); overflow: hidden; }
.service-intro::before, .dark-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(38,38,38,.94), rgba(38,38,38,.76)), url('../images/industrial-service-bg.jpg') center/cover; opacity: 1; }
.service-intro > .container, .dark-band > .container { position: relative; z-index: 1; }
.service-list-wrap { margin-top: -68px; position: relative; z-index: 3; padding-bottom: 90px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.service-item {
  position: relative;
  min-height: 250px;
  padding: 34px 28px;
  border-right: 1px solid var(--divider);
  background: var(--white);
  overflow: hidden;
  z-index: 1;
  transition:
    transform 420ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 420ms ease,
    border-color 420ms ease,
    color 320ms ease;
}
.service-item:last-child { border-right: 0; }
.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  opacity: 0;
  transform: scale(.96);
  transition:
    opacity 380ms ease,
    transform 420ms cubic-bezier(.16, 1, .3, 1);
}
.service-item i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--secondary);
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 34px;
  transition:
    background-color 360ms ease,
    color 360ms ease,
    transform 420ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 360ms ease;
}
.service-item h3 { color: var(--primary); font-size: 1.18rem; font-weight: 900; text-transform: capitalize; transition: color 320ms ease; }
.service-item p { margin: 12px 0 0; font-size: .95rem; transition: color 320ms ease; }
.service-item:hover {
  color: var(--white);
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 48px rgba(229,9,9,.2);
}
.service-item:hover::before {
  opacity: 1;
  transform: scale(1);
}
.service-item:hover i {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(38,38,38,.16);
}
.service-item:hover h3,
.service-item:hover p { color: var(--white); }

.story-card { display: grid; grid-template-columns: .92fr 1fr; gap: 44px; align-items: center; }
.story-card img { width: 100%; height: 470px; object-fit: cover; border-radius: 18px; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }
.stats-row article { padding: 24px; border-radius: 14px; background: var(--secondary); }
.stats-row strong { display: block; color: var(--accent); font-size: 2.2rem; line-height: 1; }
.stats-row span { display: block; margin-top: 8px; color: var(--primary); font-weight: 850; }

.products-section { background: var(--secondary); }
.product-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 34px 0 20px; }
.product-filters button { border: 1px solid var(--divider); border-radius: 99px; background: var(--white); color: var(--primary); padding: 10px 18px; font-weight: 850; transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease, transform 300ms ease; }
.product-filters button.active, .product-filters button:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.product-filters button:hover { transform: translateY(-2px); }
.product-item.hide { display: none; }
.product-card { height: 100%; overflow: hidden; border-radius: 8px; background: var(--white); box-shadow: 0 10px 35px rgba(38,38,38,.08); transition: transform 380ms cubic-bezier(.16, 1, .3, 1), box-shadow 380ms ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-card .image { height: 230px; overflow: hidden; background: #ddd; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms ease; }
.product-card .body { padding: 24px; }
.product-card .cat { display: inline-flex; margin-bottom: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; font-weight: 900; }
.product-card h3 {
  color: var(--primary);
  min-height: 1.35em;
  margin: 0 0 10px;
  overflow: hidden;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  font-weight: 900;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card p {
  min-height: calc(1.65em * 3);
  margin: 0 0 18px;
  overflow: hidden;
  color: var(--text);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-card .btn-default {
  min-height: 44px;
  padding: 11px 38px 11px 18px;
  border-radius: 8px;
  font-size: .92rem;
}
.product-card .btn-default::after {
  right: 15px;
  font-size: .92rem;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,9,9,.9), transparent);
}
.process-line article {
  position: relative;
  min-height: 280px;
  padding: 34px 26px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
    rgba(255,255,255,.06);
  box-shadow: 0 22px 55px rgba(0,0,0,.2);
  overflow: hidden;
  transition: transform 350ms ease, border-color 350ms ease, background 350ms ease;
}
.process-line article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229,9,9,.2), transparent 48%);
  opacity: 0;
  transition: opacity 350ms ease;
}
.process-line article:hover {
  transform: translateY(-10px);
  border-color: rgba(229,9,9,.72);
  background: rgba(255,255,255,.1);
}
.process-line article:hover::before { opacity: 1; }
.process-line span {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 0 0 10px rgba(229,9,9,.14);
}
.process-line h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  margin: 0 0 12px;
  font-size: 1.22rem;
  font-weight: 900;
}
.process-line p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.72);
  margin: 0;
}

.page-banner {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--primary);
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 9, .52), rgba(var(--brand-blue-rgb), .5), transparent);
}
.page-banner::after {
  content: none;
}
.page-banner .container { position: relative; z-index: 1; }
.breadcrumbs {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: auto;
  min-height: 38px;
  margin: 0;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--primary);
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}
.breadcrumbs::before {
  content: "\f423";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  border-radius: 50%;
  background: rgba(229, 9, 9, .1);
  color: var(--accent);
  font-family: bootstrap-icons;
  font-size: .88rem;
  font-weight: 400;
  line-height: 1;
}
.breadcrumbs a {
  position: relative;
  color: rgba(0, 0, 0, .58);
  transition: color 260ms ease;
}
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs span { color: var(--primary); }
.breadcrumbs span:not(:last-child) {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-top: 2px solid rgba(0, 0, 0, .36);
  border-right: 2px solid rgba(0, 0, 0, .36);
  color: transparent;
  font-size: 0;
  transform: rotate(45deg);
}
.page-banner h1 { display: none; }

.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.capability-card { padding: 28px; border-radius: 16px; background: var(--secondary); }
.capability-card i { color: var(--accent); font-size: 2rem; }
.capability-card h3 { color: var(--primary); margin: 16px 0 10px; }
.mission-vision-section { background: var(--white); }
.mission-vision-lead { margin: 0; color: var(--text); font-weight: 650; }
.mission-vision-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.85fr minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  overflow: visible;
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}
.mission-vision-panel figure {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.mission-vision-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission-card {
  position: relative;
  min-height: 360px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(38,38,38,.07);
}
.mission-card span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .12em;
}
.mission-card i {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 24px 0 28px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent);
  font-size: 1.9rem;
}
.mission-card h3 {
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.mission-card p { margin: 0; }
.mission-card.accent-card {
  background: var(--white);
  color: var(--text);
}
.mission-card.accent-card span,
.mission-card.accent-card i {
  color: var(--accent);
}
.mission-card.accent-card h3 { color: var(--primary); }
.mission-card.accent-card i {
  background: var(--secondary);
}
.journey-section {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: rgba(255, 255, 255, .74);
}
.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38,38,38,.96), rgba(38,38,38,.8)),
    url('../images/industrial-service-bg.jpg') center/cover;
}
.journey-section .container {
  position: relative;
  z-index: 1;
}
.journey-heading {
  position: sticky;
  top: 110px;
}
.journey-heading p {
  margin-top: 18px;
}
.journey-timeline {
  position: relative;
  display: grid;
  gap: 22px;
}
.journey-timeline::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: rgba(229, 9, 9, .48);
}
.journey-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}
.journey-timeline strong {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 900;
}
.journey-timeline h3 {
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.journey-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}
.timeline { display: grid; gap: 16px; }
.timeline article { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 22px; border-radius: 14px; border: 1px solid var(--divider); }
.timeline strong { color: var(--accent); font-size: 1.2rem; }
.timeline h3 { color: var(--primary); font-size: 1.1rem; }

.gallery-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}
.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38,38,38,.035) 1px, transparent 1px),
    linear-gradient(rgba(38,38,38,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}
.gallery-section .container {
  position: relative;
  z-index: 1;
}
.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}
.gallery-heading .section-title {
  max-width: 760px;
}
.gallery-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 520px;
}
.gallery-filter-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--divider);
  border-radius: 99px;
  background: var(--white);
  color: var(--primary);
  font-weight: 850;
}
.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 16px;
}
.gallery-card {
  position: relative;
  display: block;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--primary);
  box-shadow: 0 16px 42px rgba(38,38,38,.1);
  isolation: isolate;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms ease; }
.gallery-card::before {
  content: "\F52A";
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--primary);
  font-family: bootstrap-icons;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.34));
  opacity: 0;
  transition: opacity 300ms ease;
}
.gallery-card:hover::before,
.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-card-wide {
  grid-column: span 2;
}
.gallery-card-tall {
  grid-row: span 2;
}
.gallery-card span { display: none; }
.projectSwiper { padding-bottom: 50px; }
.swiper-button-next, .swiper-button-prev { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: var(--white); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.1rem; font-weight: 900; }
.swiper-pagination-bullet-active { background: var(--accent); }

.detail-layout { display: grid; grid-template-columns: 1fr .85fr; gap: 42px; align-items: start; }
.product-gallery-main { border-radius: 18px; overflow: hidden; }
.product-gallery-main img { width: 100%; height: 470px; object-fit: cover; }
.product-detail-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}
.product-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38,38,38,.035) 1px, transparent 1px),
    linear-gradient(rgba(38,38,38,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}
.product-detail-section .container {
  position: relative;
  z-index: 1;
}
.product-detail-editorial {
  position: relative;
}
.product-detail-stage {
  position: relative;
  height: 500px;
  min-height: 500px;
}
.product-detail-media {
  position: relative;
  display: block;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--primary);
}
.product-detail-media img {
  width: 100%;
  height: 500px;
  min-height: 500px;
  object-fit: cover;
  transition: transform 650ms ease;
}
.product-detail-media:hover img {
  transform: scale(1.04);
}
.product-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.42), rgba(0,0,0,.04)),
    linear-gradient(180deg, transparent 56%, rgba(0,0,0,.38));
}
.product-detail-title {
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  top: 50%;
  z-index: 2;
  width: min(620px, calc(100% - 44px));
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.product-detail-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 99px;
  background: rgba(229,9,9,.12);
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}
.product-detail-title .product-detail-tag {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
}
.product-detail-title .section-title {
  margin-bottom: 30px;
}
.product-detail-body {
  position: relative;
  display: block;
  margin-top: 28px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(229,9,9,.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(229,9,9,.1), rgba(255,255,255,0) 42%),
    var(--white);
  box-shadow: 0 20px 56px rgba(38,38,38,.09);
  overflow: hidden;
}
.product-detail-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--accent);
}
.product-detail-lead {
  position: relative;
  padding-left: 18px;
  max-width: 920px;
}
.product-content-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 99px;
  background: var(--accent);
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-detail-lead h3,
.product-detail-spec-lines h3 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 900;
}
.product-detail-lead p {
  max-width: 840px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
}
.product-detail-lead p strong {
  color: var(--primary);
  font-weight: 900;
}
.product-detail-spec-lines dl {
  margin: 0;
  display: grid;
  border-top: 1px solid var(--divider);
}
.product-detail-spec-lines dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--divider);
}
.product-detail-spec-lines dt {
  color: var(--primary);
  font-weight: 900;
}
.product-detail-spec-lines dd {
  margin: 0;
  color: var(--text);
}
.product-detail-flow {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}
.product-detail-flow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 99px;
  border: 1px solid var(--divider);
  background: var(--white);
  color: var(--primary);
  font-weight: 850;
}
.product-detail-flow i {
  color: var(--accent);
}
.product-detail-title .btn-default {
  background: var(--accent);
}
.spec-table { overflow: hidden; border-radius: 14px; border: 1px solid var(--divider); }
.spec-table table { margin: 0; }
.spec-table th { width: 42%; color: var(--primary); }
.related-strip { margin-top: 60px; }

.contact-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--surface-soft) 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
}
.contact-panel {
  position: relative;
  min-height: 660px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.contact-card {
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(38,38,38,.96), rgba(38,38,38,.84)),
    url('../images/industrial-service-bg.jpg') center/cover;
  color: rgba(255,255,255,.75);
}
.contact-card::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(229,9,9,.42);
}
.contact-card .section-title h2,
.contact-card .section-title h3 {
  color: var(--white);
}
.contact-card .section-title p {
  color: rgba(255,255,255,.72);
}
.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}
.contact-info-item i { width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--accent); color: var(--white); font-size: 1.2rem; }
.contact-info-item:nth-child(2) i { background: var(--brand-blue); }
.contact-info-item h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.contact-info-item p {
  margin: 0;
  color: rgba(255,255,255,.76);
  overflow-wrap: anywhere;
}
.contact-info-item p + p {
  margin-top: 3px;
}
.contact-panel-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 28px;
  color: rgba(255,255,255,.78);
  font-weight: 750;
}
.contact-panel-note i {
  color: var(--accent);
  font-size: 1.35rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--divider);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)),
    var(--white);
  box-shadow: var(--shadow);
}
.contact-form form {
  margin-top: 16px;
}
.form-label {
  color: var(--primary);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.form-control { min-height: 56px; border: 1px solid var(--divider); border-radius: 8px; padding: 13px 16px; background: var(--surface-soft); }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 .22rem rgba(229,9,9,.18); }
.contact-form textarea.form-control {
  min-height: 158px;
  resize: vertical;
}
.google-map iframe { display: block; width: 100%; height: 430px; border: 0; filter: grayscale(.15); }

.industries-served-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}
.industries-served-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38,38,38,.035) 1px, transparent 1px),
    linear-gradient(rgba(38,38,38,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}
.industries-served-section .container {
  position: relative;
  z-index: 1;
}

.documents-section {
  position: relative;
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--white) 46%, #f1f5ff 100%);
  overflow: hidden;
}
.documents-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background:
    linear-gradient(rgba(229,9,9,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,9,9,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.documents-section .container,
.kyc-documents-section .container {
  position: relative;
  z-index: 1;
}
.documents-hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  margin-bottom: 34px;
  padding: clamp(28px, 4.2vw, 56px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(var(--brand-blue-rgb), .28), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(var(--accent-rgb), .2), transparent 26%),
    linear-gradient(115deg, rgba(0,0,0,.94), rgba(17,17,17,.88) 54%, rgba(0,0,0,.9)),
    url('../images/industrial-process.jpg') center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.documents-hero-copy {
  min-width: 0;
  max-width: 860px;
  align-self: center;
}
.documents-hero-panel .section-title h2 {
  max-width: 820px;
  font-size: clamp(2.05rem, 3.55vw, 3.75rem);
  line-height: 1.06;
  text-wrap: balance;
}
.documents-hero-panel .section-title p {
  max-width: 680px;
  font-size: clamp(.96rem, 1.15vw, 1.08rem);
  line-height: 1.75;
}
.documents-hero-panel::after {
  content: "";
  position: absolute;
  right: clamp(392px, 27vw, 446px);
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.16), rgba(229,9,9,.42), transparent);
}
.document-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.document-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
}
.documents-hero-meta {
  display: grid;
  gap: 10px;
  align-self: center;
}
.documents-hero-meta article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  color: var(--white);
  backdrop-filter: blur(12px);
}
.documents-hero-meta article:nth-child(2) strong {
  color: #6f8dff;
}
.documents-hero-meta strong {
  color: var(--accent);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1;
  font-weight: 900;
}
.documents-hero-meta span {
  color: rgba(255,255,255,.78);
  font-size: clamp(.86rem, 1vw, 1rem);
  font-weight: 800;
  text-align: right;
}
.documents-layout {
  display: grid;
  grid-template-columns: minmax(300px, .34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.document-index {
  position: sticky;
  top: 112px;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(229,9,9,.18), rgba(229,9,9,0) 48%),
    var(--primary);
  color: var(--white);
  box-shadow: 0 20px 55px rgba(38,38,38,.16);
  overflow: hidden;
}
.document-index::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(229,9,9,.34);
  border-radius: 50%;
}
.document-index span {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.document-index h3 {
  margin: 12px 0 12px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
}
.document-index p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.68);
}
.document-index ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.document-index li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.86);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.5;
}
.document-index i {
  margin-top: 2px;
  color: var(--accent);
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.document-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 248px;
  border: 1px solid rgba(229,9,9,.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(229,9,9,.08), rgba(255,255,255,0) 42%),
    var(--white);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(38,38,38,.08);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}
.document-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(.32);
  transform-origin: top;
  transition: transform 350ms ease;
}
.document-card.is-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(230px, .38fr) minmax(0, 1fr);
  min-height: 320px;
}
.document-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229,9,9,.38);
  box-shadow: var(--shadow);
}
.document-card:hover::before {
  transform: scaleY(1);
}
.document-preview {
  position: relative;
  padding: 14px;
  background: #edf1f7;
  overflow: hidden;
}
.document-preview::after {
  content: "PDF";
  position: absolute;
  left: 24px;
  top: 24px;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
}
.document-preview img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 12px 28px rgba(38,38,38,.12);
  transition: transform 600ms ease;
}
.document-card:hover .document-preview img {
  transform: scale(1.04);
}
.document-body {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 24px;
}
.document-body > span,
.kyc-card span {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.document-body h3,
.kyc-card h3 {
  margin: 10px 0 10px;
  color: var(--primary);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 900;
}
.document-body p {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}
.document-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: auto 0 18px;
  padding-top: 22px;
}
.document-meta small {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 850;
}
.document-actions,
.kyc-card .kyc-body > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.document-actions a,
.kyc-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}
.document-actions a:hover,
.kyc-card a:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.kyc-documents-section {
  background: var(--white);
}
.kyc-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--divider);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(229,9,9,.08), rgba(255,255,255,0) 45%),
    var(--white);
  box-shadow: 0 18px 55px rgba(38,38,38,.07);
}
.kyc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.kyc-card {
  position: relative;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 18px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(229,9,9,.24);
  border-radius: 8px;
  background: var(--surface-soft);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}
.kyc-card::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(229,9,9,.14);
}
.kyc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229,9,9,.42);
  box-shadow: 0 18px 46px rgba(38,38,38,.1);
}
.kyc-preview {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(38,38,38,.1);
}
.kyc-preview::after {
  content: "KYC";
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: .64rem;
  font-weight: 900;
}
.kyc-preview img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  object-position: top center;
}
.kyc-body {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.kyc-body > i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.15rem;
}
.goverlay {
  background: rgba(20,20,20,.86);
}
.gslide-inline,
.gslide-external {
  border-radius: 8px;
  overflow: hidden;
}
.gslide-external iframe {
  width: min(92vw, 1120px) !important;
  height: 88vh !important;
  background: var(--white);
}
.pdf-viewer-open {
  overflow: hidden;
}
.pdf-viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  padding: clamp(14px, 3vw, 34px);
}
.pdf-viewer-modal.is-open {
  display: grid;
  place-items: center;
}
.pdf-viewer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,.88);
  backdrop-filter: blur(8px);
}
.pdf-viewer-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1120px, 94vw);
  height: min(88vh, 920px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}
.pdf-viewer-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px 13px 20px;
  background: var(--primary);
  color: var(--white);
}
.pdf-viewer-modal__bar strong {
  font-size: .98rem;
  font-weight: 900;
}
.pdf-viewer-modal__bar button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  transition: background 300ms ease, transform 300ms ease;
}
.pdf-viewer-modal__bar button:hover {
  background: var(--accent-dark);
  transform: rotate(90deg);
}
.pdf-viewer-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}
.industries-served-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(38,38,38,.09);
}
.industries-served-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}
.industries-served-heading p {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}
.industries-served-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.industries-served-grid article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: var(--surface-soft);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease, background 350ms ease;
}
.industries-served-grid article::before {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(229,9,9,.12);
}
.industries-served-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(229,9,9,.42);
  box-shadow: 0 18px 44px rgba(38,38,38,.09);
  background: var(--white);
}
.industries-served-grid i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.35rem;
  position: relative;
}
.industries-served-grid span {
  position: absolute;
  right: 22px;
  top: 22px;
  color: rgba(229,9,9,.38);
  font-size: 1.35rem;
  font-weight: 900;
}
.industries-served-grid h3 {
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.industries-served-grid p {
  margin: 0;
  font-size: .94rem;
}
.industries-served-strip {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--primary);
  color: rgba(255,255,255,.74);
}
.industries-served-strip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}
.industries-served-strip strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.industries-served-strip p {
  margin: 0;
}
.service-intro-lower {
  margin-top: 0;
}
.service-list-lower {
  margin-bottom: 26px;
}

.footer { position: relative; padding: 88px 0 28px; background: var(--brand-black); color: rgba(255,255,255,.72); overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(var(--accent-rgb),.14), transparent 32%), linear-gradient(90deg, rgba(var(--brand-blue-rgb),.1), transparent 42%); }
.footer .container { position: relative; z-index: 1; }
.footer-header { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 42px; margin-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-header h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.6rem); }
.footer-header p { margin: 14px 0 0; max-width: 560px; }
.footer-contact-circle { flex: 0 0 auto; }
.footer-logo img { width: auto; height: 128px; max-width: min(240px, 72vw); margin-bottom: 24px; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(255,255,255,.08)); }
.footer h3 { color: var(--white); font-size: 1.05rem; text-transform: capitalize; margin-bottom: 22px; }
.footer a { display: block; color: rgba(255,255,255,.72); margin-bottom: 10px; transition: color 300ms ease, transform 300ms ease; }
.footer a:hover { color: var(--accent); }
.footer a.footer-contact-circle {
  display: inline-grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  line-height: 1;
}

.footer a.footer-contact-circle:hover {
  color: var(--white);
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; margin: 0; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(229,9,9,.38); background: rgba(255,255,255,.06); color: var(--accent); }
.footer-social a:nth-child(2) { border-color: rgba(var(--brand-blue-rgb),.52); color: #6f8dff; }
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-social a:nth-child(2):hover { background: var(--brand-blue); }
.footer-contact-column {
  min-width: 0;
}
.footer-contact-column p {
  margin-bottom: 14px;
}
.footer-contact-line {
  white-space: nowrap;
}
.footer-contact-line span {
  color: var(--white);
  font-weight: 900;
  margin-right: 6px;
}
.footer-contact-line a {
  display: inline;
  margin: 0;
}
.footer-contact-column p:first-of-type {
  white-space: normal;
}
.footer-contact-line--email {
  font-size: .94rem;
}
.footer-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; }
.footer-bottom p { margin: 0; }
.footer-bottom .footer-credit {
  display: inline;
  margin: 0;
  color: var(--white);
  font-weight: 900;
}
.footer-bottom .footer-credit:hover { color: var(--accent); }

.social-float { position: fixed; left: 22px; top: 50%; z-index: 990; transform: translateY(-50%); }
.social-float__links { display: grid; gap: 10px; }
.social-float__links a {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-blue-rgb), .55);
  background: var(--brand-black);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(0,0,0,.22);
  transition: all 300ms ease;
  overflow: hidden;
}
.social-float__links a::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), .32);
}
.social-float__links a i {
  position: relative;
  z-index: 1;
}
.social-float__links a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(229, 9, 9, .28);
}
.go-top { position: fixed; right: 24px; bottom: 24px; z-index: 990; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--accent); color: var(--white); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 300ms ease; }
.go-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.error-box { min-height: 68vh; display: grid; place-items: center; text-align: center; }
.error-box h1 { color: var(--primary); font-size: clamp(5rem, 16vw, 11rem); font-weight: 900; }

@media (max-width: 1199.98px) {
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-item:nth-child(2) { border-right: 0; }
  .capability-grid { grid-template-columns: repeat(2,1fr); }
  .mission-vision-panel { grid-template-columns: 1fr; }
  .mission-vision-panel figure { min-height: 320px; order: -1; }
  .mission-card { min-height: auto; }
  .industries-served-heading {
    grid-template-columns: 1fr;
  }
  .industries-served-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .topbar { padding: 14px 0; }
  .topbar-info { display: none; }
  .site-header { background: var(--white); }
  .navbar { min-height: 82px; }
  .navbar-brand { display: inline-flex; }
  .navbar-brand img { width: auto; height: 58px; max-width: min(168px, 50vw); object-fit: contain; filter: none; }
  .hero { min-height: 640px; padding: 70px 0 128px; }
  .hero-content { padding-top: 20px; }
  .hero-slider-controls {
    right: 24px;
    left: auto;
    bottom: 116px;
    transform: none;
  }
  .excellence-list ul { grid-template-columns: 1fr; }
  .about-image { min-height: 450px; margin-bottom: 40px; }
  .home-about-panel {
    grid-template-columns: 1fr;
  }
  .about-overview-panel {
    grid-template-columns: 1fr;
  }
  .about-overview-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-about-visual,
  .home-about-visual img {
    min-height: 420px;
  }
  .story-card, .detail-layout { grid-template-columns: 1fr; }
  .product-detail-body {
    grid-template-columns: 1fr;
  }
  .product-detail-media,
  .product-detail-media img {
    height: 380px;
    min-height: 380px;
  }
  .product-detail-stage {
    height: 380px;
    min-height: 380px;
  }
  .stats-row { grid-template-columns: 1fr; }
  .footer-header { align-items: flex-start; flex-direction: column; }
  .journey-heading { position: static; }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .documents-hero-panel,
  .documents-layout {
    grid-template-columns: 1fr;
  }
  .documents-hero-panel::after {
    display: none;
  }
  .documents-hero-copy {
    max-width: 760px;
  }
  .documents-hero-panel .section-title h2 {
    max-width: 760px;
    font-size: clamp(2rem, 5.4vw, 3.2rem);
  }
  .documents-hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: stretch;
  }
  .documents-hero-meta article {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .documents-hero-meta span {
    text-align: left;
  }
  .document-index {
    position: relative;
    top: auto;
  }
  .document-card,
  .document-card.is-featured {
    grid-template-columns: 210px minmax(0, 1fr);
  }
  .kyc-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    min-height: 620px;
  }
  .gallery-heading {
    grid-template-columns: 1fr;
  }
  .gallery-filter-row {
    justify-content: flex-start;
  }
  .gallery-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .worker-feature {
    padding: 72px 0 86px;
    overflow: visible;
  }
  .worker-feature::after {
    right: 28px;
    width: min(420px, 58vw);
    height: min(420px, 58vw);
  }
  .worker-feature-layout {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .worker-feature-visual {
    min-height: 380px;
  }
  .worker-feature-visual::before {
    right: 6%;
    top: 12%;
  }
  .worker-popout-stage {
    right: 0;
    top: auto;
    bottom: -54px;
    width: min(380px, 72vw);
    height: 410px;
    margin-left: auto;
    transform: none;
  }
  .worker-cutout {
    width: min(315px, 68vw);
    bottom: -24px;
  }
  .what-we-do-content {
    padding: 72px 24px;
  }
  .what-we-do-image,
  .what-we-do-image > img {
    min-height: 520px;
  }
  .rotating-contact-mid {
    left: 50%;
    top: 0;
  }
  .key-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  body { font-size: 15px; }
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translate3d(0, 36px, 0) !important;
  }
  [data-aos="fade-left"].aos-animate,
  [data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0) !important;
  }
  .section { padding: 70px 0; }
  .section-title h3,
  .sub-heading {
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.35;
    font-size: .74rem;
  }
  .section-title h1,
  .section-title h2,
  .page-banner h1 {
    max-width: 100%;
    font-size: clamp(1.65rem, 7.8vw, 2.35rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  .hero { min-height: 705px; padding: 44px 0 188px; align-items: center; }
  .hero-content { padding-top: 0; }
  .hero-content h1 { font-size: clamp(2.05rem, 10vw, 2.85rem); line-height: 1.05; }
  .hero-content p {
    margin-top: 16px;
    font-size: .94rem;
    line-height: 1.55;
  }
  .hero-btn {
    gap: 10px;
    margin-top: 22px;
  }
  .hero-btn .btn-default,
  .hero-btn .btn-outline-light {
    width: 100%;
    max-width: 230px;
    min-height: 46px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .hero-slider-controls {
    right: 16px;
    left: auto;
    bottom: 88px;
    transform: none;
    gap: 9px;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-dot {
    width: 30px;
  }
  .excellence-list { margin-top: -43px; margin-bottom: 78px; }
  .excellence-list ul { padding: 18px; border-radius: 12px; gap: 12px; }
  .excellence-list li {
    font-size: .82rem;
    line-height: 1.35;
  }
  .about-img-1 { width: 100%; height: 340px; }
  .about-img-2 { width: 56%; height: 210px; border-width: 8px; }
  .home-about-panel {
    padding: 24px;
    gap: 26px;
  }
  .home-about-points {
    grid-template-columns: 1fr;
  }
  .home-about-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .documents-hero-panel {
    padding: 24px;
    gap: 22px;
  }
  .documents-hero-panel .section-title h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
    line-height: 1.08;
    text-wrap: pretty;
  }
  .documents-hero-panel .section-title p {
    font-size: .88rem;
    line-height: 1.55;
  }
  .documents-hero-meta {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .documents-hero-meta article {
    align-items: flex-start;
    flex-direction: row;
    min-height: 64px;
    gap: 12px;
    padding: 13px 14px;
  }
  .documents-hero-meta span {
    margin-left: auto;
    text-align: right;
  }
  .documents-hero-meta strong {
    font-size: 1.2rem;
  }
  .pdf-viewer-modal {
    padding: 8px;
  }
  .pdf-viewer-modal__dialog {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
  }
  .pdf-viewer-modal__bar {
    padding: 10px 10px 10px 14px;
  }
  .pdf-viewer-modal__bar strong {
    font-size: .86rem;
  }
  .pdf-viewer-modal__bar button {
    width: 34px;
    height: 34px;
  }
  .document-card,
  .document-card.is-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .document-preview img {
    height: 260px;
    min-height: 260px;
  }
  .kyc-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }
  .kyc-preview img {
    min-height: 160px;
  }
  .document-body,
  .document-index {
    padding: 22px;
  }
  .kyc-card {
    padding: 14px;
  }
  .document-meta {
    margin-top: 4px;
  }
  .home-about-visual,
  .home-about-visual img {
    min-height: 340px;
  }
  .home-about-badge {
    grid-template-columns: 1fr;
  }
  .home-about-badge span {
    min-height: 48px;
  }
  .about-overview-panel {
    padding: 24px;
  }
  .about-overview-image,
  .about-overview-image img {
    min-height: 300px;
  }
  .about-overview-metrics,
  .about-overview-highlights {
    grid-template-columns: 1fr;
  }
  .about-overview-highlights article {
    min-height: auto;
  }
  .gallery-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: auto;
    grid-row: auto;
  }
  .key-feature-grid {
    grid-template-columns: 1fr;
  }
  .key-feature-card {
    min-height: auto;
  }
  .about-contact-badge {
    left: 57%;
    top: 64%;
    width: 94px;
    height: 94px;
  }
  .worker-feature {
    margin-top: 0;
    padding: 58px 0 72px;
    overflow: hidden;
    background:
      radial-gradient(circle at 72% 72%, rgba(var(--brand-blue-rgb), .15), transparent 32%),
      linear-gradient(180deg, var(--surface-soft) 0%, #eef3ff 100%);
  }
  .worker-feature::after {
    right: 14px;
    top: auto;
    bottom: 54px;
    width: 78vw;
    height: 78vw;
    max-width: 330px;
    max-height: 330px;
    border-radius: 50%;
  }
  .workflow-worker-feature .worker-feature-visual,
  .workflow-worker-feature::after {
    display: none;
  }
  .workflow-worker-feature .worker-feature-layout {
    min-height: auto;
  }
  .worker-feature-layout {
    gap: 8px;
  }
  .worker-feature-visual {
    min-height: 330px;
  }
  .worker-popout-stage {
    top: auto;
    right: -12px;
    bottom: -52px;
    width: min(100%, 340px);
    height: 340px;
    transform: none;
  }
  .worker-cutout {
    width: min(246px, 68vw);
    bottom: -38px;
  }
  .what-we-do-content {
    padding: 64px 15px;
  }
  .what-we-do-content .section-title h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.45rem);
  }
  .what-we-do-list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }
  .what-we-do-item {
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }
  .what-we-do-image,
  .what-we-do-image > img {
    min-height: 420px;
  }
  .rotating-contact {
    width: 106px;
    height: 106px;
  }
  .key-feature-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .key-feature-card,
  .key-feature-card:nth-child(2n),
  .key-feature-card:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--divider);
  }
  .key-feature-card:last-child {
    border-bottom: 0;
  }
  .service-list-wrap { margin-top: 0; padding-top: 0; }
  .service-grid, .capability-grid, .process-line { grid-template-columns: 1fr; }
  .process-line {
    gap: 16px;
  }
  .process-line::before {
    left: 34px;
    right: auto;
    top: 26px;
    bottom: 26px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(229,9,9,.9), transparent);
  }
  .process-line article {
    min-height: auto;
    padding: 24px 22px 24px 92px;
  }
  .process-line span {
    position: absolute;
    left: 22px;
    top: 24px;
    width: 50px;
    height: 50px;
    margin: 0;
    box-shadow: 0 0 0 7px rgba(229,9,9,.14);
  }
  .service-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--divider); }
  .page-banner { min-height: 58px; padding: 0; }
  .breadcrumbs {
    gap: 8px;
    min-height: 34px;
    max-width: calc(100vw - 30px);
    padding: 7px 11px 7px 10px;
    font-size: .82rem;
    flex-wrap: wrap;
    border-radius: 12px;
  }
  .breadcrumbs::before {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
    font-size: .78rem;
  }
  .breadcrumbs span:not(:last-child) {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
  }
  .contact-panel {
    min-height: 800px;
  }
  .product-detail-media,
  .product-detail-media img {
    height: 320px;
    min-height: 320px;
  }
  .product-detail-stage {
    height: 320px;
    min-height: 320px;
  }
  .product-detail-title {
    top: auto;
    bottom: 28px;
    transform: none;
  }
  .product-detail-body {
    margin-top: 20px;
    padding: 24px;
  }
  .product-detail-spec-lines dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .contact-form, .contact-card { padding: 24px; }
  .contact-info-item {
    min-height: 96px;
    padding: 16px;
  }
  .contact-info-item i {
    width: 46px;
    height: 46px;
  }
  .industries-served-grid {
    grid-template-columns: 1fr;
  }
  .industries-served-grid article {
    min-height: auto;
  }
  .industries-served-panel {
    padding: 24px;
  }
  .industries-served-strip {
    grid-template-columns: 1fr;
  }
  .industries-served-strip img {
    height: 190px;
  }
  .mission-card { padding: 28px; }
  .mission-card i { margin: 18px 0 22px; }
  .mission-vision-panel figure { min-height: 250px; }
  .journey-timeline::before { left: 24px; }
  .journey-timeline article {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 20px;
  }
  .journey-timeline strong {
    width: 48px;
    height: 48px;
    font-size: .86rem;
  }
  .timeline article { grid-template-columns: 1fr; }
  .footer { padding-top: 64px; }
  .footer-contact-circle { width: 104px; height: 104px; }
  .footer-contact-line {
    white-space: normal;
  }
  .social-float { display: none; }
  .go-top { right: 16px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); }
}
