*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #E60E0F;
  --red-dark: #C50C0D;
  --blue: #043A7A;
  --blue-mid: #053190;
  --blue-deep: #02265C;
  --white: #FFFFFF;
  --text-dark: #1A2535;
  --text-mid: #3A4A5C;
  --text-muted: #7A8A9B;
  --border: rgba(4, 58, 122, 0.10);
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  min-height: 100vh;
}

/* ════════════════════════════════════════════════════
     SCROLL ANIMATIONS
  ════════════════════════════════════════════════════ */

/* Base hidden state — elements start invisible */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger>*:nth-child(1) {
  transition-delay: 0.00s;
}

.stagger>*:nth-child(2) {
  transition-delay: 0.10s;
}

.stagger>*:nth-child(3) {
  transition-delay: 0.20s;
}

.stagger>*:nth-child(4) {
  transition-delay: 0.30s;
}

.stagger>*:nth-child(5) {
  transition-delay: 0.40s;
}

.stagger>*:nth-child(6) {
  transition-delay: 0.50s;
}

.stagger>*:nth-child(7) {
  transition-delay: 0.60s;
}

.stagger>*:nth-child(8) {
  transition-delay: 0.70s;
}

/* ════════════════════════════════════════════════════
     TOP UTILITY BAR
  ════════════════════════════════════════════════════ */
.topbar {
  background: var(--blue);
  height: 36px;
  display: flex;
  align-items: center;

  position: relative;
  z-index: 300;
}

