@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================
   Universal Engineering & Solution - Premium Theme
   Colors derived from logo: Red #E20714 + Black
   ============================================ */

:root {
  --red: #E20714;
  --red-dark: #B8050F;
  --red-glow: rgba(226, 7, 20, 0.45);
  --red-soft: rgba(226, 7, 20, 0.12);
  --black: #0A0A0A;
  --black-light: #141414;
  --black-card: #1A1A1A;
  --gray-dark: #2A2A2A;
  --gray-mid: #8E8E93;
  --gray-light: #C7C7CC;
  --white: #FFFFFF;
  --off-white: #F5F5F7;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 14px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ---- Utility ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title span { color: var(--red); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 640px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Section Scroll Reveal System ---- */
.section-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal-left {
  transform: translateX(-100px);
}

.section-reveal-right {
  transform: translateX(100px);
}

.section-reveal-top {
  transform: translateY(-80px);
}

.section-reveal-bottom {
  transform: translateY(80px);
}

.section-reveal.revealed {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px var(--red-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: #0B0C10; /* Solid dark background matching the image */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Clean subtle border */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.navbar.scrolled {
  background: #08090C; /* Deep black when scrolled */
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.navbar .container {
  max-width: 100%;
  padding: 0 40px;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px; /* Gap between red icon and text */
  text-decoration: none;
  flex: 0 0 auto;
  margin-right: auto;
}
.nav-logo img {
  height: 52px; /* Logo icon height matching the image */
  width: auto;
  transition: transform var(--transition), height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.logo-text-top {
  font-family: var(--font-display);
  font-size: 1.25rem; /* Bold capital letters */
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.5px;
}

.logo-text-bottom {
  font-family: var(--font-display);
  font-size: 0.7rem; /* Small capitalized subtitle */
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.3px;
}

.logo-text-iso {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar.scrolled .nav-logo img {
  height: 42px;
}

.navbar.scrolled .logo-text-top {
  font-size: 1.12rem;
}

.navbar.scrolled .logo-text-bottom {
  font-size: 0.65rem;
}

.navbar.scrolled .logo-text-iso {
  font-size: 0.48rem;
}

.nav-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2vw, 34px);
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700; /* Bold links as per the image */
  letter-spacing: 0.2px;
  color: var(--white);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  margin-left: auto;
}
/* Rounded rectangles style for header buttons to match the design mockup */
.navbar .btn {
  border-radius: 10px !important; /* Rounded corners as in the image */
  font-family: var(--font-display);
  font-weight: 700;
  padding: 11px 26px !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.2px;
  transition: all var(--transition);
}

.navbar .btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
}

.navbar .btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-2px);
}

.navbar .btn-primary {
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(226, 7, 20, 0.25);
}

.navbar .btn-primary:hover {
  background: var(--red-dark) !important;
  box-shadow: 0 6px 20px rgba(226, 7, 20, 0.45);
  transform: translateY(-2px);
}

.mobile-cta-item {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1005;
  position: relative;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(226,7,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,7,20,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--red-soft);
  border: 1px solid rgba(226,7,20,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  animation: fadeInDown 1s ease forwards;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero h1 .highlight {
  color: var(--red);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red);
  opacity: 0.3;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gray-light);
  max-width: 600px;
  margin-bottom: 16px;
  animation: fadeInUp 1s 0.4s ease both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
  animation: fadeInUp 1s 0.5s ease both;
}

.hero-tagline em {
  font-style: normal;
  color: var(--red);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 1s 0.7s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 1s 0.9s ease both;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-mid);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-mid);
  border-radius: 12px;
  position: relative;
}

.hero-scroll .mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Marquee ---- */
.marquee-section {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  padding: 0 40px;
}

.marquee-track span::after {
  content: '\25C6';
  margin-left: 40px;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- About ---- */
.about {
  padding: 120px 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.about-image:hover img { transform: scale(1.05); }

.about-image-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  pointer-events: none;
  transition: inset var(--transition);
}

.about-image:hover .about-image-frame { inset: -20px; }

.about-year {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  box-shadow: 0 8px 32px var(--red-glow);
}

.about-text p {
  color: var(--gray-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-text p strong { color: var(--white); }

/* ---- Stats Banner ---- */
.stats-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black-light) 0%, var(--black-card) 100%);
  border-top: 1px solid rgba(226,7,20,0.1);
  border-bottom: 1px solid rgba(226,7,20,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color var(--transition);
}

.stat-item:hover::before { border-color: rgba(226,7,20,0.3); }

.stat-item:hover {
  background: var(--red-soft);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-number sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Services ---- */
.services {
  padding: 120px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-desc { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--transition), border-color 0.6s var(--transition), box-shadow 0.6s var(--transition);
  cursor: default;
}

.service-card::before, .service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 4;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
  border-top-color: var(--red);
  border-bottom-color: var(--red);
  transform: scaleX(0);
}

.service-card::after {
  border-left-color: var(--red);
  border-right-color: var(--red);
  transform: scaleY(0);
}

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

.service-card:hover::after {
  transform: scaleY(1);
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(226,7,20,0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--red-glow);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  stroke-width: 2;
  transition: stroke var(--transition), transform var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 4px 15px var(--red-glow);
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ---- Brands Portfolio ---- */
.brands {
  padding: 120px 0;
  background: var(--black-light);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.brand-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.6s var(--transition), border-color 0.6s var(--transition), box-shadow 0.6s var(--transition);
  min-height: 230px;
  position: relative;
}

.brand-card::before, .brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 4;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card::before {
  border-top-color: var(--red);
  border-bottom-color: var(--red);
  transform: scaleX(0);
}

.brand-card::after {
  border-left-color: var(--red);
  border-right-color: var(--red);
  transform: scaleY(0);
}

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

.brand-card:hover::after {
  transform: scaleY(1);
}

.brand-card:hover {
  transform: translateY(-12px);
  border-color: rgba(226,7,20,0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--red-glow);
}

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

.brand-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

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

.brand-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(10,10,10,0.6));
}

