/* â”€â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* VARIABLES  */
:root {
  --charcoal: #1A1A1A;
  --charcoal2: #111111;
  --charcoal3: #242424;
  --crimson: #F6BE22;
  --crimson-dark: #D4A010;
  --crimson-light: rgba(246, 190, 34, 0.08);
  --crimson-glow: rgba(246, 190, 34, 0.30);
  --crimson-border: rgba(246, 190, 34, 0.40);
  --white: #FFFFFF;
  --gray: #F7F7F7;
  --gray2: #F0F0F0;
  --dark: #1A1A1A;
  --mid: #444444;
  --muted: #6B6B6B;
  --light-muted: #9A9A9A;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.12);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --nav-h: 80px;
  --section-pad: 120px;
  --radius: 10px;
  --transition: 0.28s ease;
  /* Blue accent */
  --blue: #F6BE22;
  --blue-dark: #D4A010;
  --blue-light: rgba(37, 99, 235, 0.08);
  --blue-glow: rgba(246, 190, 34, 0.30);
  --blue-border: rgba(37, 99, 235, 0.40);
}

/* â”€â”€â”€ SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* PartnerCentric-style yellow gradient text */
.text-gradient {
  background: linear-gradient(135deg, #F6BE22 0%, #D4A010 60%, #B88A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--crimson);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-pad) 0;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 4px;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--crimson);
  color: #FFFFFF;
  box-shadow: 0 2px 12px var(--crimson-glow);
}

.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px var(--crimson-glow);
}

.btn-primary:active,
.btn-primary.btn-pressed {
  background: #000000 !important;
  color: #ffffff !important;
  transform: translateY(0) scale(0.97) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
  transition: none !important;
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0, 0, 0, 0.25);
}

.btn-ghost:hover {
  border-color: var(--crimson);
  color: var(--crimson);
  background: rgba(37, 99, 235, 0.04);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(0, 0, 0, 0.20);
}

.btn-outline:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.btn-outline:active,
.btn-outline.btn-pressed {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  transform: scale(0.97) !important;
  transition: none !important;
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: 4px;
  padding: 15px;
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* â”€â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  cursor: pointer;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-transform: uppercase;
}

.logo-text .accent {
  color: var(--crimson);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.77rem;
  font-weight: 600;
  color: #444;
  transition: color var(--transition);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--crimson);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--crimson);
}

.nav-cta {
  background: var(--crimson) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.77rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 12px var(--crimson-glow);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  background: var(--crimson-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--crimson-glow) !important;
}

.nav-cta:active,
.nav-cta.btn-pressed {
  background: #000000 !important;
  color: #ffffff !important;
  transform: scale(0.96) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
  transition: none !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #F5F5F5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#lightningCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}


.hero-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Dynamic sequential lines rendered via pseudo-elements */
.hero-grid::before,
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 200, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 200, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridFadeBase 6s ease-in-out infinite;
}

/* Individual animated line layers â€” each offset in time */
.hero-line-h,
.hero-line-v {
  position: absolute;
  background: rgba(180, 210, 255, 0.07);
  animation: lineFlash var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-line-h {
  left: 0;
  right: 0;
  height: 1px;
}

.hero-line-v {
  top: 0;
  bottom: 0;
  width: 1px;
}

@keyframes gridFadeBase {

  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.85;
  }
}

@keyframes lineFlash {

  0%,
  100% {
    opacity: 0;
    background: rgba(160, 200, 255, 0.02);
  }

  45%,
  55% {
    opacity: 1;
    background: rgba(180, 215, 255, 0.18);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(246, 190, 34, 0.20);
  animation: particleFade var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes particleFade {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-20px);
  }
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(24px, -24px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* â”€â”€â”€ HERO SPLIT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 80px;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 52px;
  left: 20px;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.06);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}

.hero-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--crimson);
}

.hero-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.ht-fade {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(20, 20, 30, 0.65);
  letter-spacing: 0.08em;
  display: block;
}

.ht-main {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 18px;
}

.ht-dash {
  display: inline-block;
  width: 56px;
  height: 5px;
  background: var(--crimson);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(246, 190, 34, 0.45);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.ht-accent {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  display: block;
}

.ht-accent .text-gradient {
  background: linear-gradient(135deg, #F6BE22 0%, #D4A010 60%, #B88A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
  color: rgba(0, 0, 0, 0.50);
  line-height: 1.80;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 440px;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  padding-top: 32px;
}

.stat {
  text-align: left;
  padding: 0 32px 0 0;
}

.stat:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.stat span:nth-child(2) {
  font-size: 1.5rem;
  color: var(--crimson);
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.60rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.38);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(0, 0, 0, 0.10);
  margin-right: 32px;
  flex-shrink: 0;
}

/* RIGHT SIDE â€” CSS geometric composition */
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

/* Large PartnerCentric-yellow diagonal polygon */
.hero-shape-main {
  position: absolute;
  inset: 0;
  background: #F6BE22;
  clip-path: polygon(32% 0%, 100% 0%, 100% 100%, 8% 100%);
}

/* Slightly offset darker inner shape for depth */
.hero-shape-inner {
  position: absolute;
  inset: 0;
  background: #D4A010;
  clip-path: polygon(44% 0%, 100% 0%, 100% 100%, 22% 100%);
  opacity: 0.55;
}

/* Animated ring 1 */
.hero-shape-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}

/* Animated ring 2 */
.hero-shape-ring2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite 1s;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
}

/* Horizontal bars */
.hero-shape-bar {
  position: absolute;
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  top: 36%;
  left: 38%;
  border-radius: 2px;
  transform: rotate(-8deg);
}

.hero-shape-bar2 {
  position: absolute;
  width: 48px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  top: 40%;
  left: 42%;
  border-radius: 2px;
  transform: rotate(-8deg);
}

/* Monogram text */
.hero-shape-mono {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.12);
  letter-spacing: -0.06em;
  user-select: none;
  pointer-events: none;
}

/* SCROLL */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: rgba(0, 0, 0, 0.28);
  font-size: 0.60rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* â”€â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-strip {
  background: #1A1A1A;
  border-top: 2px solid rgba(246, 190, 34, 0.30);
  border-bottom: 2px solid rgba(246, 190, 34, 0.30);
  overflow: hidden;
  padding: 22px 0;
  white-space: nowrap;
  position: relative;
}

