/* ─── VARIABLES ─── */
:root {
  --orange: #e8500a;
  --orange-light: #ff6b2b;
  --orange-dark: #b93f07;
  --ink: #17202f;
  --ink-soft: #3d4a5f;
  --muted: #69778c;
  --blue: #b9c0c9;
  --line: #c3c9d3;
  --line-soft: #edf1f6;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --surface-blue: #eef4f8;
  --footer: #f1f5f9;
  --white: #ffffff;
  --gray: #8b95a5;
  --shadow: 0 16px 42px rgba(23, 32, 47, 0.09);
  --section-pad: clamp(40px, 4vw, 80px);
  --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-smooth: cubic-bezier(0.2, 1, 0.3, 1);
  --container-max: 1280px;
  --container-gap: 48px;
  --nav-height: 80px;
}

/* ─── BASE & RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
  text-size-adjust: 100%;
}
body {
  font-family: "Barlow", Arial, sans-serif;
  background: var(--surface);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.container {
  width: min(100% - var(--container-gap), var(--container-max));
  margin: 0 auto;
}

/* ─── LOADING SCREEN ─── */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.loading-logo {
  width: 80px;
  height: 80px;
  position: relative;
}
.loading-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-text {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── COMMON COMPONENTS ─── */
.section-label,
.section-label-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-label::before,
.section-label-white::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-label-white {
  color: var(--white);
}
.section-label-white::before {
  background: var(--white);
}

.section-header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}
.section-header .section-label {
  justify-content: center;
}
.section-header h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
}
.section-header h2 span {
  color: var(--orange);
}
.section-header p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.btn-primary::before,
.btn-outline::before,
.btn-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.24) 45%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-smooth);
  pointer-events: none;
}
.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-white:hover::before {
  transform: translateX(120%);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(232, 80, 10, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 80, 10, 0.4);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.btn-white {
  background: var(--white);
  color: var(--orange-dark);
}
.btn-white:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white:active {
  transform: translateY(0) scale(0.98);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease-out);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 32, 47, 0.08);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 18px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: auto;
  height: clamp(36px, 4vw, 48px);
  object-fit: contain;
}
.nav-logo-text .line1 {
  font-size: clamp(14px, 1.5vw, 17px);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}
#navbar.scrolled .nav-logo-text .line1 {
  color: var(--ink);
}
.nav-logo-text .line2 {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-menu li {
  position: relative;
}
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-smooth);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
#navbar.scrolled .nav-menu > li > a {
  color: var(--ink-soft);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--orange) !important;
}

/* ─── NAV SUBMENUS (SmartMenus) ─── */
.nav-menu ul {
  position: absolute; /* required: static would switch SmartMenus to collapsible mode */
  min-width: 236px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 6px;
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-menu ul a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  transition:
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out),
    padding 0.2s var(--ease-out);
}
.nav-menu ul a:hover,
.nav-menu ul a.highlighted {
  background: #fff3ed;
  color: var(--orange-dark);
}
.nav-menu ul .sub-chevron {
  float: right;
  margin-top: 4px;
  font-size: 9px;
  opacity: 0.6;
}
/* SmartMenus scroll arrows for tall submenus */
.nav-menu .scroll-up,
.nav-menu .scroll-down {
  position: absolute;
  display: none;
  height: 20px;
  background: var(--surface);
  text-align: center;
  line-height: 20px;
  color: var(--orange);
  cursor: pointer;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  padding: 9px;
}
#navbar.scrolled .hamburger {
  border-color: var(--line);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: all 0.2s ease;
}
#navbar.scrolled .hamburger span {
  background: var(--ink);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ink);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  max-width: 320px;
  width: 85vw;
}
.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 10;
  flex-shrink: 0;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all 0.2s ease;
}
.mobile-nav-close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.mobile-nav-list {
  list-style: none;
  padding: 8px 0 32px;
  flex: 1;
}
.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav-list > li > a,
.mobile-nav-list > li > button:not(.btn-primary) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  min-height: 48px;
  transition: color 0.2s ease;
}
.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > button:not(.btn-primary):hover {
  color: var(--orange);
}
.mobile-nav-list > li > button .fa-chevron-down {
  transition: transform 0.3s ease;
}
.mobile-nav-list > li > button[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  background: rgba(255, 255, 255, 0.03);
  padding: 0 20px;
}
.mobile-nav-sub.open {
  max-height: 1200px;
  padding: 4px 20px 12px;
}
.mobile-nav-submenu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.897);
  cursor: pointer;
  text-align: left;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-height: 40px;
  transition: color 0.2s ease;
}
.mobile-nav-submenu-btn:hover {
  color: var(--orange);
}
.mobile-nav-submenu-btn .fa-chevron-down {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.mobile-nav-submenu-btn[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}
/* nested level (e.g. Online Safety Valve Testing group) indents one step */
.mobile-nav-sub .mobile-nav-sub {
  padding: 0 0 0 14px;
}
.mobile-nav-sub .mobile-nav-sub.open {
  padding: 0 0 4px 14px;
}
.mobile-nav-sub a {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.897);
  font-size: 14px;
  font-weight: 600;
  min-height: 40px;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.mobile-nav-sub a:hover {
  color: var(--orange);
  padding-left: 8px;
}
.mobile-nav-sub span {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.897);
  font-size: 14px;
  font-weight: 600;
  min-height: 40px;
  opacity: 0.7;
}
.mobile-nav .btn-primary {
  margin: 16px 20px;
  width: calc(100% - 40px);
}

/* ─── FOOTER ─── */
#footer {
  background: var(--ink);
}
.footer-top {
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.4fr 1fr;
  gap: 42px;
}
.footer-brand p {
  margin: 18px 0 24px;
  color: var(--line);
  font-size: 14px;
  line-height: 1.8;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink-soft);
  transition: all 0.3s var(--ease-out);
}
.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-heading {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--line-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
}
.footer-links li + li {
  margin-top: 8px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--line);
  font-size: 13px;
  transition: all 0.2s ease;
}
.footer-links a::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--orange-light);
  flex-shrink: 0;
}
.footer-links a:hover {
  gap: 12px;
  color: var(--orange);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-item i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--orange);
  font-size: 14px;
}
.contact-item span,
.contact-item a {
  color: var(--line);
  font-size: 13px;
  line-height: 1.6;
}
.contact-item a:hover {
  color: var(--orange);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-bottom span {
  color: var(--line);
  font-size: 12px;
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(23, 32, 47, 0.72);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: relative;
  width: min(100%, 580px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px) clamp(18px, 4vw, 38px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.modal h3 {
  margin-bottom: 6px;
  font-size: clamp(24px, 4vw, 30px);
  text-transform: uppercase;
}
.modal h3 span {
  color: var(--orange);
}
.modal-sub {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 80, 10, 0.1);
}
.form-group textarea {
  min-height: 94px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
.form-submit:active {
  transform: translateY(0) scale(0.98);
}

/* ─── HOME PAGE SECTIONS ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--ink);
}
.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -2%;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 104%;
  height: 104%;
  will-change: transform;
  transform: translateZ(0);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 32, 47, 0.5) 0%,
    rgba(23, 32, 47, 0.3) 60%,
    rgba(23, 32, 47, 0.1) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 60px;
  z-index: 5;
}
.hero-text {
  max-width: 700px;
  position: relative;
  z-index: 10;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--orange);
}
.hero-h1 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-h1 span {
  color: var(--orange);
}
.hero-desc {
  max-width: 560px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5 !important;
  width: 6px !important;
  height: 6px !important;
}
.swiper-pagination-bullet-active {
  background: var(--orange) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 3px !important;
}

/* Stats Bar */
.stats-bar {
  background: var(--orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(232, 80, 10, 0.25);
  z-index: 20;
}
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  min-height: 120px;
  padding: clamp(20px, 3vw, 30px) clamp(16px, 2vw, 20px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: 0;
}
.stat-item i {
  font-size: clamp(24px, 3vw, 32px) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
}
.stat-item:hover i {
  transform: scale(1.1) rotate(-5deg);
  color: #fff !important;
}
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}
.stat-label {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Section Layouts */
#about {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}
#about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
#services {
  padding: var(--section-pad) 0;
  background: var(--ink);
  overflow: hidden;
}
#services .section-header h2,
#services .section-header p {
  color: var(--white);
}
#services .section-header h2 span {
  color: var(--orange);
}
#clients {
  padding: var(--section-pad) 0;
  background: var(--orange-light);
}
#branches {
  padding: var(--section-pad) 0;
  background: linear-gradient(
    180deg,
    var(--surface-soft) 0%,
    var(--surface-blue) 100%
  );
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 6vw, 72px);
  align-items: flex-start;
}
.about-content h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 14px 0 22px;
  text-transform: uppercase;
  line-height: 1.1;
}
.about-content h2 span {
  color: var(--orange);
}
.about-content p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 82px;
  height: 82px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  z-index: 2;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 0.8s var(--ease-smooth);
}
.about-img-wrap:hover img {
  transform: scale(1.03);
}
.about-img-badge {
  position: absolute;
  right: 5%;
  bottom: -16px;
  padding: clamp(16px, 3vw, 22px) clamp(20px, 3vw, 28px);
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  box-shadow: 0 14px 30px rgba(232, 80, 10, 0.24);
}
.about-img-badge .num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
}
.about-img-badge .txt {
  font-size: clamp(11px, 1.2vw, 12px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--orange-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Services Swiper */
.services-swiper-wrap {
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
}
.services-swiper .swiper-slide {
  width: 300px;
}
.svc-card {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.6s var(--ease-smooth),
    box-shadow 0.6s var(--ease-smooth),
    filter 0.6s var(--ease-smooth);
  will-change: transform;
  transform: translateZ(0);
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 35, 0.92) 0%,
    rgba(10, 20, 35, 0.35) 55%,
    rgba(10, 20, 35, 0.1) 100%
  );
  transition: background 0.35s ease;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.svc-card:hover {
  transform: translate3d(0, -12px, 0);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  filter: saturate(1.08);
}
.svc-card:hover::after {
  opacity: 0.15;
}
.svc-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(10, 20, 35, 0.97) 0%,
    rgba(10, 20, 35, 0.75) 55%,
    rgba(10, 20, 35, 0.45) 100%
  );
}
.svc-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  z-index: 2;
}
.svc-card-inner h3 {
  color: var(--white);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.svc-card-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
  margin-bottom: 0;
}
.svc-card:hover .svc-card-inner p {
  max-height: 120px;
  opacity: 1;
  margin-bottom: 12px;
}
.svc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.svc-card-btn i {
  transition: transform 0.2s ease;
}
.svc-card:hover .svc-card-btn i {
  transform: translateX(4px);
}

