/* ==========================================================================
   AI LAB TECHNOLOGIES — PREMIUM ABOUT US REDESIGN
   File: css/about.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. COMMON UTILITIES & SHARED STYLES
   -------------------------------------------------------------------------- */
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 30px;
  background: var(--brand-red-light);
  color: var(--brand-red);
  border: 1px solid var(--border-glow);
  margin-bottom: 20px;
}

.text-gradient-red {
  background: linear-gradient(135deg, var(--brand-red), #ff6b5b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible,
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------------------------------
   02. TIER-1 MNC EXECUTIVE ABOUT HERO SHOWCASE (CENTERED SHOWCASE WITH ANIMATION)
   -------------------------------------------------------------------------- */
.abt-exec-hero {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  background-image: radial-gradient(circle at 50% 20%, rgba(223, 42, 25, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
  padding: clamp(16px, 2vw, 28px) 0 clamp(40px, 4.5vw, 60px);
  box-sizing: border-box;
}

[data-theme="dark"] .abt-exec-hero,
.dark .abt-exec-hero {
  background-color: #080d1a;
  background-image: radial-gradient(circle at 50% 20%, rgba(223, 42, 25, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #060913 0%, #0b1120 100%);
}

/* Background Ambient Glows & Centered Animation */
.abt-exec-bg-glow {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(450px, 55vw, 750px);
  height: clamp(300px, 35vw, 480px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.15) 0%, rgba(255, 107, 107, 0.06) 50%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: floatCenterGlow 9s ease-in-out infinite alternate;
}

.abt-exec-bg-glow-secondary {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(400px, 45vw, 650px);
  height: clamp(250px, 30vw, 400px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.08) 0%, rgba(244, 63, 94, 0.03) 60%, transparent 80%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  animation: floatCenterGlow 11s ease-in-out infinite alternate-reverse;
}

@keyframes floatCenterGlow {
  0% {
    transform: translateX(-50%) translateY(0) scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: translateX(-47%) translateY(-20px) scale(1.08);
    opacity: 1;
  }

  100% {
    transform: translateX(-53%) translateY(15px) scale(1.02);
    opacity: 0.85;
  }
}

[data-theme="dark"] .abt-exec-bg-glow,
.dark .abt-exec-bg-glow {
  background: radial-gradient(circle, rgba(223, 42, 25, 0.22) 0%, rgba(223, 42, 25, 0.06) 55%, transparent 80%);
}

.abt-exec-bg-dots {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background-image: radial-gradient(rgba(223, 42, 25, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

[data-theme="dark"] .abt-exec-bg-dots,
.dark .abt-exec-bg-dots {
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
}

.abt-exec-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}

/* Centered Content Wrapper */
.abt-exec-center-wrapper {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow Tag with Subtle Badge Glow */
.abt-exec-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 9999px;
  background: rgba(223, 42, 25, 0.07);
  border: 1px solid rgba(223, 42, 25, 0.22);
  box-shadow: 0 2px 10px rgba(223, 42, 25, 0.08);
  font-size: clamp(0.74rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #df2a19;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: abtBadgePulse 3s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.abt-exec-eyebrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(223, 42, 25, 0.18);
}

[data-theme="dark"] .abt-exec-eyebrow,
.dark .abt-exec-eyebrow {
  background: rgba(223, 42, 25, 0.15);
  border-color: rgba(223, 42, 25, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  color: #ff6b6b;
}

@keyframes abtBadgePulse {

  0%,
  100% {
    border-color: rgba(223, 42, 25, 0.22);
    box-shadow: 0 2px 10px rgba(223, 42, 25, 0.08);
  }

  50% {
    border-color: rgba(223, 42, 25, 0.45);
    box-shadow: 0 4px 18px rgba(223, 42, 25, 0.2);
  }
}

.abt-eyebrow-accent {
  color: #df2a19;
  font-weight: 900;
}

[data-theme="dark"] .abt-eyebrow-accent,
.dark .abt-eyebrow-accent {
  color: #ff6b6b;
}

/* Headline with Dynamic Gradient & Scale */
.abt-exec-h1 {
  font-family: 'Plus Jakarta Sans', var(--font-primary, sans-serif);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin: 0 0 14px 0;
  text-align: center;
  max-width: 880px;
}

[data-theme="dark"] .abt-exec-h1,
.dark .abt-exec-h1 {
  color: #ffffff;
}

/* Animated Shimmer on Highlighted Word */
.abt-exec-highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, #df2a19 0%, #ff4d4d 40%, #c41e0f 70%, #df2a19 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineWord 4.5s ease-in-out infinite;
}

@keyframes shineWord {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Lead Paragraph */
.abt-exec-desc {
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.78;
  color: #475569;
  max-width: 760px;
  margin: 0 auto 26px auto;
  font-weight: 450;
  text-align: center;
}

[data-theme="dark"] .abt-exec-desc,
.dark .abt-exec-desc {
  color: #cbd5e1;
}

/* Action Buttons Centered */
.abt-exec-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  width: 100%;
}

.abt-exec-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #df2a19 0%, #c41e0f 100%);
  color: #ffffff;
  padding: 15px 34px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.32);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.abt-exec-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #eb3524 0%, #d42213 100%);
  box-shadow: 0 14px 32px rgba(223, 42, 25, 0.44);
  color: #ffffff;
}

.abt-exec-btn-primary i {
  transition: transform 0.22s ease;
}

.abt-exec-btn-primary:hover i {
  transform: translateX(4px);
}

.abt-exec-btn-video {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 8px 22px 8px 10px;
  border-radius: 9999px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

[data-theme="dark"] .abt-exec-btn-video,
.dark .abt-exec-btn-video {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.abt-exec-btn-video:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 42, 25, 0.35);
  box-shadow: 0 8px 22px rgba(223, 42, 25, 0.12);
}

[data-theme="dark"] .abt-exec-btn-video:hover,
.dark .abt-exec-btn-video:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(223, 42, 25, 0.45);
}

.abt-exec-play-pulse {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(223, 42, 25, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #df2a19;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  position: relative;
  flex-shrink: 0;
}

[data-theme="dark"] .abt-exec-play-pulse,
.dark .abt-exec-play-pulse {
  background: #1e293b;
  border-color: rgba(223, 42, 25, 0.4);
}

.abt-exec-play-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(223, 42, 25, 0.35);
  animation: pulseAbtRing 2.4s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes pulseAbtRing {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.abt-exec-btn-video:hover .abt-exec-play-pulse {
  background: #df2a19;
  color: #ffffff;
  border-color: #df2a19;
  box-shadow: 0 6px 20px rgba(223, 42, 25, 0.35);
}

.abt-exec-video-meta {
  display: flex;
  flex-direction: column;
}

.abt-video-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

[data-theme="dark"] .abt-video-title,
.dark .abt-video-title {
  color: #ffffff;
}

.abt-video-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  color: #64748b;
}

[data-theme="dark"] .abt-video-subtitle,
.dark .abt-video-subtitle {
  color: #94a3b8;
}

/* Staggered Scroll Entrance Animations */
.abt-exec-center-wrapper.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-exec-center-wrapper.reveal-on-scroll.is-visible,
.abt-exec-center-wrapper.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.abt-exec-center-wrapper.is-visible .abt-exec-eyebrow,
.abt-exec-center-wrapper.is-revealed .abt-exec-eyebrow {
  animation: abtHeroFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.abt-exec-center-wrapper.is-visible .abt-exec-h1,
.abt-exec-center-wrapper.is-revealed .abt-exec-h1 {
  animation: abtHeroFadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.abt-exec-center-wrapper.is-visible .abt-exec-desc,
.abt-exec-center-wrapper.is-revealed .abt-exec-desc {
  animation: abtHeroFadeUp 0.9s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.abt-exec-center-wrapper.is-visible .abt-exec-actions,
.abt-exec-center-wrapper.is-revealed .abt-exec-actions {
  animation: abtHeroFadeUp 0.9s 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes abtHeroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

@keyframes abtHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 640px) {
  .abt-exec-hero {
    padding: 20px 0 40px;
  }

  .abt-exec-h1 {
    font-size: 2.1rem;
  }

  .abt-exec-actions {
    flex-direction: column;
    gap: 16px;
  }

  .abt-exec-btn-primary,
  .abt-exec-btn-video {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Legacy .abt-hero fallback */
.abt-hero {
  position: relative;
  padding: 10px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--hero-bg);
}

.abt-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-grid-line);
  background-size: 40px 40px;
  z-index: 1;
}

.abt-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 2;
  opacity: 0.6;
}

.abt-hero__glow--red {
  width: 500px;
  height: 500px;
  background: var(--brand-red-glow);
  top: -10%;
  right: -10%;
}

.abt-hero__glow--blue {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.15);
  bottom: -10%;
  left: -5%;
}

.abt-hero__inner {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.abt-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 16px;
  background: var(--hero-box-bg);
  border: 1px solid var(--hero-box-border);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: var(--text-secondary);
}

.abt-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.abt-breadcrumb a:hover {
  color: var(--brand-red);
}

.abt-breadcrumb__current {
  color: var(--text-primary);
}

.abt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.abt-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-red);
  animation: pulseDot 2s infinite;
}

.abt-hero__title {
  font-size: clamp(2.0rem, 2vw, 3.875rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hero-title);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.abt-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--hero-desc);
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* Hero Feature Highlights Bullets */
.abt-hero__bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: left;
}

.abt-hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.abt-hero__bullet:hover {
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(223, 42, 25, 0.08);
}

.abt-hero__bullet i {
  color: var(--brand-red);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.abt-hero__bullet strong {
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 680px) {
  .abt-hero__bullets {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.abt-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 0px;
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  .abt-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.abt-hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 40px;
  background: var(--hero-stat-bg);
  border: 1px solid var(--hero-stat-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.abt-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.abt-hero__stat-val,
.abt-hero__stat-suffix {
  font-size: 2.375rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1;
}

.abt-hero__stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* --------------------------------------------------------------------------
   03. WHO WE ARE
   -------------------------------------------------------------------------- */
.abt-who {
  padding: 20px 0;
  background: var(--bg-surface);
}

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

.abt-who__title {
  font-size: clamp(1.875rem, 2.5vw, 2.625rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.abt-who__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.abt-who__checklist {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 14px;
}

.abt-who__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.abt-who__checklist li:hover {
  background: var(--bg-card);
  border-color: rgba(223, 42, 25, 0.35);
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.09);
  transform: none;
}

.abt-who__checklist i {
  color: var(--brand-red, #df2a19);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.abt-who__video-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--hero-box-shadow);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.abt-who__video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.abt-who__video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.abt-who__video-wrap:hover .abt-who__video-poster {
  opacity: 0.6;
}

.abt-who__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(223, 42, 25, 0.9);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  /* Visual center for play icon */
  box-shadow: 0 0 30px rgba(223, 42, 25, 0.4);
  transition: transform 0.3s, background 0.3s;
}

.abt-who__video-wrap:hover .abt-who__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--brand-red);
}

.abt-who__video-footer {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
}

.abt-who__video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--brand-red);
  text-decoration: none;
  background: var(--brand-red-light);
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.3s;
}

.abt-who__video-badge:hover {
  background: rgba(223, 42, 25, 0.15);
}


/* --------------------------------------------------------------------------
   03b. OUR JOURNEY (VERTICAL TIMELINE)
   -------------------------------------------------------------------------- */
.abt-journey {
  padding: 10px 0;
  background: #f8fafc;
  /* Very light cool grey */
  position: relative;
}

html[data-theme="dark"] .abt-journey {
  background: var(--bg-surface);
}

.abt-journey__header {
  text-align: center;
  margin-bottom: 10px;
}

.abt-journey__header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--text-main);
}

.abt-journey__header h2 .text-gradient-red {
  color: #ff6b5b;
  background: none;
  -webkit-text-fill-color: initial;
}

.abt-journey__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

@media (max-width: 991px) {
  .abt-journey__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
  }
}

/* Timeline Left */
.abt-journey__timeline {
  position: relative;
  padding-left: 20px;
}

.abt-journey__timeline::before {
  content: '';
  position: absolute;
  left: 211px;
  top: 15px;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
  /* Light line */
}

html[data-theme="dark"] .abt-journey__timeline::before {
  background: var(--border-subtle);
}

@media (max-width: 575px) {
  .abt-journey__timeline::before {
    left: 10px;
  }
}

.timeline-progress {
  position: absolute;
  left: 211px;
  top: 15px;
  width: 2px;
  background: var(--brand-blue);
  z-index: 1;
  height: 0%;
  /* Updated via JS */
  transition: height 0.1s ease-out;
}

@media (max-width: 575px) {
  .timeline-progress {
    left: 10px;
  }
}

.journey-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.journey-year {
  width: 180px;
  text-align: right;
  padding-right: 30px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .journey-year {
    display: none;
  }
}

.journey-year .year {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.journey-year .title {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.journey-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f8fafc;
  border: 2px solid #cbd5e1;
  position: relative;
  z-index: 2;
  margin-top: 10px;
  margin-right: 30px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

html[data-theme="dark"] .journey-dot {
  background: var(--bg-surface);
  border-color: var(--border-subtle);
}

@media (max-width: 575px) {
  .journey-dot {
    margin-right: 15px;
  }
}

.journey-item.active .journey-dot {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.2);
}

.journey-content {
  flex-grow: 1;
  padding-top: 4px;
}

.journey-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.journey-content-mobile-title {
  display: none;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  font-size: 1.0625rem;
}

@media (max-width: 575px) {
  .journey-content-mobile-title {
    display: block;
  }
}

/* Image Right - Static Sticky on Scroll */
.abt-journey__image {
  position: -webkit-sticky;
  position: sticky;
  top: 105px;
  align-self: start;
  width: 100%;
  z-index: 5;
  will-change: transform;
}

.journey-img-sticky {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.journey-img-sticky:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.journey-img-sticky img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

html[data-theme="dark"] .journey-img-sticky,
.dark .journey-img-sticky {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .abt-journey__image {
    position: relative;
    top: 0;
    align-self: stretch;
  }

  .journey-img-sticky {
    position: relative;
    top: 0;
  }
}

/* --------------------------------------------------------------------------
   04. MISSION & VISION
   -------------------------------------------------------------------------- */
.abt-mv {
  padding: clamp(15px, 2.5vw, 30px) 0;
  background: var(--bg-page);
  position: relative;
}

.abt-mv__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(12px, 2vw, 20px);
}

.abt-mv__title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.abt-mv__subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

.abt-mv__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}

/* Premium Compact Card Architecture */
.abt-mv__card {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 16px;
  padding: clamp(18px, 1.8vw, 24px) clamp(16px, 1.6vw, 22px);
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}

/* Card Top Gradient Indicator Bar */
.abt-mv__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent-grad, linear-gradient(90deg, #df2a19, #f97326));
  opacity: 0.95;
  transition: height 0.3s ease, opacity 0.3s ease;
}

/* Ambient Subtle Card Glow */
.abt-mv__card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--card-accent-glow, rgba(223, 42, 25, 0.06)), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.abt-mv__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px var(--card-accent-border, rgba(223, 42, 25, 0.25));
  border-color: var(--card-accent-border, rgba(223, 42, 25, 0.25));
}