.brand-card-body {
  padding: 28px 32px;
}

.brand-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.brand-card-body ul li {
  font-size: 0.85rem;
  color: var(--gray-light);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.brand-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ---- Why UES ---- */
.why-ues {
  padding: 120px 0;
  position: relative;
}

.why-ues::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: linear-gradient(145deg, var(--black-card) 0%, var(--black-light) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226,7,20,0.2);
}

.why-card:hover::after { opacity: 1; }

.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(226,7,20,0.15);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.why-card:hover .why-num { color: rgba(226,7,20,0.4); }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  position: relative;
  z-index: 1;
}

/* ---- Next Moves ---- */
.next-moves {
  padding: 120px 0;
  background: var(--black-light);
}

.moves-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.move-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  cursor: default;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s var(--transition), border-color 0.6s var(--transition), box-shadow 0.6s var(--transition);
}

/* Drawing border animation on hover */
.move-card::before, .move-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 4;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.move-card::before {
  border-top-color: var(--red);
  border-bottom-color: var(--red);
  transform: scaleX(0);
}
.move-card::after {
  border-left-color: var(--red);
  border-right-color: var(--red);
  transform: scaleY(0);
}
.move-card:hover::before {
  transform: scaleX(1);
}
.move-card:hover::after {
  transform: scaleY(1);
}

.move-card:hover {
  transform: translateY(-12px);
  border-color: rgba(226, 7, 20, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--red-glow);
}

.move-card-bg {
  position: absolute;
  inset: 0;
}

.move-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.move-card:hover .move-card-bg img {
  transform: scale(1.1);
}

.move-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.2) 100%);
  transition: background var(--transition);
}

.move-card:hover .move-card-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(226,7,20,0.25) 60%, rgba(10,10,10,0.3) 100%);
}

.move-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 28px;
  z-index: 2;
}

/* Translucent massive numeric watermark */
.move-card-content::after {
  position: absolute;
  top: -50px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(226, 7, 20, 0.02);
  -webkit-text-stroke: 1px rgba(226, 7, 20, 0.05);
  pointer-events: none;
  z-index: -1;
  transition: all 0.8s var(--transition);
}

.move-card[data-step="01"] .move-card-content::after { content: '01'; }
.move-card[data-step="02"] .move-card-content::after { content: '02'; }
.move-card[data-step="03"] .move-card-content::after { content: '03'; }

.move-card:hover .move-card-content::after {
  color: rgba(226, 7, 20, 0.06);
  -webkit-text-stroke: 1px rgba(226, 7, 20, 0.15);
  transform: translateY(-10px) scale(1.08);
}

.move-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--red);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px var(--red-glow);
}

.move-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.move-card:hover h3 {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.move-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              margin-top 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.move-card:hover p {
  max-height: 150px;
  opacity: 1;
  margin-top: 12px;
}

.move-quote {
  margin-top: 64px;
  text-align: center;
  padding: 48px;
  border: 1px solid rgba(226,7,20,0.2);
  border-radius: var(--radius-lg);
  background: var(--red-soft);
  position: relative;
}

.move-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 32px;
  line-height: 1;
}

.move-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--off-white);
  max-width: 700px;
  margin: 0 auto;
}

/* ---- Tools ---- */
.tools {
  padding: 120px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.tool-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.tool-item:hover {
  background: var(--red-soft);
  border-color: rgba(226,7,20,0.3);
  transform: translateY(-6px);
}

.tool-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.tool-item h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* ---- Values ---- */
.values {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
}

.value-card:hover {
  border-color: var(--red);
  box-shadow: 0 0 40px var(--red-soft);
  transform: scale(1.03);
}

.value-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--red-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all var(--transition);
}

.value-card:hover .icon {
  background: var(--red);
  transform: rotateY(180deg);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* ---- Director Message ---- */
.director {
  padding: 120px 0;
  background: var(--black);
}

.director-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.director-card::before, .director-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 4;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.director-card::before {
  border-top-color: var(--red);
  border-bottom-color: var(--red);
  transform: scaleX(0);
}

.director-card::after {
  border-left-color: var(--red);
  border-right-color: var(--red);
  transform: scaleY(0);
}

.director-card:hover::before { transform: scaleX(1); }
.director-card:hover::after { transform: scaleY(1); }

.director-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  height: 420px;
}

.director-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--transition);
}

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

.director-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.director-quote {
  font-size: 1.2rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

.director-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: -30px;
  left: -20px;
}

.director-meta {
  margin-top: 10px;
}

.director-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.director-role {
  font-size: 0.9rem;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ---- Org Chart ---- */
.org-chart {
  padding: 100px 0;
  background: var(--black-light);
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  gap: 0;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}

.org-node {
  background: var(--black-card);
  border: 1px solid rgba(226,7,20,0.2);
  border-radius: var(--radius);
  padding: 16px 28px;
  text-align: center;
  transition: all var(--transition);
  min-width: 180px;
}

.org-node:hover {
  background: var(--red-soft);
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--red-soft);
}

.org-node.primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  font-weight: 700;
}

.org-node h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.org-node.primary h4 { color: var(--white); }

.org-connector {
  width: 2px;
  height: 32px;
  background: rgba(226,7,20,0.3);
}

/* ---- Products Tabs ---- */
.products {
  padding: 120px 0;
}

