/* ============================================================
   ABOUT PAGE — v2 REDESIGN
   ============================================================ */

.section-tag.center { justify-content: center; }
.ab2-cta-inner.full { width: 100%; }
.ab2-cta-tag-spaced { margin-bottom: 1.2rem; }

/* ===== HERO ===== */
.ab2-hero {
  position: relative;
  background: #0a0e28;
  padding: 0;
  padding-top: var(--nav-h);
  overflow-x: hidden;
  min-height: 100vh;
}

.ab2-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ab2-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ab2-hero-inner {
  display: block;
  padding: 2rem 3rem 9rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.ab2-hero-left {
  max-width: 50%;
}

/* Hero background — videos stacked, crossfade one in / one out */
.ab2-hero-bg-videos {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ab2-hero-bg-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.ab2-hero-bg-vid.ab2-vid-active {
  opacity: 1;
}

/* Dark overlay so text is readable over the image */
.ab2-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 40, 0.62);
  pointer-events: none;
}

.ab2-est-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  max-width: 100%;
}

.ab2-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: ab2-pulse 2.4s ease-in-out infinite;
}

@keyframes ab2-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(196,30,58,0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
    box-shadow: 0 0 0 7px rgba(196,30,58,0);
  }
}

.ab2-hero-h1 .h1-red { color: #FF2D55; }

.ab2-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.ab2-hero-em {
  font-style: normal;
  background: linear-gradient(90deg, var(--red) 0%, #FF6B8A 50%, var(--navy-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab2-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.4rem;
}

.ab2-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.ab2-hero-btns .btn-ghost-navy {
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.ab2-hero-btns .btn-ghost-navy:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
  color: #fff;
}

/* Radar visual */
.ab2-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ab2-radar {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

.ab2-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,30,58,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ab2-ring-1 { width: 100%; height: 100%; }
.ab2-ring-2 { width: 75%; height: 75%; border-color: rgba(196,30,58,0.3); }
.ab2-ring-3 { width: 50%; height: 50%; border-color: rgba(196,30,58,0.4); }
.ab2-ring-4 { width: 25%; height: 25%; border-color: rgba(196,30,58,0.5); }

.ab2-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform-origin: 0% 100%;
  background: conic-gradient(from 0deg, transparent 300deg, rgba(196,30,58,0.15) 360deg);
  border-radius: 0 100% 0 0;
  animation: ab2-sweep 3s linear infinite;
}

@keyframes ab2-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ab2-core-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(196,30,58,0.6);
}

.ab2-blip {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(0,196,154,0.7);
  animation: ab2-blip-fade 3s ease-in-out infinite;
}

.ab2-blip-1 { top: 25%; left: 62%; animation-delay: 0.6s; }
.ab2-blip-2 { top: 60%; left: 30%; animation-delay: 1.4s; }
.ab2-blip-3 { top: 38%; left: 22%; animation-delay: 2.1s; }

@keyframes ab2-blip-fade {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  20%, 80% { opacity: 1; transform: scale(1); }
}

.ab2-radar-cross-h,
.ab2-radar-cross-v {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(196,30,58,0.15);
}

.ab2-radar-cross-h {
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.ab2-radar-cross-v {
  width: 1px;
  height: 100%;
  transform: translate(-50%, -50%);
}

/* Stat bar — pinned to the very bottom of the hero */
.ab2-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #0d1b35 0%, #38487D 60%, #0f2a52 100%);
  padding: 0;
  flex-wrap: wrap;
  overflow: hidden;
}

.ab2-stat-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ab2-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 1.8rem 2.8rem;
  cursor: default;
  position: relative;
  transition: background 0.25s;
  flex: 1;
  min-width: 160px;
}

.ab2-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transition: transform 0.3s ease;
}

.ab2-stat:hover {
  background: rgba(255,255,255,0.05);
}

.ab2-stat:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.ab2-stat-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}

.ab2-stat:hover .ab2-stat-icon {
  color: var(--red);
}