.abt-mv__card:hover::before {
  height: 4.5px;
  opacity: 1;
}

.abt-mv__card:hover::after {
  opacity: 1;
}

/* Standard Brand Accent for All Cards */
.abt-mv__card {
  --card-accent-grad: linear-gradient(90deg, var(--brand-red), #f97326);
  --card-accent-glow: rgba(223, 42, 25, 0.08);
  --card-accent-border: rgba(223, 42, 25, 0.25);
}

/* Card Header: Icon Next to Title */
.abt-mv__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.abt-mv__title-wrap {
  flex: 1;
  min-width: 0;
}

.abt-mv__card-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-red);
  margin-bottom: 2px;
}

/* Icon Ring Styling - Standard Brand Red */
.abt-mv__icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-bottom: 0;
  background: var(--brand-red-light, rgba(223, 42, 25, 0.08));
  border: 1px solid rgba(223, 42, 25, 0.2);
  color: var(--brand-red);
  box-shadow: 0 3px 10px rgba(223, 42, 25, 0.08);
  transition: box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.abt-mv__card:hover .abt-mv__icon-ring {
  transform: none;
  background: rgba(223, 42, 25, 0.14);
  border-color: rgba(223, 42, 25, 0.35);
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.16);
}

/* Card Title */
.abt-mv__card-title {
  font-size: 1.18rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

/* Card Description */
.abt-mv__card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.52;
  margin-bottom: 12px;
  min-height: 42px;
}