.marquee-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1A1A1A 0%, transparent 6%, transparent 94%, #1A1A1A 100%);
  z-index: 2;
  pointer-events: none;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.marquee-track span:not(.dot) {
  background: linear-gradient(90deg, #F6BE22 0%, #F9D060 50%, #F6BE22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(246, 190, 34, 0.35));
}

.marquee-track .dot {
  color: rgba(255, 255, 255, 0.25);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
  font-size: 1.2rem;
  line-height: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* â”€â”€â”€ ABOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-desc strong {
  color: var(--dark);
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--gray);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--transition);
}

.about-card:hover {
  border-color: var(--crimson-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(246, 190, 34, 0.08);
}

.about-card:hover .about-card-icon i {
  color: var(--crimson);
}

.about-card-icon {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #AAAAAA;
  transition: var(--transition);
}

.about-card-icon i {
  color: #AAAAAA;
  transition: color var(--transition);
}

.about-card-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.about-card-text {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
}

/* â”€â”€â”€ INDUSTRIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.industries {
  background: var(--gray2);
  border-top: 1px solid var(--border);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 30px 22px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.4s ease;
}

.industry-card:hover {
  border-color: var(--crimson-border);
  box-shadow: 0 8px 40px rgba(246, 190, 34, 0.08);
  transform: translateY(-5px);
}

.industry-card:hover::after {
  width: 100%;
}

.industry-card:hover .industry-icon i {
  color: var(--crimson);
}

.industry-num {
  font-family: var(--font-display);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--crimson);
  margin-bottom: 18px;
  opacity: 0.6;
}

.industry-icon {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.industry-icon i {
  color: #BBBBBB;
  transition: color 0.28s ease;
}

.industry-name {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.industry-desc {
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.7;
}

.industry-hover-line {
  display: none;
}

/* â”€â”€â”€ CAPABILITIES (SPLIT LAYOUT) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.capabilities {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.cap-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.cap-split-left {
  position: sticky;
  top: 100px;
}

.cap-intro {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.cap-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.cap-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--mid);
}

.cap-highlight i {
  color: var(--crimson);
  font-size: 0.68rem;
}

/* Red keyword highlights in capabilities */
.cap-keyword {
  color: var(--crimson);
  font-weight: 700;
}

.capabilities-list {
  display: flex;
  flex-direction: column;
}

.cap-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: padding-left var(--transition), background var(--transition);
}

.cap-item:first-child {
  border-top: 1px solid var(--border);
}

.cap-item:hover {
  padding-left: 10px;
}

.cap-item:hover .cap-title {
  color: var(--crimson);
}

.cap-item:hover .cap-arrow {
  color: var(--crimson);
}

.cap-number {
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #CCCCCC;
}

.cap-title {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color var(--transition);
  letter-spacing: -0.02em;
}

.cap-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

.cap-arrow {
  font-size: 1.1rem;
  color: #CCCCCC;
  transition: color var(--transition);
}

/* â”€â”€â”€ SOLUTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.solutions {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sol-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}

.sol-card:hover {
  border-color: var(--crimson-border);
  box-shadow: 0 12px 50px rgba(37, 99, 235, 0.07);
  transform: translateY(-5px);
}

.sol-card:hover::before {
  transform: scaleX(1);
}

.sol-card:hover .sol-icon i {
  color: var(--crimson);
}

.sol-card>* {
  position: relative;
  z-index: 1;
}

.sol-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sol-icon {
  font-size: 1.1rem;
}

.sol-icon i {
  color: #BBBBBB;
  transition: color var(--transition);
}

.sol-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 3px 12px;
  border-radius: 2px;
  background: var(--gray);
}

.sol-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.sol-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.sol-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #AAAAAA;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap 0.25s;
}

.sol-card:hover .sol-link {
  color: var(--crimson);
  gap: 10px;
}

/* â”€â”€â”€ SOLUTIONS CAROUSEL (v2) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sol2-section {
  background: #0D0D0D;
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}

.sol2-header {
  text-align: center;
  margin-bottom: 60px;
}

.sol2-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.40);
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.8;
}

/* Wrap holds stage + arrow buttons */
.sol2-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* The visible window â€” overflow hidden clips side cards */
.sol2-stage {
  width: 100%;
  max-width: 1300px;
  overflow: hidden;
  padding: 60px 0;
}

/* Scrollable flex row â€” JS translates via marginLeft */
.sol2-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.35, 1);
  will-change: transform;
}

/* â”€â”€ CARD â”€â”€ */
.sol2-card {
  flex: 0 0 820px;
  min-height: 440px;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.35, 1),
    opacity 0.55s ease,
    box-shadow 0.55s ease;
  /* Default: dimmed side card */
  transform: scale(0.86);
  opacity: 0.38;
  cursor: pointer;
  user-select: none;
}

.sol2-card.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), 0 0 0 1.5px rgba(246, 190, 34, 0.25);
  cursor: default;
}

/* Card immediately next to active â€” slightly more visible */
.sol2-card.adj {
  transform: scale(0.92);
  opacity: 0.60;
}

/* â”€â”€ LEFT PANEL â€” image placeholder â”€â”€ */
.sol2-img {
  flex: 0 0 45%;
  background: #141414;
  position: relative;
  overflow: hidden;
}

.sol2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sol2-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.12);
  border: 2px dashed rgba(255, 255, 255, 0.07);
  margin: 20px;
  border-radius: 10px;
}

.sol2-img-placeholder i {
  font-size: 3rem;
  color: rgba(246, 190, 34, 0.20);
}

.sol2-img-placeholder span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
}

/* â”€â”€ RIGHT PANEL â€” content â”€â”€ */
.sol2-content {
  flex: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: #1A1A1A;
}

.sol2-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sol2-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: rgba(255, 255, 255, 0.22);
}

.sol2-tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0D0D0D;
  background: #F6BE22;
  padding: 4px 14px;
  border-radius: 3px;
}

.sol2-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin: 0;
}

.sol2-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.80;
  margin: 0;
}

.sol2-cta {
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 28px;
  font-size: 0.76rem;
}

/* â”€â”€ ARROWS â”€â”€ */
.sol2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(246, 190, 34, 0.35);
  background: rgba(246, 190, 34, 0.06);
  color: #F6BE22;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  backdrop-filter: blur(6px);
}

.sol2-arrow:hover {
  background: #F6BE22;
  border-color: #F6BE22;
  color: #0D0D0D;
  transform: translateY(-50%) scale(1.08);
}

.sol2-prev {
  left: 20px;
}

.sol2-next {
  right: 20px;
}

/* â”€â”€ DOTS â”€â”€ */
.sol2-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 20px;
}