.ab2-stat-icon svg {
  width: 100%;
  height: 100%;
}

.ab2-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ab2-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.ab2-stat-num sup {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  vertical-align: super;
}

.ab2-stat-txt {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
  white-space: nowrap;
}

.ab2-stat:hover .ab2-stat-txt {
  color: rgba(255,255,255,0.7);
}

.ab2-stat-div {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  align-self: stretch;
  margin: 1.2rem 0;
}

/* ===== WHO WE ARE ===== */
.ab2-who {
  padding: 60px 0 80px;
  background: var(--white);
  overflow-x: hidden;
}

.ab2-who-hdr {
  margin-bottom: 2.5rem;
}

.ab2-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.ab2-who-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ab2-who-right {
  display: flex;
  flex-direction: column;
  height: 520px;
  min-width: 0;
}

.ab2-who-right .ab2-wc {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.ab2-who-h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin: 0.6rem 0 0;
  letter-spacing: -0.02em;
}

.ab2-who-lead {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-weight: 400;
  overflow-wrap: break-word;
}

.ab2-who-lead strong {
  color: var(--navy);
  font-weight: 700;
}

.ab2-who-p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.82;
  margin-bottom: 1.1rem;
  overflow-wrap: break-word;
}

.ab2-who-p strong {
  color: var(--dark);
  font-weight: 700;
}

/* ===== MISSION · VISION · PROMISE ===== */
.ab2-mvv {
  padding: 0 0 100px;
  background: var(--white);
}

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

.ab2-mvv-card {
  padding: 2.4rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab2-mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09);
}

.ab2-mvv-card.ab2-mvv-card-dark {
  background: linear-gradient(135deg, #0d1b35 0%, #38487D 100%);
  border-color: transparent;
}

.ab2-mvv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}

.ab2-mvv-icon-red {
  background: rgba(196,30,58,0.10);
  color: var(--red);
}

.ab2-mvv-icon-navy {
  background: rgba(56,72,125,0.10);
  color: var(--navy);
}

.ab2-mvv-icon-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.ab2-mvv-label {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.ab2-mvv-card.ab2-mvv-card-dark .ab2-mvv-label {
  color: rgba(255,255,255,0.4);
}

.ab2-mvv-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.ab2-mvv-card.ab2-mvv-card-dark .ab2-mvv-title {
  color: #fff;
}

.ab2-mvv-body {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.78;
  margin: 0;
}

.ab2-mvv-card.ab2-mvv-card-dark .ab2-mvv-body {
  color: rgba(255,255,255,0.62);
}

.ab2-who-quote {
  margin: 1.6rem 0 0;
  padding: 1.4rem 1.6rem;
  background: var(--gray-50);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
  position: relative;
  font-size: 14.5px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  font-weight: 500;
}

.ab2-qmark {
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 1;
  color: var(--red);
  opacity: 0.35;
  display: block;
  margin-bottom: -10px;
}

.ab2-who-qfoot {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* Trust badge strip */
.ab2-who-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.8rem;
}

.ab2-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}

.ab2-badge:hover {
  border-color: var(--navy);
  background: rgba(56,72,125,0.05);
}

.ab2-badge svg {
  width: 15px;
  height: 15px;
  color: var(--navy);
  flex-shrink: 0;
}

.ab2-badge-tse {
  border-color: rgba(0,196,154,0.4);
  background: rgba(0,196,154,0.06);
  color: #007A64;
}

.ab2-badge-tse svg { color: #00A085; }
.ab2-badge-tse:hover { border-color: var(--teal); background: rgba(0,196,154,0.12); }

/* ===== WHO WE ARE — Image Carousel ===== */
.ab2-wc {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0d1b35;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  width: 100%;
  height: 100%;
}

.ab2-wc-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ab2-wc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.ab2-wc-slide.ab2-wc-active {
  opacity: 1;
  pointer-events: auto;
}

.ab2-wc-slide img,
.ab2-wc-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.ab2-wc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(10, 20, 45, 0.55) 65%,
    rgba(10, 20, 45, 0.88) 100%
  );
}