.topbar-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-badges {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-badge svg {
  flex-shrink: 0;
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.topbar-action {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  opacity: 0.9;
}

.topbar-action:hover {
  opacity: 1;
}

.topbar-action svg {
  transition: transform 0.2s;
}

.topbar-action:hover svg {
  transform: translateY(1px);
}

/* ════════════════════════════════════════════════════
     MAIN NAVBAR
  ════════════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  height: 78px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 0 rgba(4, 58, 122, 0.07), 0 6px 28px rgba(4, 58, 122, 0.08);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;

  opacity: 0.9;
}

.navbar-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding-right: 40px;
  border-right: 1px solid var(--border);
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.logo-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 32px;
  flex: 1;
  list-style: none;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.nav-links>li>a:hover {
  color: var(--blue);
  background: rgba(4, 58, 122, 0.06);
}

.nav-links>li>a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-links>li>a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
}

.chevron {
  width: 12px;
  height: 12px;
  opacity: 0.4;
  transition: transform 0.22s;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
     MEGA MENU
  ════════════════════════════════════════════════════ */

/* The li that owns the mega panel — position:static so panel
   can anchor to the navbar instead of just the li */
.has-mega {
  position: static;
}

.mega-menu {
  position: fixed;
  top: 110px;
  /* matches navbar height */
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 24px 64px rgba(4, 58, 122, 0.13), 0 4px 16px rgba(4, 58, 122, 0.07);
  z-index: 500;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.mega-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 40px 0;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding-bottom: 20px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  position: relative;
}

.mega-item:hover {
  background: rgba(4, 58, 122, 0.055);
  color: var(--blue);
  transform: translateX(2px);
}

.mega-item:hover .mega-icon {
  background: rgba(4, 58, 122, 0.12);
}

.mega-item:hover .mega-icon svg path,
.mega-item:hover .mega-icon svg circle,
.mega-item:hover .mega-icon svg rect {
  stroke: var(--red);
}

.mega-item:hover {
  color: var(--red);
}

.mega-icon {
  width: 36px;
  height: 36px;
  background: rgba(4, 58, 122, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.mega-item span {
  line-height: 1.3;
}

.mega-footer {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1.5px solid rgba(4, 58, 122, 0.2);
  border-radius: 7px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.mega-view-all:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.mega-view-all svg {
  transition: transform 0.18s;
  flex-shrink: 0;
}

.mega-view-all:hover svg {
  transform: translateX(3px);
}

/* keep old .dropdown-icon for any other uses */
.dropdown-icon {
  width: 30px;
  height: 30px;
  background: rgba(4, 58, 122, 0.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-enquire {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-enquire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.10) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-enquire:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 22px rgba(230, 14, 15, 0.35);
  transform: translateY(-1px);
}

.btn-enquire:hover::before {
  opacity: 1;
}

.btn-enquire svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.btn-enquire:hover svg {
  transform: translateX(3px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  transition: border-color 0.18s, background 0.18s;
  flex-shrink: 0;
}

.hamburger:hover {
  border-color: var(--blue);
  background: rgba(4, 58, 122, 0.05);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
}

.mobile-menu.open {
  pointer-events: all;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 38, 92, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.28s;
}

.mobile-menu.open .mobile-backdrop {
  opacity: 1;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 88vw;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(4, 58, 122, 0.18);
  z-index: 10000;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  border-top: 3px solid var(--red);
  flex-shrink: 0;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  z-index: 10001;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-close:hover {
  background: rgba(4, 58, 122, 0.05);
}

.mobile-nav {
  list-style: none;
  padding: 12px;
  flex: 1;
}

.mobile-nav>li>a,
.mobile-nav>li>button.mobile-has-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  letter-spacing: 0.01em;
  text-align: left;
}

.mobile-nav>li>a:hover,
.mobile-nav>li>button.mobile-has-dropdown:hover {
  background: rgba(4, 58, 122, 0.05);
  color: var(--blue);
}

.mobile-nav>li>a.active {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
  font-weight: 600;
}

.mobile-active-dot {
  display: none;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.mobile-nav>li>a.active .mobile-active-dot {
  display: block;
}

.mobile-sub {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
  padding: 0 8px;
}

.mobile-sub.open {
  max-height: 640px;
}

.mobile-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}

.mobile-sub a:hover {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
}

.mobile-panel-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.mobile-enquire:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px rgba(230, 14, 15, 0.28);
}

.mobile-catalog-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--blue);
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.mobile-catalog-link:hover {
  opacity: 1;
}

/* ════════════════════════════════════════════════════
     HERO SECTION
  ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #dce8f5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/header.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 57, 122, 0.74) 0%, rgba(4, 57, 122, 0.466) 38%, rgba(4, 57, 122, 0.022) 62%, transparent 75%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 580px;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-headline .accent-word {
  position: relative;
  display: inline-block;
}

.hero-headline .accent-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  opacity: 0.9;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  height: 50px;
  background: #053682;
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary:hover {
  background: #032d6b;
  box-shadow: 0 8px 28px rgba(5, 54, 130, 0.45);
  transform: translateY(-2px);
}

.hero-btn-primary svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.hero-btn-primary:hover svg {
  transform: translateX(3px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  height: 50px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-2px);
}

.hero-btn-secondary svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.hero-btn-secondary:hover svg {
  transform: translateX(3px);
}

.hero-btn-three {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  height: 50px;
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid #043a7a;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.hero-btn-three:hover {
  border-color: #032d6b;
  background: #043a7a;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.hero-btn-three svg {
  transition: transform 0.2s;
  flex-shrink: 0;
  color: var(--text-dark);
}

.hero-btn-three:hover svg {
  transform: translateX(3px);
}

/* ════════════════════════════════════════════════════
     STATS BAR
  ════════════════════════════════════════════════════ */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid rgba(4, 58, 122, 0.08);
  box-shadow: 0 4px 24px rgba(4, 58, 122, 0.06);
}

.stats-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  flex: 1;
  justify-content: center;
  transition: transform 0.22s;
  cursor: default;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8eef8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s;
}

.stat-item:hover .stat-icon-wrap {
  background: rgba(4, 58, 122, 0.13);
}

.stat-item:hover .stat-icon-wrap svg path,
.stat-item:hover .stat-icon-wrap svg circle {
  stroke: var(--red);
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 400;
  color: #7A8A9B;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(4, 58, 122, 0.09);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
     ABOUT SECTION
  ════════════════════════════════════════════════════ */
.about {
  background: #fff;
  padding: 90px 0 0;
  overflow: hidden;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content {
  padding-bottom: 90px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.about-eyebrow-bar {
  width: 28px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.about-headline {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.about-desc {
  font-size: 15px;
  font-weight: 400;
  color: #5A6A7E;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 0;
}

.about-image-wrap {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
  border-radius: 16px 16px 0 0;
  min-height: 480px;
}

.about-img-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  border-radius: 0 12px 0 0;
  pointer-events: none;
}

.about-iso-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(4, 58, 122, 0.28);
  z-index: 2;
}

.about-iso-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-iso-text-top {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.about-iso-text-bot {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════
     FEATURES STRIP
  ════════════════════════════════════════════════════ */
.features-strip {
  background: #fff;
  border-top: 1px solid rgba(4, 58, 122, 0.08);
  border-bottom: 1px solid rgba(4, 58, 122, 0.08);
  padding: 60px 0;
}

.features-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 32px;
  position: relative;
  transition: transform 0.22s;
  cursor: default;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(4, 58, 122, 0.10);
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: rgba(4, 58, 122, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background 0.22s, box-shadow 0.22s;
}

.feature-item:hover .feature-icon-wrap {
  background: rgba(4, 58, 122, 0.09);
  box-shadow: 0 8px 24px rgba(4, 58, 122, 0.11);
}

.feature-item:hover .feature-icon-wrap svg path,
.feature-item:hover .feature-icon-wrap svg circle,
.feature-item:hover .feature-icon-wrap svg rect {
  stroke: var(--red);
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 13px;
  font-weight: 400;
  color: #7A8A9B;
  line-height: 1.65;
  max-width: 180px;
}

/* ════════════════════════════════════════════════════
     PRODUCT RANGE
  ════════════════════════════════════════════════════ */
.products {
  background: #fafafa;
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(4, 58, 122, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.products-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.products-header-left {
  max-width: 680px;
}

.products-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.products-eyebrow-bar {
  width: 28px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.products-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.products-headline {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.022em;
  line-height: 1.16;
  margin-bottom: 14px;
}

.products-desc {
  font-size: 14px;
  color: #5A6A7E;
  line-height: 1.78;
}

.products-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 26px;
  height: 46px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

.products-view-all:hover {
  background: #032d6b;
  box-shadow: 0 8px 24px rgba(4, 58, 122, 0.28);
  transform: translateY(-2px);
}

.products-view-all svg {
  transition: transform 0.2s;
}

.products-view-all:hover svg {
  transform: translateX(4px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(4, 58, 122, 0.08);
  transition: box-shadow 0.26s, transform 0.26s;
}

.product-card:hover {
  box-shadow: 0 20px 56px rgba(4, 58, 122, 0.16);
  transform: translateY(-6px);
}

.product-card-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #edf2f8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.07);
}

.product-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 10, 30, 0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-card-img-wrap::after {
  opacity: 1;
}

.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(4, 58, 122, 0.88);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 2;
  transition: background 0.2s;
}

.product-card:hover .product-card-tag {
  background: var(--red);
}

.product-card-body {
  padding: 18px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
  border-top: 1px solid rgba(4, 58, 122, 0.07);
  background: #fff;
  transition: background 0.22s;
}

.product-card:hover .product-card-body {
  background: #f8fafd;
}

.product-card-info {
  flex: 1;
  min-width: 0;
}

.product-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.35;
  transition: color 0.2s;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card:hover .product-card-name {
  color: var(--red);
}

.product-card-sub {
  font-size: 11.5px;
  color: #9AAABB;
  font-weight: 400;
  margin-top: 2px;
  display: block;
}

.product-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(4, 58, 122, 0.06);
  border: 1px solid rgba(4, 58, 122, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.product-card:hover .product-card-arrow {
  background: var(--red);
  border-color: var(--red);
  transform: translateX(2px);
}

.product-card:hover .product-card-arrow svg path {
  stroke: #fff;
}

/* ════════════════════════════════════════════════════
     FAQ SECTION
  ════════════════════════════════════════════════════ */
.faq-section {
  background: #ffffff;
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(4, 58, 122, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.faq-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.faq-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.faq-eyebrow-bar {
  width: 28px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.faq-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.faq-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.022em;
  line-height: 1.14;
  margin-bottom: 10px;
}

.faq-subtext {
  font-size: 14px;
  color: #5A6A7E;
  line-height: 1.75;
}

.faq-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 40px;
  border: 1.5px solid rgba(4, 58, 122, 0.22);
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  margin-top: 6px;
}

.faq-view-all:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.faq-view-all:hover svg path {
  stroke: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(4, 58, 122, 0.10);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s;
  background: #fff;
}

.faq-item.open {
  border-color: rgba(4, 58, 122, 0.22);
  box-shadow: 0 6px 24px rgba(4, 58, 122, 0.08);
}

.faq-item.open .faq-q {
  background: #f5f8fd;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: background 0.2s, color 0.2s;
}

.faq-q:hover {
  background: #f8fafd;
  color: var(--blue);
}

.faq-item.open .faq-q {
  color: var(--blue);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(4, 58, 122, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s, transform 0.28s;
}

.faq-item.open .faq-icon {
  background: var(--blue);
  transform: rotate(180deg);
}

.faq-item.open .faq-icon svg path {
  stroke: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.22s;
}

.faq-a-inner {
  font-size: 14px;
  color: #5A6A7E;
  line-height: 1.78;
  border-top: 1px solid rgba(4, 58, 122, 0.07);
  padding-top: 14px;
  padding-bottom: 4px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-card {
  background: #fff;
  border: 1px solid rgba(4, 58, 122, 0.09);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.26s, transform 0.26s, border-color 0.26s;
}

.support-card:hover {
  box-shadow: 0 16px 48px rgba(4, 58, 122, 0.13);
  transform: translateY(-4px);
  border-color: rgba(4, 58, 122, 0.16);
}

.support-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.28s;
}

.support-card:hover::after {
  opacity: 1;
}

.support-card-watermark {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 120px;
  height: 120px;
  opacity: 0.05;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.support-card:hover .support-card-watermark {
  opacity: 0.09;
  transform: scale(1.05) rotate(-4deg);
}

.support-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.support-card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: rgba(4, 58, 122, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s;
}

.support-card:hover .support-card-icon-wrap {
  background: rgba(230, 14, 15, 0.08);
}

.support-card:hover .support-card-icon-wrap svg path,
.support-card:hover .support-card-icon-wrap svg circle,
.support-card:hover .support-card-icon-wrap svg rect {
  stroke: var(--red);
}

.support-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.support-card-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.support-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #4A5A6E;
  font-weight: 400;
  line-height: 1.4;
}

.sc-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(4, 58, 122, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.support-card:hover .sc-check {
  background: rgba(230, 14, 15, 0.09);
}

.support-card:hover .sc-check svg path {
  stroke: var(--red);
}

.support-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.support-card-btn:hover {
  background: #032d6b;
  box-shadow: 0 6px 22px rgba(4, 58, 122, 0.30);
  transform: translateY(-1px);
}

.support-card-btn svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.support-card-btn:hover svg {
  transform: translateX(3px);
}

/* ════════════════════════════════════════════════════
     FOOTER
  ════════════════════════════════════════════════════ */
.site-footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.80);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 280px 180px 1fr 1fr 240px;
  gap: 48px;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
}

.footer-about-desc {
  font-size: 13.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s;
  flex-shrink: 0;
}

.footer-social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.18s, padding-left 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.footer-contact-value {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.18s;
}

a.footer-contact-value:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.6;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-copy a:hover {
  color: #fff;
}

/* ════════════════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .topbar-inner {
    padding: 0 24px;
  }

  .topbar-badge:nth-child(5),
  .topbar-divider:nth-child(4) {
    display: none;
  }

  .navbar-inner {
    padding: 0 24px;
  }

  .logo-wrap {
    padding-right: 24px;
  }

  .logo-img {
    height: 52px;
  }

  .nav-links {
    margin-left: 20px;
    gap: 0;
  }

  .nav-links>li>a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .btn-enquire {
    padding: 0 16px;
    font-size: 12.5px;
  }

  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-inner {
    padding: 20px 24px 0;
  }

  .hero-inner {
    padding: 70px 24px;
  }

  .hero-content {
    max-width: 520px;
  }

  .stats-bar-inner {
    padding: 0 24px;
  }

  .stat-item {
    gap: 12px;
  }

  .stat-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .stat-value {
    font-size: 19px;
  }

  .about-inner {
    gap: 40px;
    padding: 0 24px;
  }

  .about-content {
    padding-bottom: 60px;
  }

  .about-image-wrap {
    min-height: 400px;
  }

  .about-img {
    min-height: 380px;
  }

  .features-strip-inner {
    padding: 0 24px;
  }

  .feature-item {
    padding: 20px 18px;
  }

  .feature-desc {
    max-width: 150px;
  }

  .products {
    padding: 70px 0 80px;
  }

  .products-inner {
    padding: 0 24px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .products-header {
    align-items: flex-start;
  }

  .faq-inner {
    grid-template-columns: 1fr 340px;
    gap: 44px;
    padding: 0 24px;
  }

  .faq-section {
    padding: 72px 0 80px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 24px 50px;
    gap: 36px;
  }

  .footer-col-about {
    grid-column: 1 / -1;
  }

  .footer-about-desc {
    max-width: 540px;
  }
}

@media (max-width: 768px) {
  .topbar-badges {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mega-menu {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    height: 68px;
  }

  .navbar-inner {
    padding: 0 20px;
  }

  .logo-wrap {
    padding-right: 0;
    border-right: none;
  }

  .logo-img {
    height: 42px;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 58, 122, 0.88) 0%, rgba(4, 58, 122, 0.78) 60%, rgba(4, 58, 122, 0.55) 100%);
  }

  .hero-inner {
    padding: 60px 20px 50px;
  }

  .hero-content {
    max-width: 100%;
  }

  .stats-bar-inner {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 20px 0;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(4, 58, 122, 0.09);
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(4, 58, 122, 0.09);
  }

  .about {
    padding: 60px 0 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .about-content {
    padding-bottom: 0;
  }

  .about-image-wrap {
    min-height: 320px;
    order: -1;
  }

  .about-img {
    min-height: 280px;
    border-radius: 12px;
  }

  .about-iso-badge {
    left: 12px;
    bottom: 16px;
  }

  .features-strip {
    padding: 40px 0;
  }

  .features-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .feature-item:nth-child(2)::after {
    display: none;
  }

  .feature-item:nth-child(1),
  .feature-item:nth-child(2) {
    border-bottom: 1px solid rgba(4, 58, 122, 0.09);
  }

  .feature-desc {
    max-width: 200px;
  }

  .products {
    padding: 56px 0 64px;
  }

  .products-inner {
    padding: 0 20px;
  }

  .products-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .products-headline br {
    display: none;
  }

  .faq-section {
    padding: 56px 0 64px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }

  .faq-right {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .support-card {
    flex: 1;
    min-width: 260px;
  }

  .faq-header {
    flex-direction: column;
    gap: 14px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 44px;
    gap: 32px;
  }

  .footer-col-about {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .topbar {
    height: 32px;
  }

  .topbar-action {
    font-size: 10.5px;
  }

  .navbar {
    height: 62px;
  }

  .logo-img {
    height: 38px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 100%;
    border-right: none !important;
    padding-left: 16px;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2),
  .stat-item:nth-child(3) {
    border-bottom: 1px solid rgba(4, 58, 122, 0.09);
  }

  .about-image-wrap {
    min-height: 260px;
  }

  .features-strip-inner {
    grid-template-columns: 1fr;
  }

  .feature-item::after {
    display: none !important;
  }

  .feature-item:not(:last-child) {
    border-bottom: 1px solid rgba(4, 58, 122, 0.09);
  }

  .feature-desc {
    max-width: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card-img-wrap {
    aspect-ratio: 4/3;
  }

  .product-card-name {
    font-size: 13px;
  }

  .faq-right {
    flex-direction: column;
  }

  .support-card {
    min-width: unset;
  }

  .faq-q {
    padding: 16px;
    font-size: 13.5px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col-about {
    grid-column: auto;
  }
}

/* ════════════════════════════════════════════════════
     HELPER CLASSES FOR LOGO & MOBILE (NO INLINE STYLES)
  ════════════════════════════════════════════════════ */
.logo-fallback-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-fallback-initials {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}

.logo-fallback-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.logo-fallback-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-logo-img {
  height: 38px;
  width: auto;
}

.mobile-chevron-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.footer-heading-hidden {
  visibility: hidden;
}

/* ════════════════════════════════════════════════════
     ABOUT US PAGE STYLES
  ════════════════════════════════════════════════════ */

/* Breadcrumbs */
.breadcrumb-nav {
  background: #f0f4f9;
  border-bottom: 1px solid rgba(4, 58, 122, 0.08);
  padding: 12px 0;
}

.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 12.5px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.18s;
}

.breadcrumb-item a:hover {
  color: var(--blue);
}

.breadcrumb-separator {
  color: var(--text-muted);
  font-size: 11px;
}

.breadcrumb-item.active {
  color: var(--red);
  font-weight: 600;
}

/* About Page Hero (New Rich Design) */
.about-hero {
  position: relative;
  background-color: #fafafa;

  padding: 88px 0 80px;
  color: var(--white);
  overflow: hidden;
}



.about-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-hero-content {
  max-width: 720px;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: #043a7a;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #000000;
  margin-bottom: 22px;
}

.about-hero-title .accent-red {
  color: #043A7A;
  position: relative;
  display: inline-block;
}

.about-hero-lead {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  line-height: 1.78;
  color: #2b3b4c;
  margin-bottom: 36px;
  max-width: 680px;
}

.about-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero Right Card */
.about-hero-card-right {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.about-hero-card-right::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, #a5a5a5 0%, #a5a5a5 100%);
  border-radius: 2px;
}

.about-hero-stat-box {
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-hero-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(187, 187, 187, 0.2);
  border: 1px solid rgba(205, 205, 205, 0.35);
  color: #bababa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-hero-stat-val {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  line-height: 1.1;
}

.about-hero-stat-lbl {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.78);
  margin-top: 2px;
}

/* Trust Bar in Hero */
.about-trust-strip {
  display: flex;
  align-items: center;

  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(63, 63, 63, 0.15);
}

.about-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(42, 42, 42, 0.92);
  background: rgba(255, 255, 255, 0.10);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.about-trust-chip svg {
  color: var(--red);
  flex-shrink: 0;
}

/* Generic Section Layouts */
.about-sec-wrapper {
  padding: 90px 0;
  position: relative;
}

.about-sec-wrapper.alt-bg {
  background: #fafafa;
}

.about-sec-wrapper.dark-bg {
  background: var(--blue-deep);
  color: #ffffff;
}

.about-sec-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-sec-header {
  margin-bottom: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-sec-header.text-left {
  text-align: left;
  margin-left: 0;
}

.about-sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.about-sec-eyebrow-bar {
  width: 24px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
}

.about-sec-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-sec-wrapper.dark-bg .about-sec-title {
  color: #ffffff;
}

.about-sec-subtitle {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-sec-wrapper.dark-bg .about-sec-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Split Layout 2 Col & Full Cover Image */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.about-text-block p {
  font-size: 15px;
  color: #4A5A6E;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

.about-highlight-box {
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.04) 0%, rgba(230, 14, 15, 0.04) 100%);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin-top: 24px;
}

.about-highlight-box p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 0;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(4, 58, 122, 0.12);
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
  border-radius: 16px;
}

/* Product Portfolio Grid */
.about-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-portfolio-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.09);
  border-radius: 16px;
  padding: 0;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.about-portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}

.about-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(4, 58, 122, 0.12);
  border-color: rgba(4, 58, 122, 0.18);
}

.about-portfolio-card:hover::before {
  opacity: 1;
}

.about-portfolio-img-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f0f4f9;
}

.about-portfolio-img-placeholder {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.03) 0%, rgba(4, 58, 122, 0.08) 100%);
  border-bottom: 1px solid rgba(4, 58, 122, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.about-portfolio-card:hover .about-portfolio-img-placeholder {
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.06) 0%, rgba(4, 58, 122, 0.12) 100%);
}

.about-portfolio-img-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, rgba(4, 58, 122, 0.01) 0px, rgba(4, 58, 122, 0.01) 2px, transparent 2px, transparent 10px);
}

.about-portfolio-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.75;
  z-index: 1;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.about-portfolio-card:hover .about-portfolio-img-placeholder svg {
  transform: scale(1.1);
  opacity: 0.95;
  color: var(--red);
}


.about-portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-portfolio-card:hover .about-portfolio-img-wrap img {
  transform: scale(1.06);
}

.about-portfolio-card-content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-portfolio-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(4, 58, 122, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
  transition: background 0.22s, color 0.22s;
  flex-shrink: 0;
}

.about-portfolio-card:hover .about-portfolio-icon {
  background: var(--blue);
  color: #ffffff;
}

.about-portfolio-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.about-portfolio-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.about-portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.18s, transform 0.18s;
  margin-top: auto;
}

.about-portfolio-link:hover {
  color: var(--red);
}

.about-portfolio-link svg {
  transition: transform 0.18s;
}

.about-portfolio-link:hover svg {
  transform: translateX(3px);
}

/* Quality & Facilities Dual Cards - Heading Fix */
.about-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-dual-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.10);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(4, 58, 122, 0.05);
  display: flex;
  flex-direction: column;
}