.sol2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.sol2-dot.active {
  background: #F6BE22;
  transform: scale(1.4);
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 900px) {
  .sol2-card {
    flex: 0 0 90vw;
    min-height: auto;
    flex-direction: column;
  }

  .sol2-img {
    flex: 0 0 200px;
  }

  .sol2-content {
    padding: 32px 24px;
  }

  .sol2-prev {
    left: 4px;
  }

  .sol2-next {
    right: 4px;
  }
}


.book {
  background: var(--gray);
  border-top: 1px solid var(--border);
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

.book-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.book-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.90rem;
  color: var(--mid);
}

.perk-dot {
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
  flex-shrink: 0;
}

.consult-form {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
}

.consult-form::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--crimson);
  margin-bottom: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #666;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BBBBBB;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #fff;
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px var(--crimson-light);
}

.form-success {
  display: none;
  text-align: center;
  color: #166534;
  font-weight: 600;
  padding: 14px;
  background: rgba(22, 101, 52, 0.07);
  border-radius: 6px;
  border: 1px solid rgba(22, 101, 52, 0.15);
}

/* â”€â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact {
  background: var(--gray2);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  font-size: 0.95rem;
  margin-top: 4px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--crimson);
}

.contact-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 6px;
}

.contact-val {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.75;
}

.contact-link {
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--crimson);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border2);
}

.map-wrapper iframe {
  display: block;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  background: var(--charcoal2);
  border-top: 2px solid rgba(246, 190, 34, 0.25);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--crimson);
  color: var(--crimson);
  box-shadow: 0 0 12px var(--crimson-glow);
}

.footer-links-group {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--crimson);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
  gap: 12px;
}

.footer .logo-text {
  color: var(--white);
}

.footer .logo-text .accent {
  color: var(--crimson);
}

/* â”€â”€â”€ REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-index="1"] {
  transition-delay: 0.07s;
}

.reveal[data-index="2"] {
  transition-delay: 0.14s;
}

.reveal[data-index="3"] {
  transition-delay: 0.21s;
}

.reveal[data-index="4"] {
  transition-delay: 0.28s;
}

.reveal[data-index="5"] {
  transition-delay: 0.35s;
}

.reveal[data-index="6"] {
  transition-delay: 0.42s;
}

.reveal[data-index="7"] {
  transition-delay: 0.49s;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cap-split {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cap-split-left {
    position: static;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 0 24px;
  }

  .stat-divider {
    display: none;
  }

  .cap-item {
    grid-template-columns: 40px 1fr;
  }

  .cap-arrow {
    display: none;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 32px;
  }

  .consult-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 52px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .nav-inner {
    padding: 0 20px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROFESSIONAL ANIMATIONS â€” full-page suite
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ 1. Enhanced reveal (fade-up) â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cascading stagger via data-index */
.reveal[data-index="0"] {
  transition-delay: 0.05s;
}

.reveal[data-index="1"] {
  transition-delay: 0.13s;
}

.reveal[data-index="2"] {
  transition-delay: 0.20s;
}

.reveal[data-index="3"] {
  transition-delay: 0.27s;
}

.reveal[data-index="4"] {
  transition-delay: 0.34s;
}

.reveal[data-index="5"] {
  transition-delay: 0.41s;
}

.reveal[data-index="6"] {
  transition-delay: 0.48s;
}

.reveal[data-index="7"] {
  transition-delay: 0.55s;
}

/* â”€â”€ 2. Hero title word-by-word entrance â”€â”€ */
.hero-title .ht-fade,
.hero-title .ht-main,
.hero-title .ht-accent {
  display: block;
  opacity: 0;
  transform: translateY(40px) skewY(2deg);
  animation: heroWordIn 0.80s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title .ht-fade {
  animation-delay: 0.15s;
}

.hero-title .ht-main:first-of-type {
  animation-delay: 0.30s;
}

.hero-title .ht-accent:first-of-type {
  animation-delay: 0.50s;
}

.hero-title .ht-main:last-of-type {
  animation-delay: 0.65s;
}

.hero-title .ht-accent:last-of-type {
  animation-delay: 0.80s;
}

@keyframes heroWordIn {
  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

/* â”€â”€ 3. Hero subtitle + buttons fade-slide â”€â”€ */
.hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

.hero-actions {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}

.hero-stats {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.30s forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€ 4. Hero right panel slide-in â”€â”€ */
.hero-right {
  opacity: 0;
  transform: translateX(60px);
  animation: heroRightIn 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes heroRightIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* â”€â”€ 5. Hero label sweep-in â”€â”€ */
.hero-label {
  opacity: 0;
  letter-spacing: 0.3em;
  animation: labelSweep 0.7s ease 0.1s forwards;
}

@keyframes labelSweep {
  to {
    opacity: 1;
    letter-spacing: 0.18em;
  }
}

/* â”€â”€ 6. Scroll indicator bounce â”€â”€ */
.hero-scroll-indicator {
  animation: scrollBounce 2.5s ease-in-out 2s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }

  50% {
    opacity: 0.85;
    transform: translateY(8px);
  }
}

/* â”€â”€ 7. Stat numbers count-up glow on trigger â”€â”€ */
.stat-num.counting {
  color: #F6BE22;
  text-shadow: 0 0 18px rgba(246, 190, 34, 0.45);
  transition: color 0.3s, text-shadow 0.3s;
}

/* â”€â”€ 8. Section label animated underline â”€â”€ */
.section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  vertical-align: middle;
}

.section-label.visible::after,
.reveal.visible .section-label::after {
  width: 32px;
}

/* â”€â”€ 9. About cards pop stagger â”€â”€ */
.about-card {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.about-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
}

.about-card:nth-child(1) {
  transition-delay: 0.05s;
}

.about-card:nth-child(2) {
  transition-delay: 0.14s;
}

.about-card:nth-child(3) {
  transition-delay: 0.22s;
}

.about-card:nth-child(4) {
  transition-delay: 0.30s;
}

/* â”€â”€ 10. Industry card enhanced hover â”€â”€ */
.industry-card {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.10);
  border-color: var(--crimson-border);
}

.industry-card:hover .industry-hover-line {
  width: 100%;
}

.industry-card:hover .industry-icon i {
  transform: scale(1.25) rotate(-6deg);
  color: var(--crimson);
}

.industry-icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}

/* â”€â”€ 11. Button shimmer wave â”€â”€ */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover::after {
  left: 140%;
}

/* â”€â”€ 12. Sol2 card active glow ring pulse â”€â”€ */
.sol2-card.active {
  animation: cardGlowPulse 3.5s ease-in-out infinite;
}

