/* ═══════════════════════════════════════════════════════════
   DCC – About Us Page Styles
   File: public/css/about.css
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO V3 (editorial / credential-wall, deliberately distinct from other pages) ── */
.about-hero-v3 {
  background: linear-gradient(160deg, #fbfaf6 0%, #f4f8f5 55%, #eef7f1 100%);
  position: relative; overflow: hidden; padding: 4rem 0;
}
[data-theme="dark"] .about-hero-v3 { background: linear-gradient(160deg, #0a1006 0%, #0a1508 100%); }

.about-hero-v3__paw { position: absolute; font-size: 12rem; opacity: .05; pointer-events: none; transform: rotate(-15deg); }
.about-hero-v3__paw--1 { top: -3rem; left: -2rem; }
.about-hero-v3__paw--2 { bottom: -4rem; right: -1rem; transform: rotate(20deg); font-size: 15rem; }

.about-hero-v3__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem;
  align-items: center; position: relative; z-index: 1;
}

.about-hero-v3__kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--green-dark); font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.about-hero-v3__kicker-line { width: 30px; height: 2px; background: var(--green); border-radius: 2px; }

.about-hero-v3__title {
  font-family: 'Manrope', sans-serif; font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 700; color: var(--navy); line-height: 1.16; letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.about-hero-v3__title em { color: var(--green); font-style: italic; }
.about-hero-v3__sub { color: var(--gray); font-size: 1.05rem; line-height: 1.75; max-width: 520px; margin-bottom: 1.8rem; }

.about-hero-v3__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.about-hero-v3__btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  background: linear-gradient(135deg,#07a23e,#0dc956);
  color: #fff; font-weight: 700; font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(7,162,62,.3); transition: .25s;
}
.about-hero-v3__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(7,162,62,.4); }
.about-hero-v3__btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  border: 1.5px solid var(--gray-light); color: var(--navy);
  font-weight: 700; font-size: .95rem; text-decoration: none; transition: .25s; background: var(--white);
}
.about-hero-v3__btn-ghost:hover { border-color: var(--green); color: var(--green); }

.about-hero-v3__proof { display: flex; align-items: center; gap: 1.3rem; }
.ahp-item { display: flex; flex-direction: column; }
.ahp-item strong { font-family: 'Manrope', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.ahp-item span { font-size: .72rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-top: .3rem; }
.ahp-divider { width: 1px; height: 34px; background: var(--gray-light); }

/* Right visual: credential wall around a central emblem */
.about-hero-v3__visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.ahv-emblem { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.ahv-ring { position: absolute; border-radius: 50%; border: 2px solid rgba(29,185,84,.3); animation: story-ring-pulse 2.8s ease-in-out infinite; }
.ahv-ring--1 { width: 140px; height: 140px; }
.ahv-ring--2 { width: 200px; height: 200px; border-color: rgba(29,185,84,.15); animation-delay: .9s; }
.ahv-core {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #17a348);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(29,185,84,.1), 0 18px 44px rgba(29,185,84,.4);
  position: relative; z-index: 2;
}
.ahv-core i { font-size: 2.6rem; color: #fff; }

.ahv-card {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  background: var(--white); border-radius: 16px; padding: .8rem 1.1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.1); border: 1px solid var(--gray-light);
  transition: transform .25s ease, box-shadow .25s ease; z-index: 3;
}
.ahv-card:hover { transform: translateY(-4px) rotate(0deg) !important; box-shadow: 0 16px 40px rgba(0,0,0,.14); }
.ahv-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.ahv-card strong { display: block; font-family: 'Manrope', sans-serif; font-size: .85rem; color: var(--navy); white-space: nowrap; }
.ahv-card span { display: block; font-size: .7rem; color: var(--gray); margin-top: .1rem; white-space: nowrap; }
.ahv-card--1 { top: 4%; right: 2%; transform: rotate(4deg); }
.ahv-card--2 { bottom: 20%; left: -4%; transform: rotate(-3deg); }
.ahv-card--3 { bottom: 0; right: 14%; transform: rotate(3deg); }

/* ─── OUR STORY ──────────────────────────────────────────── */
.about-story { padding: 3.5rem 0; background: var(--white); }
.about-story__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
}
.story-img-box {
  background: linear-gradient(145deg, rgba(29,185,84,.22), rgba(29,185,84,.05));
  border: 1px solid rgba(29,185,84,.2);
  border-radius: 24px; min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12); transition: var(--transition);
}
.story-img-box::after {
  content: '🐾'; position: absolute; font-size: 10rem;
  opacity: .05; bottom: -20px; right: -20px;
}
.story-img-box:hover { transform: scale(1.02); }
.story-emoji { font-size: 7rem; z-index: 2; filter: drop-shadow(0 8px 24px rgba(29,185,84,.3)); }
.story-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--green); color: #fff;
  padding: .35rem .9rem; border-radius: 20px;
  font-size: .72rem; font-weight: 800; z-index: 3;
}
.about-story__content .section-title { text-align: left; }
.about-story__content p {
  font-size: .95rem; color: var(--gray); line-height: 1.75; margin-bottom: 1rem;
}

