/* About Us — matched to perspiq.ai/aboutus-perspiq */

.about-page {
  width: 100%;
  color: #494949;
  font-size: 17px;
  line-height: 1.7;
  --content-max: 80rem;
  --content-pad: 1.5rem;
  --about-pink: #c06f98;
}

.about-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 40px 0 56px;
  background-color: #1a1a1a;
  background-image: url("/assets/about-hero-bg.png");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.about-quote-card {
  max-width: 560px;
  background: rgba(192, 111, 152, 0.92);
  color: #fff;
  padding: 36px 40px 28px;
  border-radius: 2px;
}

.about-quote-text {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #fff;
}

.about-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-quote-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}

.about-quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-quote-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.about-quote-role {
  margin: 2px 0 0;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.about-body {
  padding: 56px 0 72px;
  background: #fff;
}

.about-body-inner {
  width: min(100%, 48rem);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.about-lead-title {
  margin: 0 0 20px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.25;
  color: #111;
  letter-spacing: -0.01em;
}

.about-lead-copy {
  margin: 0 0 40px;
  font-size: 17px;
  line-height: 1.7;
  color: #494949;
}

.about-section {
  margin-bottom: 36px;
}

.about-section h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #111;
}

.about-section p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.7;
  color: #494949;
}

.about-section p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 420px;
    padding: 24px 0 36px;
    background-position: center;
  }

  .about-quote-card {
    padding: 28px 24px 22px;
  }

  .about-quote-text {
    font-size: 22px;
  }

  .about-lead-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .about-section h2 {
    font-size: 24px;
  }
}