.ab2-wc-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1.8rem 4.8rem;
  color: #fff;
}

.ab2-wc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.ab2-wc-caption p {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

/* Progress bar */
.ab2-wc-progress {
  position: absolute;
  bottom: 52px;
  left: 1.8rem;
  right: 1.8rem;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.ab2-wc-prog-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Navigation dots */
.ab2-wc-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}

.ab2-wc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.ab2-wc-dot.ab2-dot-active {
  background: #fff;
  transform: scale(1.35);
}

.ab2-wc-dot:hover {
  background: rgba(255,255,255,0.7);
}

/* ===== STORY TIMELINE ===== */
.ab2-story {
  padding: 60px 0 0;
  background: var(--gray-50);
  overflow: hidden;
}

.ab2-story-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  padding: 0 2rem;
}

.ab2-story-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0.8rem;
}

.ab2-story-sub {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== JOURNEY CARD (Samsara-style) ===== */
.ab2-jcard {
  position: relative;
  background: #EBF0FA;
  border-radius: 0;
  padding: 3rem 8% 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

/* Prev / Next arrows */
.ab2-jnav {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.ab2-jnav:hover {
  background: var(--red);
  transform: translateY(-60%) scale(1.08);
}

.ab2-jnav svg {
  width: 22px;
  height: 22px;
  color: #fff;
  stroke: #fff;
}

.ab2-jnav-prev { left: 1.2rem; }
.ab2-jnav-next { right: 1.2rem; }

/* Content panel */
.ab2-jcontent {
  flex: 1;
  position: relative;
  min-height: 320px;
}

/* Individual slide */
.ab2-jslide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.ab2-jslide.ab2-jslide-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Slide text */
.ab2-jslide-text {
  padding: 0.5rem 0;
}

.ab2-jslide-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.8rem;
  display: block;
}

.ab2-jslide-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.ab2-jslide-desc {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  max-width: 420px;
}

/* Slide image */
.ab2-jslide-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 500px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  background: #f0f2f7;
}

.ab2-jslide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Year timeline bar */
.ab2-jtl {
  margin-top: 2.4rem;
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid rgba(56,72,125,0.12);
}

.ab2-jtl-inner {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0;
}

.ab2-jtl-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(56,72,125,0.18);
  transform: translateY(-50%);
  z-index: 0;
}

.ab2-jtl-year-btn {
  position: relative;
  z-index: 1;
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.ab2-jtl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(56,72,125,0.25);
  border: 2px solid transparent;
  transition: all 0.25s;
}

.ab2-jtl-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: rgba(56,72,125,0.4);
  transition: color 0.25s;
  letter-spacing: 0.04em;
}

.ab2-jtl-year-btn:hover .ab2-jtl-dot {
  background: var(--navy);
}

.ab2-jtl-year-btn:hover .ab2-jtl-label {
  color: var(--navy);
}

.ab2-jtl-year-btn.ab2-jtl-active .ab2-jtl-dot {
  background: var(--navy);
  border-color: #fff;
  box-shadow: 0 0 0 3px var(--navy);
  width: 13px;
  height: 13px;
}

.ab2-jtl-year-btn.ab2-jtl-active .ab2-jtl-label {
  color: var(--navy);
  font-weight: 800;
}

/* ===== VALUES ===== */
.ab2-values {
  background: linear-gradient(135deg, #F0F2F7 0%, #F8F9FC 50%, #F3F5FA 100%);
  position: relative;
  overflow: hidden;
}

.ab2-values::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,58,140,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,58,140,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.ab2-values-inner {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 100px;
}

.ab2-values-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.ab2-values-intro .section-tag.white {
  color: var(--navy-mid);
}

.ab2-values-intro .section-tag.white::before {
  background: var(--navy-mid);
}

.ab2-values-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0;
}