.about-dual-card.featured-card {
  background: #fafafa color: #ffffff;
}

.about-dual-card.featured-card .about-sec-title {
  ccolor: var(--text-dark);
  margin-bottom: 18px;
}

.about-dual-card.featured-card .about-sec-eyebrow {
  color: #e60e0f;
}

.about-dual-card.featured-card .about-sec-eyebrow-bar {
  background: #e60e0f;
}

.about-dual-card.featured-card p {
  color: var(--text-mid);
}

.about-dual-card .about-sec-title {
  margin-bottom: 18px;
}

.about-dual-card p {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.about-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.18s, transform 0.18s;
}

.about-dual-card.featured-card .about-btn-link {
  color: var(--blue);
}

.about-btn-link:hover {
  color: var(--red);
  transform: translateX(4px);
}

.about-dual-card.featured-card .about-btn-link:hover {
  color: var(--red);
}

/* Audience Grid (4 Columns) */
.about-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-audience-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(4, 58, 122, 0.08);
  transition: transform 0.22s, box-shadow 0.22s;
}

.about-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4, 58, 122, 0.09);
}

.about-audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230, 14, 15, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-audience-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.about-audience-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Differentiator Cards (Why Choose Us - 5 items) */
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-why-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 14px;
  padding: 30px 24px;
  display: flex;
  gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(4, 58, 122, 0.08);
}

.about-why-num {
  font-size: 28px;
  font-weight: 800;
  color: rgba(4, 58, 122, 0.25);
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.about-why-card:hover .about-why-num {
  color: var(--red);
}

.about-why-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.about-why-content p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Mission, Vision & Principles */
.about-mvp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.about-mvp-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(4, 58, 122, 0.09);
  box-shadow: 0 6px 24px rgba(4, 58, 122, 0.04);
  position: relative;
  overflow: hidden;
}

.about-mvp-box.mission-box {
  border-top: 4px solid var(--blue);
}

.about-mvp-box.vision-box {
  border-top: 4px solid var(--red);
}

.about-mvp-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-mvp-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-principle-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(4px);
}

.about-principle-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.about-principle-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
}

/* Company Facts Matrix Table */
.about-facts-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(4, 58, 122, 0.06);
  max-width: 1000px;
  margin: 0 auto;
}

.about-facts-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.about-facts-table th {
  background: var(--blue);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 24px;
}

.about-facts-table td {
  padding: 16px 24px;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(4, 58, 122, 0.07);
  color: var(--text-dark);
  line-height: 1.6;
}

