/* ═══════════════════════════
   about.css — About Us Page
═══════════════════════════ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  position: relative;
}
.aig-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.aig-topleft {
  grid-column: 1;
  grid-row: 1;
  height: 260px;
}
.aig-topleft img {
  transition: transform 0.65s var(--ease);
}
.aig-topleft:hover img {
  transform: scale(1.05);
}
.aig-stat {
  grid-column: 1;
  grid-row: 2;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px 22px;
  height: 150px;
}
.aig-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.aig-stat-title,
.aig-stat-sub {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.2;
}
.aig-right {
  grid-column: 2;
  grid-row: 1/3;
  height: 422px;
}
.aig-right img {
  transition: transform 0.65s var(--ease);
}
.aig-right:hover img {
  transform: scale(1.05);
}
.about-circle-badge {
  position: absolute;
  bottom: -18px;
  right: 6px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateBadge 12s linear infinite;
  z-index: 3;
  cursor: pointer;
}
.about-circle-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-badge-icon {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-circle-badge:hover {
  animation-play-state: paused;
}
@keyframes rotateBadge {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-content {
  display: flex;
  flex-direction: column;
}
.about-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
  width: fit-content;
}
.about-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.about-heading {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.about-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 500px;
}
.about-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 28px;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.about-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-content-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.stats-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-block {
  background: #fff;
  padding: 44px 32px;
  text-align: center;
}
.stat-block-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-block-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
}
.vm-section {
  background: var(--secondary);
}
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vm-card {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s ease;
}
.vm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 205, 50, 0.25);
}
.vm-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1220;
  margin-bottom: 20px;
}
.vm-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.vm-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}
.why-strip {
  background: var(--bg);
}
.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-strip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.why-strip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.ws-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-strip-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-strip-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .about-intro-grid {
    gap: 48px;
  }
  .vm-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .about-img-grid {
    max-width: 440px;
    margin: 0 auto;
  }
  .stats-3 {
    grid-template-columns: 1fr;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .about-checks {
    flex-direction: column;
  }
  .why-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── SECTION LABEL PILL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px 5px 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
  width: fit-content;
}

.section-label::before {
  display: none; /* remove the dot */
}

.section-label .label-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

/* ══════════════════════════════
       APPROACH SECTION
    ══════════════════════════════ */
.approach-section {
  background: var(--bg);
  padding: clamp(48px, 7vw, 96px) clamp(16px, 5vw, 40px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── LEFT: Content ── */
.approach-content {
  display: flex;
  flex-direction: column;
}

.approach-heading {
  font-family: "Clash Grotesk Variable", "Inter", sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.13;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.approach-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 540px;
}

/* ── Cards Row ── */
.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.approach-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  border: 1px solid transparent;
}
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(46, 125, 50, 0.12);
  border-color: rgba(76, 175, 80, 0.2);
}

.approach-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.approach-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.approach-card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── RIGHT: Image ── */
.approach-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
  aspect-ratio: 6 / 5;
}

.approach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.approach-image-wrap:hover .approach-img {
  transform: scale(1.04);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .approach-grid {
    gap: 48px;
  }
  .approach-cards {
    grid-template-columns: 1fr 1fr;
  }
  .approach-cards .approach-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .approach-image-wrap {
    order: -1;
    max-height: 320px;
    aspect-ratio: 16 / 9;
  }
  .approach-cards {
    grid-template-columns: 1fr 1fr;
  }
  .approach-cards .approach-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .approach-cards {
    grid-template-columns: 1fr;
  }
  .approach-cards .approach-card:last-child {
    grid-column: span 1;
  }
}

/* ── Scroll reveal (works with your existing GSAP main.js) ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
}
.revealed {
  opacity: 1 !important;
  transform: none !important;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-delay="1"].revealed {
  transition-delay: 0.1s;
}
[data-delay="2"].revealed {
  transition-delay: 0.2s;
}