.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.tab-btn {
  padding: 10px 24px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  color: var(--gray-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}

.tab-panel {
  display: none;
  animation: fadeTab 0.5s ease;
}

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

@keyframes fadeTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-item {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.product-item:hover {
  border-color: rgba(226,7,20,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.product-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-item p {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ---- Clientele ---- */
.clientele {
  padding: 120px 0;
  background: var(--black-light);
  text-align: center;
}

.clientele-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.client-badge {
  padding: 20px 36px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-light);
  transition: all var(--transition);
  letter-spacing: 1px;
}

.client-badge:hover {
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 8px 24px var(--red-soft);
}

.clientele-highlight {
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
}

.clientele-highlight span { color: var(--red); }

/* ---- Contact / Footer ---- */
.contact {
  padding: 120px 0 60px;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--red));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  transform: none !important;
}

.contact-inquire-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.65rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: none;
}

.contact-inquire-title span {
  color: var(--red);
  font-weight: 800;
  margin-right: 4px;
  font-family: var(--font-display);
}

.contact-inquire-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.contact-inquire-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-inquire-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.contact-inquire-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition);
}

.contact-inquire-item:hover {
  transform: translateX(6px);
}

.contact-inquire-icon {
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  color: var(--black);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--transition), color 0.3s var(--transition), transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.contact-inquire-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-inquire-item:hover .contact-inquire-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 24px var(--red-glow);
}

.contact-inquire-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.5;
}

.contact-inquire-text a {
  color: inherit;
  transition: color var(--transition);
}

.contact-inquire-text a:hover {
  color: var(--red);
}

