/* About page — VOC Sourcing */

.voc-about-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 42%, #0ea5e9 100%);
  color: #fff;
}

.voc-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(34, 211, 238, 0.25), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.voc-about-hero .container {
  position: relative;
  z-index: 1;
}

.voc-about-hero h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.voc-about-hero .lead {
  max-width: 36rem;
  opacity: 0.94;
  line-height: 1.75;
}

.voc-about-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.voc-about-hero__stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  min-width: 120px;
}

.voc-about-hero__stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.voc-about-hero__stat span {
  font-size: 0.78rem;
  opacity: 0.88;
  font-weight: 500;
}

.voc-about-section {
  padding: 4rem 0;
}

.voc-about-section--alt {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.voc-about-story {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.voc-about-story__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(14, 165, 233, 0.15);
}

.voc-about-story__media img {
  width: 100%;
  display: block;
}

.voc-about-story__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, #0ea5e9, #22d3ee);
}

.voc-about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.voc-about-value {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voc-about-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.12);
}

.voc-about-value__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #0369a1;
  background: linear-gradient(135deg, #e0f2fe, #ecfeff);
  margin-bottom: 1rem;
}

.voc-about-value h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.voc-about-value p {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.voc-about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: voc-step;
}

.voc-about-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  position: relative;
}

.voc-about-step::before {
  counter-increment: voc-step;
  content: counter(voc-step, decimal-leading-zero);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0ea5e9;
  margin-bottom: 0.65rem;
}

.voc-about-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.voc-about-step p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

.voc-about-sites {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.voc-about-site {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.voc-about-site:hover {
  border-color: #7dd3fc;
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.1);
  text-decoration: none;
  color: inherit;
}

.voc-about-site img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: #f1f5f9;
  padding: 6px;
}

.voc-about-site strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}

.voc-about-site small {
  color: #64748b;
  font-size: 0.8rem;
}

.voc-about-cta {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #0c4a6e, #0284c7);
  color: #fff;
}

.voc-about-cta h2 {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.voc-about-cta p {
  opacity: 0.92;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.voc-about-cta .voc-btn-primary {
  margin-right: 0.5rem;
}

.voc-about-cta .voc-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.voc-about-cta .voc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 991px) {
  .voc-about-story {
    grid-template-columns: 1fr;
  }

  .voc-about-values {
    grid-template-columns: 1fr 1fr;
  }

  .voc-about-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .voc-about-values,
  .voc-about-steps,
  .voc-about-sites {
    grid-template-columns: 1fr;
  }

  .voc-about-hero h1 {
    font-size: 2rem;
  }
}
