:root {
  --bw-text: #111111;
  --bw-muted: #555555;
}


/* ======================================
   ABOUT HERO V2 – EDITORIAL LAYOUT
====================================== */

.about-hero-v2 {
  padding: 6rem 0;
  background: #ffffff;
}

.about-hero-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT CONTENT */
.about-hero-content {
  max-width: 560px;
}

.about-hero-title {
  font-size: 5.2rem;
  line-height: 1.08;
  margin: 1rem 0 1.6rem;
}

.about-hero-title span {
  display: block;
  color: #555;
}

.about-hero-desc {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--bw-muted);
}

/* CTA */
.about-hero-cta {
  display: flex;
  gap: 1.4rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-size: 1.6rem;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.25s ease;
}

.hero-btn.primary {
  background: #000;
  color: #fff;
}

.hero-btn.primary:hover {
  background: #111;
}

.hero-btn.secondary {
  background: transparent;
  color: #000;
}

.hero-btn.secondary:hover {
  background: #000;
  color: #fff;
}

/* RIGHT VISUAL */
.about-hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-image-main {
  width: 100%;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  background: #eaeaea;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 260px;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  background: #dcdcdc;
}

.hero-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================================
   ANIMATION
====================================== */

.hero-animate {
  opacity: 0;
  transform: translateY(40px);
}

.hero-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 {
  transition-delay: 0.2s;
}

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 1024px) {
  .about-hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero-visual {
    min-height: 420px;
  }

  .hero-image-accent {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-hero-title {
    font-size: 3.6rem;
  }

  .about-hero-desc {
    font-size: 1.6rem;
  }

  .hero-image-main {
    height: 260px;
  }
}







/* ======================================
   EXHIBITIONS – V2
====================================== */

.about-expo-v2 {
  padding: 6rem 0 5rem;
  background: #ffffff;
}

.expo-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expo-v2-header {
  max-width: 760px;
  margin-bottom: 4.5rem;
}

/* Expo grid */
.expo-v2-grid {
  display: grid;
  gap: 5rem;
}

/* Expo block */
.expo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expo-block.reverse {
  direction: rtl;
}

.expo-block.reverse > * {
  direction: ltr;
}

.expo-media {
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #eaeaea;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.expo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expo-content h3 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}

.expo-content p {
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--bw-muted);
  margin-bottom: 1.2rem;
}

.expo-content ul {
  padding-left: 1.4rem;
}

.expo-content li {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

/* ======================================
   CLOSING CTA – V2
====================================== */

.about-cta-v2 {
  background: #000;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.cta-v2-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-cta-v2 h2 {
  font-size: 4rem;
  margin-bottom: 1.4rem;
}

.about-cta-v2 p {
  font-size: 1.8rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 2.6rem;
}

.cta-v2-actions {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  font-size: 1.6rem;
  text-decoration: none;
  border: 1px solid #fff;
  transition: all 0.25s ease;
}

.cta-btn.primary {
  background: #fff;
  color: #000;
}

.cta-btn.primary:hover {
  background: transparent;
  color: #fff;
}

.cta-btn.secondary {
  background: transparent;
  color: #fff;
}

.cta-btn.secondary:hover {
  background: #fff;
  color: #000;
}

/* ======================================
   ANIMATION
====================================== */

.expo-animate,
.cta-animate {
  opacity: 0;
  transform: translateY(40px);
}

.expo-animate.in-view,
.cta-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 1024px) {
  .expo-block {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .expo-block.reverse {
    direction: ltr;
  }

  .expo-media {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .about-cta-v2 h2 {
    font-size: 3rem;
  }
}





/* ================= EXHIBITION SHOWCASE ================= */

.expo-doc-intro,
.expo-image-narrative,
.expo-split-media,
.expo-masonry,
.expo-human {
  padding: 6.5rem 2rem; /* ?? SECTION PADDING (adjust 5–10px here if needed) */
}

/* Inner spacing (extra breathing room) */
.expo-doc-inner {
  padding: 8px 0; /* ?? ADDITIONAL SECTION PADDING (5–10px adjustable) */
}

/* VIDEO WRAPPER */
.expo-doc-video {
  position: relative;
  margin-top: 2rem;
}

/* MAIN VIDEO */
.expo-doc-video video {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);

  /* ???? VIDEO HEIGHT CONTROL (CHANGE ONLY THIS) ???? */
  height: 520px; /* increase / decrease video height here */
  object-fit: cover;

  display: block;
}

/* MUTE BUTTON */
.expo-mute-toggle {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;

  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 1rem;

  /* padding: 0.6rem 0.8rem; */
  border-radius: 999px;
  cursor: pointer;

  transition: background 0.25s ease;
}

.expo-mute-toggle:hover {
  background: rgba(0,0,0,0.85);
}

/* ================= OTHER SECTIONS (UNCHANGED) ================= */

/* Narrative grid */
.expo-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.expo-image-grid img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Split */
.expo-split-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.expo-thumb-row {
  display: flex;
  gap: 1rem;
}
.expo-thumb-row img {
  width: 90px;
  border-radius: 10px;
}

/* Masonry */
.expo-masonry-grid {
  column-count: 3;
  column-gap: 1.4rem;
}
.expo-masonry-grid img {
  width: 100%;
  margin-bottom: 1.4rem;
  border-radius: 16px;
}

/* Human */
.expo-human-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2.4rem;
}
.expo-human-grid figure img {
  width: 100%;
  border-radius: 18px;
}
.expo-human-grid figcaption {
  margin-top: .6rem;
  font-size: 1.4rem;
  color: var(--bw-muted);
}

/* Responsive */
@media(max-width:1024px){
  .expo-image-grid,
  .expo-human-grid {
    grid-template-columns: 1fr;
  }
  .expo-masonry-grid {
    column-count: 1;
  }
  .expo-split-inner {
    grid-template-columns: 1fr;
  }

  .expo-doc-video video {
    height: 300px; /* ?? MOBILE VIDEO HEIGHT */
  }
}









/* ======================================
   VOICES FROM THE FLOOR – V2
====================================== */

.expo-voices {
  padding: 6rem 0;
  background: #ffffff;
}

.expo-voices-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expo-voices-header {
  max-width: 720px;
  margin-bottom: 4.5rem;
}

/* Grid */
.expo-voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

/* Card */
.voice-card {
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  position: relative;
}

.voice-card video,
.voice-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Caption */
.voice-card figcaption {
  padding: 1.4rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ======================================
   ANIMATION
====================================== */

.voices-animate {
  opacity: 0;
  transform: translateY(40px);
}

.voices-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 1024px) {
  .expo-voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .expo-voices-grid {
    grid-template-columns: 1fr;
  }

  .voice-card video,
  .voice-card img {
    height: 220px;
  }
}
/* MUTE BUTTON */
.mute-toggle {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.mute-toggle:hover {
  background: rgba(0,0,0,0.85);
}
.voice-card video {
  isolation: isolate;
  backface-visibility: hidden;
  transform: translateZ(0);
}















/* ======================================
   EXPLAINING THE TECHNOLOGY – V2
====================================== */

.expo-tech {
  padding: 6rem 0;
  background: #ffffff;
}

.expo-tech-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expo-tech-header {
  max-width: 760px;
  margin-bottom: 4.5rem;
}

/* Layout */
.expo-tech-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

/* Main media */
.expo-tech-main {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.expo-tech-main img,
.expo-tech-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Side column */
.expo-tech-side {
  display: grid;
  gap: 2.4rem;
}

.expo-tech-side figure img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.expo-tech-side figcaption {
  margin-top: 0.6rem;
  font-size: 1.4rem;
  color: var(--bw-muted);
}

/* ======================================
   ANIMATION
====================================== */

.tech-animate {
  opacity: 0;
  transform: translateY(40px);
}

.tech-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 1024px) {
  .expo-tech-row {
    grid-template-columns: 1fr;
  }

  .expo-tech-side figure img {
    height: 200px;
  }
}

















/* ======================================
   PRODUCT IN REAL CONTEXT – V2
====================================== */

.expo-context {
  padding: 6rem 0;
  background: #ffffff;
}

.expo-context-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expo-context-header {
  max-width: 760px;
  margin-bottom: 4.5rem;
}

/* Feature image */
.expo-context-feature {
  position: relative;
  margin-bottom: 4rem;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

.expo-context-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.context-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );
}

/* Grid */
.expo-context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}