@keyframes cardGlowPulse {

  0%,
  100% {
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), 0 0 0 1.5px rgba(246, 190, 34, 0.25);
  }

  50% {
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.70), 0 0 0 2.5px rgba(246, 190, 34, 0.45);
  }
}

/* â”€â”€ 13. Nav link animated underline â”€â”€ */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* â”€â”€ 14. Scroll progress bar â”€â”€ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #F6BE22, #FFD966);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(246, 190, 34, 0.5);
}

/* â”€â”€ 15. Footer fade in from bottom â”€â”€ */
.footer {
  opacity: 1;
  /* already visible, transition handled by scroll observe */
}

/* â”€â”€â”€ CLIENTS MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clients-strip {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 36px 0 32px;
  overflow: hidden;
  position: relative;
}

.clients-label {
  text-align: center;
  font-size: 0.60rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  margin-bottom: 28px;
}

.clients-track-wrap {
  overflow: hidden;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #fff 10%,
      #fff 90%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      #fff 10%,
      #fff 90%,
      transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: clientsScroll 22s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 16px;
}

.client-logo-item img {
  max-height: 64px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.client-logo-item img:hover {
  transform: scale(1.08);
}

/* â”€â”€â”€ SOLUTIONS VERTICAL STACK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.solv-section {
  background: #ffffff;
  padding: 100px 0;
}

.solv-header {
  text-align: center;
  margin-bottom: 72px;
}

.solv-subtitle {
  font-size: 1rem;
  color: #888;
  margin-top: 12px;
}

.solv-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* space between cards */
}

/* â”€â”€â”€ Individual card â”€â”€â”€ */
.solv-card {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.solv-card:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* Flip: image on right, content on left */
.solv-card--flip {
  grid-template-columns: 55% 45%;
}

.solv-card--flip .solv-img {
  order: 2;
}

.solv-card--flip .solv-content {
  order: 1;
}

/* â”€â”€â”€ Image panel â”€â”€â”€ */
.solv-img {
  overflow: hidden;
  position: relative;
}

.solv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.solv-card:hover .solv-img img {
  transform: scale(1.04);
}

/* â”€â”€â”€ Content panel â”€â”€â”€ */
.solv-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 52px;
  gap: 14px;
}

.solv-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.solv-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--crimson);
  letter-spacing: 0.12em;
  font-family: var(--font-display);
  opacity: 0.65;
}

.solv-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  background: rgba(212, 160, 23, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212, 160, 23, 0.30);
}

.solv-title {
  font-family: var(--font-display);
  font-size: clamp(1.20rem, 2vw, 1.65rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.solv-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.8;
  max-width: 480px;
}

.solv-cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 860px) {

  .solv-card,
  .solv-card--flip {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
  }

  .solv-card--flip .solv-img {
    order: 1;
  }

  .solv-card--flip .solv-content {
    order: 2;
  }

  .solv-content {
    padding: 32px 24px;
  }

  .solv-stack {
    gap: 16px;
  }
}

/* ─── ABOUT V2 ───────────────────────────────────────────────────── */
.about-v2 {
  background: #ffffff;
  padding: 100px 0;
}

/* Tagline block */
.abv2-tagline {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 72px;
}

.abv2-intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-top: 20px;
}

.abv2-hook {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--crimson);
  margin-top: 10px;
  font-style: italic;
}

/* Two-column */
.abv2-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 72px;
  align-items: start;
}

.abv2-col p {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}

.abv2-col-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.abv2-col-label::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: rgba(246, 190, 34, 0.30);
  max-width: 60px;
}

/* List */
.abv2-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abv2-list li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.abv2-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--crimson);
  font-size: 0.75rem;
  top: 3px;
}

.abv2-punchline {
  font-weight: 700;
  color: #111;
  font-size: 0.97rem;
}

/* Pillars section */
.abv2-pillars {
  background: #f8f8f9;
  border-radius: 16px;
  padding: 56px;
  margin-bottom: 56px;
}

.abv2-pillars-header {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.abv2-pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.abv2-pillar {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.abv2-pillar:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.abv2-pillar-icon {
  font-size: 1.4rem;
  color: var(--crimson);
  margin-bottom: 14px;
}

.abv2-pillar-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.abv2-pillar-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* Promise strip */
.abv2-promise {
  background: linear-gradient(135deg, #0D2247 0%, #1A3A6E 100%);
  border-radius: 16px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.abv2-promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.abv2-promise-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 16px;
}

.abv2-footer-line {
  color: #ffffff !important;
  font-size: 1rem !important;
  margin-bottom: 28px !important;
}

/* Responsive */
@media (max-width: 860px) {
  .abv2-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .abv2-pillar-grid {
    grid-template-columns: 1fr;
  }

  .abv2-pillars,
  .abv2-promise {
    padding: 36px 24px;
  }
}

/* ── BLUE ON INTERACTION ONLY ────────────────────────────────────────
   Gold stays for all static/default states.
   Red (#2563EB) triggers only on hover / touch / focus.
──────────────────────────────────────────────────────────────────── */
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-glow: rgba(37, 99, 235, 0.25);
}

/* Primary button hover → red */
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #2563EB !important;
  border-color: #2563EB !important;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35) !important;
}

/* Outline button hover → red */
.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #2563EB !important;
  color: #2563EB !important;
}

/* Industry card hover → red accent line + icon */
.industry-card:hover {
  border-color: rgba(37, 99, 235, 0.30) !important;
}

.industry-card:hover .industry-hover-line {
  background: #2563EB !important;
}

.industry-card:hover .industry-icon i {
  color: #2563EB !important;
}

/* Solutions card hover → red glow border */
.solv-card:hover {
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.22), 0 24px 48px rgba(0, 0, 0, 0.08) !important;
}

/* Nav links hover */
.nav-links a:hover {
  color: #2563EB !important;
}

/* Footer links hover */
.footer-col a:hover {
  color: #2563EB !important;
}

/* Social icons hover */
.social-icon:hover {
  border-color: #2563EB !important;
  color: #2563EB !important;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.25) !important;
}

/* Form focus ring */
.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
  outline: none !important;
}

/* About pillars hover */
.abv2-pillar:hover {
  border-color: rgba(37, 99, 235, 0.35) !important;
  background: rgba(37, 99, 235, 0.04) !important;
}

/* ── STRUCTURAL BLUE ACCENTS (non-text, decorative placements) ──────
   Like precise makeup — placed only where it enhances structure.
──────────────────────────────────────────────────────────────────── */