/* Card Checklist (Mission & Vision) */
.abt-mv__card-list,
.abt-mv__card-bullets {
  list-style: none;
  padding: 12px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px dashed var(--border-subtle);
  margin-top: auto;
}

.abt-mv__card-list li,
.abt-mv__card-bullets li,
.abt-mv__card-bullets span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 7px 11px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.abt-mv__card-list li:hover,
.abt-mv__card-bullets li:hover,
.abt-mv__card-bullets span:hover {
  background: var(--bg-card);
  border-color: rgba(223, 42, 25, 0.25);
  transform: none;
}

.abt-mv__card-list li i,
.abt-mv__card-bullets li i,
.abt-mv__card-bullets span i {
  color: var(--brand-red);
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* Values Grid (Core Values) */
.abt-mv__values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  padding: 12px 0 0 0;
  border-top: 1px dashed var(--border-subtle);
  margin-top: auto;
}

.abt-mv__value-chip {
  background: var(--bg-surface);
  padding: 7px 10px;
  min-height: 38px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-subtle);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.abt-mv__value-chip:hover {
  background: var(--bg-card);
  border-color: rgba(223, 42, 25, 0.35);
  color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -3px rgba(223, 42, 25, 0.16);
}

.abt-mv__value-chip i {
  color: var(--brand-red);
  font-size: 0.82rem;
  width: 15px;
  text-align: center;
  flex-shrink: 0;
}