.expo-context-grid figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.expo-context-grid figcaption {
  margin-top: 0.6rem;
  font-size: 1.4rem;
  color: var(--bw-muted);
}

/* ======================================
   ANIMATION
====================================== */

.context-animate {
  opacity: 0;
  transform: translateY(40px);
}

.context-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.35s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.65s; }

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 1024px) {
  .expo-context-feature img {
    height: 300px;
  }

  .expo-context-grid {
    grid-template-columns: 1fr;
  }
}











/* ======================================
   DIDAC × ACETECH – V2
====================================== */

.expo-compare {
  padding: 6rem 0;
  background: #f8f9fa;
}

.expo-compare-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expo-compare-header {
  max-width: 760px;
  margin-bottom: 4.5rem;
}

/* Grid */
.expo-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

/* Card */
.expo-compare-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.expo-compare-card:hover {
  transform: translateY(-10px);
}

.compare-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.compare-content {
  padding: 2.4rem;
}

.compare-content h3 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.compare-content p {
  font-size: 1.6rem;
  color: var(--bw-muted);
  line-height: 1.7;
}

.compare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.compare-tags span {
  padding: 0.4rem 1rem;
  font-size: 1.2rem;
  border-radius: 999px;
  border: 1px solid #000;
}

/* ======================================
   ANIMATION
====================================== */

.compare-animate {
  opacity: 0;
  transform: translateY(40px);
}

.compare-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 1024px) {
  .expo-compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-media img {
    height: 260px;
  }
}

