.about-facts-table tr:last-child td {
  border-bottom: none;
}

.about-facts-table tr:nth-child(even) {
  background: rgba(4, 58, 122, 0.02);
}

.about-facts-label {
  font-weight: 600;
  color: var(--blue);
  width: 30%;
}

/* About FAQ Specific Accordion (2 Columns Layout) */
.about-faq-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.about-faq-item {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.09);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(4, 58, 122, 0.08);
}

.about-faq-btn {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: transparent;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.18s;
}

.about-faq-item.open .about-faq-btn {
  color: var(--blue);
}

.about-faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
}

.about-faq-item.open .about-faq-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.about-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-mid);
  font-size: 13.5px;
  line-height: 1.75;
}

.about-faq-item.open .about-faq-body {
  max-height: 500px;
  padding: 0 24px 20px;
  transition: max-height 0.35s ease-in-out;
}

/* Final CTA Banner */
.about-cta-card {
  background: #fafafa;
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  color: var(--text-dark);
  box-shadow: 0 20px 50px rgba(4, 58, 122, 0.22);
  position: relative;
  overflow: hidden;
}

.about-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-cta-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.about-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.about-cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-cta-links a {
  color: var(--text-mid);
  text-decoration: none;
  transition: opacity 0.18s;
  font-weight: 600;
}

.about-cta-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ════════════════════════════════════════════════════
     CERTIFICATES & ACCREDITATIONS SECTION
  ════════════════════════════════════════════════════ */
.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.about-cert-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(4, 58, 122, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}

.about-cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(4, 58, 122, 0.14);
  border-color: rgba(4, 58, 122, 0.30);
}

.about-cert-preview-wrap {
  position: relative;
  background: linear-gradient(180deg, #edf3fa 0%, #e2ebf6 100%);
  padding: 24px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(4, 58, 122, 0.08);
  overflow: hidden;
}

.about-cert-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffffff;
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(4, 58, 122, 0.12);
  border: 1px solid rgba(4, 58, 122, 0.08);
  z-index: 2;
  letter-spacing: 0.02em;
}

.about-cert-badge-top svg {
  color: var(--red);
  flex-shrink: 0;
}

.about-cert-link-overlay {
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
}

.about-cert-img-frame {
  background: #ffffff;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(4, 58, 122, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(4, 58, 122, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about-cert-card:hover .about-cert-img-frame {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(4, 58, 122, 0.20);
}

.about-cert-img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  object-position: top center;
  background: #ffffff;
  display: block;
  border-radius: 6px;
}

.about-cert-zoom-btn {
  position: absolute;
  inset: 0;
  background: rgba(4, 58, 122, 0.70);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 6px;
  margin: 6px;
}

.about-cert-card:hover .about-cert-zoom-btn {
  opacity: 1;
}

.about-cert-content {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-cert-title {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.about-cert-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.about-cert-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.about-cert-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}

.about-cert-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.btn-cert-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 14px;
  background: rgba(4, 58, 122, 0.08);
  color: var(--blue);
  border: 1px solid rgba(4, 58, 122, 0.15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-cert-view:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.btn-cert-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--red);
  color: #ffffff;
  border: 1px solid var(--red);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(230, 14, 15, 0.25);
  transition: all 0.2s ease;
}

.btn-cert-download:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230, 14, 15, 0.35);
}

/* Certificate Trust Callout Box */
.about-cert-callout {
  margin-top: 44px;
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(4, 58, 122, 0.04);
}

.about-cert-callout-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-cert-callout-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(4, 58, 122, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.about-cert-callout-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.about-cert-callout-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}

.about-cert-callout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.about-cert-callout-btn:hover {
  background: var(--blue-mid);
}

/* ════════════════════════════════════════════════════
     ABOUT US MEDIA QUERIES (RESPONSIVE)
  ════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-hero-card-right {
    display: none;
  }

  .about-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .about-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 48px 0 40px;
  }

  .about-hero-inner {
    padding: 0 20px;
  }

  .about-sec-wrapper {
    padding: 60px 0;
  }

  .about-sec-inner {
    padding: 0 20px;
  }

  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-dual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .about-audience-grid {
    grid-template-columns: 1fr;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .about-mvp-split {
    grid-template-columns: 1fr;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-cert-grid {
    grid-template-columns: 1fr;
  }

  .about-cert-img {
    height: 260px;
  }

  .about-cert-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-card {
    padding: 40px 24px;
  }

  .about-facts-label {
    width: 40%;
  }

  .about-facts-table th,
  .about-facts-table td {
    padding: 12px 16px;
    font-size: 12.5px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-inner {
    padding: 0 16px;
  }

  .about-hero-inner {
    padding: 0 16px;
  }

  .about-sec-inner {
    padding: 0 16px;
  }

  .about-facts-card {
    border-radius: 12px;
  }

  .about-facts-table th {
    font-size: 11.5px;
    padding: 10px 12px;
  }

  .about-facts-table td {
    font-size: 12px;
    padding: 10px 12px;
  }

  .about-trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ════════════════════════════════════════════════════
     ADDITIONAL CUSTOM STYLES FOR FORMS, MAPS, TABLES & FAQS
   ════════════════════════════════════════════════════ */

/* B2B Forms & Layouts */
.about-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .about-grid-2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.b2b-form-card {
  background: #f4f7fa;
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.form-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.form-card-subtitle {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}

.b2b-contact-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.b2b-contact-form input,
.b2b-contact-form select,
.b2b-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(4, 58, 122, 0.15);
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  background: var(--white);
  color: var(--text-dark);
  transition: all 0.2s ease-in-out;
  font-family: inherit;
}

.b2b-contact-form input:focus,
.b2b-contact-form select:focus,
.b2b-contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(5, 49, 144, 0.1);
}

.b2b-contact-form .form-choice-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--text-mid) !important;
  text-transform: none !important;
  margin-bottom: 0 !important;
  letter-spacing: normal !important;
  cursor: pointer !important;
}

.b2b-contact-form .form-choice-label input[type="checkbox"],
.b2b-contact-form .form-choice-label input[type="radio"] {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  accent-color: var(--blue) !important;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.file-upload-zone {
  border: 2px dashed rgba(4, 58, 122, 0.25);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  background: rgba(4, 58, 122, 0.02);
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.2s;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.file-upload-zone:hover {
  background: rgba(4, 58, 122, 0.05);
  border-color: var(--blue);
}

.form-submit-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: var(--red-dark);
}

/* Contact details & Map list */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #f9fbfd;
  border: 1px solid rgba(4, 58, 122, 0.05);
  border-radius: 10px;
}

.contact-card-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}

.contact-card-body p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-card-body a {
  color: var(--blue-mid);
  text-decoration: none;
  font-weight: 600;
}

.contact-card-body a:hover {
  text-decoration: underline;
}

.contact-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(4, 58, 122, 0.1);
  background: #f4f7fa;
}

.map-placeholder-title {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid rgba(4, 58, 122, 0.08);
}

/* Helper B2B Info Box */
.b2b-terms-info {
  background: #fff9f2;
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.b2b-terms-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #d35400;
  margin-bottom: 12px;
}

.b2b-terms-info p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.form-helper-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-helper-list li {
  font-size: 13px;
  color: var(--text-mid);
  position: relative;
  padding-left: 20px;
}

.form-helper-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e67e22;
  font-weight: bold;
}

/* Responsive tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0;
  border-radius: 12px;
  border: 1px solid rgba(4, 58, 122, 0.08);
  background: #ffffff;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.data-table th {
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 600;
  padding: 16px 20px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.data-table td {
  padding: 14px 20px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(4, 58, 122, 0.05);
  line-height: 1.6;
}

.data-table tbody tr:nth-child(even) {
  background: #f9fbfd;
}

.data-table tbody tr:hover {
  background: rgba(4, 58, 122, 0.02);
}

/* Interactive FAQ accordions */
.about-faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 40px;
}

.about-faq-item {
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}

.about-faq-item.open {
  border-color: var(--blue-mid);
  box-shadow: 0 6px 20px rgba(4, 58, 122, 0.06);
}

.about-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}

.about-faq-btn:hover {
  color: var(--blue-mid);
}

.about-faq-btn .faq-icon {
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.25s;
  color: var(--text-muted);

}

.about-faq-item.open .about-faq-btn .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.about-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out, padding 0.25s ease-out;
  padding: 0 24px;
}

.about-faq-item.open .about-faq-content {
  max-height: 200px;
  padding: 0 24px 20px;
}

.about-faq-content p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Breadcrumbs style */
.breadcrumb-nav {
  background: #f8fafc;
  border-bottom: 1px solid rgba(4, 58, 122, 0.05);
  padding: 14px 0;
}

.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb-link {
  color: var(--blue-mid);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-current {
  color: var(--text-mid);
  font-weight: 500;
}

.hidden-file-input {
  display: none !important;
}

.contact-map-iframe {
  border: 0;
  border-radius: 12px;
  margin-top: 15px;
}

.support-card-delayed {
  transition-delay: 0.15s;
}

.about-sec-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: flex-start;
}

.about-sec-btn-link {
  margin: 0 !important;
  font-size: 13px !important;
  padding: 10px 20px !important;
}

