/* ============================================================
   Mind Zoo – About / Mind-Zoo Page Styles (about.css)
   Extends style.css — do not use standalone.
   ============================================================ */


/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  background: var(--green-dark);
  padding: 120px 24px 72px;   /* extra top for fixed nav */
  text-align: center;
}

.page-header .section-label {
  color: var(--green-bright);
  opacity: 0.9;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.page-header__title span {
  color: var(--green-bright);
}

.page-header__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}


/* ── Intro Section ───────────────────────────────────────── */
.about-intro {
  padding: var(--section-pad);
  background: var(--off-white);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-intro__block h2 {
  margin-bottom: 20px;
}

.about-intro__block p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.text-link {
  color: var(--green-mid);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--green-dark);
}


/* ── Services Section ────────────────────────────────────── */
.services-section {
  padding: var(--section-pad);
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-title {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.service-card__text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
  flex: 1;
}

.service-card__note {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.65;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.service-card__note a {
  color: var(--green-mid);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.service-card__note a:hover {
  color: var(--green-dark);
}


/* ── Partnerships Section ────────────────────────────────── */
.partnerships-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.partnerships-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.partnerships-intro h2 {
  margin-bottom: 16px;
}

.partnerships-intro p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
}

.partners-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-bright);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow 0.2s;
}

.partner-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-dark);
  font-weight: 700;
}

.partner-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}


/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  padding: var(--section-pad);
  background: var(--green-dark);
}

.cta-strip__content {
  text-align: center;
}

.cta-strip__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-strip__content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-strip__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* btn-primary and btn-outline are already in style.css */


/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partnerships-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .page-header {
    padding: 110px 24px 56px;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 28px 24px;
  }

  .cta-strip__actions {
    flex-direction: column;
  }
}