/* Why Choose Us */
#why {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--ink);
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(232, 80, 10, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: flex-start;
}
.why-left h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin: 14px 0 20px;
  text-transform: uppercase;
  color: var(--white);
}
.why-left h2 span {
  color: var(--orange);
}
.why-left p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  margin-bottom: 24px;
}
.why-highlight {
  margin-bottom: 32px;
  padding: 24px 28px;
  border-left: 5px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}
.why-subtext {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
  margin-bottom: 32px !important;
  line-height: 1.6;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(23, 32, 47, 0.05);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
}
.why-card:hover {
  background: var(--surface-soft);
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.why-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 80, 10, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.why-card:hover .why-card-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotateY(180deg);
}
.why-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}
.why-card:hover h4 {
  color: var(--ink);
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.why-card:hover p {
  color: var(--ink-soft);
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.about-team {
  width: 50%;
  margin: 0 auto;
  grid-template-columns: auto;
}
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .about-team {
    width: 80%;
  }
}

.leader-card {
  border: 2px solid rgba(232, 80, 10, 0.493);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(23, 32, 47, 0.05);
  padding: 28px 20px 16px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.leader-card:hover {
  box-shadow: 0 12px 32px rgba(23, 32, 47, 0.452);
}
.leader-img {
  display: grid;
  place-items: center;
  aspect-ratio: square;
  object-fit: cover;
  margin: 0 auto 18px;
  border-radius: 5px;
  background: var(--surface-blue);
  color: var(--orange-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  transition: all 0.3s ease;
  width: min(180px, 100%);
}

.leader-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.leader-role {
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.leader-edu {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  padding: 0 4px;
}
.leader-bio {
  display: none;
}
.leader-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border: none;
  border-radius: 50px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: center;
  margin-top: auto;
}
.leader-toggle:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
}
.leader-toggle:active {
  transform: scale(0.97);
}
.leader-toggle i {
  font-size: 10px;
}

#team {
  padding: var(--section-pad) 0;
}

/* ─── TEAM MODERN ─── */
#team .leadership-grid {
  gap: 24px;
}
#team .leader-card {
  padding: 32px 22px 24px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--surface);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow:
    0 2px 8px rgba(23, 32, 47, 0.04),
    0 8px 24px rgba(23, 32, 47, 0.06);
  transition: all 0.4s var(--ease-out);
}
#team .leader-card:hover {
  box-shadow:
    0 8px 28px rgba(23, 32, 47, 0.1),
    0 24px 48px rgba(23, 32, 47, 0.08);
  border-color: rgba(232, 80, 10, 0.2);
  transform: translateY(-4px);
}
#team .leader-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-blue);
  border: 3px solid var(--surface-soft);
  box-shadow: 0 4px 12px rgba(23, 32, 47, 0.08);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
#team .leader-card:hover .leader-img {
  border-color: rgba(232, 80, 10, 0.25);
  box-shadow: 0 6px 20px rgba(232, 80, 10, 0.15);
}
#team .leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#team .leader-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
#team .leader-role {
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
#team .leader-edu {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.4;
  padding: 0 4px;
}

/* FAQ */
#faq {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
  padding: var(--section-pad) 0;
  padding-top: 0;
}
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 32, 47, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 32, 47, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.32;
}
#faq .container {
  position: relative;
  z-index: 1;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  border: 1px solid rgba(23, 32, 47, 0.28);
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 32, 47, 0.05);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}
.faq-item.active {
  border-color: rgba(232, 80, 10, 0.36);
  box-shadow: 0 18px 34px rgba(23, 32, 47, 0.09);
}
.faq-question {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 3vw, 34px);
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.faq-question i {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 15px;
  transition:
    transform 0.24s ease,
    color 0.24s ease;
}
.faq-item.active .faq-question i {
  color: var(--orange);
}
.faq-question:focus-visible {
  outline: 3px solid rgba(232, 80, 10, 0.22);
  outline-offset: -6px;
}
.faq-answer {
  padding: 0 clamp(18px, 3vw, 34px) 28px;
}
.faq-answer p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.faq-inquiry {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(23, 32, 47, 0.08);
  text-align: center;
}
.faq-inquiry h3 {
  max-width: 460px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  text-transform: none;
}
.faq-inquiry-line {
  width: 118px;
  height: 5px;
  margin: 28px auto 34px;
  background: var(--ink-soft);
  opacity: 0.58;
}
.faq-inquiry form {
  display: grid;
  gap: 12px;
}
.faq-field {
  position: relative;
}
.faq-field label:not(.sr-only) {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  pointer-events: none;
}
.faq-field:has(textarea) label:not(.sr-only) {
  top: 22px;
  transform: none;
}
.faq-field input,
.faq-field textarea {
  width: 100%;
  min-height: 74px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.faq-field textarea {
  min-height: 124px;
  padding-top: 22px;
  resize: vertical;
}
.faq-field input::placeholder,
.faq-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}
.faq-field input:focus,
.faq-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 80, 10, 0.16);
  background: #172640;
}
.faq-inquiry .form-submit {
  margin-top: 4px;
  min-height: 58px;
}
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-inquiry {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .faq-layout {
    gap: 22px;
  }
  .faq-list {
    gap: 12px;
  }
  .faq-question {
    min-height: 66px;
    padding: 18px;
    font-size: 19px;
  }
  .faq-answer {
    padding: 0 18px 22px;
  }
  .faq-answer p {
    font-size: 15px;
  }
  .faq-inquiry {
    padding: 26px 18px;
  }
  .faq-inquiry h3 {
    font-size: 28px;
  }
  .faq-inquiry-line {
    margin: 20px auto 26px;
  }
  .faq-field input,
  .faq-field textarea {
    min-height: 62px;
  }
}

/* Clients */
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.client-logo:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
.client-logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
}
.client-logo-text img {
  width: auto;
  max-height: 60px;
}

/* Branches */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.branch-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  background: var(--white);
  padding: clamp(28px, 2vw, 40px) clamp(20px, 2vw, 10px);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s var(--ease-out);
}
.branch-card:hover {
  border-color: var(--orange);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(23, 32, 47, 0.12);
}
.branch-icon img {
  width: min(250px, 100%);
  height: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 24px;
  border: 1px solid var(--blue);
}
.branch-country {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink);
}
.branch-name {
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 18px;
}
.branch-addr {
  color: var(--ink-soft);
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.branch-street {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.branch-street i {
  color: var(--orange);
  margin-top: 4px;
  flex-shrink: 0;
}
.branch-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.branch-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.branch-contact i {
  color: var(--orange);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.branch-contact a {
  color: var(--ink-soft);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s var(--ease-out);
}
.branch-contact a:hover {
  color: var(--orange);
}
.branch-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232, 80, 10, 0.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  width: fit-content;
}

/* CTA Strip */
#cta-strip {
  padding: 36px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
#cta-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.cta-text {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
}

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  min-height: 400px;
  background-color: var(--ink);
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23, 32, 47, 0.5) 0%,
    rgba(23, 32, 47, 0.5) 50%,
    rgba(23, 32, 47, 0.4) 100%
  );
  z-index: 0;
}
.hero-about {
  background-image: url("../images/banner/5.webp");
}
.hero-products {
  background-image: url("../images/banner/2.webp");
}
.hero-clients {
  background-image: url("../images/banner/7.webp");
}
.hero-accutest {
  background-image: url("../images/services/accu/1.webp");
}
.hero-lega {
  background-image: url("../images/services/lega/3.webp");
}
.hero-offline {
  background-image: url("../images/services/offline/4.webp");
}
.hero-valve-servicing {
  background-image: url("../images/services/valve-ms/1.webp");
}
.hero-leak {
  background-image: url("../images/services/online-leak/3.webp");
}
.hero-hot-tapping {
  background-image: url("../images/services/hot-taping/4.webp");
}
.hero-contact {
  background-image: url("../images/banner/1.webp");
}
.hero-photo {
  background-image: url("../images/gallery/3.webp");
}
.hero-video {
  background-image: url("../images/banner/3.webp");
}
.hero-online-safety-valve {
  background-image: url("../images/services/online-safety/1.webp");
}
.hero-hydraulic {
  background-image: url("../images/services/pump-overhaul/1.webp");
}
.hero-boiler-maintenance {
  background-image: url("../images/services/boiler/1.webp");
}
.hero-actuator-maintenance {
  background-image: url("../images/services/actuator/1.webp");
}
.hero-structural-fabrication {
  background-image: url("../images/services/Structural/1.webp");
}
.hero-heat-exchanger {
  background-image: url("../images/services/heat/3.webp");
}
.hero-pump-overhaul {
  background-image: url("../images/services/pump-overhaul/1.webp");
}
.hero-piping-fabrication {
  background-image: url("../images/services/piping/1.webp");
}
.hero-infrastructure {
  background-image: url("../images/banner/4.webp");
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.breadcrumb i {
  font-size: 10px;
  color: var(--orange);
}
.breadcrumb a:hover {
  color: var(--white);
}
.page-hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.page-hero h1 span {
  color: var(--orange);
}
.page-hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.7;
}