/* 1. Scroll progress bar — thin blue line at very top of page */
.scroll-progress-bar {
  background: #2563EB !important;
}

/* 2. Industry card bottom accent line — always visible, thin eyeliner */
.industry-hover-line {
  display: block !important;
  height: 2px !important;
  width: 32px !important;
  background: rgba(37, 99, 235, 0.35) !important;
  margin-top: 20px !important;
  transition: width 0.35s ease, background 0.35s ease !important;
}

.industry-card:hover .industry-hover-line {
  width: 100% !important;
  background: #2563EB !important;
}

/* 3. Solutions section — thin blue top border accent */
.solv-section {
  border-top: 3px solid rgba(37, 99, 235, 0.55) !important;
}

/* 4. Footer — blue top border instead of faint gold */
.footer {
  border-top: 2px solid rgba(37, 99, 235, 0.50) !important;
}

/* 5. Hero section-label dash — override with red */
.hero-left .section-label::before,
.hero-left .section-label {
  color: #2563EB !important;
}

.hero-left .section-label::before {
  background: #2563EB !important;
}

/* ── OTHER SERVICES nav link ── */
.nav-other {
  border: 1.5px solid rgba(37, 99, 235, 0.40) !important;
  border-radius: 4px !important;
  padding: 5px 12px !important;
  color: #2563EB !important;
  font-weight: 600 !important;
  transition: background 0.25s, color 0.25s !important;
}

.nav-other:hover {
  background: #2563EB !important;
  color: #fff !important;
  border-color: #2563EB !important;
}

/* ── OUR PRESENCE ────────────────────────────────────────────────── */
.presence-wrap {
  background: #0E0E0E;
  border-radius: 14px;
  padding: 36px 40px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.presence-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.presence-globe {
  font-size: 2.2rem;
  color: #F6BE22;
  flex-shrink: 0;
}

.presence-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.presence-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.40);
  margin: 0;
}

.presence-regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.presence-region-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.presence-cities {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pres-city {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 500;
  transition: color 0.22s;
}

.pres-city i {
  font-size: 0.65rem;
  color: #F6BE22;
  flex-shrink: 0;
}

.pres-city:hover {
  color: #FFFFFF;
}

/* ── NAV-OTHER UPGRADE ──────────────────────────────────────────── */
.nav-other {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em !important;
  padding: 7px 14px !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.30) !important;
  transition: box-shadow 0.25s, transform 0.22s !important;
}

.nav-other:hover {
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.45) !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%) !important;
}

/* ── QUICK CONTACT STRIP ─────────────────────────────────────────── */
.contact-quick {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.cq-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 36px;
  flex: 1;
  text-decoration: none;
  transition: background 0.25s;
}

.cq-item:hover {
  background: #fafafa;
}

.cq-divider {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.cq-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F6BE22 0%, #D4A010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.cq-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cq-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.cq-val {
  font-size: 0.96rem;
  font-weight: 600;
  color: #1A1A1A;
}

/* ── OUR PRESENCE — light warm redesign ────────────────────────── */
.presence-wrap {
  background: linear-gradient(135deg, #F0F4FF 0%, #EEF1F8 60%, #F5F0FF 100%) !important;
  border-radius: 16px !important;
  padding: 40px 44px !important;
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.06) !important;
}

.presence-header {
  border-bottom: 1px solid rgba(37, 99, 235, 0.12) !important;
}

.presence-globe {
  color: #2563EB !important;
}

.presence-label {
  color: #1A1A1A !important;
  font-size: 1.1rem !important;
}

.presence-sub {
  color: #6B6B6B !important;
}

.presence-region-title {
  color: #2563EB !important;
}

.pres-city {
  color: #333 !important;
}

.pres-city i {
  color: #F6BE22 !important;
}

.pres-city:hover {
  color: #1A1A1A !important;
}

@media (max-width: 640px) {
  .contact-quick {
    flex-direction: column;
  }

  .cq-divider {
    width: 100%;
    height: 1px;
  }

  .cq-item {
    padding: 18px 24px;
  }

  .presence-wrap {
    padding: 28px 20px !important;
  }
}

/* solv-ideal tag line in solutions cards */
.solv-ideal {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
  margin: 12px 0 20px;
  padding: 10px 14px;
  background: rgba(246, 190, 34, 0.06);
  border-left: 3px solid #F6BE22;
  border-radius: 0 6px 6px 0;
}

.solv-ideal strong {
  color: #555;
}

/* ── HERO TYPEWRITER ─────────────────────────────────────────────── */
.ht-typewriter-line {
  display: block;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  min-height: 1.15em;
}

.tw-text {
  display: inline;
}

/* Blinking cursor */
.tw-cursor {
  display: inline-block;
  font-weight: 300;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  color: #F6BE22;
  line-height: 1;
  margin-left: 2px;
  vertical-align: baseline;
  animation: twBlink 0.75s step-end infinite;
}

@keyframes twBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── BLACK OUTLINE BUTTONS (hero + about) ── */
.hero-actions .btn-outline,
.abv2-promise .btn-outline {
  background: #1A1A1A !important;
  color: #fff !important;
  border-color: #1A1A1A !important;
}

