/* ═══════════════════════════════════════════════════════════
   IKON CONSTRUCTIONS — about.css
   About Us page specific styles
   ═══════════════════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,0.92) 0%, rgba(10,25,49,0.80) 60%, rgba(6,15,30,0.70) 100%);
}

/* geometric decorations */
.geo {
  position: absolute;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  animation: geoFloat 8s ease-in-out infinite;
}
.geo-1 { width: 300px; height: 300px; top: -80px; right: 10%; animation-delay: 0s; }
.geo-2 { width: 180px; height: 180px; bottom: 10%; right: 25%; animation-delay: 2s; }
.geo-3 { width: 80px; height: 80px; top: 30%; right: 5%; border-color: rgba(201,168,76,0.3); animation-delay: 4s; }
@keyframes geoFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(10deg); }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 80px;
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.bc-sep { color: rgba(255,255,255,0.3); font-size: 13px; }
.breadcrumb span:last-child { font-size: 13px; color: var(--gold); font-weight: 600; }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-italic);
  font-weight: 300;
}

.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.page-hero-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.chip {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
}

.page-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.4; }
}

/* ─── WHO WE ARE ─── */
.wwa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wwa-img-stack {
  position: relative;
  height: 560px;
}
.wwa-img-main {
  width: 85%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.wwa-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.wwa-years-badge {
  position: absolute;
  top: 24px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.img-fallback {
  background: linear-gradient(135deg, #0A1931, #1a3a6e);
  border-radius: var(--radius-lg);
  min-height: 460px;
}

.wwa-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.wwa-highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.wwa-highlight-item:hover { background: var(--white); box-shadow: var(--shadow); transform: translateX(4px); }
.wh-icon { font-size: 28px; flex-shrink: 0; }
.wwa-highlight-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.wwa-highlight-item span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─── VISION MISSION VALUES ─── */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vmv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 44px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.vmv-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); background: rgba(255,255,255,0.07); }
.vmv-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.vmv-icon { font-size: 28px; }
.vmv-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.vmv-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.vmv-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.vmv-accent {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.5s ease;
}
.vmv-card:hover .vmv-accent { width: 100%; }
.values-list { list-style: none; margin-top: 4px; }
.values-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.values-list li span { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }

/* ─── TEAM SECTION ─── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 72px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1931, #1a3a6e);
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,49,0.8), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-img-overlay { opacity: 1; }
.team-social { display: flex; gap: 8px; }
.team-social a {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: var(--transition);
}
.team-social a:hover { background: var(--white); }
.team-role-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.team-info { padding: 28px 30px 32px; }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-title { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 16px; letter-spacing: 0.5px; }
.team-quote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 20px;
}
.team-expertise { display: flex; gap: 8px; flex-wrap: wrap; }
.team-expertise span {
  padding: 5px 14px;
  background: var(--off-white);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.support-team { margin-top: 16px; }
.support-team-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 36px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.support-card:hover { background: var(--white); box-shadow: var(--shadow); border-bottom-color: var(--gold); transform: translateY(-4px); }
.support-icon { font-size: 36px; margin-bottom: 14px; }
.support-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.support-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 48px;
  position: relative;
  width: 50%;
  padding-right: 48px;
}
.timeline-item.right {
  justify-content: flex-start;
  align-self: flex-end;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 48px;
}
.tl-year-badge {
  position: absolute;
  right: -52px;
  top: 16px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 20px;
  border: 2px solid var(--gold);
  white-space: nowrap;
  z-index: 2;
}
.timeline-item.right .tl-year-badge {
  left: -52px;
  right: auto;
}
.tl-content { position: relative; }
.tl-dot {
  position: absolute;
  right: -57px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
  z-index: 2;
}
.timeline-item.right .tl-dot {
  left: -57px;
  right: auto;
}
.tl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: 0 4px 24px rgba(10,25,49,0.08);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.tl-card:hover { box-shadow: var(--shadow-lg); border-top-color: var(--gold); transform: translateY(-4px); }
.tl-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tl-tag.gold-tag { background: var(--gold); color: var(--navy); }
.tl-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.tl-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.highlight-card { border-top-color: var(--gold) !important; background: linear-gradient(135deg, #fff, #fffdf5); }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--navy);
  padding: 56px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stats-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.strip-stat { text-align: center; flex: 1; min-width: 100px; }
.strip-num {
  display: inline;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.strip-plus { font-size: 22px; color: var(--gold); font-weight: 700; }
.strip-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.strip-sep { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* ─── STRENGTHS SECTION ─── */
.strengths-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.strength-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  background: linear-gradient(135deg, #0A1931, #1a3a6e);
}
.strength-featured img { width: 100%; height: 100%; object-fit: cover; }
.strength-img-fallback { min-height: 520px; }
.strength-featured-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  background: linear-gradient(to top, rgba(6,15,30,0.95), transparent);
}
.strength-featured-overlay blockquote {
  font-family: var(--font-italic);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 300;
}
.strength-featured-overlay cite { font-size: 13px; color: var(--gold); font-style: normal; font-weight: 600; }