.page-hero-strip {
  background: var(--orange);
  position: relative;
  z-index: 5;
}
.page-hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.3s ease;
}
.strip-item:last-child {
  border-right: none;
}
.strip-item i {
  font-size: clamp(16px, 1.5vw, 18px);
}
.strip-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ─── ABOUT PAGE ─── */
#about-intro {
  padding: var(--section-pad) 0;
  background: linear-gradient(
    180deg,
    var(--surface-soft) 0%,
    var(--white) 100%
  );
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.ai-img {
  position: relative;
}
.ai-img img {
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  object-fit: cover;
  box-shadow: var(--shadow);
  border-radius: 6px;
  transition: transform 0.8s var(--ease-smooth);
}
.ai-img:hover img {
  transform: scale(1.03);
}
.ai-img::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}
.ai-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ink);
  padding: clamp(16px, 3vw, 22px) clamp(20px, 3vw, 26px);
  color: #fff;
  text-align: center;
  border-radius: 6px;
}
.ai-img-badge .num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
}
.ai-img-badge .txt {
  font-size: clamp(11px, 1.2vw, 12px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ai-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 15px;
}
.ai-content h2 span {
  color: var(--orange);
}
.ai-content p {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ai-checks {
  margin: 24px 0;
}
.ai-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: clamp(13px, 1.3vw, 14px);
}
.ai-check i {
  color: var(--orange);
  margin-top: 2px;
}

#about-stats {
  padding: 70px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
#about-stats::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 80, 10, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.astat {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px);
  text-align: center;
  transition: all 0.3s ease;
}
.astat:hover {
  background: rgba(255, 255, 255, 0.1);
}
.astat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.astat-label {
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

#about-tabs,
#appreciations {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.tabs-header {
  display: flex;
  gap: 6px;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
}
.tab-btn {
  padding: clamp(10px, 1.5vw, 13px) clamp(16px, 3vw, 26px);
  background: var(--surface-blue);
  border: 1px solid var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 14px);
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 6px 6px 0 0;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.tab-panel .company-intro,
.tab-panel .group-card,
.tab-panel .ceo-grid,
.tab-panel .vision-grid,
.tab-panel .values-list,
.tab-panel .vision-card,
.tab-panel .value-item,
.tab-panel .section-header,
.tab-panel .gallery-item,
.tab-panel .gallery-grid {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── INFRASTRUCTURE PAGE ─── */
#infrastructure {
  padding: clamp(52px, 7vw, 96px) 0;
}
.tab-panel-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.15;
  color: var(--orange);
  margin: 4px 0 8px;
  text-transform: uppercase;
}
.tab-panel-intro {
  max-width: 720px;
  margin-bottom: clamp(24px, 3vw, 32px);
  color: var(--ink-soft);
  line-height: 1.6;
}
/* Empty state for tabs with no photos yet — a contained placeholder
   instead of a full-width, full-height gallery-item void. */