.phone-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.phone-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(226, 7, 20, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.phone-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Enhanced Grid Footer ---- */
.footer {
  padding: 88px 0 0;
  background:
    linear-gradient(180deg, rgba(226, 7, 20, 0.04) 0%, transparent 18%),
    var(--black-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 2.1fr) 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.footer-brand-lockup img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}

.footer-logo-text {
  line-height: 1.05;
}

.footer-brand .logo-text-top {
  font-size: 1.38rem;
  letter-spacing: 0.45px;
}

.footer-brand .logo-text-bottom {
  font-size: 0.78rem;
  letter-spacing: 0.38px;
}

.footer-desc {
  max-width: 440px;
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.75;
}

.footer-desc-secondary {
  color: var(--gray-mid);
  max-width: 460px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col ul a {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links-col ul a:hover {
  color: var(--red);
  padding-left: 6px;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.footer-contact-col a {
  color: var(--white);
  transition: color var(--transition);
}

.footer-contact-col a:hover {
  color: var(--red);
}

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

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.footer-bottom a {
  color: var(--red);
  transition: opacity var(--transition);
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* Navbar active state */
.nav-links a.active {
  color: var(--white) !important;
  background-color: transparent !important;
}

.nav-links a.active::after {
  width: 100% !important;
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 104px; /* Stacked above the WhatsApp float button */
  right: 36px;   /* Center aligned with the 56px WhatsApp button */
  width: 48px;
  height: 48px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px var(--red-glow);
}

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

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-grid,
  .director-card,
  .contact-grid { grid-template-columns: 1fr; }

  .services-grid,
  .why-grid,
  .moves-grid,
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 0 !important;
    background: #0d0d11 !important;
    border-bottom: 2px solid rgba(226, 7, 20, 0.35) !important;
  }

  .navbar .container {
    padding: 0 24px !important;
  }

  .navbar.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #070709 !important;
    padding: 10px 0 !important;
    border-bottom: 2px solid rgba(226, 7, 20, 0.5) !important;
  }

  .nav-logo img {
    height: 56px !important;
  }

  .navbar.scrolled .nav-logo img {
    height: 48px !important;
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    z-index: 1005;
    padding: 0;
  }

  .hamburger span {
    display: block !important;
    width: 26px !important;
    height: 2px !important;
    background: #FFFFFF !important;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }

  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
    overflow-y: auto;
    max-height: 100vh;
    padding: 80px 24px;
    animation: slideInMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideInMenu {
    from {
      opacity: 0;
      transform: scale(0.96);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .nav-links.mobile-open a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
  }

  .mobile-cta-item {
    display: block !important;
    width: 80%;
    max-width: 280px;
    margin: 8px auto 0 auto;
    text-align: center;
  }

  .mobile-cta-item a {
    display: inline-flex !important;
    justify-content: center;
    width: 100%;
    padding: 14px 28px !important;
    font-size: 0.95rem !important;
    border-radius: 50px !important;
  }

  .mobile-cta-item a::after {
    display: none !important;
  }

  .hero-stats { flex-direction: column; gap: 24px; }
  .services-grid,
  .why-grid,
  .moves-grid,
  .product-grid,
  .tools-grid,
  .values-grid,
  .stats-grid { grid-template-columns: 1fr; }

  .brand-card { grid-template-columns: 1fr; }
  .brand-card-img { height: 240px; }
  .contact-grid { gap: 32px; }
  .director-card { padding: 30px; gap: 30px; }
  .director-img { height: 300px; }
  .hero-scroll { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }

  /* Convert all horizontal slide reveals to fade-up on mobile to prevent left-right overflow */
  .section-reveal-left,
  .section-reveal-right,
  .section-reveal-top,
  .section-reveal-bottom {
    transform: translateY(30px) !important;
  }
}

/* ---- Card Image Styling for Services ---- */
.service-card-img {
  height: 230px;
  margin: -36px -28px 24px -28px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid rgba(226, 7, 20, 0.2);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

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

/* ---- Animated Serpentine Pipeline Timeline ---- */
.pipeline-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(226, 7, 20, 0.09), transparent 34%),
    radial-gradient(circle at bottom right, rgba(226, 7, 20, 0.08), transparent 30%),
    var(--black);
}

.pipeline-container {
  position: relative;
  max-width: 1240px;
  margin: 64px auto 0;
  height: 840px;
}

.pipeline-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.pipeline-road {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 10;
  fill: none;
  stroke-linecap: round;
}

.pipeline-flow {
  stroke: var(--red);
  stroke-width: 10;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 3500;
  stroke-dashoffset: 3500;
  transition: stroke-dashoffset 3.4s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0 0 12px rgba(226, 7, 20, 0.35));
}

.pipeline-liquid {
  stroke: var(--white);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 20, 62;
  stroke-dashoffset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.pipeline-section.visible .pipeline-flow {
  stroke-dashoffset: 0;
}

.pipeline-section.visible .pipeline-liquid {
  opacity: 0.38;
  animation: flowFluid 5s linear infinite;
}

@keyframes flowFluid {
  to { stroke-dashoffset: -320; }
}

.pipeline-stages {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.pipeline-stage {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 280px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-top {
  transform: translate(-50%, -100%) translateY(44px);
  flex-direction: column;
}

.stage-bottom {
  transform: translate(-50%, 0) translateY(16px);
  flex-direction: column;
}

/* Middle-row cards — centred on the horizontal red pipeline */
.stage-on-line {
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 3;
}

.stage-on-line .pipeline-dot {
  display: none;
}

.stage-on-line .pipeline-card {
  order: 1;
  margin: 0;
  position: relative;
  z-index: 2;
}

.stage-on-line .pipeline-card::after {
  display: none;
}

/* Red line visible through vertical centre of card */
.stage-on-line .pipeline-card {
  background: linear-gradient(
    160deg,
    rgba(30, 30, 32, 0.97) 0%,
    rgba(14, 14, 16, 0.97) 100%
  );
}

.stage-on-line .pipeline-card::before {
  z-index: 1;
}

.stage-center {
  left: var(--x) !important;
  top: var(--y) !important;
  bottom: auto;
  width: 420px;
  max-width: calc(100% - 32px);
  transform: translate(-50%, 0) translateY(16px);
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.stage-center .pipeline-dot {
  order: 1;
  margin-bottom: 0;
  z-index: 4;
}

.stage-center .pipeline-card {
  order: 2;
  padding: 24px 34px 26px;
  min-height: auto;
  margin-top: 14px;
}

/* Hide thin CSS connector — SVG branch + dot handles the join */
.stage-center .pipeline-card::after {
  display: none;
}

.pipeline-flow-branch {
  stroke: var(--red);
  stroke-width: 10;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.25, 1, 0.5, 1) 2.6s;
  filter: drop-shadow(0 0 12px rgba(226, 7, 20, 0.35));
}

.pipeline-liquid-branch {
  stroke: var(--white);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 20, 62;
  opacity: 0;
  transition: opacity 0.5s 2.6s;
}

.pipeline-section.visible .pipeline-flow-branch {
  stroke-dashoffset: 0;
}

.pipeline-section.visible .pipeline-liquid-branch {
  opacity: 0.38;
  animation: flowFluid 5s linear infinite 2.6s;
}

.pipeline-section.visible .pipeline-stage {
  opacity: 1;
}

.pipeline-section.visible .stage-top {
  transform: translate(-50%, -100%) translateY(14px);
}

.pipeline-section.visible .stage-bottom {
  transform: translate(-50%, 0) translateY(-14px);
}

.pipeline-section.visible .stage-on-line {
  transform: translate(-50%, -50%);
}

.pipeline-section.visible .stage-center {
  transform: translate(-50%, 0) translateY(-14px);
}

.pipeline-section.visible .pipeline-stage:nth-child(1) { transition-delay: 0.25s; }
.pipeline-section.visible .pipeline-stage:nth-child(2) { transition-delay: 0.6s; }
.pipeline-section.visible .pipeline-stage:nth-child(3) { transition-delay: 0.95s; }
.pipeline-section.visible .pipeline-stage:nth-child(4) { transition-delay: 1.3s; }
.pipeline-section.visible .pipeline-stage:nth-child(5) { transition-delay: 1.65s; }

.pipeline-card {
  position: relative;
  width: 100%;
  min-height: 176px;
  padding: 22px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(30, 30, 32, 0.95) 0%, rgba(14, 14, 16, 0.96) 100%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  text-align: left;
  overflow: visible;
}

.pipeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(255, 255, 255, 0.65) 50%, var(--red) 100%);
}

.stage-top .pipeline-card::after,
.stage-bottom .pipeline-card::after,
.stage-center .pipeline-card::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 52px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(226, 7, 20, 0.95) 0%, rgba(226, 7, 20, 0.15) 100%);
  pointer-events: none;
}

.stage-top .pipeline-card::after {
  bottom: -52px;
}

.stage-bottom .pipeline-card::after,
.stage-center .pipeline-card::after {
  top: -52px;
}

.stage-top .pipeline-card { order: 1; }
.stage-top .pipeline-dot { order: 2; }
.stage-bottom .pipeline-dot,
.stage-center .pipeline-dot { order: 1; }
.stage-bottom .pipeline-card,
.stage-center .pipeline-card { order: 2; }

.pipeline-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(226, 7, 20, 0.14);
  border: 1px solid rgba(226, 7, 20, 0.28);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.pipeline-dot {
  width: 28px;
  height: 28px;
  background: var(--black-card);
  border: 4px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(226, 7, 20, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  z-index: 3;
  flex: 0 0 28px;
}

.pipeline-section.visible .pipeline-dot {
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(226, 7, 20, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(226, 7, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 7, 20, 0); }
}

.pipeline-dot::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--red);
  border-radius: 50%;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-label {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 16px;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.pipeline-desc {
  font-size: 0.92rem;
  color: var(--gray-light);
  margin-top: 8px;
  line-height: 1.65;
  opacity: 0.84;
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.pipeline-stage:hover .pipeline-card {
  border-color: rgba(226, 7, 20, 0.28);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(226, 7, 20, 0.12);
}

.pipeline-stage:hover .pipeline-dot {
  transform: scale(1.12);
  box-shadow: 0 0 20px var(--red), 0 0 40px var(--red-glow);
  border-color: var(--white);
}

.pipeline-stage:hover .pipeline-dot::after {
  background: var(--white);
}

.pipeline-stage:hover .pipeline-label {
  color: var(--red);
}

.pipeline-stage:hover .pipeline-desc {
  color: var(--white);
  opacity: 1;
}

/* Responsive styles for pipeline values timeline */
@media (max-width: 1024px) {
  .pipeline-container {
    height: 840px;
  }

  .stage-center {
    width: 380px;
  }

  .stage-center .pipeline-card {
    padding: 22px 28px 24px;
  }
}

@media (max-width: 768px) {
  .pipeline-container {
    height: auto;
    margin-top: 44px;
    max-width: 100%;
  }

  .pipeline-svg {
    display: none;
  }

  .pipeline-stages {
    display: grid;
    gap: 18px;
  }

  .pipeline-stage {
    position: relative;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    gap: 14px;
    opacity: 1;
  }

  .stage-top,
  .stage-bottom,
  .stage-on-line,
  .stage-center,
  .pipeline-section.visible .stage-top,
  .pipeline-section.visible .stage-bottom,
  .pipeline-section.visible .stage-on-line,
  .pipeline-section.visible .stage-center {
    transform: none !important;
  }

  .pipeline-dot {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .pipeline-card,
  .stage-top .pipeline-card,
  .stage-bottom .pipeline-card,
  .stage-center .pipeline-card {
    width: 100%;
    min-height: auto;
    padding: 20px 18px 18px;
  }

  .stage-top .pipeline-card::after,
  .stage-bottom .pipeline-card::after,
  .stage-center .pipeline-card::after {
    display: none;
  }

  .stage-top .pipeline-card,
  .stage-bottom .pipeline-card,
  .stage-center .pipeline-card {
    order: 2;
  }

  .stage-top .pipeline-dot,
  .stage-bottom .pipeline-dot,
  .stage-center .pipeline-dot {
    order: 1;
  }

  .pipeline-label {
    font-size: 1.08rem;
    margin-top: 14px;
  }

  .pipeline-desc {
    font-size: 0.82rem;
    line-height: 1.6;
  }
}
/* ---- Supplies Visual Grid ---- */
.supplies-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.product-grid-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-grid-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 7, 20, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px var(--red-soft);
}

.product-grid-card .product-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid rgba(226, 7, 20, 0.2);
  background: #ffffff;
}

.product-grid-card .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.6s var(--transition);
}

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

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

.product-grid-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.product-grid-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-grid-card .view-specs-btn,
.product-grid-card .home-product-link {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-family: var(--font-body);
}

/* ---- Modal Styles ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  background: var(--black-card);
  border: 1px solid rgba(226, 7, 20, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow-y: auto;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8), 0 0 30px var(--red-soft);
  transform: scale(0.9);
  transition: transform 0.3s var(--transition);
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}

.modal-close:hover {
  color: var(--red);
}

#modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 12px;
}

.modal-body-content h4 {
  font-family: var(--font-display);
  color: var(--red);
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.modal-body-content p {
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.modal-body-content ul {
  list-style: none;
  margin-bottom: 18px;
}

.modal-body-content ul li {
  color: var(--gray-light);
  margin-bottom: 8px;
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
}

.modal-body-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

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

@media (max-width: 768px) {
  .supplies-visual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .modal-content {
    padding: 30px 20px;
  }
}

/* ---- Capabilities Section ---- */
.capabilities-tabs-section {
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 18%),
    var(--black-light);
}