.ab2-val-rows {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.ab2-val-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 3rem 2.5rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(46,58,140,0.08);
  transition: var(--transition);
}

.ab2-val-row:hover {
  box-shadow: 0 8px 24px rgba(46,58,140,0.12);
  transform: translateY(-2px);
}

.ab2-val-divider {
  display: none;
}

.ab2-val-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  min-width: 28px;
  padding-top: 4px;
  background: rgba(196,30,58,0.08);
  padding: 4px 8px;
  border-radius: 4px;
}

.ab2-val-body {
  flex: 1;
}

.ab2-val-name {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.ab2-val-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 560px;
}

.ab2-val-icon-wrap {
  font-size: 40px;
  flex-shrink: 0;
  opacity: 0.8;
  margin-top: 4px;
}

/* ===== KAZUHIKO KUDO — Premium MD Hero Card ===== */

.ab2-md-hero {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
  border: 1px solid var(--border-light);
}

/* ── TOP ROW: photo (fixed small) + intro (fills rest) ── */
.ab2-md-top-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 380px;
}

/* Left half — photo */
.ab2-md-photo-col {
  position: relative;
  background: linear-gradient(160deg, #0a1628 0%, #38487D 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ab2-md-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  flex: 1;
  min-height: 0;
}

.ab2-md-photo-fallback {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1628 0%, #122444 50%, #38487D 100%);
}

.ab2-md-fallback-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.ab2-md-monogram {
  position: relative; z-index: 1;
  font-family: var(--font-head);
  font-size: 100px; font-weight: 800;
  color: rgba(255,255,255,0.09);
  letter-spacing: -5px; line-height: 1;
  user-select: none;
}

/* Nameplate bar at bottom of photo */
.ab2-md-photo-nameplate {
  background: rgba(10,22,40,0.96);
  padding: 1rem 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.ab2-md-nameplate-role {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 4px;
}

.ab2-md-nameplate-org {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* Right half — intro content */
.ab2-md-intro {
  background: var(--white);
  padding: 2.8rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  border-left: 1px solid var(--border-light);
}

/* ── FULL-WIDTH: career + chips ── */
.ab2-md-career-full {
  border-top: 1px solid var(--border-light);
  padding: 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Career list — 3 items side by side */
.ab2-md-career {
  display: flex !important;
  flex-direction: row !important;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}

.ab2-md-career-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1.1rem;
  border-right: 1px solid var(--border-light);
  min-width: 0;
}

.ab2-md-career-item:last-child {
  border-right: none;
}


/* Profile content shared styles (eyebrow, name, title, bio, quote) */
.ab2-md-profile {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ab2-md-profile-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.ab2-md-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(196,30,58,0.6);
  animation: ab2-pulse 2.4s ease-in-out infinite;
}

.ab2-md-profile-name {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.ab2-md-profile-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: -0.8rem;
}

.ab2-md-profile-bio {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.76;
  margin: 0;
}

.ab2-md-profile-bio strong {
  color: var(--dark);
  font-weight: 600;
}

.ab2-md-profile-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.72;
  border-left: 3px solid var(--red);
  padding: 0.8rem 1.2rem;
  margin: 0;
  font-weight: 500;
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
}

/* Career list */
.ab2-md-career {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab2-md-career-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ab2-md-career-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.ab2-md-career-icon svg { width: 13px; height: 13px; }

.ab2-md-career-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 2px;
  white-space: nowrap;
}

.ab2-md-career-val {
  font-size: 12px;
  color: var(--dark);
  line-height: 1.4;
  font-weight: 500;
}

/* Chips */
.ab2-md-chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.ab2-md-chips span {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--navy);
  border: 1px solid rgba(56,72,125,0.22);
  border-radius: 100px;
  padding: 4px 12px;
  background: rgba(56,72,125,0.05);
  transition: background 0.2s, border-color 0.2s;
}

.ab2-md-chips span:hover {
  background: rgba(56,72,125,0.1);
  border-color: var(--navy);
}

/* LinkedIn CTA */
.ab2-md-profile-li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-mono);
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  width: fit-content;
  background: transparent;
}