.gallery-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 240px;
  padding: clamp(40px, 6vw, 64px) 24px;
  background: var(--surface-soft);
  border: 1px dashed rgba(23, 32, 47, 0.16);
  border-radius: 14px;
  text-align: center;
}
.gallery-empty i {
  font-size: 34px;
  color: var(--orange);
  opacity: 0.85;
}
.gallery-empty p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.company-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  margin-bottom: 48px;
}
.company-img img {
  width: 100%;
  height: clamp(220px, 30vw, 320px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.group-card {
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  padding: 22px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.group-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.group-card h4 {
  font-size: clamp(14px, 1.5vw, 16px);
  margin-bottom: 10px;
}
.group-card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}
.group-card-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.group-card-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(232, 80, 10, 0.2);
  border-radius: 6px;
  background: var(--surface);
  color: var(--orange-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease-out);
}
.group-card-contact a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.ceo-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(28px, 5vw, 56px);
}
.ceo-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(23, 32, 47, 0.1);
  border-radius: 6px;
}
.ceo-content p {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ceo-role {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.ceo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.ceo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 80, 10, 0.1);
  border: 1px solid rgba(232, 80, 10, 0.2);
  padding: clamp(6px, 1vw, 8px) clamp(12px, 1.5vw, 16px);
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 600;
  border-radius: 4px;
}
.ceo-badge i {
  color: var(--orange);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.vision-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  transition: all 0.3s ease;
}
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 80, 10, 0.3);
}
.vision-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 22px;
  margin: 0 auto 20px;
}
.vision-card h3 {
  font-size: clamp(20px, 2.5vw, 22px);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.vision-card p {
  color: var(--ink-soft);
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.7;
  font-style: italic;
}

.values-list h3 {
  font-size: clamp(24px, 3vw, 28px);
  margin-bottom: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
}
.values-list h3 span {
  color: var(--orange);
}
.value-item {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(18px, 2.5vw, 24px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.value-item:last-child {
  border-bottom: 0;
}
.value-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  color: var(--orange);
  opacity: 0.8;
  flex-shrink: 0;
  width: clamp(40px, 5vw, 50px);
}
.value-item h4 {
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.value-item p {
  color: var(--ink-soft);
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.6;
}

#accreditations {
  padding: var(--section-pad) 0;
  background: linear-gradient(
    180deg,
    var(--surface-blue) 0%,
    var(--white) 100%
  );
}
.team-grid,
.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card,
.accred-card {
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.5s var(--ease-smooth);
  border-radius: 6px;
  overflow: hidden;
}
.team-card:hover,
.accred-card:hover {
  border-color: var(--orange);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(23, 32, 47, 0.12);
}
.team-card-img {
  height: 160px;
  background: var(--surface-blue);
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  transition: all 0.3s ease;
}
.team-card:hover .team-card-img {
  background: rgba(232, 80, 10, 0.1);
}
.team-card-body {
  padding: 16px;
}
.team-card-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card-role {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.accred-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 80, 10, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 22px;
  margin: 24px auto 16px;
  transition: all 0.3s ease;
}
.accred-card:hover .accred-icon {
  background: var(--orange);
  color: var(--white);
}
.accred-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.accred-card .accred-sub {
  padding: 0 16px;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.accred-card p {
  padding: 0 16px 24px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

#about-cta {
  padding: var(--section-pad) 0;
  background: var(--ink);
}
.about-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.about-cta-inner h2 {
  font-size: clamp(30px, 5vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.about-cta-inner h2 span {
  color: var(--orange);
}
.about-cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 0.8s var(--ease-smooth),
    transform 0.8s var(--ease-smooth);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.motion-ready .reveal {
  transition: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── CONTACT PAGE ─── */
#contact-main {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 14px;
  text-transform: uppercase;
}
.contact-form-wrap h2 span,
.contact-info-wrap h2 span {
  color: var(--orange);
}
.contact-form-desc {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-cards {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.cinfo-card {
  display: flex;
  gap: 20px;
  padding: clamp(18px, 2vw, 24px);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cinfo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 80, 10, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.cinfo-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(23, 32, 47, 0.1);
}
.cinfo-card:hover::before {
  opacity: 1;
}
.cinfo-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 4px 14px rgba(232, 80, 10, 0.25);
}
.cinfo-card:hover .cinfo-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 6px 22px rgba(232, 80, 10, 0.35);
}
.cinfo-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cinfo-content h4 {
  font-size: 17px;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.cinfo-content span,
.cinfo-content a {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.cinfo-content a:hover {
  color: var(--orange);
}

.cinfo-note {
  color: var(--orange) !important;
  font-size: 12px !important;
  font-weight: 600;
}
#contact-map {
  position: relative;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
}
#contact-branches {
  padding: var(--section-pad) 0;
  background: var(--surface-soft);
}

/* ─── PHOTO GALLERY ─── */
#photo-gallery {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/2;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  transition:
    transform 0.45s var(--ease-smooth),
    box-shadow 0.45s var(--ease-smooth);
  text-decoration: none;
  transform: translateZ(0);
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(23, 32, 47, 0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 32, 47, 0.9) 0%,
    rgba(23, 32, 47, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: all 0.35s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
  transform: scale(0.5);
  transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}
.gallery-caption {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Portrait gallery (A4 / document images) */
.gallery-grid--portrait .gallery-item {
  aspect-ratio: 5/7;
}

/* PhotoSwipe */
.pswp__bg {
  background: rgba(23, 32, 47, 0.96) !important;
}
.pswp__button {
  transition: all 0.3s ease;
}
.pswp__button:hover {
  transform: scale(1.1);
  color: var(--white) !important;
}
.pswp__counter {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: var(--white);
}
.pswp__caption__center {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.pswp__button--close,
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  margin: 10px;
}
/* ─── VIDEO GALLERY ─── */
#video-gallery {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: 40px;
}
.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  transition:
    transform 0.45s var(--ease-smooth),
    box-shadow 0.45s var(--ease-smooth);
  aspect-ratio: 16/9;
  transform: translateZ(0);
}
.video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(23, 32, 47, 0.15);
}
.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.video-item:hover img {
  transform: scale(1.05);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 32, 47, 0.9) 0%,
    rgba(23, 32, 47, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.video-item:hover .video-overlay {
  opacity: 1;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  transform: scale(0.7);
  transition: transform 0.4s var(--ease-out);
  margin-bottom: 16px;
  box-shadow: 0 0 0 0 rgba(232, 80, 10, 0.4);
}
.video-item:hover .video-play-btn {
  transform: scale(1);
  box-shadow: 0 0 0 15px rgba(232, 80, 10, 0);
  animation: pulse-orange 2s infinite;
}
@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 80, 10, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(232, 80, 10, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 80, 10, 0);
  }
}
.video-caption {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  padding: 0 24px;
}
.video-item:hover .video-caption {
  transform: translateY(0);
}

.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(23, 32, 47, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 24px;
}
.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.video-modal {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s var(--ease-out);
}
.video-modal-overlay.active .video-modal {
  transform: scale(1) translateY(0);
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.video-modal-close:hover {
  transform: rotate(90deg);
  background: var(--orange-dark);
}
.video-modal-content {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-modal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── BIO MODAL ─── */
.bio-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(23, 32, 47, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.bio-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.bio-modal {
  position: relative;
  width: min(100%, 640px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(23, 32, 47, 0.25);
  padding: 42px 36px 36px;
  transform: translateY(20px) scale(0.97);
  transition: all 0.35s var(--ease-out);
}
.bio-modal-overlay.active .bio-modal {
  transform: translateY(0) scale(1);
}
.bio-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: all 0.25s ease;
}
.bio-modal-close:hover {
  background: var(--orange);
  color: var(--white);
  transform: rotate(90deg);
}
.bio-modal-content {
  display: block;
}
.bio-modal-info {
  min-width: 0;
}
.bio-modal-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--ink);
}
.bio-modal-role {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.bio-modal-edu {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 14px;
  padding: 3px 10px;
  background: rgba(232, 80, 10, 0.08);
  border-radius: 20px;
}
.bio-modal-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .bio-modal {
    padding: 28px 20px 24px;
  }
  .bio-modal-content {
    text-align: center;
  }
}

/* ─── BLOG PAGE ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#blog-posts {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth),
    border-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(23, 32, 47, 0.06);
  transform: translateZ(0);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(23, 32, 47, 0.12);
  border-color: var(--orange);
}
.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
}
.blog-card-body {
  padding: clamp(18px, 2.5vw, 22px) clamp(20px, 3vw, 24px)
    clamp(22px, 3vw, 26px);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
}
.blog-card-meta i {
  margin-right: 5px;
  color: var(--orange);
  font-size: 11px;
}
.blog-card-body h2 {
  font-size: clamp(17px, 2vw, 19px);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.2s ease;
}
.blog-card:hover .blog-card-body h2 {
  color: var(--orange);
}
.blog-card-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.blog-card-btn i {
  transition: transform 0.2s ease;
}
.blog-card:hover .blog-card-btn i {
  transform: translateX(5px);
}
.blog-card-featured {
  grid-column: 1/-1;
}
.blog-card-featured .blog-card-link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.blog-card-featured .blog-card-img {
  aspect-ratio: 16/10;
}
.blog-card-featured .blog-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 36px) clamp(28px, 4vw, 40px);
}
.blog-card-featured .blog-card-body h2 {
  font-size: clamp(24px, 3vw, 32px);
}
.blog-card-featured .blog-card-body p {
  -webkit-line-clamp: 4;
  font-size: clamp(14px, 1.5vw, 15px);
}
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(40px, 5vw, 56px);
  flex-wrap: wrap;
}
.blog-page,
.blog-page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(34px, 4vw, 42px);
  height: clamp(34px, 4vw, 42px);
  padding: 0 clamp(12px, 1.5vw, 14px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  transition: all 0.2s ease;
}
.blog-page:hover,
.blog-page-arrow:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff3ed;
}
.blog-page-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.blog-page-active:hover {
  background: var(--orange-dark);
  color: var(--white);
}
.blog-page-dots {
  padding: 0 8px;
  color: var(--muted);
  font-weight: 600;
}

/* ─── BLOG SINGLE ─── */
#blog-single {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.blog-single-wrapper {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.blog-article {
  flex: 2;
  min-width: 0;
}
.blog-sidebar {
  flex: 1;
  min-width: 280px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: flex-start;
}
.blog-single-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
  aspect-ratio: 16/9;
}
.blog-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.blog-single-meta i {
  margin-right: 6px;
  color: var(--orange);
}
.blog-single-meta span,
.blog-single-meta time {
  display: inline-flex;
  align-items: center;
}
.blog-toc {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.blog-toc h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.blog-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-toc li + li {
  margin-top: 6px;
}
.blog-toc a {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.blog-toc a::before {
  content: "";
  width: 8px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.blog-toc a:hover {
  color: var(--orange);
}
.blog-article-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.blog-article-body h2 {
  font-size: clamp(24px, 3vw, 30px);
  text-transform: uppercase;
  margin: 40px 0 16px;
  color: var(--ink);
}
.blog-article-body h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  text-transform: uppercase;
  margin: 32px 0 14px;
  color: var(--ink);
}
.blog-article-body h4 {
  font-size: 17px;
  text-transform: uppercase;
  margin: 24px 0 12px;
  color: var(--ink);
}
.blog-article-body p {
  margin-bottom: 18px;
}
.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.blog-article-body li {
  margin-bottom: 8px;
}
.blog-article-body ul li::marker {
  color: var(--orange);
}
.blog-article-body img {
  width: 100%;
  border-radius: 8px;
  margin: 28px 0;
}
.blog-article-body blockquote {
  border-left: 4px solid var(--orange);
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--surface-soft);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}
.blog-article-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-article-body a:hover {
  color: var(--orange-dark);
}
.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.blog-share span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 8px;
  color: var(--ink);
}
.blog-share a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.blog-share a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.blog-author {
  display: flex;
  gap: 20px;
  padding: 24px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
}
.blog-author-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-author-info h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink);
}
.blog-author-info p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.blog-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
}
.blog-post-prev,
.blog-post-next {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: all 0.25s ease;
  flex: 1;
  text-decoration: none;
}
.blog-post-next {
  text-align: right;
  justify-content: flex-end;
}
.blog-post-prev:hover,
.blog-post-next:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.blog-post-prev i,
.blog-post-next i {
  transition: transform 0.2s ease;
  font-size: 12px;
}
.blog-post-prev:hover i {
  transform: translateX(-4px);
}
.blog-post-next:hover i {
  transform: translateX(4px);
}
.blog-post-prev span,
.blog-post-next span {
  font-size: 13px;
  line-height: 1.3;
  flex: 1;
}
.sidebar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  background: var(--white);
}
.sidebar-card h4 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  color: var(--ink);
}
.sidebar-recent {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-recent li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.sidebar-recent li:last-child {
  border-bottom: none;
}
.sidebar-recent a {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
  transition: color 0.2s;
  text-decoration: none;
}
.sidebar-recent a:hover {
  color: var(--orange);
}
.sidebar-recent-img {
  width: 60px;
  height: 45px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar-recent-info {
  flex: 1;
  min-width: 0;
}
.sidebar-recent-info .sri-title {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s;
}
.sidebar-recent a:hover .sri-title {
  color: var(--orange);
}
.sidebar-recent-info .sri-date {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-categories li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.sidebar-categories a {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  text-decoration: none;
}
.sidebar-categories a::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.sidebar-categories a:hover {
  color: var(--orange);
}
#related-posts {
  padding: 0 0 var(--section-pad);
  background: var(--surface);
}

@media (max-width: 1024px) {
  .blog-single-wrapper {
    flex-direction: column;
  }
  .blog-sidebar {
    position: static;
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
  .blog-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blog-post-nav {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .product-img-full {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .blog-article-body {
    font-size: 15px;
  }
}

/* ─── PRODUCTS PAGE ─── */
#products {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.product-img-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 36px);
  margin-top: 40px;
}
.product-img-full .product-item {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-soft);
  transform: translateZ(0);
  border: 1px solid var(--line);
}
.product-img-full .product-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.product-img-full .product-item:hover img {
  transform: scale(1.02);
}
.client-products-section {
  padding: var(--section-pad) 0 !important;
  background: var(--surface) !important;
}
.client-img-full .product-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--white);
}

/* ─── PRODUCTS REDESIGN ─── */
/* Floating side rail */
/* Product Sections */
.p-product {
  padding: var(--section-pad) 0;
}
.p-product.bg-soft {
  background: var(--surface-soft);
}
.p-product.bg-dark {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.p-product.bg-dark::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 80, 10, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.p-product.bg-dark::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(232, 80, 10, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Showcase Layout */
.p-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.p-showcase--rev {
  grid-template-columns: 1.2fr 1fr;
}
.p-showcase-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.p-icon-block {
  width: clamp(120px, 16vw, 180px);
  height: clamp(120px, 16vw, 180px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: clamp(40px, 5vw, 60px);
  box-shadow: 0 12px 36px rgba(232, 80, 10, 0.25);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-smooth);
}
.p-showcase:hover .p-icon-block {
  transform: scale(1.05) rotate(-5deg);
}
.p-icon-block--sm {
  width: 64px;
  height: 64px;
  font-size: 26px;
  flex-shrink: 0;
}
.p-icon-block--lg {
  width: clamp(140px, 18vw, 220px);
  height: clamp(140px, 18vw, 220px);
  font-size: clamp(48px, 6vw, 68px);
}
.p-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.p-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--orange);
  color: var(--white);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.p-badge--outline {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange-dark);
}
.p-showcase-content .section-label {
  margin-bottom: 6px;
}
.p-showcase-content h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  text-transform: uppercase;
  margin: 8px 0 14px;
  line-height: 1.1;
}
.p-showcase-content h2 span {
  color: var(--orange);
}
.p-lead {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 22px;
}
.p-lead strong {
  color: var(--ink);
}
.p-highlight-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.p-highlight-item {
  text-align: center;
  padding: 14px 8px;
  background: var(--surface-soft);
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  transition: all 0.3s var(--ease-out);
}
.p-highlight-item:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(23, 32, 47, 0.06);
}
.p-hl-num {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 3px;
}
.p-hl-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Feature Cards Grid */
.p-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-feature-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.p-feature-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.p-feature-card {
  padding: clamp(22px, 2.5vw, 30px) clamp(18px, 2.5vw, 24px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(23, 32, 47, 0.04);
  transition: all 0.35s var(--ease-out);
}
.p-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(23, 32, 47, 0.1);
  border-color: var(--orange);
}
.p-feature-card--sm {
  padding: clamp(18px, 2vw, 24px) clamp(16px, 2vw, 20px);
}
.p-feature-card--sm h3 {
  font-size: clamp(14px, 1.4vw, 16px);
  margin-bottom: 8px;
}
.p-feature-card--sm p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.p-feature-card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  border-top-color: var(--orange);
}
.p-feature-card--dark:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.p-feature-card--dark h4 {
  color: var(--white);
  font-size: clamp(14px, 1.4vw, 16px);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.p-feature-card--dark p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}