.strengths-list { display: flex; flex-direction: column; gap: 0; }
.strength-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--light-grey);
}
.strength-row:last-child { border-bottom: none; }
.str-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: rgba(10,25,49,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.str-content { flex: 1; }
.str-content h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.str-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.str-bar { height: 3px; background: var(--light-grey); border-radius: 3px; overflow: hidden; }
.str-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 3px;
  animation: strGrow 1.5s ease 0.3s both;
}
@keyframes strGrow { from { width: 0; } to { width: var(--w); } }

/* ─── CERTIFICATIONS ─── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(10,25,49,0.06);
  transition: var(--transition);
  border-top: 3px solid transparent;
  text-align: center;
}
.cert-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-6px); }
.cert-icon { font-size: 44px; margin-bottom: 16px; }
.cert-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.cert-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ─── TESTIMONIALS SLIDER ─── */
.testimonial-slider-wrap { overflow: hidden;   width: 100%; }
.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.tsl-card {
  min-width: calc((100vw - 48px) / 3 - 19px); /* 48px = container padding */
  max-width: calc((100vw - 48px) / 3 - 19px);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  flex-shrink: 0;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.tsl-card:hover { background: var(--white); box-shadow: var(--shadow); border-bottom-color: var(--gold); }
.tsl-quote {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.7;
  margin-bottom: 20px;
}
.tsl-card p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.tsl-reviewer { display: flex; gap: 16px; align-items: center; }
.tsl-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tsl-reviewer strong { display: block; font-size: 15px; color: var(--navy); font-weight: 700; }
.tsl-reviewer span { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.tsl-stars { color: var(--gold); font-size: 13px; margin-top: 4px; }

.tsl-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.tsl-prev, .tsl-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.tsl-prev:hover, .tsl-next:hover { background: var(--navy); color: var(--white); }
.tsl-dots { display: flex; gap: 8px; }
.tsl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light-grey);
  cursor: pointer;
  transition: var(--transition);
}
.tsl-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* ─── CSR SECTION ─── */
.csr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.csr-items { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
.csr-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.csr-item-icon { font-size: 32px; flex-shrink: 0; }
.csr-item strong { display: block; font-size: 15px; color: var(--white); font-weight: 700; margin-bottom: 6px; }
.csr-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.csr-image { position: relative; }
.csr-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.csr-img-fallback { background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); min-height: 460px; border-radius: var(--radius-lg); }
.csr-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.csr-stat-num { font-family: var(--font-display); font-size: 40px; font-weight: 900; line-height: 1; }
.csr-stat-text { font-size: 12px; font-weight: 600; max-width: 140px; line-height: 1.4; margin-top: 6px; }

/* ─── ABOUT CTA ─── */
.about-cta { background: var(--off-white); }
.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.btn-outline-navy {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-navy.large { padding: 18px 40px; font-size: 15px; }
.about-cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-call-row { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.call-icon-small { font-size: 28px; }
.call-label-small { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.call-num-big { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--navy); transition: var(--transition); }
.call-num-big:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .wwa-grid          { grid-template-columns: 1fr; gap: 48px; }
  .vmv-grid          { grid-template-columns: 1fr; gap: 24px; }
  .team-grid         { grid-template-columns: 1fr; }
  .support-grid      { grid-template-columns: repeat(2, 1fr); }
  .timeline::before  { left: 20px; }
  .timeline-item     { width: 100%; padding-right: 0; padding-left: 64px; justify-content: flex-start; }
  .timeline-item.right { margin-left: 0; padding-left: 64px; }
  .tl-year-badge     { left: -8px; right: auto; top: -32px; }
  .timeline-item.right .tl-year-badge { left: -8px; }
  .tl-dot            { left: 12px; right: auto; }
  .timeline-item.right .tl-dot { left: 12px; }
  .stats-strip-grid  { justify-content: center; gap: 32px; }
  .strip-sep         { display: none; }
  .strengths-layout  { grid-template-columns: 1fr; gap: 40px; }
  .strength-featured { height: 360px; }
  .certs-grid        { grid-template-columns: repeat(2, 1fr); }
  .csr-grid          { grid-template-columns: 1fr; gap: 48px; }
  .about-cta-inner   { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .page-hero         { min-height: 80vh; }
  .page-hero-title   { font-size: 36px; }
  .vmv-grid          { grid-template-columns: 1fr; }
  .support-grid      { grid-template-columns: 1fr; }
  .tsl-card          { min-width: calc(85% - 14px); }
  .certs-grid        { grid-template-columns: 1fr; }
  .stats-strip-grid  { flex-wrap: wrap; }
  .strip-stat        { min-width: 140px; }
  .wwa-img-secondary { display: none; }
  .wwa-img-main      { width: 100%; }
}
@media (max-width: 480px) {
  .page-hero-chips   { gap: 8px; }
  .chip              { font-size: 10px; padding: 6px 12px; }
  .tsl-card          { min-width: 90%; }
  .about-cta-actions .btn-primary,
  .about-cta-actions .btn-outline-navy { width: 100%; text-align: center; }
}