/* About page */

.hero-section-wrapper {
  min-height: 80vh;
}

.hero-section-wrapper .h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
}

.hero-scroll-indicator {
  bottom: 36px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .chevron {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.wrapper {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.container {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}

.container.left {
  align-items: flex-start;
}

.our-vision {
  padding-top: calc(var(--section-pad) + 12px);
  padding-bottom: var(--section-pad);
}

.vision-text {
  max-width: 680px;
  text-align: center;
  margin-top: 20px;
}

.vision-image-wrapper {
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.vision-image-wrapper img {
  width: 100%;
  height: clamp(280px, 40vw, 480px);
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.vision-image-wrapper:hover img {
  transform: scale(1.03);
}

.stats-section {
  padding-top: 48px;
  padding-bottom: var(--section-pad);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 920px;
}

.stat-card {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px 20px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-number .suffix {
  font-size: 0.45em;
  font-weight: 700;
  color: var(--bright-yellow);
  vertical-align: super;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-accent {
  width: 28px;
  height: 3px;
  background: var(--bright-yellow);
  margin-top: 6px;
  border-radius: 2px;
}

.why-us-section {
  background-color: var(--ash-bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  width: 100%;
  margin-top: 48px;
}

.why-us-card {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 28px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.why-us-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  background: var(--bright-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-card .h3 {
  font-size: 1.2rem;
}

.why-us-card .paragraph {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: none;
}

.logo-section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.logo-section + .logo-section {
  padding-top: 0;
  margin-top: -24px;
}

.logo-description {
  max-width: 680px;
  text-align: center;
  margin-top: 16px;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
  width: 100%;
  margin-top: 48px;
  flex-wrap: wrap;
}

.logo-item {
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
  filter: grayscale(100%);
  opacity: 0.45;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

.logo-item img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .stats-grid {
    max-width: 100%;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .logo-row {
    gap: 36px;
  }

  .logo-item img {
    max-height: 52px;
  }

}

@media screen and (max-width: 767px) {
  .hero-section-wrapper {
    min-height: 58vh;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .logo-item img {
    max-height: 44px;
  }
}

@media screen and (max-width: 479px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card::after {
    display: none;
  }

  .stat-card:not(:last-child) {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 24px;
    margin-bottom: 8px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}