.hero-actions .btn-outline:hover,
.abv2-promise .btn-outline:hover {
  background: #333 !important;
  border-color: #333 !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE FIXES
   ══════════════════════════════════════════════════════════════════ */

/* ── Global overflow prevention ─────────────────────────────────── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

@media (max-width: 768px) {

  /* ── Navbar ── */
  .nav-other {
    font-size: 0.72rem !important;
    padding: 5px 10px !important;
  }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-split {
    flex-direction: column;
    padding: 0 20px;
    gap: 0;
  }

  .hero-left {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 32px;
    text-align: left;
  }

  .hero-right {
    display: none;
  }

  .hero-watermark {
    font-size: 5rem;
    opacity: 0.04;
  }

  .ht-main {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .ht-fade {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .ht-typewriter-line {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    min-height: 1.2em;
  }

  .tw-cursor {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  /* ── Industries ── */
  .industry-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Solutions ── */
  .solv-card {
    flex-direction: column !important;
    min-height: auto !important;
  }

  .solv-card--flip {
    flex-direction: column !important;
  }

  .solv-img {
    width: 100% !important;
    height: 240px !important;
  }

  .solv-content {
    width: 100% !important;
    padding: 28px 24px !important;
  }

  .solv-ideal {
    font-size: 0.74rem;
  }

  /* ── About ── */
  .abv2-two-col {
    flex-direction: column;
    gap: 24px;
  }

  .abv2-two-col .abv2-col {
    width: 100%;
  }

  .abv2-pillar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .abv2-promise-inner {
    padding: 28px 24px;
  }

  /* ── Contact quick strip ── */
  .contact-quick {
    flex-direction: column;
  }

  .cq-divider {
    width: 100%;
    height: 1px;
  }

  .cq-item {
    padding: 18px 24px;
    width: 100%;
  }

  /* ── Presence ── */
  .presence-wrap {
    padding: 28px 20px !important;
  }

  .presence-regions {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* ── Form ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .consult-grid {
    grid-template-columns: 1fr;
  }

  /* ── Footer ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {

  /* ── Hero ── */
  .ht-main {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .ht-typewriter-line {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  /* ── About pillars ── */
  .abv2-pillar-grid {
    grid-template-columns: 1fr;
  }

  /* ── Presence ── */
  .presence-regions {
    grid-template-columns: 1fr !important;
  }

  /* ── Nav ── */
  .nav-inner {
    padding: 0 16px;
  }

  /* ── Other Services nav pill ── */
  .nav-other {
    font-size: 0.68rem !important;
    padding: 4px 8px !important;
  }

  /* ── Sections ── */
  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .btn {
    font-size: 0.78rem;
    padding: 12px 22px;
  }
}

/* ══ HERO MOBILE FIX (overrides previous partial rules) ══════════ */
@media (max-width: 768px) {

  .hero-split {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100svh !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero-left {
    width: 100% !important;
    padding: 110px 20px 48px 20px !important;
    overflow: visible !important;
  }

  .hero-right {
    display: none !important;
  }

  .hero-title {
    overflow: hidden !important;
    word-break: break-word !important;
  }

  .ht-fade {
    font-size: clamp(1.6rem, 8vw, 2.4rem) !important;
    letter-spacing: -0.02em !important;
  }

  .ht-main {
    font-size: clamp(1.8rem, 9.5vw, 2.8rem) !important;
    letter-spacing: -0.02em !important;
  }

  .ht-typewriter-line {
    font-size: clamp(1.8rem, 9.5vw, 2.8rem) !important;
    min-height: 1.2em !important;
  }

  .tw-cursor {
    font-size: clamp(1.6rem, 8vw, 2.4rem) !important;
  }

  .hero-subtitle {
    font-size: 0.88rem !important;
    max-width: 100% !important;
    line-height: 1.7 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }

  .hero-stats {
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  .stat {
    padding: 0 8px !important;
  }

  .hero-label {
    font-size: 0.6rem !important;
    margin-bottom: 16px !important;
  }

  #lightningCanvas {
    display: none !important;
  }

  .hero-bg,
  .hero-particles {
    display: none !important;
  }
}

@media (max-width: 420px) {

  .hero-left {
    padding: 100px 16px 40px 16px !important;
  }

  .ht-fade {
    font-size: clamp(1.4rem, 8.5vw, 2rem) !important;
  }

  .ht-main {
    font-size: clamp(1.6rem, 10vw, 2.4rem) !important;
  }

  .ht-typewriter-line {
    font-size: clamp(1.6rem, 10vw, 2.4rem) !important;
  }
}

/* ══ HERO CLIP FIX — removes overflow:hidden that clips title on mobile ══ */
@media (max-width: 768px) {
  .hero {
    overflow: visible !important;
    min-height: 100svh !important;
  }

  .hero-left {
    overflow: visible !important;
    padding: 110px 20px 48px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-bg {
    overflow: hidden !important;
    pointer-events: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   HERO BACKGROUND IMAGE SLIDER
   ══════════════════════════════════════════════════════════════════ */

/* Hero base override — now dark background */
.hero {
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  background: #0a0a0a !important;
  display: flex !important;
  flex-direction: column !important;
}

/* ── Slider container ── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Each slide */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlide 25s infinite;
  will-change: opacity;
}

/* Stagger each slide — 5 slides × 5s each = 25s total */
.hero-slide:nth-child(1) {
  animation-delay: 0s;
  z-index: 5;
}

.hero-slide:nth-child(2) {
  animation-delay: 5s;
  z-index: 4;
}

.hero-slide:nth-child(3) {
  animation-delay: 10s;
  z-index: 3;
}

.hero-slide:nth-child(4) {
  animation-delay: 15s;
  z-index: 2;
}

.hero-slide:nth-child(5) {
  animation-delay: 20s;
  z-index: 1;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  5% {
    opacity: 1;
    transform: scale(1.02);
  }

  20% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* ── Dark gradient overlay — heavier at bottom ── */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.30) 0%,
      rgba(0, 0, 0, 0.20) 30%,
      rgba(0, 0, 0, 0.55) 65%,
      rgba(0, 0, 0, 0.82) 100%);
  /* also slight left darken to frame the text */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.60) 0%,
      rgba(0, 0, 0, 0.20) 55%,
      rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.45) 60%,
      rgba(0, 0, 0, 0.80) 100%);
}

/* ── Gold right shape — float above slider ── */
.hero-right--overlay {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 45% !important;
  z-index: 12 !important;
  pointer-events: none !important;
}

/* ── Content wrapper — sits above everything ── */
.hero-content-wrap {
  position: relative;
  z-index: 20;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0;
  width: 100%;
}

/* ── Hero left content — white text on dark bg ── */
.hero-left {
  width: 55% !important;
  padding: 140px 60px 80px 80px !important;
  overflow: visible !important;
}

/* Watermark — lighter on dark bg */
.hero-watermark {
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06) !important;
}

/* Label */
.hero-label--light {
  color: rgba(255, 255, 255, 0.70) !important;
}

.hero-label--light::before {
  background: #F6BE22 !important;
}

/* Title text — bright white */
.hero-title--light .ht-fade {
  color: rgba(255, 255, 255, 0.40) !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25) !important;
}

.hero-title--light .ht-main {
  color: #FFFFFF !important;
}

/* Subtitle */
.hero-subtitle--light {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ── "Let's Collaborate" stays black/solid ── */
.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.40) !important;
  backdrop-filter: blur(8px) !important;
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: #fff !important;
}

/* ── Slider dot indicators ── */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 80px;
  z-index: 30;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  display: inline-block;
}

.hdot.active {
  background: #F6BE22;
  width: 22px;
  border-radius: 4px;
}