/* Dark Mode Overrides */
html[data-theme="dark"] .abt-mv__card,
body.dark-theme .abt-mv__card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .abt-mv__card-list,
html[data-theme="dark"] .abt-mv__card-bullets,
html[data-theme="dark"] .abt-mv__values-grid,
body.dark-theme .abt-mv__card-list,
body.dark-theme .abt-mv__card-bullets,
body.dark-theme .abt-mv__values-grid {
  border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .abt-who__checklist li,
body.dark-theme .abt-who__checklist li,
html[data-theme="dark"] .abt-mv__card-list li,
html[data-theme="dark"] .abt-mv__card-bullets li,
html[data-theme="dark"] .abt-mv__card-bullets span,
html[data-theme="dark"] .abt-mv__value-chip,
body.dark-theme .abt-mv__card-list li,
body.dark-theme .abt-mv__card-bullets li,
body.dark-theme .abt-mv__card-bullets span,
body.dark-theme .abt-mv__value-chip {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] .abt-who__checklist li:hover,
body.dark-theme .abt-who__checklist li:hover,
html[data-theme="dark"] .abt-mv__card-list li:hover,
html[data-theme="dark"] .abt-mv__card-bullets li:hover,
html[data-theme="dark"] .abt-mv__card-bullets span:hover,
html[data-theme="dark"] .abt-mv__value-chip:hover,
body.dark-theme .abt-mv__card-list li:hover,
body.dark-theme .abt-mv__card-bullets li:hover,
body.dark-theme .abt-mv__card-bullets span:hover,
body.dark-theme .abt-mv__value-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(223, 42, 25, 0.4);
}