.tools-simple-layout {
  display: grid;
  gap: 0;
}

.tools-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tools-simple-card {
  position: relative;
  min-height: 220px;
  padding: 24px 22px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
    linear-gradient(165deg, rgba(24, 24, 26, 1) 0%, rgba(14, 14, 16, 1) 100%);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tools-simple-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 28%, rgba(255,255,255,0.8) 50%, var(--red) 72%, transparent 100%);
  opacity: 0.8;
}

.tool-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(226, 7, 20, 0.12);
  border: 1px solid rgba(226, 7, 20, 0.2);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.tools-simple-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 7, 20, 0.26);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(226, 7, 20, 0.08);
}

.tools-simple-card-featured {
  background:
    radial-gradient(circle at top right, rgba(226, 7, 20, 0.16), transparent 28%),
    linear-gradient(165deg, rgba(30, 30, 33, 1) 0%, rgba(14, 14, 16, 1) 100%);
}

.tools-simple-card h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 10px;
}

.tools-simple-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-light);
}

/* ---- Responsive Capabilities ---- */
@media (max-width: 1180px) {
  .tools-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tools-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Clientele Logo Marquee ---- */
.logo-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 50px 0;
  margin-top: 48px;
  background: rgba(26, 26, 26, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.logo-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

.logo-marquee-slide {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

.logo-marquee-slide img {
  height: 75px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 1;
  transition: all var(--transition);
}

.logo-marquee-slide img:hover {
  transform: translateY(-2px) scale(1.06);
}

@keyframes scrollLogos {
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   About Us Page Premium 3D & Animated Styles
   ========================================================================== */

/* Hero Banner Section */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background: var(--black);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6) contrast(1.1);
  transform: scale(1.05);
  transition: transform 1.5s var(--transition);
}

.about-hero:hover .about-hero-img {
  transform: scale(1.01);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(circle at center, transparent 30%, var(--black) 90%);
}

.about-hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  mask-image: radial-gradient(circle at center, white, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, white, transparent 80%);
}

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

.about-hero-content {
  max-width: 720px;
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 7, 20, 0.2);
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(226, 7, 20, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.1s ease;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-top: 15px;
  margin-bottom: 20px;
  transform: translateZ(30px);
}

.about-hero-title span {
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
}

.about-hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 30px;
  transform: translateZ(20px);
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  transform: translateZ(25px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(226, 7, 20, 0.08);
  border: 1px solid rgba(226, 7, 20, 0.25);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
}

/* Legacy Section */
.about-legacy {
  padding: 120px 0;
  position: relative;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.legacy-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 30px;
  border-left: 3px solid var(--red);
  padding-left: 18px;
}

.legacy-stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.legacy-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-ring-box {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.stat-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-fill {
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.legacy-stat-card:hover .ring-fill {
  filter: drop-shadow(0 0 6px var(--red-glow));
}

.legacy-stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  z-index: 1;
}

.legacy-stat-card .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

.legacy-image-container {
  position: relative;
}

.glass-wrapper {
  background: rgba(26, 26, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px);
  transform-style: preserve-3d;
}

.glass-header {
  background: rgba(20, 20, 20, 0.6);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red-dot { background: #FF5F56; }
.yellow-dot { background: #FFBD2E; }
.green-dot { background: #27C93F; }

.glass-title {
  margin-left: 8px;
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--gray-mid);
}

.glass-body {
  padding: 30px;
  font-family: monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  background: rgba(10, 10, 10, 0.3);
}

.code-line {
  display: flex;
  margin-bottom: 4px;
}

.code-num {
  width: 25px;
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
}

.code-keyword { color: #FF4081; }
.code-class { color: #00E5FF; }
.code-val { color: #FFD740; }
.code-func { color: #69F0AE; }

.glass-glow-card {
  margin: 0 30px 30px;
  padding: 24px;
  background: rgba(226, 7, 20, 0.04);
  border: 1px solid rgba(226, 7, 20, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateZ(15px);
}

.glass-glow-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.expertise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-badges span {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gray-light);
}

/* Why Choose UES Pillars */
.trust-pillars {
  padding: 120px 0;
  background: var(--black-light);
  position: relative;
}

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

.pillar-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.1s ease;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.pillar-card:hover {
  border-color: rgba(226, 7, 20, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(226, 7, 20, 0.08);
}

.pillar-icon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  transform: translateZ(20px);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(226, 7, 20, 0.15);
  line-height: 1;
  transition: color 0.4s;
}

.pillar-card:hover .pillar-number {
  color: rgba(226, 7, 20, 0.35);
}

.pillar-icon-box svg {
  width: 38px;
  height: 38px;
  color: var(--red);
  filter: drop-shadow(0 0 8px rgba(226, 7, 20, 0.3));
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  transform: translateZ(15px);
}

.pillar-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-light);
  transform: translateZ(10px);
}

/* Org Chart Section */
.org-chart-section {
  padding: 120px 0;
  background: var(--black);
}

.org-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.org-tree-container {
  display: flex;
  justify-content: center;
  background: rgba(26, 26, 26, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 50px 24px;
  position: relative;
  overflow: visible;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 920px;
}

.org-tier {
  width: 100%;
}

.org-tier-root {
  display: flex;
  justify-content: center;
}

.org-tier-trunk {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-trunk-stem {
  width: 2px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, var(--red) 100%);
}

.org-trunk-rail {
  width: calc(100% * 2 / 3);
  max-width: 580px;
  height: 2px;
  background: var(--red);
  position: relative;
  box-shadow: 0 0 8px rgba(226, 7, 20, 0.35);
}

.org-junction {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 6px rgba(226, 7, 20, 0.4);
}

.org-junction-left { left: 0; }
.org-junction-center { left: 50%; }
.org-junction-right { left: 100%; }

.org-tier-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -1px;
}

.org-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-col-drop {
  width: 2px;
  height: 28px;
  background: var(--red);
  flex-shrink: 0;
}

.org-col-link {
  width: 2px;
  height: 36px;
  background: var(--red);
  position: relative;
  flex-shrink: 0;
  margin: 4px 0;
}

.org-junction-mid {
  left: 50%;
  top: 50%;
}

.org-node {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px 14px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  width: 100%;
  max-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.org-node-root {
  max-width: 240px;
  border-color: rgba(226, 7, 20, 0.35);
  box-shadow: 0 0 20px rgba(226, 7, 20, 0.15);
}

.org-node:hover,
.org-node.active {
  border-color: var(--red);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(226, 7, 20, 0.25);
  background: rgba(226, 7, 20, 0.03);
}

.node-glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(226, 7, 20, 0.15) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.org-node:hover .node-glow,
.org-node.active .node-glow {
  opacity: 1;
}

.node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(226, 7, 20, 0.12);
  border: 1px solid rgba(226, 7, 20, 0.25);
  color: var(--red);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.node-icon svg {
  width: 18px;
  height: 18px;
}

.node-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.node-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.org-node.active .node-title,
.org-node-root.active .node-title {
  color: var(--red);
}

.node-name {
  font-size: 0.7rem;
  color: var(--gray-mid);
  margin-top: 3px;
  line-height: 1.35;
}

.org-info-container {
  position: relative;
}

.org-info-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  min-height: 380px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.org-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, rgba(226, 7, 20, 0.12), transparent 70%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.org-info-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.org-info-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.org-info-header .badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(226, 7, 20, 0.1);
  border: 1px solid rgba(226, 7, 20, 0.2);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.org-info-body p {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.responsibility-list {
  margin-top: 15px;
  list-style: none;
}

.responsibility-list li {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.responsibility-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

/* Supplies Spec Catalog Section */
.supplies-catalog {
  padding: 120px 0;
  background: var(--black-light);
  position: relative;
}

.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.catalog-tab-btn {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px 28px;
  color: var(--gray-light);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gray-mid);
  transition: all 0.4s;
}

.catalog-tab-btn:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: rgba(226, 7, 20, 0.25);
  color: var(--white);
}

.catalog-tab-btn.active {
  background: var(--black-card);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.4),
    0 0 15px rgba(226, 7, 20, 0.15);
}

.catalog-tab-btn.active .tab-icon {
  background: rgba(226, 7, 20, 0.12);
  border-color: rgba(226, 7, 20, 0.25);
  color: var(--red);
}

.catalog-content-panels {
  position: relative;
  min-height: 400px;
}

.catalog-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.catalog-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.spec-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(226, 7, 20, 0.2);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.spec-card table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.82rem;
}

.spec-card table th {
  background: rgba(10, 10, 10, 0.4);
  padding: 10px 14px;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.spec-card table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--gray-light);
  line-height: 1.5;
  vertical-align: top;
}

.spec-card table td strong {
  color: var(--white);
}

.spec-card table tr:last-child td {
  border-bottom: none;
}

/* Tools & Tackles Section */
.tools-dashboard {
  padding: 120px 0;
  background: var(--black);
}

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

.tool-status-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.tool-status-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 7, 20, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.tool-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(226, 7, 20, 0.06), transparent 70%);
  pointer-events: none;
}

.tool-qty {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  text-shadow: 0 0 15px rgba(226, 7, 20, 0.3);
  margin-bottom: 15px;
}

.tool-status-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.tool-status-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .pillars-grid, .tools-grid {
    grid-template-columns: 1fr;
  }
  .legacy-stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .catalog-tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* ---- Product Showcase Slider ---- */
.product-showcase-wrapper {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.showcase-content-box {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: rgba(10, 10, 10, 0.35);
}

.showcase-slides {
  position: relative;
  min-height: 200px;
  display: grid;
}

.showcase-slide {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s var(--transition), visibility 0.5s;
  pointer-events: none;
}

.showcase-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.showcase-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.showcase-slide h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.showcase-specs {
  list-style: none;
}

.showcase-specs li {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.showcase-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red);
}

.showcase-navigation {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  align-items: center;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.showcase-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.showcase-dot.active {
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  width: 24px;
  border-radius: 4px;
}

.showcase-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 5;
}

.tool-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(226, 7, 20, 0.06), transparent 70%);
  pointer-events: none;
}

.tool-qty {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  text-shadow: 0 0 15px rgba(226, 7, 20, 0.3);
  margin-bottom: 15px;
}

.tool-status-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.tool-status-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.showcase-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  transition: width 4s linear;
}