.catalogue-benefits h4 {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.about-btn-link {
  margin-top: 12px;
}

.about-dual-card-title {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 12px;
  text-transform: none;
  font-weight: 700;
  color: var(--blue-deep);
}

.b2b-supporting-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.b2b-link-btn {
  display: inline-block;
  font-size: 13px;
  padding: 8px 16px;
  background: rgba(4, 58, 122, 0.05);
  border: 1px solid rgba(4, 58, 122, 0.1);
  color: var(--blue);
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.b2b-link-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.about-note-callout {
  background: rgba(4, 58, 122, 0.03);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--blue-deep);
}

.about-note-callout strong {
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

/* ════════════════════════════════════════════════════
     RFQ INTERACTIVE DYNAMIC FORM ROWS & CONTROLS
   ════════════════════════════════════════════════════ */
.rfq-items-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.rfq-item-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1.2fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.2s ease;
  position: relative;
}

.rfq-item-row:hover {
  background: var(--white);
  border-color: rgba(4, 58, 122, 0.15);
}

.rfq-item-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rfq-item-col label {
  font-size: 11px !important;
  font-weight: 600;
  color: var(--text-mid) !important;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.rfq-item-col input,
.rfq-item-col select {
  margin-bottom: 0 !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  border-radius: 6px !important;
}

.btn-remove-row {
  background: transparent;
  border: 1.5px solid rgba(230, 14, 15, 0.2);
  color: var(--red);
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 18px;
  /* align with inputs that have labels */
}

.btn-remove-row:hover {
  background: rgba(230, 14, 15, 0.08);
  border-color: var(--red);
}

.btn-add-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 58, 122, 0.06);
  border: 1.5px dashed rgba(4, 58, 122, 0.3);
  color: var(--blue);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 24px;
  width: fit-content;
}

.btn-add-row:hover {
  background: rgba(4, 58, 122, 0.12);
  border-color: var(--blue-mid);
  color: var(--blue-mid);
}

.btn-add-row svg {
  transition: transform 0.2s;
}

.btn-add-row:hover svg {
  transform: rotate(90deg);
}

/* Responsive adjustment for RFQ rows */
@media (max-width: 768px) {
  .rfq-item-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .btn-remove-row {
    margin-top: 8px;
    width: 100%;
    height: 36px;
    border-style: solid;
    font-size: 12.5px;
    font-weight: 600;
    gap: 8px;
  }

  .btn-remove-row::after {
    content: "Remove Item";
  }
}

/* Callout Styling inside dark-bg sections (contrast fix) */
.about-sec-wrapper.dark-bg .about-note-callout {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #043a7a;
  color: #ffffff;
}

.about-sec-wrapper.dark-bg .about-note-callout strong {
  color: #043a7a;
}

/* ════════════════════════════════════════════════════
     BUYER GUIDES PAGE STYLES
   ════════════════════════════════════════════════════ */

/* Guides Grid Container */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual Guide Card */
.guide-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.22s, border-color 0.22s;
  box-shadow: 0 4px 15px rgba(4, 58, 122, 0.02);
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(4, 58, 122, 0.08);
  border-color: rgba(4, 58, 122, 0.15);
}

/* Guide Card Icon */
.guide-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.22s, color 0.22s;
}

.guide-card:hover .guide-card-icon {
  background: var(--red);
  color: #ffffff;
}

/* Card Content styling */
.guide-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.4;
}

.guide-card-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.guide-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.18s;
}

.guide-card-link svg {
  transition: transform 0.18s;
}

.guide-card:hover .guide-card-link {
  color: var(--red);
}

.guide-card:hover .guide-card-link svg {
  transform: translateX(4px);
}

/* Framework Grid Layout */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.framework-card {
  background: #ffffff;
  border-left: 4px solid var(--blue);
  border-top: 1px solid rgba(4, 58, 122, 0.07);
  border-right: 1px solid rgba(4, 58, 122, 0.07);
  border-bottom: 1px solid rgba(4, 58, 122, 0.07);
  border-radius: 0 12px 12px 0;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(4, 58, 122, 0.02);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.framework-card:hover {
  box-shadow: 0 8px 24px rgba(4, 58, 122, 0.06);
}

.framework-card.alt-border {
  border-left-color: var(--red);
}

.framework-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.framework-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* Visual Pre-Publication Banner */
.publication-banner {
  background: #fafafa;
  border: 1px dashed rgba(4, 58, 122, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 40px;
}

.publication-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.publication-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.publication-list li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: start;
  gap: 8px;
}

.publication-list li svg {
  color: #2e7d32;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Media Queries for Buyer Guides */
@media (max-width: 1024px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .framework-grid {
    grid-template-columns: 1fr;
  }

  .publication-list {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
     DOWNLOAD CATALOGUE PAGE STYLES
   ════════════════════════════════════════════════════ */

/* Catalog Categories Grid Container */
.catalog-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Category Card */
.category-card {
  background: #ffffff;
  border-left: 4px solid var(--blue);
  border-top: 1px solid rgba(4, 58, 122, 0.08);
  border-right: 1px solid rgba(4, 58, 122, 0.08);
  border-bottom: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 0 16px 16px 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  box-shadow: 0 4px 15px rgba(4, 58, 122, 0.02);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(4, 58, 122, 0.06);
  border-color: rgba(4, 58, 122, 0.12);
}

.category-card.alt-border {
  border-left-color: var(--red);
}

.category-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}

.category-meta-box {
  background: rgba(4, 58, 122, 0.02);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

.category-meta-label {
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.category-meta-val {
  color: var(--text-mid);
  line-height: 1.5;
}

.category-card-details {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* Catalog Request Form styling overrides */
.catalog-form-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(4, 58, 122, 0.04);
}

.form-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(4, 58, 122, 0.2);
  accent-color: var(--blue);
}

/* Steps list */
.download-steps-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.step-item {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(4, 58, 122, 0.02);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(4, 58, 122, 0.06);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.step-item:nth-child(even) .step-number {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
}

.step-text {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* Form validation success dialog styles */
.download-success-box {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  display: none;
}

.download-success-title {
  color: #2e7d32;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.download-success-desc {
  font-size: 13.5px;
  color: #388e3c;
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2e7d32;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: background 0.18s;
  border: none;
  cursor: pointer;
}

.btn-download-pdf:hover {
  background: #1b5e20;
}

/* Media Queries */
@media (max-width: 1024px) {
  .catalog-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-steps-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-checkbox-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .catalog-categories-grid {
    grid-template-columns: 1fr;
  }

  .download-steps-list {
    grid-template-columns: 1fr;
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
  }

  .form-checkbox-group {
    grid-template-columns: 1fr;
  }

  .catalog-form-card {
    padding: 24px;
  }
}

/* Restoring size and spacing for checkboxes and file inputs inside the b2b catalog form */
.b2b-contact-form .form-checkbox-label input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(4, 58, 122, 0.2) !important;
  accent-color: var(--blue) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  display: inline-block !important;
}

.b2b-contact-form input[type="file"] {
  padding: 8px 12px !important;
  background: transparent !important;
  border: 1.5px dashed rgba(4, 58, 122, 0.2) !important;
  font-size: 13px !important;
}

/* ════════════════════════════════════════════════════
     INFRASTRUCTURE & FACILITIES PAGE STYLES
   ════════════════════════════════════════════════════ */

/* Facility Functions Grid */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.facility-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  box-shadow: 0 4px 15px rgba(4, 58, 122, 0.02);
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(4, 58, 122, 0.06);
  border-color: rgba(4, 58, 122, 0.12);
}

.facility-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(4, 58, 122, 0.05);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s, color 0.2s;
}

.facility-card:hover .facility-card-icon {
  background: var(--blue);
  color: #ffffff;
}

.facility-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}

.facility-card-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* Workflow Flowchart Grid */
.workflow-flowchart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
  position: relative;
}

.workflow-step-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(4, 58, 122, 0.02);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.workflow-step-card:hover {
  border-color: rgba(4, 58, 122, 0.12);
  box-shadow: 0 6px 18px rgba(4, 58, 122, 0.04);
}

.workflow-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(4, 58, 122, 0.06);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.workflow-step-card:nth-child(even) .workflow-step-num {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
}

.workflow-step-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.workflow-step-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* Info Send Grid */
.info-send-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.info-send-card {
  background: #ffffff;
  border-top: 4px solid var(--blue);
  border-left: 1px solid rgba(4, 58, 122, 0.07);
  border-right: 1px solid rgba(4, 58, 122, 0.07);
  border-bottom: 1px solid rgba(4, 58, 122, 0.07);
  border-radius: 0 0 12px 12px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(4, 58, 122, 0.02);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-send-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(4, 58, 122, 0.06);
}

.info-send-card.alt-border {
  border-top-color: var(--red);
}

.info-send-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-send-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-send-list li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  display: flex;
  align-items: start;
  gap: 8px;
}