/* ======================================
   VISITOR REACTIONS & REVIEWS – V2
====================================== */
.expo-reviews {
  padding: 6rem 0;
  background: #ffffff;
}

.expo-reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expo-reviews-header {
  max-width: 760px;
  margin-bottom: 4.5rem;
}

/* ===============================
   FEATURE VIDEO
================================ */

.expo-review-feature {
  position: relative;
  margin-bottom: 4rem;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

.expo-review-feature video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  background: #000;
}

.review-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 2rem;
  font-size: 1.7rem;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );
}

/* ===============================
   GRID FIX (IMPORTANT)
================================ */

.expo-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}

/* FIX: uniform video size */
.expo-review-grid figure video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 220px; /* ?? KEY FIX */
  object-fit: cover;
  border-radius: 18px;
  background: #000;
}

.expo-review-grid figcaption {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: var(--bw-text);
  line-height: 1.6;
}

.expo-review-grid figcaption span {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  color: var(--bw-muted);
}

/* ===============================
   ANIMATION
================================ */

.review-animate {
  opacity: 0;
  transform: translateY(40px);
}

.review-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.35s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.65s; }

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .expo-review-feature video {
    height: 300px;
  }

  .expo-review-grid {
    grid-template-columns: 1fr;
  }

  .expo-review-grid figure video {
    max-height: 260px;
  }
}
.expo-review-feature video {
  cursor: pointer; /* ?? SHOW POINTER ON HOVER */
}
































/* ======================================
   MEET THE TEAM – V2 ( end - sections )
====================================== */

.about-team-v3 {
  padding: 5.5rem 0 4.5rem;
  background: #fff;
}

.team-v3-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-v3-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

/* GRID */
.team-v3-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.2rem;
}

/* CARD */
.team-card-v3 {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  cursor: pointer;
}

.team-card-v3 img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.team-card-v3:hover img {
  transform: scale(1.05);
}

/* OVERLAY */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
  color: #fff;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.45s ease;
}

.team-card-v3:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* LOCATION */
.team-location {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(255,255,255,0.95);
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 20px;
}

/* TEXT */
.team-overlay h4 {
  font-size: 1.7rem;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}

.team-overlay a {
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.team-overlay a:hover {
  text-decoration: underline;
}

/* TAGS */
.team-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.team-tags span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 1.15rem;
}

/* ANIMATION */
.team-animate {
  opacity: 0;
  transform: translateY(40px);
}

.team-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

.delay-1 {
  transition-delay: 0.2s;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .team-v3-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-v3-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-v3-row {
    grid-template-columns: 1fr;
  }

  .team-card-v3 img {
    height: 260px;
  }
}



/* ======================================
   MISSION, VISION & VALUES – V2
====================================== */
.about-overview {
  padding: 7rem 0;
  background: #ffffff;
}

.about-overview-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.about-overview-header {
  max-width: 820px;
  margin-bottom: 6rem;
}

.about-overview-header .bw-kicker {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--bw-muted);
}

/* Blocks */
.about-overview-block {
  margin-bottom: 6rem;
}

.about-overview-title {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
}

/* Columns */
.about-overview-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.about-overview-columns h4 {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.about-overview-columns p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--bw-muted);
}

/* Stats */
.about-overview-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6rem;
}

.about-overview-stats div {
  text-align: center;
  padding: 1.6rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
}

.about-overview-stats strong {
  display: block;
  font-size: 2.4rem;
}

.about-overview-stats span {
  font-size: 1.3rem;
  color: var(--bw-muted);
}

/* Industries */
.about-overview-industries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 3rem;
}

.about-overview-industries p {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-overview-columns {
    grid-template-columns: 1fr;
  }

  .about-overview-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-overview-industries {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-overview-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}





















/* ======================================
   TESTIMONIALS – V3
====================================== */

.about-testimonials-v3 {
  padding: 6.5rem 0;
  background: #ffffff;
}

.testimonials-v3-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.testimonials-v3-header {
  max-width: 760px;
  margin-bottom: 5rem;
}

/* Grid */
.testimonials-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

/* Card */
.testimonial-card {
  background: #fafafa;
  border-radius: 22px;
  padding: 2.4rem 2.4rem 2.6rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* Image / Logo */
.testimonial-media {
  height: 64px;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
}

.testimonial-media img {
  max-height: 100%;
  max-width: 160px;
  object-fit: contain;
}

/* Quote */
.testimonial-card blockquote {
  font-size: 1.7rem;
  line-height: 1.7;
  color: #111;
  margin-bottom: 2rem;
}

/* Footer */
.testimonial-card footer strong {
  font-size: 1.5rem;
  display: block;
}

.testimonial-card footer span {
  font-size: 1.3rem;
  color: var(--bw-muted);
}

/* ======================================
   ANIMATION
====================================== */

.testimonial-animate {
  opacity: 0;
  transform: translateY(40px);
}

.testimonial-animate.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 1024px) {
  .testimonials-v3-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .testimonial-media img {
    max-width: 140px;
  }
}