.ab2-md-profile-li:hover {
  background: var(--navy);
  color: #fff;
}

/* ===== CORE TEAM ===== */
.ab2-core {
  padding: 100px 0 20px;
  background: var(--white);
}

.ab2-core-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ab2-core-sub {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 580px;
  margin: 0.6rem auto 0;
}

.ab2-core-board-hdr {
  margin: 3.5rem 0 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 2rem;
  flex-wrap: wrap;
}

.ab2-board-sub {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}


.ab2-core-h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0;
}

/* ===== BOARD OF DIRECTORS — Portrait card grid ===== */

.ab2-board-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.ab2-board-card {
  flex: 1;
  max-width: 220px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  cursor: pointer;
}

.ab2-board-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(56,72,125,0.18);
  border-color: rgba(56,72,125,0.22);
}

/* Photo area */
.ab2-board-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: #e8e8e8 !important;
}

.ab2-board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.ab2-board-card:hover .ab2-board-photo img {
  transform: scale(1.04);
}

/* Fallback — shown via onerror */
.ab2-board-initials {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ab2-board-wm {
  position: absolute;
  font-family: var(--font-head);
  font-size: 88px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  letter-spacing: -4px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.ab2-board-badge {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.5px;
  backdrop-filter: blur(8px);
}

/* Hover overlay */
.ab2-board-hover {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 53, 0.88);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.ab2-board-card:hover .ab2-board-hover {
  opacity: 0;
  pointer-events: none;
}

.ab2-board-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ab2-board-socials a {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.ab2-board-socials a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}

.ab2-board-socials a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ab2-board-arrow-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: var(--color-primary, #38487D);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.ab2-board-arrow-btn:hover {
  background: #0f2848;
  transform: scale(1.08);
}

.ab2-board-arrow-btn svg {
  width: 17px;
  height: 17px;
}

/* Bottom info */
.ab2-board-info {
  padding: 0.4rem 0.5rem 0.35rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.ab2-board-flag {
  display: none;
}

.ab2-board-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 3px;
}

.ab2-board-role {
  font-size: 11px;
  color: var(--gray-500);
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== OFFICES ===== */
.ab2-offices {
  background: var(--white);
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.ab2-offices::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
}

.ab2-offices-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.ab2-offices-h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0;
}

.ab2-offices-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}


.ab2-office-card {
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 260px;
}

.ab2-office-card:hover {
  background: var(--white);
  border-color: rgba(56,72,125,0.22);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.ab2-office-hq {
  border-color: rgba(196,30,58,0.3);
  background: url('../images/IFT-Bengaluru-Office.webp') center center / cover no-repeat;
  overflow: hidden;
  position: relative;
}

.ab2-office-hq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,14,40,0.72) 0%, rgba(196,30,58,0.55) 100%);
  border-radius: inherit;
  pointer-events: none;
}

.ab2-office-hq > * {
  position: relative;
  z-index: 1;
}

.ab2-office-hq:hover {
  border-color: rgba(196,30,58,0.6);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(196,30,58,0.18);
}

.ab2-office-hq .ab2-office-cc {
  background: #fff;
  border-color: #fff;
  color: #38487D;
}

.ab2-office-hq .ab2-office-region {
  color: rgba(255,255,255,0.7);
}

.ab2-office-hq .ab2-office-city {
  color: #fff;
}

.ab2-office-hq .ab2-office-addr {
  color: rgba(255,255,255,0.75);
}