/* ─── MISSION VISION VALUES ──────────────────────────────── */
.about-mvv { padding: 3.5rem 0 4rem; background: var(--off-white); }
.about-mvv .section-label { margin-bottom: 1rem; }
.about-mvv .section-title { margin-bottom: 2.5rem; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; align-items: stretch; }
.mvv-card {
  background: var(--white); border-radius: 22px; padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: 0 6px 28px rgba(0,0,0,.07); border: 1px solid var(--gray-light);
  transition: var(--transition); text-align: center;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}
.mvv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), #17a348);
  border-radius: 22px 22px 0 0;
}
.mvv-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(29,185,84,.15); border-color: var(--green); }
.mvv-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(29,185,84,.14), rgba(29,185,84,.06));
  border: 2px solid rgba(29,185,84,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem; transition: var(--transition);
}
.mvv-card:hover .mvv-icon-wrap {
  background: linear-gradient(135deg, var(--green), #17a348);
  border-color: var(--green);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 24px rgba(29,185,84,.4);
}
.mvv-icon { font-size: 1.75rem; display: block; }
.mvv-card:hover .mvv-icon { filter: brightness(0) invert(1); }
.mvv-card h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); margin-bottom: .55rem; text-align: center; }
.mvv-card p { font-size: .88rem; color: var(--gray); line-height: 1.7; flex: 1; text-align: left; width: 100%; }
/* ─── MVV BENTO (mission + vision panels) ────────────────── */
.mvv-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-bottom: 1.8rem; }
.mvv-panel {
  position: relative; background: var(--white); border-radius: 22px;
  padding: 2.2rem 2rem; border: 1px solid var(--gray-light);
  border-left: 5px solid var(--green); overflow: hidden;
  transition: var(--transition);
}
.mvv-panel:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(0,0,0,.09); }
.mvv-panel--vision { border-left-color: #2563eb; }
.mvv-panel__num {
  position: absolute; top: 1rem; right: 1.4rem;
  font-family: 'Manrope', sans-serif; font-size: 2.6rem; font-weight: 700;
  color: var(--gray-light); line-height: 1; opacity: .6;
}
.mvv-panel__icon {
  width: 60px; height: 60px; border-radius: 16px; font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(29,185,84,.14), rgba(29,185,84,.05));
  margin-bottom: 1.1rem; position: relative; z-index: 1;
}
.mvv-panel--vision .mvv-panel__icon { background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(37,99,235,.05)); }
.mvv-panel h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; position: relative; z-index: 1; }
.mvv-panel p { font-size: .89rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.1rem; position: relative; z-index: 1; }
.mvv-panel__tag {
  display: inline-block; background: rgba(29,185,84,.08); border: 1px solid rgba(29,185,84,.22);
  border-radius: 30px; padding: .3rem .9rem; font-size: .72rem; font-weight: 700;
  color: var(--green-dark); letter-spacing: .02em;
}
.mvv-panel--vision .mvv-panel__tag { background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.22); color: #1d4ed8; }