/* ── Scroll indicator — white on dark ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 80px;
  z-index: 30;
  color: rgba(255, 255, 255, 0.50) !important;
}

.scroll-line {
  background: rgba(255, 255, 255, 0.30) !important;
}

/* ── Mobile: hide right shape overlay, stack content ── */
@media (max-width: 768px) {
  .hero-right--overlay {
    display: none !important;
  }

  .hero-left {
    width: 100% !important;
    padding: 110px 20px 80px !important;
  }

  .hero-dots {
    left: 20px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ── HERO SLIDER FIX: JS class-toggle (replaces CSS animation approach) ── */
.hero-slide {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 0 !important;
  transition: opacity 1.2s ease-in-out !important;
  z-index: 1 !important;
  animation: none !important;
}

.hero-slide.active {
  opacity: 1 !important;
  z-index: 2 !important;
}

/* remove old stagger delays */
.hero-slide:nth-child(1),
.hero-slide:nth-child(2),
.hero-slide:nth-child(3),
.hero-slide:nth-child(4),
.hero-slide:nth-child(5) {
  animation: none !important;
  animation-delay: 0s !important;
}

/* ══════════════════════════════════════════════════════════════════
   VERTICALS SLIDER SECTION
   ══════════════════════════════════════════════════════════════════ */

/* Hide the gold dash after "BUSINESS" in hero */
.ht-dash {
  display: none !important;
}

/* ── Section wrapper ── */
.vslider-section {
  padding: 0;
  overflow: hidden;
  background: #0d0d0d;
}

.vslider-header {
  text-align: center;
  padding: 72px 24px 40px;
}

.vslider-header .section-title {
  color: #fff;
}

.vslider-header .section-label {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Slide container ── */
.vslider-wrap {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
}

/* ── Each slide ── */
.vslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
}

.vslide.active {
  opacity: 1;
  z-index: 2;
}

/* ── Background image holder (blank — images added later) ── */
.vslide-bg {
  position: absolute;
  inset: 0;
  background: #111;
  /* dark placeholder — ready for image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease;
}

/* Subtle dark gradient per slide — each vertical gets its own accent colour */
.vslide:nth-child(1) .vslide-bg {
  background: linear-gradient(135deg, #0f1923 0%, #1a2f45 100%);
}

.vslide:nth-child(2) .vslide-bg {
  background: linear-gradient(135deg, #1a0f00 0%, #3d2200 100%);
}

.vslide:nth-child(3) .vslide-bg {
  background: linear-gradient(135deg, #14001f 0%, #2d0040 100%);
}

.vslide:nth-child(4) .vslide-bg {
  background: linear-gradient(135deg, #001a1a 0%, #003333 100%);
}

/* ── Overlay (for when real image is added) ── */
.vslide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.10) 100%);
  z-index: 1;
}

/* ── Content ── */
.vslide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
  padding: 40px 0;
}

.vslide-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(246, 190, 34, 0.15);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.vslide-icon {
  font-size: 2rem;
  color: #F6BE22;
  margin-bottom: 16px;
}

.vslide-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.vslide-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}

.vslide-btn {
  font-size: 0.8rem;
  padding: 12px 28px;
}

/* ── Navigation bar ── */
.vslider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 0 56px;
  background: #0d0d0d;
}

.vsnav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsnav-arrow:hover {
  background: #F6BE22;
  border-color: #F6BE22;
  color: #000;
}

.vsnav-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.vsdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  display: inline-block;
}

.vsdot.active {
  background: #F6BE22;
  width: 24px;
  border-radius: 4px;
}

/* Progress bar — driven by JS, not CSS animation */
.vslider-wrap::after {
  display: none;
}

.vslider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #F6BE22;
  z-index: 10;
  width: 0%;
  transition: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .vslider-wrap {
    height: 480px;
  }

  .vslide-content {
    padding: 24px 0;
  }

  .vslide-num {
    font-size: 3.5rem;
  }

  .vslide-title {
    font-size: 1.4rem;
  }

  .vslider-header {
    padding: 56px 20px 28px;
  }
}

/* ── Verticals real images — DO NOT use background shorthand (it resets background-image) ── */
.vslide:nth-child(1) .vslide-bg,
.vslide:nth-child(2) .vslide-bg,
.vslide:nth-child(3) .vslide-bg,
.vslide:nth-child(4) .vslide-bg {
  background-color: #111;
  /* fallback color only */
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* ══════════════════════════════════════════════════════════════
   POLISH FIXES – BRIDGING TEXT + SECTION TRANSITIONS + MOBILE
   ══════════════════════════════════════════════════════════════ */

/* FIX 1: "BRIDGING" text — was transparent/gray, now crisp white outline */
.ht-fade {
  color: rgba(255, 255, 255, 0.18) !important;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35) !important;
}

/* FIX 2: section flow note — about section is WHITE, see white redesign block below */

/* All abv2 text goes light */
.abv2-tagline .section-label {
  color: rgba(255, 255, 255, 0.45) !important;
}

.abv2-tagline .section-title {
  color: #fff !important;
}

.abv2-intro,
.abv2-hook {
  color: rgba(255, 255, 255, 0.65) !important;
}

.abv2-col-label {
  color: #F6BE22 !important;
}

.abv2-col p,
.abv2-list li {
  color: rgba(255, 255, 255, 0.65) !important;
}

.abv2-list li strong {
  color: #fff !important;
}