.p-feature-card--dark .p-fc-icon {
  margin-bottom: 14px;
}
.p-fc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(232, 80, 10, 0.2);
  transition: transform 0.3s ease;
}
.p-feature-card:hover .p-fc-icon {
  transform: scale(1.08) rotate(-5deg);
}
.p-feature-card h3 {
  font-size: clamp(16px, 1.8vw, 18px);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.p-fc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-fc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.p-fc-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Spec Table */
.p-spec-table-wrap {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(23, 32, 47, 0.06);
}
.p-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.p-spec-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.p-spec-table tr:last-child td {
  border-bottom: 0;
}
.p-spec-table td:first-child {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  background: var(--surface-soft);
  width: 38%;
  letter-spacing: 0.04em;
}
.p-spec-table td:last-child {
  color: var(--ink-soft);
  background: var(--white);
}
.p-spec-table tr:nth-child(even) td:first-child {
  background: #eef1f5;
}
.p-spec-table tr:nth-child(even) td:last-child {
  background: #fafbfc;
}

/* Construction block */
.p-construction {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 26px;
  background: var(--surface-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
}
.p-construction h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.p-construction p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* Checklist Grid */
.p-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

/* Accuracy Badge */
.p-accuracy-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 80, 10, 0.35);
  animation: p-pulse 2s infinite;
  margin-bottom: 12px;
}
@keyframes p-pulse {
  0% {
    box-shadow: 0 6px 20px rgba(232, 80, 10, 0.35);
  }
  50% {
    box-shadow: 0 6px 36px rgba(232, 80, 10, 0.55);
  }
  100% {
    box-shadow: 0 6px 20px rgba(232, 80, 10, 0.35);
  }
}
.p-acc-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.p-acc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* Tag Grid */
.p-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.p-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 2px 6px rgba(23, 32, 47, 0.03);
}
.p-tag i {
  color: var(--orange);
  font-size: 13px;
}
.p-tag:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 80, 10, 0.1);
  color: var(--orange-dark);
}

/* Capabilities Grid */
.p-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-cap-card {
  padding: clamp(22px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--orange);
  border-radius: 10px;
  text-align: center;
  transition: all 0.35s var(--ease-out);
}
.p-cap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(23, 32, 47, 0.1);
  border-bottom-color: var(--orange);
  border-color: rgba(232, 80, 10, 0.15);
}
.p-cap-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 22px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(232, 80, 10, 0.18);
  transition: transform 0.3s ease;
}
.p-cap-card:hover .p-cap-icon {
  transform: scale(1.08) rotate(-5deg);
}
.p-cap-card h3 {
  font-size: clamp(15px, 1.6vw, 17px);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.p-cap-card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

/* Report Badges Row */
.p-report-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.p-report-badges .p-badge {
  font-size: 12px;
  padding: 8px 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .p-showcase,
  .p-showcase--rev {
    grid-template-columns: 1fr;
  }
  .p-showcase-visual {
    order: -1;
  }
  .p-feature-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-highlight-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-feature-grid,
  .p-feature-grid--2col,
  .p-feature-grid--4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .p-cap-grid {
    grid-template-columns: 1fr;
  }
  .p-checklist-grid {
    grid-template-columns: 1fr;
  }
  .p-highlight-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-spec-table td {
    padding: 10px 14px;
    font-size: 13px;
  }
  .p-spec-table td:first-child {
    font-size: 11px;
  }
  .p-showcase-content h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
}
@media (max-width: 480px) {
  .p-highlight-bar {
    grid-template-columns: 1fr;
  }
  .p-construction {
    flex-direction: column;
    padding: 18px 20px;
  }
  .p-construction .p-icon-block--sm {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .p-badge-group {
    gap: 6px;
  }
  .p-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* ─── SERVICE PAGES ─── */
[id$="-intro"],
[id$="-overview"],
[id$="-services"],
[id$="-process"],
[id$="-advantages"],
[id$="-applications"],
[id$="-why-ptts"],
[id$="-clients"],
[id$="-cta"],
[id$="-features"],
[id$="-piping"],
[id$="-materials"],
[id$="-gallery"] {
  padding: var(--section-pad) 0;
}

.service-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.service-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.4vw, 15px);
  padding: 4px 0;
}
.service-check i {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.overview-card {
  background: var(--surface);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 28px);
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid transparent;
}
.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(23, 32, 47, 0.12);
  border-color: rgba(232, 80, 10, 0.2);
}
.overview-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(232, 80, 10, 0.25);
  transition: transform 0.3s ease;
}
.overview-card:hover .overview-icon {
  transform: scale(1.1) rotate(5deg);
}
.overview-card h4 {
  font-size: clamp(17px, 2vw, 20px);
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--ink);
}
.overview-card p {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--muted);
  line-height: 1.6;
  margin-top: auto;
}

.service-list-item {
  display: flex;
  gap: 20px;
  background: var(--surface);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 24px);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 3px solid var(--orange);
}
.service-list-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(23, 32, 47, 0.1);
}
.service-list-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(232, 80, 10, 0.2);
}
.service-list-content h4 {
  font-size: clamp(16px, 1.8vw, 18px);
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--ink);
}
.service-list-content p {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--muted);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
.process-step {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  height: 100%;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    border-color 0.24s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(23, 32, 47, 0.11);
  border-color: rgba(232, 80, 10, 0.24);
}
.step-number {
  width: clamp(40px, 5vw, 52px);
  height: clamp(40px, 5vw, 52px);
  min-width: clamp(40px, 5vw, 52px);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(232, 80, 10, 0.3);
}
.step-content h4 {
  font-size: clamp(17px, 2vw, 20px);
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--ink);
}
.step-content p {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--muted);
  line-height: 1.6;
}

.why-ptts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-ptts-grid {
  grid-template-columns: repeat(4, 1fr);
}
.why-ptts-card {
  background: var(--surface);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 28px);
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid transparent;
}
.why-ptts-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(23, 32, 47, 0.12);
  border-color: rgba(232, 80, 10, 0.2);
}
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(232, 80, 10, 0.25);
  transition: transform 0.3s ease;
}
.why-ptts-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}
.why-ptts-card h4 {
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--ink);
}
.why-ptts-card p {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--muted);
  line-height: 1.6;
  margin-top: auto;
}

.service-cta-inner {
  background: linear-gradient(135deg, var(--ink), #1e293b);
  color: white;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.service-cta-inner h2 {
  color: white;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
}
.service-cta-inner h2 span {
  color: var(--orange);
}
.service-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}
.service-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.bg-soft {
  background: var(--surface-soft);
}

/* ─── SERVICE PAGE REDESIGN ─── */

/* Dual-image intro layout */
.service-intro-grid-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.service-img-duo {
  position: relative;
  display: grid;
  gap: 16px;
}
.service-img-duo .img-main {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.service-img-duo .img-main img,
.service-img-duo .img-sec img {
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.6s var(--ease-smooth);
}
.service-img-duo .img-main:hover img,
.service-img-duo .img-sec:hover img {
  transform: scale(1.03);
}
.service-img-duo .img-sec {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.service-img-duo .img-sec img {
  max-height: 220px;
}
.service-img-duo::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  width: 56px;
  height: 56px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-radius: 12px 0 0 0;
  z-index: 2;
  pointer-events: none;
}
.service-img-duo .img-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--orange);
  color: white;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}
.service-content-alt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sylmasta {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 20px;
  justify-content: space-between;
}
.service-content-alt h2 {
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
}
.service-content-alt h2 span {
  color: var(--orange);
}
.service-content-alt p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.75;
}