/* ─── VALUES STRIP ────────────────────────────────────────── */
.mvv-values-strip {
  background: linear-gradient(135deg, rgba(29,185,84,.05), rgba(29,185,84,.02));
  border: 1px dashed rgba(29,185,84,.3); border-radius: 22px; padding: 2rem 2.2rem;
}
.mvs-header { display: flex; align-items: center; gap: .6rem; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 1.4rem; }
.mvs-header__icon { font-size: 1.3rem; }
.mvs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.mvs-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .4rem; padding: 0 .6rem; position: relative;
}
.mvs-item:not(:last-child)::after {
  content: ''; position: absolute; top: 0; right: -.6rem; bottom: 0; width: 1px;
  background: rgba(29,185,84,.2);
}
.mvs-item__icon { font-size: 2.4rem; margin-bottom: .2rem; }
.mvs-item strong { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: .85rem; color: var(--navy); }
.mvs-item span { font-size: .76rem; color: var(--gray); line-height: 1.4; }
.values-list li strong { color: var(--navy); white-space: nowrap; }

/* ─── TIMELINE (SNAKE ROAD) ──────────────────────────────── */
.about-timeline { padding: 4rem 0 5rem; background: var(--white); }
.snake-tl { max-width: 1100px; margin: 3rem auto 0; }

/* ── Label rows ── */
.stl-labels {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .6rem 2rem; margin-right: 90px; text-align: center;
}
.stl-labels--bot4 { grid-template-columns: repeat(4, 1fr); }
.stl-labels--top .stl-lbl { position: relative; padding-bottom: 24px; }
.stl-labels--top .stl-lbl::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 22px; background: rgba(29,185,84,.45); border-radius: 2px;
}
.stl-labels--bot .stl-lbl { position: relative; padding-top: 24px; }
.stl-labels--bot .stl-lbl::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 22px; background: rgba(29,185,84,.45); border-radius: 2px;
}
.stl-year {
  display: block; font-family: 'Manrope', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--green); margin-bottom: .25rem;
}
.stl-lbl h4 {
  font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .3rem;
}
.stl-lbl p { font-size: .86rem; color: var(--gray); line-height: 1.6; }

/* ── Road ── */
.stl-road { position: relative; margin: 0; }
.stl-tracks {
  margin-right: 90px;
  display: flex; flex-direction: column; gap: 40px;
}