/* --------------------------------------------------------------------------
   05. WHAT WE DO (CAPABILITIES)
   -------------------------------------------------------------------------- */
.abt-capabilities {
  padding: 20px 0;
  background: var(--bg-surface);
}

.abt-capabilities__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.abt-capabilities__header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.abt-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.abt-cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 26px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.abt-cap-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border-glow);
}

.abt-cap-card__icon {
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  background: var(--brand-red-light, rgba(223, 42, 25, 0.08));
  border: 1px solid rgba(223, 42, 25, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand-red);
  margin-bottom: 0 !important;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.abt-cap-card:hover .abt-cap-card__icon {
  background: var(--brand-red);
  color: #fff;
  transform: none;
}

.abt-cap-card h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0 !important;
  line-height: 1.3;
}

.abt-cap-card>*:not(.abt-cap-card__icon):not(h3) {
  grid-column: 1 / -1;
}

.abt-cap-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   06. INDUSTRY EXPERTISE
   -------------------------------------------------------------------------- */
.abt-expertise {
  padding: 80px 0;
  background: var(--bg-page);
}

.abt-expertise__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.abt-expertise__header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.abt-expertise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.abt-expertise__card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.abt-expertise__card:hover {
  background: var(--bg-subtle);
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.abt-expertise__card-icon {
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-red-light, rgba(223, 42, 25, 0.08));
  border: 1px solid rgba(223, 42, 25, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand-red);
  margin-bottom: 0 !important;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.abt-expertise__card:hover .abt-expertise__card-icon {
  background: var(--brand-red);
  color: #fff;
}

.abt-expertise__card h4 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0 !important;
  line-height: 1.3;
}