.info-send-list li svg {
  color: #2e7d32;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Media Queries for Infrastructure */
@media (max-width: 1024px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-flowchart {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-send-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .workflow-flowchart {
    grid-template-columns: 1fr;
  }

  .info-send-grid {
    grid-template-columns: 1fr;
  }

  .qa-controls-grid {
    grid-template-columns: 1fr;
  }
}

/* QA Verification Controls Card Grid */
.qa-controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.qa-control-card {
  background: var(--white);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.qa-control-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(4, 58, 122, 0.06);
}

.qa-control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.qa-control-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: rgba(234, 57, 57, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.qa-control-status {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.qa-control-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.4;
}

.qa-control-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.qa-control-card.span-full {
  grid-column: span 3;
  max-width: 680px;
  margin: 0 auto;
  border-left-color: var(--blue);
  width: 100%;
}

.qa-control-card.span-full .qa-control-num {
  color: var(--blue);
  background: rgba(4, 58, 122, 0.08);
}

.qa-control-card.span-full .qa-control-status {
  color: var(--blue);
  background: rgba(4, 58, 122, 0.08);
}

@media (max-width: 1024px) {
  .qa-controls-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qa-control-card.span-full {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .qa-control-card.span-full {
    grid-column: span 1;
  }
}

/* Locations Hub Page Grid & Card Styles */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.location-card {
  background: var(--white);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(4, 58, 122, 0.06);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.location-card-icon {
  background: rgba(4, 58, 122, 0.06);
  color: var(--blue-deep);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.location-card:hover .location-card-icon {
  background: var(--blue-deep);
  color: var(--white);
}

.location-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin: 0;
  line-height: 1.4;
}

.location-card-meta {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.location-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.location-card-action {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  margin-top: auto;
}

.location-card-action:hover {
  color: var(--red);
}

.location-card-action svg {
  transition: transform 0.2s ease;
}

.location-card-action:hover svg {
  transform: translateX(4px);
}

/* Media Queries for Locations page */
@media (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.location-card.Pune-span {
  grid-column: span 3;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .location-card.Pune-span {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .location-card.Pune-span {
    grid-column: span 1;
  }
}

/* ==========================================================================
   GENERAL SURGERY & PRODUCT PLACEHOLDER STYLES
   ========================================================================== */

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.03) 0%, rgba(230, 14, 15, 0.03) 100%);
  border: 2px dashed rgba(4, 58, 122, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px;
  color: var(--blue-deep);
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s, background-color 0.3s;
}

.hero-image-placeholder:hover {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.05) 0%, rgba(230, 14, 15, 0.05) 100%);
}

.hero-image-placeholder-icon {
  margin-bottom: 16px;
  color: var(--blue-mid);
  transition: transform 0.3s;
}

.hero-image-placeholder:hover .hero-image-placeholder-icon {
  transform: scale(1.1);
  color: var(--red);
}

.hero-image-placeholder-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.hero-image-placeholder-desc {
  font-size: 13px;
  color: var(--text-mid);
  max-width: 280px;
  line-height: 1.5;
}

/* ══ Needle Holder Page – Section 2 ══════════════════════════════ */

/* Full-width intro block above the two-column split */
.nh-intro-block {
  margin-bottom: 36px;
}

.nh-intro-block p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 860px;
}

/* Split grid that starts both columns from the top */
.nh-split-top {
  align-items: start;
}

/* Shared card style for both columns */
.nh-card {
  background: var(--white);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 16px;
  padding: 28px;
}

/* Card section heading (h4) */
.nh-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* Main-parts bullet list */
.nh-card-list {
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  list-style-type: square;
  margin: 0;
}

/* "Industry Reference Standards:" label */
.nh-card-label {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

/* Sub-list inside Supplier Selection card */
.nh-card-sub-list {
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.6;
  list-style-type: circle;
  margin-bottom: 12px;
}

/* Intro paragraph inside Supplier Selection card */
.nh-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Red disclaimer note at bottom of Supplier Selection card */
.nh-card-note {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  border-top: 1px solid rgba(4, 58, 122, 0.07);
  padding-top: 8px;
  margin-bottom: 0;
}

/* ══ Laparoscopic Graspers Page ══════════════════════════════════ */

/* Two-column grid reused across multiple sections */
.grasper-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .grasper-two-col {
    grid-template-columns: 1fr;
  }
}

/* Grid of individual grasper type cards */
.grasper-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

/* Individual type card */
.grasper-type-card {
  background: var(--white);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 16px;
  padding: 24px 24px 20px;
  position: relative;
}

/* Large numbered badge */
.grasper-type-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.55;
}

/* Card heading */
.grasper-type-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

/* Short description */
.grasper-type-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Two mini-columns inside card (Typical Uses | Buying Points) */
.grasper-type-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (max-width: 560px) {
  .grasper-type-cols {
    grid-template-columns: 1fr;
  }
}

/* Column label */
.grasper-col-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

/* Column bullet list */
.grasper-col-list {
  padding-left: 14px;
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.65;
  list-style-type: square;
  margin: 0;
}

/* Red disclaimer note at the bottom of each type card */
.grasper-type-note {
  font-size: 11.5px;
  color: var(--red);
  font-weight: 600;
  border-top: 1px solid rgba(4, 58, 122, 0.07);
  padding-top: 10px;
  margin: 0;
}

/* Certification info block */
.grasper-cert-block {
  background: rgba(4, 58, 122, 0.02);
  border-left: 4px solid var(--blue);
  padding: 18px;
  margin: 18px 0 8px;
  border-radius: 0 12px 12px 0;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.7;
}

.grasper-cert-block p {
  margin-bottom: 10px;
}

.grasper-cert-block p:last-child {
  margin-bottom: 0;
}

/* Small note below certifications */
.grasper-cert-note {
  font-size: 12px;
  color: var(--text-mid);
  font-style: italic;
}

/* Hero placeholder wrapper */
.hero-placeholder-wrap {
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.03) 0%, rgba(230, 14, 15, 0.03) 100%);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(4, 58, 122, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

/* Smaller lead paragraph variant */
.about-hero-lead--sm {
  font-size: 13.5px;
  opacity: 0.85;
  margin-top: -10px;
}

/* ══ Bipolar vs Monopolar Page ════════════════════════════════════ */

/* Technology overview cards */
.bm-tech-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border-top: 4px solid var(--blue-deep);
  border-left: 1px solid rgba(4, 58, 122, 0.08);
  border-right: 1px solid rgba(4, 58, 122, 0.08);
  border-bottom: 1px solid rgba(4, 58, 122, 0.08);
}

.bm-bi {
  border-top-color: var(--red);
}

/* Technology badge pill */
.bm-tech-badge {
  display: inline-block;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.bm-tech-badge--red {
  background: var(--red);
}

/* Card heading inside tech card */
.bm-tech-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

/* Thermal spread / influence grid block */
.bm-thermal-block {
  background: rgba(4, 58, 122, 0.025);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}

/* Grid of influence factors */
.bm-thermal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 20px;
  margin: 16px 0;
}

/* Single influence factor item */
.bm-thermal-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
}

/* Dot indicator */
.bm-thermal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Note below thermal grid */
.bm-thermal-note {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  border-top: 1px solid rgba(4, 58, 122, 0.07);
  padding-top: 10px;
  margin: 0;
}

@media (max-width: 768px) {
  .bm-thermal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .bm-thermal-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   ABOUT HERO CTA BUTTONS & LIGHT BACKGROUND OVERRIDES
   ════════════════════════════════════════════════════ */
.about-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

.about-hero .hero-btn-primary {
  background: var(--red, #ea3939);
  color: #ffffff;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(234, 57, 57, 0.25);
  transition: all 0.2s ease;
}

.about-hero .hero-btn-primary:hover {
  background: #d62d2d;
  box-shadow: 0 6px 20px rgba(234, 57, 57, 0.4);
  transform: translateY(-2px);
}

.about-hero .hero-btn-secondary,
.hero-btn-secondary.btn-light-bg {
  color: var(--blue-deep, #043a7a) !important;
  border: 1.5px solid rgba(4, 58, 122, 0.3) !important;
  background: rgba(4, 58, 122, 0.04) !important;
  font-weight: 600;
  backdrop-filter: none;
}

.about-hero .hero-btn-secondary:hover,
.hero-btn-secondary.btn-light-bg:hover {
  color: #ffffff !important;
  background: #043a7a !important;
  border-color: #043a7a !important;
  transform: translateY(-2px);
}

.about-hero .hero-btn-three {
  color: var(--blue-deep, #043a7a);
  border: 1.5px solid rgba(4, 58, 122, 0.25);
  background: #ffffff;
  font-weight: 600;
}

.about-hero .hero-btn-three:hover {
  color: #ffffff;
  background: #043a7a;
  border-color: #043a7a;
  transform: translateY(-2px);
}

.about-hero-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark, #2b3a4a);
  font-weight: 500;
  margin-bottom: 12px;
}

.about-hero-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-mid, #4a5a6b);
  margin-bottom: 12px;
}

/* ════════════════════════════════════════════════════
   REQUIREMENT SCOPE SECTION STYLES
   ════════════════════════════════════════════════════ */
.scope-card-wrapper {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(4, 58, 122, 0.03);
}

.scope-intro-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue, #043a7a);
  margin-bottom: 16px;
}

.scope-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.scope-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(4, 58, 122, 0.02);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.scope-item:hover {
  background: #ffffff;
  border-color: rgba(4, 58, 122, 0.25);
  box-shadow: 0 4px 14px rgba(4, 58, 122, 0.08);
  transform: translateY(-2px);
}

.scope-item-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(234, 57, 57, 0.1);
  color: var(--red, #ea3939);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scope-item-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark, #2b3a4a);
}

.scope-footer-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--text-dark, #2b3a4a);
  line-height: 1.6;
  border-top: 1px solid rgba(4, 58, 122, 0.08);
  padding-top: 14px;
}