/* ==========================================================================
   About Us Page Premium 3D & Animated Styles
   ========================================================================== */

/* Hero Banner Section */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background: var(--black);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6) contrast(1.1);
  transform: scale(1.05);
  transition: transform 1.5s var(--transition);
}

.about-hero:hover .about-hero-img {
  transform: scale(1.01);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(circle at center, transparent 30%, var(--black) 90%);
}

.about-hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  mask-image: radial-gradient(circle at center, white, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, white, transparent 80%);
}

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

.about-hero-content {
  max-width: 720px;
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 7, 20, 0.2);
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(226, 7, 20, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.1s ease;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-top: 15px;
  margin-bottom: 20px;
  transform: translateZ(30px);
}

.about-hero-title span {
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
}

.about-hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 30px;
  transform: translateZ(20px);
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  transform: translateZ(25px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(226, 7, 20, 0.08);
  border: 1px solid rgba(226, 7, 20, 0.25);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
}

/* Legacy Section */
.about-legacy {
  padding: 120px 0;
  position: relative;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.legacy-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 30px;
  border-left: 3px solid var(--red);
  padding-left: 18px;
}

.legacy-stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.legacy-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-ring-box {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.stat-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-fill {
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.legacy-stat-card:hover .ring-fill {
  filter: drop-shadow(0 0 6px var(--red-glow));
}

.legacy-stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  z-index: 1;
}

.legacy-stat-card .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

.legacy-image-container {
  position: relative;
}

.glass-wrapper {
  background: rgba(26, 26, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px);
  transform-style: preserve-3d;
}

.glass-header {
  background: rgba(20, 20, 20, 0.6);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red-dot { background: #FF5F56; }
.yellow-dot { background: #FFBD2E; }
.green-dot { background: #27C93F; }

.glass-title {
  margin-left: 8px;
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* Org Chart Section */
.org-chart-section {
  padding: 120px 0;
  background: var(--black);
}

.org-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.org-tree-container {
  display: flex;
  justify-content: center;
  background: rgba(26, 26, 26, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 50px 24px;
  position: relative;
  overflow: visible;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 920px;
}

.org-tier {
  width: 100%;
}

.org-tier-root {
  display: flex;
  justify-content: center;
}

.org-tier-trunk {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-trunk-stem {
  width: 2px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, var(--red) 100%);
}

.org-trunk-rail {
  width: calc(100% * 2 / 3);
  max-width: 580px;
  height: 2px;
  background: var(--red);
  position: relative;
  box-shadow: 0 0 8px rgba(226, 7, 20, 0.35);
}

.org-junction {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 6px rgba(226, 7, 20, 0.4);
}

.org-junction-left { left: 0; }
.org-junction-center { left: 50%; }
.org-junction-right { left: 100%; }

.org-tier-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -1px;
}

.org-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-col-drop {
  width: 2px;
  height: 28px;
  background: var(--red);
  flex-shrink: 0;
}

.org-col-link {
  width: 2px;
  height: 36px;
  background: var(--red);
  position: relative;
  flex-shrink: 0;
  margin: 4px 0;
}

.org-junction-mid {
  left: 50%;
  top: 50%;
}

.org-node {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px 14px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  width: 100%;
  max-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.org-node-root {
  max-width: 240px;
  border-color: rgba(226, 7, 20, 0.35);
  box-shadow: 0 0 20px rgba(226, 7, 20, 0.15);
}

.org-node:hover,
.org-node.active {
  border-color: var(--red);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(226, 7, 20, 0.25);
  background: rgba(226, 7, 20, 0.03);
}

.node-glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(226, 7, 20, 0.15) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.org-node:hover .node-glow,
.org-node.active .node-glow {
  opacity: 1;
}

.node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(226, 7, 20, 0.12);
  border: 1px solid rgba(226, 7, 20, 0.25);
  color: var(--red);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.node-icon svg {
  width: 18px;
  height: 18px;
}

.node-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.node-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.org-node.active .node-title,
.org-node-root.active .node-title {
  color: var(--red);
}

.node-name {
  font-size: 0.7rem;
  color: var(--gray-mid);
  margin-top: 3px;
  line-height: 1.35;
}

.org-info-container {
  position: relative;
}

.org-info-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  min-height: 380px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.org-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, rgba(226, 7, 20, 0.12), transparent 70%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.org-info-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.org-info-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.org-info-header .badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(226, 7, 20, 0.1);
  border: 1px solid rgba(226, 7, 20, 0.2);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.org-info-body p {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.responsibility-list {
  margin-top: 15px;
  list-style: none;
}

.responsibility-list li {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.responsibility-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

/* ---- Director Message Section (Redesign) ---- */
.director-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.director-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(226, 7, 20, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 30%, rgba(226, 7, 20, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.director-panel {
  position: relative;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.director-panel-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red) 0%, rgba(226, 7, 20, 0.2) 100%);
}

.director-panel-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
}

.director-portrait {
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.director-portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.director-portrait-ring {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(226, 7, 20, 0.2);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
}

.director-portrait-ring::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.director-portrait-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.director-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.3) brightness(0.9);
  transition: filter 0.5s var(--transition), transform 0.5s var(--transition);
}

.director-portrait-wrap:hover .director-portrait-img img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
}

.director-portrait-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-card);
  border: 1px solid rgba(226, 7, 20, 0.35);
  border-radius: 12px;
  padding: 12px 24px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 7, 20, 0.12);
  z-index: 2;
}

.director-portrait-role {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.director-portrait-co {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.director-content {
  padding: 56px 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.director-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
}

.director-heading span {
  color: var(--red);
}

.director-quote {
  position: relative;
  margin: 0 0 36px;
  padding: 0;
  border: none;
}

.director-quote-mark {
  width: 48px;
  height: 48px;
  color: var(--red);
  opacity: 0.35;
  margin-bottom: 16px;
}

.director-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.director-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.director-pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.director-pillar-item:hover {
  border-color: rgba(226, 7, 20, 0.3);
  background: rgba(226, 7, 20, 0.05);
  transform: translateY(-3px);
}

.director-pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(226, 7, 20, 0.1);
  border: 1px solid rgba(226, 7, 20, 0.2);
  color: var(--red);
}

.director-pillar-icon svg {
  width: 18px;
  height: 18px;
}

.director-pillar-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
}

.director-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
}

.director-signature-line {
  width: 48px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.director-signature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.director-signature-text span {
  font-size: 0.82rem;
  color: var(--gray-mid);
}

/* ---- Future Roadmap Section (Redesign) ---- */
.roadmap-section {
  padding: 120px 0;
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 7, 20, 0.35), transparent);
}

.roadmap-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(226, 7, 20, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 64px;
}

.roadmap-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.roadmap-connector {
  display: none;
}

.roadmap-step {
  position: relative;
  display: flex;
  flex-direction: column;
}

.roadmap-step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--red);
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(226, 7, 20, 0.4);
}