.abt-expertise__card-tag {
  grid-column: 1 / -1;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
  margin-bottom: 4px;
}

.abt-expertise__card p {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   07. WHY AI LAB TECHNOLOGIES
   -------------------------------------------------------------------------- */
.abt-why {
  padding: 20px 0;
  background: var(--bg-dark-section);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.abt-why__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.abt-why__header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.abt-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.abt-why__card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.abt-why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.abt-why__card-icon {
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-red-light, rgba(223, 42, 25, 0.08));
  border: 1px solid rgba(223, 42, 25, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brand-red);
  margin-bottom: 0 !important;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.abt-why__card:hover .abt-why__card-icon {
  background: var(--brand-red);
  color: #fff;
}

.abt-why__card h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0 !important;
  line-height: 1.3;
}

.abt-why__card>*:not(.abt-why__card-icon):not(h3) {
  grid-column: 1 / -1;
}

.abt-why__card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 20px;
}

.abt-why__card-metric {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.abt-why__metric-val {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
}

.abt-why__metric-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* --------------------------------------------------------------------------
   08. OUR APPROACH (TIMELINE)
   -------------------------------------------------------------------------- */
.abt-approach {
  padding: 10px 0;
  background: var(--bg-page);
}

.abt-approach__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.abt-approach__header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.abt-approach__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connecting line for desktop */
@media (min-width: 992px) {
  .abt-approach__timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border-subtle);
    z-index: 1;
  }
}

.abt-approach__step {
  position: relative;
  z-index: 2;
}

.abt-approach__step-num {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px var(--bg-page);
}

.abt-approach__step-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
}

.abt-approach__step-icon {
  grid-column: 1;
  grid-row: 1;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-red-light, rgba(223, 42, 25, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brand-red);
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.abt-approach__step-content h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.0625rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0 !important;
  line-height: 1.3;
}

.abt-approach__step-content>*:not(.abt-approach__step-icon):not(h3) {
  grid-column: 1 / -1;
}

.abt-approach__step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 12px;
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   09. TECHNOLOGY & INNOVATION
   -------------------------------------------------------------------------- */
.abt-tech {
  padding: 80px 0;
  background: var(--bg-surface);
}