@media (max-width: 1024px) {
  .scope-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .scope-items-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ════════════════════════════════════════════════════
   AVAILABLE SURGICAL INSTRUMENTS PRODUCT CARDS
   ════════════════════════════════════════════════════ */
.mumbai-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mumbai-product-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(4, 58, 122, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mumbai-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(4, 58, 122, 0.1);
  border-color: rgba(4, 58, 122, 0.3);
}

.mumbai-product-img-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--light-bg, #f4f7fa);
  position: relative;
}

.mumbai-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mumbai-product-card:hover .mumbai-product-img {
  transform: scale(1.04);
}

.mumbai-product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mumbai-product-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue, #043a7a);
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.35;
}

.mumbai-product-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dark, #2b3a4a);
  margin-bottom: 14px;
}

.mumbai-subproduct-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue, #043a7a);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.mumbai-subproduct-list {
  margin: 0 0 14px 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-dark, #2b3a4a);
  line-height: 1.7;
  flex-grow: 1;
}

.mumbai-product-note {
  font-size: 12px;
  font-style: italic;
  color: var(--text-mid, #5a6b7c);
  margin-bottom: 16px;
  background: rgba(4, 58, 122, 0.03);
  padding: 8px 12px;
  border-radius: 6px;
}

.mumbai-product-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red, #ea3939);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mumbai-product-readmore:hover {
  color: #c82323;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .mumbai-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mumbai-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   INSTITUTIONAL AND B2B SUPPLY CHANNELS STYLES
   ════════════════════════════════════════════════════ */
.b2b-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.b2b-channel-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-top: 4px solid var(--blue, #043a7a);
  border-radius: 12px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(4, 58, 122, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
}

.b2b-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(4, 58, 122, 0.1);
  border-top-color: var(--red, #ea3939);
}

.b2b-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.b2b-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(4, 58, 122, 0.06);
  color: var(--blue, #043a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.b2b-channel-card:hover .b2b-card-icon {
  background: rgba(234, 57, 57, 0.1);
  color: var(--red, #ea3939);
}

.b2b-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue, #043a7a);
  margin: 0;
  line-height: 1.3;
}

.b2b-card-subtitle {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark, #2b3a4a);
  margin-bottom: 10px;
}

.b2b-card-list {
  margin: 0 0 16px 0;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-dark, #2b3a4a);
  line-height: 1.7;
  flex-grow: 1;
}

.b2b-card-note {
  font-size: 12.5px;
  color: var(--text-dark, #2b3a4a);
  background: rgba(4, 58, 122, 0.03);
  border-left: 3px solid var(--blue, #043a7a);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 16px;
  line-height: 1.5;
}

.b2b-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red, #ea3939);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease, transform 0.2s ease;
}

.b2b-card-link:hover {
  color: #c82323;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .b2b-channels-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ════════════════════════════════════════════════════
   REPLACEMENT GUIDELINES & COMPATIBILITY STYLES
   ════════════════════════════════════════════════════ */
.protocol-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.protocol-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(4, 58, 122, 0.04);
}

.protocol-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.protocol-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(4, 58, 122, 0.08);
  color: var(--blue, #043a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.protocol-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue, #043a7a);
  margin: 0;
}

.protocol-card-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue, #043a7a);
  margin-bottom: 12px;
}

.protocol-list {
  margin: 0 0 16px 0;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--text-dark, #2b3a4a);
  line-height: 1.7;
}

.protocol-warning-box {
  background: rgba(234, 57, 57, 0.05);
  border-left: 4px solid var(--red, #ea3939);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red, #ea3939);
  margin-top: auto;
}

.protocol-note-text {
  font-size: 13px;
  color: var(--text-mid, #5a6b7c);
  font-style: italic;
  line-height: 1.6;
  margin-top: auto;
  border-top: 1px solid rgba(4, 58, 122, 0.08);
  padding-top: 12px;
}

/* ════════════════════════════════════════════════════
   EVALUATION PROTOCOL & QUOTATION CHECKLIST STYLES
   ════════════════════════════════════════════════════ */
.eval-protocol-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(4, 58, 122, 0.04);
}

.eval-protocol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-top: 16px;
}

.eval-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(4, 58, 122, 0.02);
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.eval-step-item:hover {
  background: #ffffff;
  border-color: rgba(4, 58, 122, 0.2);
  box-shadow: 0 4px 12px rgba(4, 58, 122, 0.06);
}

.eval-step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(234, 57, 57, 0.12);
  color: var(--red, #ea3939);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eval-step-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark, #2b3a4a);
}

@media (max-width: 768px) {

  .protocol-card-grid,
  .eval-protocol-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ════════════════════════════════════════════════════
   KEY VALUE PROPOSITIONS GRID (4 IN A ROW)
   ════════════════════════════════════════════════════ */
.key-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.key-value-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-top: 4px solid var(--blue, #043a7a);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(4, 58, 122, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
}

.key-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(4, 58, 122, 0.1);
  border-top-color: var(--red, #ea3939);
}

.key-value-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--blue, #043a7a);
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.35;
}

.key-value-card-desc {
  font-size: 13.5px;
  color: var(--text-dark, #2b3a4a);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .key-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .key-value-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   FAQ ACCORDION STYLES
   ════════════════════════════════════════════════════ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(4, 58, 122, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(4, 58, 122, 0.25);
  box-shadow: 0 4px 16px rgba(4, 58, 122, 0.07);
}

.faq-item.open {
  border-color: var(--blue, #043a7a);
  box-shadow: 0 6px 20px rgba(4, 58, 122, 0.09);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--blue, #043a7a);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-question {
  background: rgba(4, 58, 122, 0.03);
  color: var(--red, #ea3939);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--blue, #043a7a);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--red, #ea3939);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  background: #ffffff;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding: 16px 24px 22px 24px;
  border-top: 1px solid rgba(4, 58, 122, 0.08);
}

.faq-answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dark, #2b3a4a);
}

/* ════════════════════════════════════════════════════
     RESALE CATALOGUE GRID (30% Left Image | 70% Right Content)
   ════════════════════════════════════════════════════ */
.mumbai-product-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mumbai-product-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(4, 58, 122, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mumbai-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(4, 58, 122, 0.12);
  border-color: rgba(4, 58, 122, 0.25);
}

.mumbai-product-img-wrap {
  width: 30%;
  min-width: 30%;
  flex: 0 0 30%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(4, 58, 122, 0.08);
  position: relative;
  overflow: hidden;
}

.mumbai-product-img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  transition: transform 0.3s ease;
}

.mumbai-product-card:hover .mumbai-product-img {
  transform: scale(1.05);
}

.mumbai-product-body {
  width: 70%;
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mumbai-product-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.35;
}

.mumbai-product-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.mumbai-subproduct-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.mumbai-subproduct-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mumbai-subproduct-list li {
  font-size: 13.5px;
  color: var(--text-dark);
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.mumbai-subproduct-list li::before {
  content: '•';
  color: var(--red);
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.mumbai-product-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}

.mumbai-product-readmore:hover {
  color: var(--blue);
  gap: 10px;
}

.mumbai-product-note {
  font-size: 12.5px;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .mumbai-product-card {
    flex-direction: column;
  }

  .mumbai-product-img-wrap {
    width: 100%;
    min-width: 100%;
    flex: 0 0 auto;
    height: 200px;
    border-right: none;
    border-bottom: 1px solid rgba(4, 58, 122, 0.08);
  }

  .mumbai-product-body {
    width: 100%;
    padding: 20px 18px;
  }

  .mumbai-subproduct-list {
    grid-template-columns: 1fr;
  }
}

/* Quality Control & Care section cards */
.care-card {
  background: var(--white);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(4, 58, 122, 0.06);
  border-color: rgba(4, 58, 122, 0.15);
}

.care-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 14px;
}

.care-card-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.care-checklist-list {
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.care-checklist-list li {
  margin-bottom: 8px;
}

.care-checklist-list li::marker {
  color: var(--red);
}

.care-card-footer-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(4, 58, 122, 0.07);
  padding-top: 12px;
  margin-top: 8px;
}

/* ══ BREADCRUMBS ══════════════════════════════════════════ */
.breadcrumb-nav {
  background-color: #fafbfc;
  padding: 14px 0;
  border-bottom: 1px solid rgba(4, 58, 122, 0.06);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .breadcrumb-inner {
    padding: 0 20px;
  }
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-list li,
.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted, #777);
}

.breadcrumb-list a,
.breadcrumb-item a {
  color: var(--blue-deep, #043A7A);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover,
.breadcrumb-item a:hover {
  color: var(--red, #e60e0f);
}

.breadcrumb-list li.active,
.breadcrumb-item.active {
  color: var(--text-muted, #777);
  font-weight: 500;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: #ccc;
  font-weight: 300;
  user-select: none;
}

/* ══════════════════════════════════════════════════════════════════════════
   Trocar Reducer Details Custom Premium Design
   ══════════════════════════════════════════════════════════════════════════ */
.reducer-details-grid,
.product-range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {

  .reducer-details-grid,
  .product-range-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .reducer-details-grid,
  .product-range-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.reducer-detail-card,
.product-range-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reducer-detail-card::before,
.product-range-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid, #0d6efd) 0%, var(--red, #e60e0f) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reducer-detail-card:hover,
.product-range-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(4, 58, 122, 0.08);
  border-color: rgba(4, 58, 122, 0.12);
}

.reducer-detail-card:hover::before,
.product-range-card:hover::before {
  opacity: 1;
}

.reducer-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(4, 58, 122, 0.04);
  color: var(--blue-deep, #043a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.reducer-detail-card:hover .reducer-icon-wrapper,
.product-range-card:hover .reducer-icon-wrapper {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red, #e60e0f);
  transform: scale(1.1);
}

.reducer-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep, #043a7a);
  margin-bottom: 12px;
  margin-top: 0;
}

.reducer-card-text {
  font-size: 13.5px;
  color: var(--text-mid, #666);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   Selection Guide Premium Design
   ══════════════════════════════════════════════════════════════════════════ */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.selection-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.07);
  border-left: 4px solid var(--blue-mid, #0d6efd);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.selection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(4, 58, 122, 0.06);
  border-color: rgba(4, 58, 122, 0.12);
  border-left-color: var(--red, #e60e0f);
}

.selection-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(4, 58, 122, 0.04);
  color: var(--blue-mid, #0d6efd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.selection-card:hover .selection-icon-wrapper {
  background: var(--red, #e60e0f);
  color: #ffffff;
  transform: rotate(360deg);
}

.selection-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep, #043a7a);
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 1.4;
}

.selection-card-text {
  font-size: 13px;
  color: var(--text-mid, #666);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════
     OVERVIEW REDESIGN ADDITIONS
   ════════════════════════════════════════════════════ */
.overview-intro-paragraph {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}

.overview-selection-callout {
  background: rgba(4, 58, 122, 0.02);
  border-left: 4px solid var(--blue-mid);
  padding: 18px 24px;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 16px;
}

.overview-selection-callout-text {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.overview-disclaimer {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.overview-disclaimer svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
     SPECIFICATION CLARIFICATIONS ADDITIONS
   ════════════════════════════════════════════════════ */
.clarification-intro {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.clarification-cards-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.clarification-card {
  background: rgba(230, 14, 15, 0.02);
  border: 1px solid rgba(230, 14, 15, 0.06);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  transition: all 0.3s ease;
}

.clarification-card:hover {
  background: rgba(230, 14, 15, 0.04);
  border-color: rgba(230, 14, 15, 0.12);
  transform: translateX(4px);
}

.clarification-icon-wrapper {
  background: rgba(230, 14, 15, 0.06);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.clarification-card-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
}

.clarification-advisory {
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.03) 0%, rgba(4, 58, 122, 0.01) 100%);
  border: 1px solid rgba(4, 58, 122, 0.08);
  border-left: 4px solid var(--blue-mid);
  padding: 20px 24px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(4, 58, 122, 0.01);
}

.clarification-advisory-title {
  font-size: 13.5px;
  color: var(--blue-deep);
  line-height: 1.65;
  margin: 0 0 10px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.clarification-advisory-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════════════════
     CLIP COMPATIBILITY ADDITIONS
   ════════════════════════════════════════════════════ */
.compatibility-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.compatibility-left-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-top: 14px;
  margin-bottom: 12px;
}

.compatibility-left-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.compatibility-card {
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.03) 0%, rgba(4, 58, 122, 0.005) 100%);
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
}

.compatibility-card:hover {
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.05) 0%, rgba(4, 58, 122, 0.01) 100%);
  border-color: rgba(4, 58, 122, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(4, 58, 122, 0.04);
}

.compatibility-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-top: 14px;
  margin-bottom: 12px;
}

.compatibility-card-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.compatibility-icon-container {
  background: rgba(4, 58, 122, 0.05);
  color: var(--blue-mid);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.compatibility-card:hover .compatibility-icon-container {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
}

/* ════════════════════════════════════════════════════
     LAPAROSCOPIC RETRACTOR OVERVIEW ADDITIONS
   ════════════════════════════════════════════════════ */
.retractor-overview-intro {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 24px;
  text-align: left;
}

.retractor-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 28px;
}

@media (max-width: 992px) {
  .retractor-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .retractor-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.retractor-feature-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.retractor-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 58, 122, 0.12);
  box-shadow: 0 10px 25px rgba(4, 58, 122, 0.06);
}

.retractor-feature-icon-wrapper {
  background: rgba(4, 58, 122, 0.04);
  color: var(--blue-mid);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.retractor-feature-card:hover .retractor-feature-icon-wrapper {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
  transform: scale(1.08);
}

.retractor-feature-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.retractor-selection-advisory {
  background: rgba(4, 58, 122, 0.02);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  border-radius: 6px;
  text-align: left;
  margin-top: 24px;
}

.retractor-selection-advisory p {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════
     RETRACTOR COMPATIBILITY ADDITIONS
   ════════════════════════════════════════════════════ */
.retractor-flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.retractor-flow-step {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deep);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  flex: 1;
  min-width: 140px;
  transition: all 0.3s ease;
}

.retractor-flow-step:hover {
  border-color: rgba(4, 58, 122, 0.12);
  box-shadow: 0 8px 20px rgba(4, 58, 122, 0.05);
  transform: translateY(-2px);
}

.retractor-flow-arrow {
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .retractor-flow-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .retractor-flow-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }
}

.retractor-confirm-box {
  background: linear-gradient(135deg, rgba(4, 58, 122, 0.02) 0%, rgba(4, 58, 122, 0.005) 100%);
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 24px;
  text-align: left;
}

.retractor-confirm-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 16px;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.retractor-confirm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .retractor-confirm-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.retractor-confirm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.retractor-confirm-item:hover {
  transform: translateX(4px);
}

.retractor-confirm-icon-wrapper {
  background: rgba(4, 58, 122, 0.05);
  color: var(--blue-mid);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.retractor-confirm-item:hover .retractor-confirm-icon-wrapper {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
}

.retractor-confirm-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ════════════════════════════════════════════════════
     INSPECTION BEFORE USE SECTION ADDITIONS
   ════════════════════════════════════════════════════ */
.inspection-intro {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 24px;
  text-align: left;
}

.inspection-lead {
  font-size: 14.5px;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: left;
}

.inspection-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 28px;
}

@media (max-width: 992px) {
  .inspection-category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.inspection-category-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.inspection-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 58, 122, 0.12);
  box-shadow: 0 10px 25px rgba(4, 58, 122, 0.06);
}

.inspection-category-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(4, 58, 122, 0.06);
  line-height: 1.4;
}

.inspection-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inspection-category-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.inspection-list-icon {
  background: rgba(4, 58, 122, 0.05);
  color: var(--blue-mid);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.inspection-category-list li:hover .inspection-list-icon {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
}

.inspection-list-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.inspection-flat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .inspection-flat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.inspection-flat-card {
  background: #ffffff;
  border: 1px solid rgba(4, 58, 122, 0.06);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.005);
}

.inspection-flat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(4, 58, 122, 0.1);
  box-shadow: 0 6px 18px rgba(4, 58, 122, 0.04);
}

.inspection-flat-icon {
  background: rgba(4, 58, 122, 0.04);
  color: var(--blue-mid);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.inspection-flat-card:hover .inspection-flat-icon {
  background: rgba(230, 14, 15, 0.06);
  color: var(--red);
}

.inspection-flat-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.inspection-warning-box {
  display: flex;
  gap: 20px;
  background: rgba(230, 14, 15, 0.02);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 28px;
  text-align: left;
}

@media (max-width: 576px) {
  .inspection-warning-box {
    flex-direction: column;
    gap: 12px;
  }
}

.inspection-warning-icon {
  color: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.inspection-warning-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue-deep);
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.inspection-warning-text {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Medical & Procurement Disclaimer inside CTA */
.about-cta-disclaimer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(4, 58, 122, 0.08);
  text-align: left;
}

.about-cta-disclaimer h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.about-cta-disclaimer p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════
     WORKING-ELEMENT & PRODUCT PAGE ADDITIONS
   ════════════════════════════════════════════════════ */

/* FAQ Column Wrapper (inside about-faq-grid) */
.about-faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Trust Strip span items (when not using .about-trust-chip) */
.about-trust-strip span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  padding-right: 18px;
  position: relative;
  white-space: nowrap;
}

.about-trust-strip span:first-child {
  font-weight: 700;
  color: var(--blue-deep);
}

.about-trust-strip span:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

/* Hero Lead Small variant */
.about-hero-lead-small {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 760px;
  color: var(--text-dark);
}

.about-hero-lead-small a {
  color: var(--red);
  text-decoration: underline;
  font-weight: 500;
}

/* Hero Image Placeholder */
.hero-image-placeholder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(4, 58, 122, 0.12);
}

.hero-image-placeholder-desc {
  font-size: 11px;
  margin-top: 8px;
  text-align: center;
  color: var(--text-mid);
  font-style: italic;
}

/* Table min-width inside responsive wrapper */
.table-responsive .about-facts-table {
  min-width: 540px;
}

/* Sub-section headings inside about-text-block */
.about-text-block h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-top: 24px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

/* Responsive: single-column FAQ grid */
@media (max-width: 768px) {
  .about-faq-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero-image-right {
    order: -1;
  }

  .about-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .about-trust-strip span::before {
    display: none;
  }

  .about-trust-strip span {
    padding-right: 0;
  }
}