.roadmap-step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--transition);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.roadmap-step:hover .roadmap-step-card {
  border-color: rgba(226, 7, 20, 0.35);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(226, 7, 20, 0.12);
  transform: translateY(-6px);
}

.roadmap-step-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.roadmap-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.roadmap-step:hover .roadmap-step-media img {
  transform: scale(1.08);
}

.roadmap-step-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.7) 100%);
  pointer-events: none;
}

.roadmap-step-body {
  padding: 28px 26px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.roadmap-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
}

.roadmap-step-body p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--gray-light);
  flex: 1;
}

/* Desktop roadmap connector line */
@media (min-width: 821px) {
  .roadmap-connector {
    display: block;
    position: absolute;
    top: 100px;
    left: calc(16.66% + 14px);
    right: calc(16.66% + 14px);
    height: 2px;
    z-index: 0;
    pointer-events: none;
  }

  .roadmap-connector-line {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--red), rgba(226, 7, 20, 0.3), var(--red));
    opacity: 0.5;
  }

  .roadmap-connector-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--red);
    box-shadow: 0 0 8px rgba(226, 7, 20, 0.5);
  }

  .roadmap-connector-dot:nth-child(2) { left: 0; }
  .roadmap-connector-dot:nth-child(3) { left: 50%; }
  .roadmap-connector-dot:nth-child(4) { left: 100%; }

  .roadmap-step {
    z-index: 1;
  }
}