.abt-tech__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.abt-tech__header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.abt-tech__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.abt-tech__category {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.abt-tech__category h4 {
  font-size: 1.0625rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.abt-tech__category h4 i {
  color: var(--text-muted);
}

.abt-tech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.abt-tech__tags span {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.abt-tech__category:hover .abt-tech__tags span {
  border-color: var(--border-medium);
}


/* --------------------------------------------------------------------------
   10. GLOBAL PRESENCE
   -------------------------------------------------------------------------- */
.abt-global {
  padding: 80px 0;
  background: var(--bg-page);
}

.abt-global__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.abt-global__header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.abt-global__card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.abt-global__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.abt-global__card:hover::before {
  opacity: 1;
}

.abt-global__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(229, 9, 20, 0.2);
}

.abt-global__card-icon {
  width: 70px;
  height: 70px;
  background: rgba(229, 9, 20, 0.08);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  transition: transform 0.5s cubic-bezier(0.32, 1.56, 0.64, 1), background 0.4s, color 0.4s;
}

.abt-global__card:hover .abt-global__card-icon {
  transform: none;
  background: var(--brand-red);
  color: var(--text-white, #ffffff);
}

.abt-global__card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.abt-global__card h3 {
  font-size: 1.375rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.abt-global__card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.abt-global__card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  padding: 6px 12px;
  border-radius: 20px;
}


/* --------------------------------------------------------------------------
   11. CLIENT LOGOS MARQUEE (World-Class Dual-Track Infinite Scroller)
   -------------------------------------------------------------------------- */
.abt-clients {
  padding: clamp(40px, 1vw, 80px) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.abt-clients__header {
  text-align: center;
  margin-bottom: clamp(10px, 4vw, 50px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.abt-clients__header .section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

[data-theme="dark"] .abt-clients__header .section-chip {
  background: rgba(220, 38, 38, 0.18);
  color: #f87171;
}

.abt-clients__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.abt-clients__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto;
}

.abt-clients__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  user-select: none;
  padding: 12px 0;
}

/* Premium Gradient Edge Masks */
.abt-clients__marquee::before,
.abt-clients__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 12vw, 200px);
  z-index: 3;
  pointer-events: none;
}

.abt-clients__marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface) 20%, transparent 100%);
}

.abt-clients__marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-surface) 20%, transparent 100%);
}

/* Dual-Track Layout */
.abt-clients__track {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  will-change: transform;
  animation: scrollClientsMarquee 40s linear infinite;
  padding-right: 24px;
}

.abt-clients__marquee:hover .abt-clients__track {
  animation-play-state: paused;
}

/* Premium Logo Card Presentation */
.abt-client-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 195px;
  padding: 14px 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.abt-client-card img {
  height: 44px;
  max-width: 145px;
  width: auto;
  object-fit: contain;
  filter: contrast(105%);
  transition: transform 0.3s ease, filter 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}

.abt-client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.14), 0 2px 6px rgba(0, 0, 0, 0.06);
}

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

/* Dark Mode Adaptation */
[data-theme="dark"] .abt-client-card {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .abt-client-card:hover {
  border-color: #dc2626;
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.28), 0 0 15px rgba(220, 38, 38, 0.15);
}

/* Bulletproof Infinite Continuous Loop */
@keyframes scrollClientsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .abt-client-card {
    height: 66px;
    min-width: 160px;
    padding: 10px 20px;
  }

  .abt-client-card img {
    height: 36px;
    max-width: 120px;
  }

  .abt-clients__track {
    gap: 16px;
    padding-right: 16px;
  }
}


/* --------------------------------------------------------------------------
   12. ENTERPRISE CTA
   -------------------------------------------------------------------------- */
.abt-cta {
  padding: 80px 0;
  background: var(--bg-page);
}

.abt-cta__box {
  background: var(--hero-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.abt-cta__box h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.abt-cta__box p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.abt-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   13. RESPONSIVE QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

  .abt-who__grid,
  .abt-global__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt-mv__pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .abt-approach__timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .abt-hero {
    padding: 21px 0 19px;
  }

  .abt-hero__stats {
    gap: 20px;
    padding: 20px;
  }

  .abt-approach__timeline {
    grid-template-columns: 1fr;
  }

  .abt-approach__step-num {
    margin-bottom: 16px;
  }

  .abt-cta__box {
    padding: 50px 20px;
  }
}

@media (max-width: 640px) {
  .abt-who__checklist {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .abt-mv__card {
    padding: 24px 18px;
  }

  .abt-mv__values-grid {
    grid-template-columns: 1fr;
  }
}