.abv2-pillar {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.abv2-pillar-title {
  color: #fff !important;
}

.abv2-pillar-text {
  color: rgba(255, 255, 255, 0.6) !important;
}

.abv2-promise-inner {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.abv2-promise-inner p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.abv2-promise-inner strong {
  color: #fff !important;
}

.abv2-footer-line {
  color: rgba(255, 255, 255, 0.5) !important;
}

.abv2-divider {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Gradient bleed transitions between sections */
.hero-section::after,
.vslider-section::before {
  content: '';
  display: block;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #111);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 5;
}

/* FIX 6: Mobile hero text — prevent overflow on 375px phones */
@media (max-width: 390px) {
  .ht-fade {
    font-size: 2rem !important;
  }

  .ht-main {
    font-size: 2.5rem !important;
    gap: 10px !important;
  }

  .tw-text,
  .hero-subtitle {
    font-size: 0.85rem !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ── ABOUT SECTION — WHITE BG (see white redesign block below) ── */

/* All text elements in the about section */
.about-v2 .abv2-intro,
.about-v2 .abv2-hook,
.about-v2 .abv2-hook em {
  color: rgba(255, 255, 255, 0.65) !important;
}

.about-v2 .abv2-col-label {
  color: #F6BE22 !important;
}

.about-v2 .abv2-col p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.about-v2 .abv2-list li {
  color: rgba(255, 255, 255, 0.65) !important;
}

.about-v2 .abv2-list li::before {
  color: #F6BE22 !important;
}

.about-v2 .abv2-list strong {
  color: #fff !important;
}

.about-v2 .abv2-pillars-header {
  color: #fff !important;
}

.about-v2 .abv2-pillar {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
}

.about-v2 .abv2-pillar-icon i {
  color: #F6BE22 !important;
}

.about-v2 .abv2-pillar-title {
  color: #fff !important;
}

.about-v2 .abv2-pillar-text {
  color: rgba(255, 255, 255, 0.6) !important;
}

.about-v2 .abv2-promise-inner {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
}

.about-v2 .abv2-promise-inner p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.about-v2 .abv2-promise-inner strong {
  color: #fff !important;
}

.about-v2 .abv2-footer-line {
  color: rgba(255, 255, 255, 0.55) !important;
}

.about-v2 .abv2-divider {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.about-v2 .section-title {
  color: #fff !important;
}

.about-v2 .section-label {
  color: rgba(255, 255, 255, 0.45) !important;
}

.about-v2 .abv2-tagline .section-title {
  color: #fff !important;
}
/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION — WHITE REDESIGN (overrides all dark overrides)
   ══════════════════════════════════════════════════════════════ */
.about-v2 { background: #FFFFFF !important; border-top: none !important; }

/* Reset ALL text to dark */
.about-v2 .section-label         { color: #F6BE22 !important; }
.about-v2 .section-title         { color: #111 !important; }
.about-v2 .abv2-intro            { color: #444 !important; }
.about-v2 .abv2-hook             { color: #111 !important; }
.about-v2 .abv2-hook em          { color: #555 !important; }
.about-v2 .abv2-col-label        { color: #F6BE22 !important; }
.about-v2 .abv2-col p            { color: #555 !important; }
.about-v2 .abv2-list li          { color: #444 !important; }
.about-v2 .abv2-list li strong   { color: #111 !important; }
.about-v2 .abv2-pillars-header   { color: #111 !important; }
.about-v2 .abv2-pillar           { background: #f7f7f7 !important; border: 1px solid rgba(0,0,0,0.07) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; }
.about-v2 .abv2-pillar-icon i    { color: #F6BE22 !important; }
.about-v2 .abv2-pillar-title     { color: #111 !important; }
.about-v2 .abv2-pillar-text      { color: #555 !important; }
.about-v2 .abv2-promise-inner    { background: #f7f7f7 !important; border: 1px solid rgba(0,0,0,0.07) !important; }
.about-v2 .abv2-promise-inner p  { color: #555 !important; }
.about-v2 .abv2-promise-inner strong { color: #111 !important; }
.about-v2 .abv2-footer-line      { color: #333 !important; }
.about-v2 .abv2-divider          { border-color: rgba(0,0,0,0.08) !important; }

/* ── About section premium layout polish — white bg ── */
.about-v2 {
  padding: 100px 0 80px !important;
  position: relative !important;
}

/* Smooth gradient from dark hero above → white about */
.about-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right, #F6BE22 0%, #D4A010 50%, #F6BE22 100%);
  opacity: 0.6;
}

/* Section label dash style */
.about-v2 .section-label {
  font-size: 0.67rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.about-v2 .section-label::before,
.about-v2 .section-label::after {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: #F6BE22;
}

/* Intro text — larger and centered */
.about-v2 .abv2-tagline {
  text-align: center !important;
  max-width: 700px !important;
  margin: 0 auto 64px !important;
}

/* Hook quote — italic gold left border */
.about-v2 .abv2-hook {
  border-left: 3px solid #F6BE22 !important;
  padding-left: 18px !important;
  margin-top: 16px !important;
  font-style: italic !important;
  font-size: 1.05rem !important;
  color: #555 !important;
}

/* Two-col layout */
.about-v2 .abv2-two-col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px !important;
  margin-bottom: 64px !important;
  padding-bottom: 56px !important;
  border-bottom: 1px solid rgba(0,0,0,0.07) !important;
}
@media (max-width: 768px) {
  .about-v2 .abv2-two-col { grid-template-columns: 1fr !important; gap: 36px !important; }
}

/* Column label */
.about-v2 .abv2-col-label {
  font-size: 0.67rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}

/* About list items */
.about-v2 .abv2-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 0 !important;
}
.about-v2 .abv2-list li {
  padding: 10px 0 10px 22px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  font-size: 0.93rem !important;
}
.about-v2 .abv2-list li::before {
  content: '→';
  position: absolute !important;
  left: 0 !important;
  color: #F6BE22 !important;
  font-weight: 700 !important;
}

/* Pillars header */
.about-v2 .abv2-pillars-header {
  font-size: 0.67rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #F6BE22 !important;
  margin-bottom: 28px !important;
  text-align: center !important;
}

/* Pillar grid */
.about-v2 .abv2-pillar-grid {
  display: grid !important;
  grid-template-columns: repeat(4,1fr) !important;
  gap: 20px !important;
  margin-bottom: 56px !important;
}
@media (max-width: 900px) {
  .about-v2 .abv2-pillar-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 500px) {
  .about-v2 .abv2-pillar-grid { grid-template-columns: 1fr !important; }
}

/* Individual pillar */
.about-v2 .abv2-pillar {
  border-radius: 12px !important;
  padding: 28px 24px !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease !important;
}
.about-v2 .abv2-pillar:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10) !important;
}
.about-v2 .abv2-pillar-icon {
  font-size: 1.5rem !important;
  margin-bottom: 14px !important;
}
.about-v2 .abv2-pillar-title {
  font-size: 0.97rem !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
}
.about-v2 .abv2-pillar-text {
  font-size: 0.85rem !important;
  line-height: 1.7 !important;
}

/* Promise box */
.about-v2 .abv2-promise-inner {
  border-radius: 14px !important;
  padding: 40px 48px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}
.about-v2 .abv2-footer-line {
  font-size: 0.88rem !important;
  letter-spacing: 0.02em !important;
  line-height: 1.65 !important;
}

/* ── About section title — "Not Just a Vendor." forced dark like Solutions heading ── */
.about-v2 .section-title {
  color: #0a0a0a !important;
  font-weight: 900 !important;
  -webkit-text-fill-color: #0a0a0a !important;
}
/* Keep the span gradient */
.about-v2 .section-title .text-gradient {
  background: linear-gradient(135deg, #F6BE22 0%, #D4A010 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
}

/* ── Contact section redesign — responsive ── */
@media (max-width: 900px) {
  #contact > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
/* Contact section uses default site background */