/* Each track row */
.stl-track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  position: relative; height: 64px;
}
.stl-track--bot4 { grid-template-columns: repeat(4, 1fr); }
/* The road strip between nodes */
.stl-track::before {
  content: ''; position: absolute;
  top: 50%; transform: translateY(-50%);
  left: 32px; right: 32px;
  height: 16px; border-radius: 8px; z-index: 0;
}
.stl-track:not(.stl-track--bot)::before {
  background: linear-gradient(90deg, #1db954 0%, #17a348 50%, #14b8a6 100%);
}
.stl-track--bot::before {
  background: linear-gradient(270deg, #dc2626 0%, #d97706 40%, #7c3aed 100%);
}
.stl-track--bot4::before {
  background: linear-gradient(270deg, #dc2626 0%, #d97706 33%, #7c3aed 66%, #0891b2 100%);
}

/* Icon nodes */
.stl-node {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.35rem;
  border: 3px solid #fff;
  position: relative; z-index: 2; margin: auto;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stl-node:hover { transform: scale(1.14) translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.22); }
[data-theme="dark"] .stl-node { border-color: var(--white); }

/* Per-node colors matching the road gradient */
.stl-n1 { background: linear-gradient(135deg, #1db954, #17a348); }
.stl-n2 { background: linear-gradient(135deg, #17a348, #0d9488); }
.stl-n3 { background: linear-gradient(135deg, #14b8a6, #0891b2); }
.stl-n4 { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.stl-n5 { background: linear-gradient(135deg, #d97706, #b45309); }
.stl-n6 { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.stl-n7 { background: linear-gradient(135deg, #0891b2, #0e7490); }
.stl-n7 i { animation: n7Pulse 2s ease-in-out infinite; }
@keyframes n7Pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

/* Right U-turn
   center-to-center = gap(40) + track-height(64) = 104px
   element height   = 104 + border(16) = 120px */
.stl-uturn {
  position: absolute; right: 0;
  top: 50%; transform: translateY(-50%);
  width: 90px; height: 120px;
  border: 16px solid #0891b2;
  border-left: none;
  border-radius: 0 70px 70px 0;
  box-sizing: border-box;
}

/* ─── TEAM SECTION ───────────────────────────────────────── */
.about-team { padding: 4rem 0 5rem; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; max-width: 1000px; margin-left: auto; margin-right: auto; }
.team-card {
  background: var(--white); border-radius: 24px; padding: 2.5rem 1.8rem 2.2rem;
  text-align: center; box-shadow: 0 6px 28px rgba(0,0,0,.07);
  border: 1px solid var(--gray-light);
  border-top: 4px solid transparent;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(29,185,84,.13);
  border-color: var(--green);
  border-top-color: var(--green);
}
.team-avatar { font-size: 3.8rem; margin-bottom: .8rem; display: block; transition: var(--transition); }
.team-card:hover .team-avatar { transform: scale(1.1); }
.team-card h4 {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--navy); margin-bottom: .3rem;
}
.team-role {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--green); margin-bottom: .9rem;
  line-height: 1.45;
}
.team-desc {
  font-size: .84rem; color: var(--gray); line-height: 1.7;
  text-align: left; width: 100%;
}
.team-desc + .team-desc { margin-top: .9rem; }

/* ─── STORY ICON STAGE ───────────────────────────────────── */
.story-img-box {
  background: linear-gradient(145deg, rgba(29,185,84,.18), rgba(29,185,84,.04));
  border: 1px solid rgba(29,185,84,.2);
  border-radius: 24px; min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12); transition: var(--transition);
  gap: .6rem; padding: 2rem 1.5rem 2.5rem;
}
.story-icon-stage {
  position: relative;
  width: 210px; height: 210px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; flex-shrink: 0;
}
.story-pulse-ring {
  position: absolute; width: 138px; height: 138px; border-radius: 50%;
  border: 2px solid rgba(29,185,84,.35);
  animation: story-ring-pulse 2.8s ease-in-out infinite;
}
.story-outer-ring {
  position: absolute; width: 192px; height: 192px; border-radius: 50%;
  border: 1.5px solid rgba(29,185,84,.15);
  animation: story-ring-pulse 2.8s ease-in-out .9s infinite;
}
@keyframes story-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: .45; }
}
.story-center-icon {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #17a348);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(29,185,84,.12), 0 14px 40px rgba(29,185,84,.45);
  z-index: 3; position: relative; transition: var(--transition);
}
.story-center-icon i { font-size: 2.5rem; color: #fff; }
.story-img-box:hover .story-center-icon {
  transform: scale(1.09);
  box-shadow: 0 0 0 14px rgba(29,185,84,.14), 0 18px 50px rgba(29,185,84,.55);
}
.story-orbit-icon {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: 2px solid rgba(29,185,84,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.13); transition: var(--transition);
}
.story-orbit-icon:hover { background: var(--green); color: #fff; border-color: var(--green); transform: scale(1.15); }
[data-theme="dark"] .story-orbit-icon { background: rgba(20,26,20,.92); }
.soi--top    { top: 8px;    left: 50%;  transform: translateX(-50%); }
.soi--bottom { bottom: 8px; left: 50%;  transform: translateX(-50%); }
.soi--left   { left: 8px;   top: 50%;   transform: translateY(-50%); }
.soi--right  { right: 8px;  top: 50%;   transform: translateY(-50%); }
.story-brand-text {
  font-family: 'Manrope', sans-serif; font-style: italic;
  font-size: .88rem; font-weight: 600; color: var(--green);
  text-align: center; letter-spacing: .03em;
  position: relative; z-index: 2; margin: 0;
}

/* ─── TEAM AVATAR CIRCLES ─────────────────────────────────── */
.team-avatar-circle {
  width: 180px; height: 180px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: .04em;
  margin: 0 auto 1.2rem; overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
  transition: var(--transition);
}
.team-card:hover .team-avatar-circle { transform: scale(1.1); box-shadow: 0 10px 30px rgba(29,185,84,.3); }
.team-avatar-circle img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; border-radius: 50%; }
.tac--green      { background: linear-gradient(135deg, #1db954, #17a348); }
.tac--navy       { background: linear-gradient(135deg, #0d1f3c, #1a3a6b); }
.tac--dark-green { background: linear-gradient(135deg, #17a348, #0f5c2e); }
.tac--forest     { background: linear-gradient(135deg, #0f3d2e, #1a6b4a); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-hero-v3__inner { grid-template-columns: 1fr; text-align: center; }
  .about-hero-v3__visual { display: none; }
  .about-hero-v3__kicker, .about-hero-v3__ctas, .about-hero-v3__proof { justify-content: center; }
  .about-hero-v3__sub { margin-left: auto; margin-right: auto; }
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__visual { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-bento { grid-template-columns: 1fr; }
  .mvs-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .mvs-item:nth-child(3)::after { display: none; }
}
@media (max-width: 768px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .mvs-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.4rem; }
  .mvs-item::after { display: none; }
  .about-hero-v3 { padding: 3.5rem 0; }
  .about-hero-v3__proof { flex-wrap: wrap; row-gap: .8rem; }
  .about-story, .about-mvv, .about-timeline, .about-team { padding: 3rem 0; }
  /* Snake timeline → stacked vertical list */
  .snake-tl { display: flex; flex-direction: column; gap: 0; }
  .stl-labels { grid-template-columns: 1fr; margin-right: 0; gap: .6rem; }
  .stl-labels--top { order: 1; }
  .stl-road { display: none; }
  .stl-labels--bot { order: 2; display: flex; flex-direction: column-reverse; gap: .6rem; }
  .stl-labels--top .stl-lbl, .stl-labels--bot .stl-lbl {
    padding: 0 0 0 1rem; text-align: left; border-left: 3px solid var(--green);
  }
  .stl-labels--top .stl-lbl::after, .stl-labels--bot .stl-lbl::before { display: none; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; max-width: 100%; margin: 2rem auto 0; padding: 0 1rem; gap: 1.4rem; }
  .team-card { padding: 2rem 1.4rem 1.8rem; }
  .team-avatar-circle { width: 130px; height: 130px; margin-bottom: .9rem; }
  .team-desc { font-size: .82rem; line-height: 1.65; }
  .about-hero-v3__title { font-size: 1.8rem; }
  .about-hero-v3__ctas { flex-direction: column; align-items: stretch; }
  .about-hero-v3__btn-primary, .about-hero-v3__btn-ghost { width: 100%; justify-content: center; }
}
@media (max-width: 360px) {
  .about-hero-v3__title { font-size: 1.6rem; }
  .about-hero-v3 { padding: 2.5rem 0; }
}

/* ─── A'ALDA PARTNERSHIP SECTION ─────────────────────────── */
.about-mvv--aalda { background: #f8fdf9; }
[data-theme="dark"] .about-mvv--aalda { background: var(--bg3); }
.about-mvv--aalda .section-sub { max-width: 700px; margin: 0 auto; }
.about-mvv--aalda .section-header { margin-bottom: 2.5rem; }
.mvv-grid--auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; }