/* Image-backed overview cards */
.overview-features-bg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}
.overview-card-bg {
  position: relative;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 3vw, 28px);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  height: 100%;
}
.overview-card-bg:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(23, 32, 47, 0.12);
  border-color: rgba(232, 80, 10, 0.3);
}
.overview-card-bg .overview-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(232, 80, 10, 0.25);
  transition: transform 0.3s ease;
}
.overview-card-bg:hover .overview-icon {
  transform: scale(1.1) rotate(5deg);
}
.overview-card-bg h4 {
  font-size: clamp(17px, 2vw, 20px);
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--ink);
  width: 100%;
  word-wrap: break-word;
}
.overview-card-bg p {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--muted);
  line-height: 1.6;
  margin-top: auto;
  width: 100%;
}

/* Image-enhanced service list */
.service-list-grid-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.service-list-card {
  display: flex;
  gap: 10px;
  background: var(--surface);
  padding: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--line);
}
.service-list-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(23, 32, 47, 0.1);
  border-color: rgba(232, 80, 10, 0.2);
}
.service-list-thumb {
  width: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-list-thumb .service-list-icon {
  width: 44px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin: 0;
}
.service-list-body {
  padding: clamp(16px, 2vw, 20px) clamp(16px, 2vw, 20px) clamp(16px, 2vw, 20px)
    0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-list-body .service-list-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  font-size: 16px;
  margin-bottom: 10px;
}
.service-list-body h4 {
  font-size: clamp(15px, 1.6vw, 17px);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.service-list-body p {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--muted);
  line-height: 1.6;
}

/* Split advantages layout */
.advantages-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 40px;
  align-items: center;
}
.advantages-split-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
}
.advantages-split-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.advantages-split-img::before {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 56px;
  height: 56px;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  border-radius: 0 0 12px 0;
  z-index: 2;
  pointer-events: none;
}
.advantages-split-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.advantages-split-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(23, 32, 47, 0.06);
  border-left: 3px solid var(--orange);
  transition: all 0.3s ease;
}
.advantages-split-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 18px rgba(23, 32, 47, 0.1);
}
/* Industry application image cards */
.applications-grid-bg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.application-card-bg {
  position: relative;
  padding: clamp(28px, 3vw, 36px) clamp(16px, 2vw, 24px);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  border: 1px solid transparent;
}
.application-card-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23, 32, 47, 0.7) 0%,
    rgba(23, 32, 47, 0.88) 100%
  );
  z-index: 1;
  transition: background 0.35s ease;
}
.application-card-bg:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(23, 32, 47, 0.75) 0%,
    rgba(23, 32, 47, 0.93) 100%
  );
}
.application-card-bg:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(23, 32, 47, 0.12);
  border-color: rgba(232, 80, 10, 0.3);
}
.application-card-bg > * {
  position: relative;
  z-index: 2;
}
.application-card-bg .application-icon {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.application-card-bg h4 {
  font-size: clamp(16px, 1.8vw, 18px);
  margin-bottom: 8px;
  text-transform: uppercase;
  color: white;
}
.application-card-bg p {
  font-size: clamp(13px, 1.3vw, 14px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Service gallery grid */
/* ─── SERVICE GALLERY ─── */
.service-gallery {
  margin-top: 40px;
}
.service-gallery-swiper {
  overflow: visible;
  padding: 0 40px;
}
.service-gallery-swiper .swiper-button-next,
.service-gallery-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(23, 32, 47, 0.12);
  color: var(--orange);
  transition: all 0.25s ease;
}
.service-gallery-swiper .swiper-button-next:hover,
.service-gallery-swiper .swiper-button-prev:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 80, 10, 0.25);
}
.service-gallery-swiper .swiper-button-next::after,
.service-gallery-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}
.service-gallery-swiper .swiper-button-next {
  right: 0;
}
.service-gallery-swiper .swiper-button-prev {
  left: 0;
}
.service-gallery-swiper .swiper-pagination {
  position: static;
  margin-top: 24px;
}
.service-gallery-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--line);
  opacity: 1;
  transition: all 0.3s ease;
}
.service-gallery-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: var(--orange);
}
@media (max-width: 768px) {
  .service-gallery-swiper {
    padding: 0;
  }
  .service-gallery-swiper .swiper-button-next,
  .service-gallery-swiper .swiper-button-prev {
    display: none;
  }
}
.service-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  background: var(--surface-soft);
  box-shadow: 0 4px 12px rgba(23, 32, 47, 0.05);
  transition: all 0.4s var(--ease-out);
}
.service-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(23, 32, 47, 0.12);
}
.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.service-gallery-item:hover img {
  transform: scale(1.05);
}
.service-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 32, 47, 0.7) 0%,
    rgba(23, 32, 47, 0.2) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-gallery-item:hover::after {
  opacity: 1;
}
.service-gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}
.service-gallery-item:hover .gallery-label {
  transform: translateY(0);
  opacity: 1;
}
.service-gallery-item .gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
}
.service-gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ─── CLIENTS STRIP ─── */
.clients-strip-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 30px;
}
.client-logo-v2 {
  flex: 0 0 auto;
  width: clamp(150px, 12vw, 150px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.client-logo-v2:hover {
  transform: scale(1.1);
}
.client-logo-v2 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ─── BUTTON GROUP ─── */
.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-hero-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .strip-item:nth-child(2),
  .strip-item:last-child {
    border-right: none;
  }
}
@media (max-width: 480px) {
  .page-hero-strip-inner {
    grid-template-columns: 1fr;
  }
  .strip-item {
    border-right: none;
  }
}

/* Responsive: service page redesign */
@media (max-width: 1024px) {
  .overview-features-bg,
  .applications-grid-bg {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-list-grid-alt {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-ptts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .advantages-split {
    grid-template-columns: 1fr;
  }
  .advantages-split-img {
    min-height: 260px;
  }
  .advantages-split-img img {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .service-intro-grid-alt {
    grid-template-columns: 1fr;
  }
  .overview-features-bg,
  .applications-grid-bg {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-list-grid-alt {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-ptts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-list-thumb {
    width: 70px;
    min-width: 70px;
  }
}

@media (max-width: 600px) {
  .overview-features-bg,
  .applications-grid-bg {
    grid-template-columns: 1fr;
  }
  .service-list-grid-alt {
    grid-template-columns: 1fr;
  }
  .service-img-duo {
    grid-template-columns: 1fr;
  }
  .service-img-duo .img-sec img {
    min-height: 140px;
    max-height: 180px;
  }
  .service-img-duo {
    gap: 10px;
  }
  .advantages-split-img {
    min-height: 220px;
  }
  .advantages-split-img img {
    min-height: 220px;
  }
}

/* ─── TESTIMONIAL ─── */
.t-section {
  padding: var(--section-pad) 0;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow);
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(23, 32, 47, 0.12);
  border-color: rgba(232, 80, 10, 0.2);
}
.t-card.featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: linear-gradient(135deg, var(--surface-blue), var(--white));
  border-left: 4px solid var(--orange);
}
.t-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.t-quote {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  flex: 1;
}
.t-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.3;
  font-family: "Barlow Condensed", sans-serif;
}
.t-quote p {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.7;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.t-author-info .t-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

/* ─── UTILITY ─── */
.mt-2\! {
  margin-top: 16px;
}
.mt-4\! {
  margin-top: 32px;
}
.border-none\! {
  border-top: none !important;
}

/* ─── MEDIA QUERIES ─── */
@media (max-width: 1100px) {
  .page-hero-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-item:nth-child(2n) {
    border-right: none;
  }
  .strip-item:nth-child(1),
  .strip-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta .btn-primary {
    display: none;
  }
}
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .about-grid,
  .why-grid,
  .about-intro-grid,
  .ceo-grid,
  .company-intro {
    grid-template-columns: 1fr;
  }
  .team-grid,
  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .group-card-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .why-ptts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .blog-card-featured .blog-card-link {
    grid-template-columns: 1fr;
  }
  .blog-card-featured .blog-card-body {
    padding: 24px 28px;
  }
}

@media (max-width: 768px) {
  .container {
    --container-gap: 32px;
  }
  #hero {
    min-height: 680px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-h1 {
    font-size: clamp(36px, 10vw, 56px);
  }
  .hero-desc {
    font-size: 15px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-item:nth-child(2n-1) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-top {
    padding: 40px 0 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom > div {
    justify-content: center;
  }
  .why-cards,
  .branches-grid,
  .group-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .about-img-wrap img,
  .ai-img img {
    height: auto;
    max-height: 400px;
  }
  .about-img-badge,
  .ai-img-badge {
    right: 16px;
    bottom: -16px;
    padding: 16px 20px;
  }
  .about-img-badge .num,
  .ai-img-badge .num {
    font-size: 32px;
  }
  .services-swiper .swiper-slide {
    width: 280px;
  }
  .svc-card {
    height: 380px;
  }
  .tabs-header {
    gap: 4px;
  }
  .tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .team-grid,
  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ceo-photo img {
    height: 280px;
  }
  .ceo-badges {
    gap: 8px;
  }
  .ceo-badge {
    padding: 6px 12px;
    font-size: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal {
    padding: 32px 24px;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .astat-num {
    font-size: 36px;
  }
  .service-cta-inner {
    padding: 32px 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .t-card.featured {
    grid-template-columns: 1fr;
  }
  .t-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-img {
    aspect-ratio: 16/10;
  }
  .blog-card-featured .blog-card-img {
    aspect-ratio: 16/10;
  }
  .blog-card-body {
    padding: 18px 20px 22px;
  }
  .blog-card-body h2 {
    font-size: 18px;
  }
  .blog-card-featured .blog-card-body h2 {
    font-size: 22px;
  }
  .blog-pagination {
    margin-top: 40px;
  }
  .blog-page,
  .blog-page-arrow {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }
  [id$="-intro"],
  [id$="-overview"],
  [id$="-services"],
  [id$="-process"],
  [id$="-advantages"],
  [id$="-applications"],
  [id$="-why-ptts"],
  [id$="-clients"],
  [id$="-cta"] {
    padding: calc(var(--section-pad) * 0.7) 0;
  }
  .branches-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero-strip-inner {
    grid-template-columns: 1fr;
  }
  .strip-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px;
  }
  .strip-item:last-child {
    border-bottom: none;
  }
  .page-hero {
    padding: 120px 0 60px;
    min-height: 360px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why-ptts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mobile-nav {
    max-width: 100vw;
    width: 100vw;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .about-cta-btns {
    flex-direction: column;
  }
  .about-cta-btns .btn-primary,
  .about-cta-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .services-swiper .swiper-slide {
    width: 260px;
  }
  .svc-card {
    height: 350px;
  }
  .value-item {
    flex-direction: column;
    gap: 8px;
  }
  .value-num {
    width: auto;
    font-size: 28px;
  }
  .team-grid,
  .accred-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: 0 !important;
    min-height: 90px;
  }
  .stat-item:nth-child(2n-1) {
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }
  .t-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .blog-pagination {
    gap: 6px;
  }
  .blog-page,
  .blog-page-arrow {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  .about-grid {
    gap: 32px;
  }
  .about-img-wrap::before {
    width: 60px;
    height: 60px;
    top: -12px;
    left: -12px;
  }
  .branches-grid {
    gap: 20px;
    margin-top: 28px;
  }
  .product-img-full {
    gap: 16px;
  }
  .ceo-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 28px;
  }
  .modal {
    padding: 24px 18px;
  }
  .service-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .service-cta-btns .btn-primary,
  .service-cta-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-h1 {
    font-size: clamp(32px, 12vw, 42px);
  }
  .hero-eyebrow {
    font-size: 11px;
  }
  .cta-text {
    font-size: clamp(18px, 5vw, 22px);
  }
  .page-hero h1 {
    font-size: clamp(32px, 12vw, 40px);
  }
  .service-intro-grid-alt {
    gap: 24px;
  }
  .service-img-duo {
    gap: 10px;
  }
  .service-img-duo .img-main img,
  .service-img-duo .img-sec img {
    min-height: 180px;
    max-height: 240px;
  }
  .service-list-grid-alt {
    gap: 16px;
  }
  .service-list-card {
    flex-direction: column;
  }
  .service-list-thumb {
    width: 100%;
    min-width: 100%;
    height: 60px;
  }
  .service-list-body {
    padding: 12px 16px 16px;
  }
  .application-card-bg {
    min-height: 200px;
  }
  .process-step {
    gap: 14px;
    padding: 18px;
  }
  .service-cta-inner {
    padding: 28px 18px;
  }
  .container {
    --container-gap: 20px;
  }
}

/* Shared card hover refinements */
.svc-card,
.blog-card,
.gallery-item,
.overview-card,
.advantage-card,
.application-card,
.why-ptts-card,
.service-list-item {
  backface-visibility: hidden;
  will-change: transform;
}

.svc-card,
.blog-card,
.gallery-item {
  transition:
    transform 0.36s var(--ease-out),
    box-shadow 0.36s var(--ease-out),
    border-color 0.28s ease,
    filter 0.36s ease;
}

.overview-card,
.advantage-card,
.application-card,
.why-ptts-card,
.service-list-item {
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    border-color 0.24s ease,
    background-color 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .svc-card:hover,
  .svc-card:focus-within {
    transform: translate3d(0, -7px, 0);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
    filter: saturate(1.04);
  }

  .blog-card:hover,
  .blog-card:focus-within,
  .gallery-item:hover,
  .gallery-item:focus-visible {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 18px 38px rgba(23, 32, 47, 0.13);
  }

  .overview-card:hover,
  .advantage-card:hover,
  .application-card:hover,
  .why-ptts-card:hover,
  .service-list-item:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 14px 30px rgba(23, 32, 47, 0.11);
    border-color: rgba(232, 80, 10, 0.24);
  }

  .svc-card:hover::after,
  .svc-card:focus-within::after {
    opacity: 0.1;
  }

  .svc-card:hover::before,
  .svc-card:focus-within::before {
    background: linear-gradient(
      to top,
      rgba(10, 20, 35, 0.96) 0%,
      rgba(10, 20, 35, 0.68) 55%,
      rgba(10, 20, 35, 0.34) 100%
    );
  }

  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    transform: scale(1.045);
  }

  .blog-card:hover .blog-card-img img,
  .blog-card:focus-within .blog-card-img img {
    transform: scale(1.035);
  }

  .overview-card:hover .overview-icon,
  .advantage-card:hover .advantage-icon,
  .application-card:hover .application-icon,
  .why-ptts-card:hover .why-icon {
    transform: translateY(-2px) scale(1.04);
  }
}

@media (hover: none) {
  .svc-card:hover,
  .blog-card:hover,
  .gallery-item:hover,
  .overview-card:hover,
  .advantage-card:hover,
  .application-card:hover,
  .why-ptts-card:hover,
  .service-list-item:hover {
    transform: translateZ(0);
  }

  .gallery-item:hover img,
  .blog-card:hover .blog-card-img img {
    transform: none;
  }
}

/* ─── FLOATING BUTTONS ─── */
.float-wa,
.float-top {
  position: fixed;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.float-wa {
  bottom: 24px;
  background: #25d366;
  color: #fff;
}
.float-wa:hover {
  background: #1da851;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}
.float-top {
  bottom: 84px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-top:hover {
  background: var(--orange);
  transform: scale(1.08);
}

/* Social float — home page only. Right-center on desktop (clear of the
   left-aligned hero copy and the bottom-right WhatsApp/scroll-top stack). */
.float-social {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
}
.float-social-btn:hover,
.float-social-btn:focus-visible {
  color: #fff;
  transform: translateY(-3px) scale(1.06);
}
.float-social-btn.fb:hover,
.float-social-btn.fb:focus-visible {
  background: #1877f2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}
.float-social-btn.li:hover,
.float-social-btn.li:focus-visible {
  background: #0a66c2;
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}
.float-social-btn.ig:hover,
.float-social-btn.ig:focus-visible {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.4);
}
.float-social-btn.yt:hover,
.float-social-btn.yt:focus-visible {
  background: #ff0000;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}
/* On phones a vertical right-center bar would cover content, so drop it to a
   compact horizontal row in the bottom-left corner (WhatsApp stays bottom-right). */
@media (max-width: 600px) {
  .float-social {
    right: auto;
    top: 50%;
    right: 12px; 
    transform: none; 
    gap: 8px;
  }
  .float-social-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

/* ─── CAREER PAGE ─── */
.hero-career {
  background-image: url("../images/banner/1.webp");
}

#career-positions {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.career-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
  box-shadow: 0 8px 24px rgba(23, 32, 47, 0.06);
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(23, 32, 47, 0.12);
}

.career-card-header {
  padding: clamp(22px, 3vw, 28px) clamp(20px, 3vw, 24px) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.career-card-header h2 {
  font-size: clamp(18px, 2vw, 20px);
  text-transform: uppercase;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.career-card:hover .career-card-header h2 {
  color: var(--orange);
}

.career-badge {
  flex-shrink: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.career-badge--fulltime {
  background: #e6f7e6;
  color: #1a7d36;
}

.career-badge--parttime {
  background: #fff3e0;
  color: #b85c00;
}

.career-badge--contract {
  background: #e3f0ff;
  color: #0057b3;
}

.career-card-body {
  padding: clamp(16px, 2.5vw, 20px) clamp(20px, 3vw, 24px);
  flex: 1;
}

.career-card-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.career-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.career-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.career-meta-item i {
  width: 16px;
  color: var(--orange);
  font-size: 13px;
  text-align: center;
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--surface-blue);
  color: var(--ink-soft);
}

.career-card-footer {
  padding: 0 clamp(20px, 3vw, 24px) clamp(22px, 3vw, 26px);
}

.career-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.career-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.career-btn i {
  transition: transform 0.2s ease;
}

.career-btn:hover i {
  transform: translateX(4px);
}

.career-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.career-benefit {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface-soft);
  border-radius: 8px;
  transition:
    transform 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
}

.career-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.career-benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 24px;
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(232, 80, 10, 0.12);
}

.career-benefit h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.career-benefit p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .career-grid {
    grid-template-columns: 1fr;
  }

  .career-card-header {
    flex-direction: column;
  }

  .career-benefits {
    grid-template-columns: 1fr;
  }
}

/* ─── CAREER PAGE END ─── */
@media (max-width: 600px) {
  .float-wa,
  .float-top {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .float-wa {
    bottom: 16px;
    right: 12px;
  }
  .float-top {
    bottom: 70px;
    right: 12px;
  }
}

/* ─── PRODUCTS PAGE POLISH ─── */
.hero-products {
  background-position: center 48%;
}

.hero-products .page-hero-inner {
  max-width: 880px;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 34px);
}

.product-hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.product-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 680px);
  margin-top: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.product-hero-stats div {
  min-width: 0;
  padding: clamp(14px, 2.4vw, 18px);
  background: rgba(23, 32, 47, 0.38);
}

.product-hero-stats strong,
.product-hero-stats span {
  display: block;
}

.product-hero-stats strong {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-hero-stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-overview {
  padding: clamp(44px, 5vw, 78px) 0;
  background: var(--surface);
}

.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.product-overview-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4.6vw, 58px);
  max-width: 620px;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.product-overview-copy h2 span {
  display: block;
  color: var(--orange);
}

.product-overview-copy p {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.product-overview-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(160px, 1fr));
  gap: clamp(12px, 2vw, 18px);
  min-width: 0;
}

.product-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 32, 47, 0.1);
}

.product-shot--wide {
  grid-row: 1 / span 2;
}

.product-shot img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s var(--ease-smooth);
}

.product-shot figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(23, 32, 47, 0.88);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-shot:hover img {
  transform: scale(1.035);
}

.product-device-card {
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 32, 47, 0.13);
}

.product-device-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.product-device-card--portrait {
  width: min(100%, 390px);
}

.p-product {
  position: relative;
}

.p-showcase {
  gap: clamp(28px, 5vw, 58px);
}

.p-showcase-visual {
  min-width: 0;
}

.p-badge-group {
  justify-content: center;
}

.p-feature-grid {
  align-items: stretch;
}

.p-feature-card,
.p-cap-card {
  height: 100%;
}

.p-feature-card h3,
.p-feature-card h4,
.p-cap-card h3 {
  line-height: 1.15;
}

.p-fc-list {
  display: grid;
  gap: 9px;
}

.p-spec-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-spec-table {
  min-width: 680px;
}

.p-construction {
  align-items: center;
}

.p-tag-grid {
  align-items: stretch;
}

.p-tag {
  min-height: 52px;
}

@media (max-width: 1024px) {
  .product-overview-grid {
    grid-template-columns: 1fr;
  }

  .product-overview-copy {
    max-width: 680px;
  }

  .product-device-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 768px) {
  .hero-products .page-hero-sub {
    color: rgba(255, 255, 255, 0.86);
  }

  .product-hero-actions {
    width: 100%;
  }

  .product-hero-actions .btn-primary,
  .product-hero-actions .btn-outline {
    flex: 1 1 220px;
  }

  .product-hero-stats {
    grid-template-columns: 1fr;
  }

  .product-overview-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .product-shot--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-shot img {
    aspect-ratio: 16 / 11;
  }

  .product-device-card img {
    aspect-ratio: 16 / 12;
  }

  .p-product {
    padding: clamp(42px, 9vw, 62px) 0;
  }

  .p-showcase-content {
    min-width: 0;
  }

  .product-overview-copy h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.05;
  }

  .service-check {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .product-toc-link i {
    display: none;
  }

  .product-hero-actions .btn-primary,
  .product-hero-actions .btn-outline {
    width: 100%;
    flex-basis: 100%;
  }

  .product-overview-media {
    grid-template-columns: 1fr;
  }

  .product-overview-copy h2 {
    font-size: 30px;
  }

  .product-shot figcaption {
    position: static;
    border-radius: 0;
  }

  .p-spec-table {
    min-width: 560px;
  }
}

/* Simple products layout override */
.hero-products .page-hero-inner {
  max-width: 720px;
}

.hero-products .breadcrumb,
.hero-products h1,
.hero-products .page-hero-sub,
.hero-products .product-hero-actions,
.p-product .reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.product-hero-actions {
  margin-top: 24px;
}

.p-product {
  padding: clamp(44px, 5vw, 68px) 0;
}

.p-showcase {
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.p-showcase > * {
  min-width: 0;
}

.product-device-card,
.product-device-card--portrait {
  width: min(100%, 360px);
  max-width: 100%;
  box-shadow: 0 10px 28px rgba(23, 32, 47, 0.09);
}

.product-device-card img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.p-feature-card,
.p-cap-card {
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(23, 32, 47, 0.06);
}

.p-showcase-content h2,
.section-header h2 {
  letter-spacing: 0;
}

.p-showcase-content h2 {
  font-size: clamp(28px, 3.2vw, 40px);
}

.p-showcase-content h2 span {
  display: block;
}

.p-lead,
.service-check,
.p-feature-card p,
.p-cap-card p,
.p-fc-list li {
  font-size: 15px;
}

.p-highlight-bar {
  border-radius: 8px;
  box-shadow: none;
}

/* ─── PRODUCTS LAYOUT: sidebar + content ─── */
.products-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gap);
}

.products-content {
  flex: 1;
  min-width: 0;
}

/* ─── PRODUCT TOC: vertical sidebar on desktop ─── */
.product-toc {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(23, 32, 47, 0.06);
  max-height: calc(100vh - var(--nav-height) - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.product-toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 20px;
  color: var(--ink-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}

.product-toc-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: transparent;
  border-radius: 0 3px 3px 0;
  transition: background 0.25s ease;
}

.product-toc-link:hover {
  color: var(--orange);
  background: rgba(232, 80, 10, 0.05);
}

.product-toc-link.active {
  color: var(--orange-dark);
  background: rgba(232, 80, 10, 0.06);
}

.product-toc-link.active::before {
  background: var(--orange);
}

.product-toc-link i {
  width: 16px;
  text-align: center;
  font-size: 12px;
  flex-shrink: 0;
  color: var(--muted);
  transition: color 0.2s ease;
}

.product-toc-link.active i,
.product-toc-link:hover i {
  color: var(--orange);
}

/* responsive: collapse to horizontal strip */
@media (max-width: 1200px) {
  .products-layout {
    display: block;
    max-width: none;
    padding: 0;
  }

  .products-content {
    width: 100%;
  }

  .product-toc {
    position: sticky;
    top: 8px;
    z-index: 120;
    flex: none;
    flex-direction: row;
    width: calc(100% - 24px);
    margin: 18px auto 0;
    padding: 6px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(23, 32, 47, 0.08);
    backdrop-filter: blur(10px);
    gap: 4px;
    max-height: none;
    scrollbar-width: thin;
  }

  .product-toc-link {
    flex: 0 0 auto;
    padding: 9px 10px;
    border-radius: 6px;
    font-size: 10px;
  }

  .product-toc-link::before {
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 3px;
    width: auto;
    height: 2px;
    border-radius: 2px;
  }
}

@media (max-width: 768px) {
  .product-toc {
    top: 8px;
    width: calc(100% - 24px);
    gap: 4px;
    padding: 6px;
  }

  .product-toc-link {
    padding: 9px 10px;
    font-size: 10px;
  }
}

@media (max-width: 1024px) {
  .p-showcase {
    grid-template-columns: 1fr;
  }

  .product-device-card,
  .product-device-card--portrait {
    width: min(100%, 430px);
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .p-product {
    overflow: hidden;
  }

  .p-showcase,
  .p-showcase-visual,
  .p-showcase-content,
  .p-highlight-bar,
  .p-checklist-grid {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .p-showcase-content h2,
  .section-header h2 {
    font-size: 30px;
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .p-lead,
  .service-check,
  .p-feature-card p,
  .p-cap-card p,
  .p-fc-list li {
    font-size: 14px;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .product-device-card,
  .product-device-card--portrait {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .p-highlight-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .p-badge-group {
    justify-content: flex-start;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .p-badge {
    flex: 1 1 120px;
    justify-content: center;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .p-feature-grid,
  .p-feature-grid--2col,
  .p-feature-grid--4,
  .p-cap-grid,
  .p-checklist-grid,
  .p-tag-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ─── CLIENT LOGO MARQUEE ─── */
.client-logo-marquee {
  padding: var(--section-pad) 0;
  background: var(--surface-soft);
  overflow: hidden;
}
.marquee-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.marquee-row:first-of-type {
  margin-top: 0;
}
.marquee-country-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: var(--orange);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 2;
}
.marquee-track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 40px,
    #000 calc(100% - 40px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 40px,
    #000 calc(100% - 40px),
    transparent 100%
  );
}
.marquee-content {
  display: flex;
  gap: 16px;
  width: max-content;
}
.marquee-content--india {
  animation: marquee-left 40s linear infinite;
}
.marquee-content--intl {
  animation: marquee-right 4s linear infinite;
}
.marquee-content--uae {
  animation: marquee-right 4s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 90px;
  flex-shrink: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: all 0.3s var(--ease-out);
}
.marquee-item:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 16px rgba(232, 80, 10, 0.12);
  transform: translateY(-2px);
}
.marquee-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ─── CLIENT GALLERY GRID ─── */
.client-gallery-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.client-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.client-gallery-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  transform: translateZ(0);
}
.client-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease-smooth);
}
.client-gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .client-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .marquee-row {
    gap: 12px;
  }
  .marquee-item {
    width: 130px;
    height: 76px;
    padding: 12px;
  }
  .marquee-item img {
    max-height: 40px;
  }
}

@media (max-width: 600px) {
  .marquee-row {
    gap: 10px;
  }
  .marquee-content {
    gap: 10px;
  }
  .marquee-item {
    width: 110px;
    height: 64px;
    padding: 10px;
  }
  .marquee-item img {
    max-height: 34px;
  }
  .marquee-content--india {
    animation-duration: 30s;
  }
  .marquee-content--intl,
  .marquee-content--uae {
    animation-duration: 3s;
  }
  .client-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Contact / quote form validation + status banner ───────────────────── */
.contact-form .is-invalid {
  border-color: #dc3545 !important;
}

.contact-form .text-danger {
  color: #dc3545 !important;
  display: block;
  margin-top: 6px;
  font-size: 0.875rem;
}

.contact-form .alert {
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.contact-form .alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.contact-form .alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.contact-form .alert i {
  margin-right: 8px;
}