.ab2-office-hq .ab2-office-contact {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.ab2-office-hq .ab2-office-contact:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.ab2-office-photo {
  margin: -1.5rem -1.5rem 1.2rem;
  height: 180px;
  overflow: hidden;
}

.ab2-office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Country code badge */
.ab2-office-cc {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(56,72,125,0.08);
  border: 1.5px solid rgba(56,72,125,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.ab2-office-hq .ab2-office-cc {
  background: rgba(196,30,58,0.1);
  border-color: rgba(196,30,58,0.3);
  color: var(--red);
}

.ab2-office-region {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}

.ab2-office-city {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.8rem;
  display: block;
}

.ab2-office-addr {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

.ab2-office-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(56,72,125,0.07);
  border: 1px solid rgba(56,72,125,0.18);
  border-radius: 8px;
  padding: 6px 14px;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.ab2-office-contact:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ===== CLIENTS ===== */
.ab2-clients {
  padding: 80px 0;
  background: linear-gradient(135deg, #F8F9FC 0%, #F0F2F7 100%);
}

.ab2-clients-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ab2-clients-h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0;
}

.ab2-clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ab2-clients-logos span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-mid);
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  padding: 8px 20px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.ab2-clients-logos span:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46,58,140,0.25);
}

/* ===== CTA ===== */
.ab2-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.ab2-cta-left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
}

.ab2-cta-left-white {
  background: var(--white);
}

.ab2-cta-inner {
  max-width: 480px;
  width: 100%;
  margin: auto 0;
}

.ab2-cta-center {
  text-align: center;
}

.ab2-cta-h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 1rem;
}

.ab2-cta-h2-dark {
  color: var(--dark);
}

.ab2-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ab2-cta-sub-dark {
  color: var(--gray-600);
}

.ab2-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.ab2-cta-left-white .ab2-cta-btns {
  margin-top: 1rem;
}

.ab2-cta-right {
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.ab2-cta-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.12), transparent 60%);
}

.ab2-cta-number {
  font-family: var(--font-head);
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.ab2-cta-number sup {
  font-size: 0.45em;
  vertical-align: super;
  opacity: 0.7;
}

.ab2-cta-number-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: center;
  max-width: 200px;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .ab2-offices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ab2-office-hq {
    grid-column: span 3;
  }
}

@media (max-width: 1024px) {
  .ab2-hero-inner {
    padding: 5rem 2rem;
  }
  .ab2-hero-visual {
    display: none;
  }
  .ab2-hero-bg-overlay {
    background: rgba(10,14,40,0.70);
  }
  .ab2-md-top-row { min-height: 340px; }
  .ab2-md-intro { padding: 2rem 2.2rem; }
  .ab2-md-career-full { padding: 1.4rem 2.2rem; }
  .ab2-who-hdr { margin-bottom: 1.8rem; }
  .ab2-who-grid {
    grid-template-columns: 1fr;
  }
  .ab2-cta {
    grid-template-columns: 1fr;
  }
  .ab2-cta-right {
    min-height: 200px;
  }
}

@media (max-width: 900px) {
  .ab2-offices-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ab2-office-hq {
    grid-column: span 2;
  }
}

