#businessven {
  margin: 24px auto;
}

#businessven__section {
  --mentor-pink: #ec0074;
  --mentor-blue: #1677e8;
  --mentor-ink: #162033;
  --mentor-muted: #59677c;
  --mentor-line: #dfe6ef;

  border: 1px solid var(--mentor-line);
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: 0 18px 44px rgba(18, 32, 51, 0.08);
  color: var(--mentor-ink);
  overflow: hidden;
  animation: aparecer 0.45s ease;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--mentor-pink);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mentor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: stretch;
  min-height: 480px;
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(236, 0, 116, 0.12), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #eff7ff 100%);
}

.mentor-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: clamp(32px, 6vw, 76px);

  background: linear-gradient(
    90deg,
    rgba(248, 251, 255, 0.98) 0%,
    rgba(248, 251, 255, 0.97) 68%,
    rgba(248, 251, 255, 0.82) 84%,
    rgba(64, 108, 167, 0) 100%
  );

}

.mentor-hero h2 {
  max-width: 720px;
  margin: 0 0 18px;
  padding: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.06;
}

.mentor-hero__lead {
  max-width: 690px;
  margin: 0;
  padding: 0;
  color: var(--mentor-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.mentor-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mentor-primary-action,
.mentor-secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.mentor-primary-action {
  border: 0;
  background: var(--mentor-pink);
  color: #ffffff;
}

.mentor-secondary-action {
  border: 1px solid #b7c6d9;
  background: #ffffff;
  color: var(--mentor-blue);
}

.mentor-hero__media {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}

.mentor-hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(34%, 230px);
  background: linear-gradient(
    90deg,
    rgba(248, 251, 255, 1) 0%,
    rgba(248, 251, 255, 0.88) 30%,
    rgba(248, 251, 255, 0.45) 68%,
    rgba(248, 251, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.mentor-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.mentor-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 6vw, 68px);
  background: #ffffff;
}

.mentor-profile__photo img {
  width: 100%;
  max-height: 520px;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(18, 32, 51, 0.15);
}

.mentor-profile__content h3,
.mentor-services__header h3 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.mentor-profile__content > p,
.mentor-services__header > p:last-child {
  margin: 0;
  padding: 0;
  color: var(--mentor-muted);
  line-height: 1.7;
}

.mentor-quote {
  margin: 24px 0;
  border-left: 5px solid var(--mentor-blue);
  border-radius: 0 12px 12px 0;
  background: #f1f7ff;
  color: #26364d;
  padding: 20px 22px;
  font-style: italic;
  line-height: 1.65;
}

.mentor-credentials {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentor-credentials li {
  position: relative;
  padding-left: 26px;
  color: #34445a;
}

.mentor-credentials li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mentor-pink);
  font-weight: 900;
}

.mentor-services {
  padding: clamp(30px, 6vw, 68px);
  border-top: 1px solid var(--mentor-line);
}

.mentor-services__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.mentor-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mentor-service-card {
  border: 1px solid var(--mentor-line);
  border-radius: 18px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.05);
}

.mentor-service-card > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #eef6ff;
  font-size: 1.45rem;
}

.mentor-service-card h4 {
  margin: 18px 0 9px;
  font-size: 1.15rem;
}

.mentor-service-card p {
  margin: 0;
  padding: 0;
  color: var(--mentor-muted);
  line-height: 1.6;
}

.mentor-disclaimer {
  margin: 0 clamp(30px, 6vw, 68px) clamp(30px, 6vw, 58px);
  border: 1px solid #f5d49a;
  border-radius: 14px;
  background: #fff8e8;
  color: #6b4a0b;
  padding: 17px 20px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .mentor-hero,
  .mentor-profile {
    grid-template-columns: 1fr;
  }

  .mentor-hero__media {
    min-height: 330px;
    order: -1;
  }

  .mentor-hero__content {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 1) 100%);
  }

  .mentor-hero__media::before {
    width: 100%;
    inset: auto 0 0 0;
    min-height: 96px;
    background: linear-gradient(
      180deg,
      rgba(248, 251, 255, 0) 0%,
      rgba(248, 251, 255, 0.35) 40%,
      rgba(248, 251, 255, 0.92) 85%,
      rgba(248, 251, 255, 1) 100%
    );
  }

  .mentor-hero__media img {
    min-height: 330px;
    max-height: 460px;
  }

  .mentor-profile__photo img {
    max-height: 440px;
  }

  .mentor-services__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #businessven {
    margin: 10px auto;
  }

  #businessven__section {
    border-radius: 18px;
  }

  .mentor-hero__content,
  .mentor-profile,
  .mentor-services {
    padding: 24px 20px;
  }

  .mentor-hero__actions {
    flex-direction: column;
  }

  .mentor-primary-action,
  .mentor-secondary-action {
    width: 100%;
    min-height: 54px;
  }

  .mentor-disclaimer {
    margin: 0 20px 24px;
  }
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