/* Responsive Breakpoints for About Page */
@media (max-width: 1100px) {
  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pillars-grid, .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .org-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .org-tier-columns {
    gap: 14px;
  }
  .org-node {
    max-width: 200px;
    padding: 14px 12px 12px;
  }
  .node-title {
    font-size: 0.82rem;
  }
  .roadmap-track {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .director-panel-inner {
    grid-template-columns: 1fr;
  }
  .director-portrait {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .panel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .about-hero-content {
    padding: 30px 20px;
  }
  .director-panel-inner {
    grid-template-columns: 1fr;
  }
  .director-portrait {
    padding: 40px 32px 56px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .director-content {
    padding: 40px 32px 48px;
  }
  .director-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .director-pillar-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 18px;
  }
  .roadmap-track {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .roadmap-connector {
    display: none !important;
  }
  .org-tier-columns {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 280px;
    margin: 0 auto;
  }
  .org-trunk-rail,
  .org-tier-trunk {
    display: none;
  }
  .org-col-drop {
    height: 20px;
  }
  .org-col-link {
    height: 24px;
  }
  .org-node {
    max-width: 100%;
  }
  .org-tree-container {
    padding: 36px 20px;
  }
}

@media (max-width: 600px) {
  .pillars-grid, .tools-grid {
    grid-template-columns: 1fr;
  }
  .legacy-stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .catalog-tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px; /* Placed on the right side for better usability */
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-4px) scale(1.05);
  animation: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  display: block;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .back-to-top {
    bottom: 88px; /* Correctly stack above WhatsApp on mobile */
    right: 28px;  /* Centered above the 48px WhatsApp button (24 + (48-40)/2 = 28px) */
    width: 40px;
    height: 40px;
  }
}