/* ---- 768px: tablet ---- */
@media (max-width: 768px) {
  /* Who We Are: stack on tablet */
  .ab2-who-hdr { margin-bottom: 1.5rem; }
  .ab2-who-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ab2-wc { aspect-ratio: 16 / 9; }
  /* MVV: 2 columns on tablet */
  .ab2-mvv-grid { grid-template-columns: 1fr 1fr; }

  /* Journey card: reduce side padding so arrows don't eat content */
  .ab2-jcard { padding: 2.2rem 3rem 0; }
  .ab2-jnav { width: 40px; height: 40px; }
  .ab2-jnav-prev { left: 0.6rem; }
  .ab2-jnav-next { right: 0.6rem; }
  .ab2-jslide {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .ab2-jslide-img { aspect-ratio: 16 / 9; }
  .ab2-jslide-title { font-size: clamp(20px, 5vw, 28px); }
}

/* ---- 700px ---- */
@media (max-width: 700px) {
  .ab2-hero-inner { padding: 4rem 1.5rem 2rem; }

  /* Stat bar: back to normal flow on mobile so it doesn't overlap content */
  .ab2-stat-bar { position: relative; bottom: auto; left: auto; right: auto; gap: 0; flex-wrap: wrap; }
  .ab2-stat { padding: 1.2rem 1.4rem; min-width: calc(50% - 1px); gap: 12px; }
  .ab2-stat-icon { width: 24px; height: 24px; }
  .ab2-stat-num { font-size: 24px; }
  .ab2-stat-div { width: 1px; height: auto; margin: 0; align-self: stretch; }

  .ab2-val-row { flex-direction: column; gap: 1rem; padding: 1.8rem 1.4rem; }
  .ab2-val-icon-wrap { display: none; }
  .ab2-offices-grid { grid-template-columns: 1fr; }
  .ab2-office-hq { grid-column: span 1; }
  .ab2-cta-left { padding: 3.5rem 2rem; }
}

/* ---- 600px: mobile ---- */
@media (max-width: 600px) {
  /* Journey card: minimal padding, no border-radius (full-width) */
  .ab2-jcard { padding: 1.8rem 0 0; border-radius: 0; }
  .ab2-jcontent { padding: 0 3rem; min-height: 0; }

  .ab2-jnav { width: 36px; height: 36px; top: 22%; transform: none; }
  .ab2-jnav svg { width: 18px; height: 18px; }
  .ab2-jnav-prev { left: 0.4rem; }
  .ab2-jnav-next { right: 0.4rem; }

  /* Switch from opacity/absolute to display:none on mobile — avoids height collapse */
  .ab2-jslide {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    padding-bottom: 1.5rem;
  }
  .ab2-jslide.ab2-jslide-active { display: grid; }

  .ab2-jslide-title { font-size: 22px; }
  .ab2-jslide-desc { font-size: 14px; }
  .ab2-jslide-img { aspect-ratio: 16 / 9; border-radius: 10px; }

  /* Timeline bar: compress label size */
  .ab2-jtl { padding: 1.2rem 0 1.4rem; margin-top: 0; }
  .ab2-jtl-inner { padding: 0 3rem; }
  .ab2-jtl-label { font-size: 10px; }
  .ab2-jtl-dot { width: 8px; height: 8px; }

  .ab2-board-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ab2-board-card { flex: none; max-width: 100%; }
  .ab2-board-badge { width: 60px; height: 60px; font-size: 17px; border-radius: 14px; }
  .ab2-board-wm { font-size: 68px; }
}

/* ---- 480px: small phones ---- */
@media (max-width: 480px) {
  .ab2-hero { min-height: 100svh; }
  .ab2-hero-bg-overlay { background: rgba(10, 14, 40, 0.72); }
  .ab2-hero-inner { padding: 3rem 1.2rem 2rem; }
  .ab2-hero-h1 { font-size: clamp(26px, 8vw, 36px); }
  .ab2-hero-sub { font-size: 14px; line-height: 1.65; max-width: 100%; }
  .ab2-est-badge { white-space: normal; font-size: 10px; padding: 6px 12px; max-width: calc(100% - 2.4rem); }

  /* Stat bar: 2-col stays, tighter numbers */
  .ab2-stat-bar { flex-wrap: wrap; }
  .ab2-stat { padding: 1rem 1rem; min-width: calc(50% - 1px); gap: 10px; }
  .ab2-stat-num { font-size: 20px; }
  .ab2-stat-icon { width: 18px; height: 18px; }

  .ab2-val-row { flex-direction: column; gap: 1.2rem; padding: 1.6rem 1.4rem; }

  /* MVV: single column on mobile */
  .ab2-mvv-grid { grid-template-columns: 1fr; }
  .ab2-mvv { padding: 0 0 60px; }
  .ab2-mvv-card { padding: 1.8rem 1.4rem; }
  .ab2-who-lead { font-size: 15px; }

  /* Who We Are image carousel */
  .ab2-wc { aspect-ratio: 4 / 3; }
  .ab2-who-badges { gap: 7px; }
  .ab2-badge { padding: 6px 10px; font-size: 11px; }

  /* Leadership / MD section — stack on mobile */
  .ab2-md-hero { border-radius: 20px; }
  .ab2-md-top-row { grid-template-columns: 1fr; min-height: auto; }
  .ab2-md-photo-col { min-height: 320px; border-left: none; }
  .ab2-md-intro { border-left: none; border-top: 1px solid var(--border-light); padding: 2rem; }
  .ab2-md-career { flex-direction: column !important; }
  .ab2-md-career-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .ab2-md-career-item:last-child { border-bottom: none; }
  .ab2-md-career-full { padding: 1.4rem 1.6rem; }
  .ab2-md-profile-name { font-size: clamp(24px, 6vw, 34px); }
  .ab2-board-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .ab2-board-card { flex: none; max-width: 100%; width: 100%; }
  .ab2-core { padding: 60px 0; }
  .ab2-core-board-hdr { flex-direction: column; gap: 0.5rem; }

  /* Journey card */
  .ab2-jcard { padding: 1.5rem 0 0; }
  .ab2-jcontent { padding: 0 2.8rem; }
  .ab2-jnav { width: 34px; height: 34px; top: 20%; }
  .ab2-jslide-title { font-size: 20px; }
  .ab2-jslide-desc { font-size: 13.5px; }
  .ab2-jtl-inner { padding: 0 2.8rem; }
  .ab2-jtl-label { font-size: 9.5px; }

  .ab2-story { padding: 60px 0; }
  .ab2-story-h2 { font-size: 26px; }
  .ab2-story-sub { font-size: 14px; }

  .ab2-offices-grid { grid-template-columns: 1fr; }
  .ab2-office-hq { grid-column: span 1; }
  .ab2-cta-left { padding: 2.5rem 1.4rem; }
  .ab2-lead-grid { grid-template-columns: 1fr; }

  .ab2-who { padding: 60px 0; }
  .ab2-who-h2 { font-size: 24px; }
}

/* ---- 375px: iPhone standard ---- */
@media (max-width: 375px) {
  .ab2-hero-h1 { font-size: 26px; }
  .ab2-hero-sub { font-size: 13.5px; }
  .ab2-hero-inner { padding: 2.8rem 1rem; }
  .ab2-stat-num { font-size: 20px; }

  .ab2-jcontent { padding: 0 2.4rem; }
  .ab2-jtl-inner { padding: 0 2.4rem; }
  .ab2-jnav-prev { left: 0.3rem; }
  .ab2-jnav-next { right: 0.3rem; }
  .ab2-jslide-title { font-size: 18px; }
  .ab2-jslide-desc { font-size: 13px; }
  .ab2-jtl-label { font-size: 9px; }

  /* On very small screens, show only 3 years (hide alternates via JS — CSS fallback: compress) */
  .ab2-jtl-year-btn { flex: 1 1 0; min-width: 0; overflow: hidden; }
  .ab2-jtl-label { white-space: nowrap; overflow: hidden; text-overflow: clip; }
}

/* ---- 360px: budget Android ---- */
@media (max-width: 360px) {
  .ab2-hero-h1 { font-size: 24px; }
  .ab2-hero-sub { font-size: 13px; }
  .ab2-stat-num { font-size: 18px; }
  .ab2-jcard { padding: 1.3rem 0 0; }
  .ab2-jcontent { padding: 0 2.2rem; }
  .ab2-jtl-inner { padding: 0 2.2rem; }
  .ab2-board-grid { gap: 10px; }
  .ab2-board-name { font-size: 12.5px; }
  .ab2-core-strip { gap: 1rem; }
}

/* ---- 320px: legacy phones ---- */
@media (max-width: 320px) {
  .ab2-hero-h1 { font-size: 22px; }
  .ab2-hero-sub { font-size: 12.5px; }
  .ab2-stat { min-width: 100%; }
  .ab2-jcontent { padding: 0 2rem; }
  .ab2-jtl-inner { padding: 0 2rem; }
  .ab2-jslide-title { font-size: 16px; }
}
