/* ------------------------------------------------------
   ABOUT PAGE STYLES — BenCode Studio
------------------------------------------------------ */

.about-intro-section {
  padding: 120px 0 100px;
  position: relative;
}

.about-section-divider {
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(179,136,255,0.08), rgba(179,136,255,0));
  margin: 40px 0;
}

.about-intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  color: #1f1028;
}

.about-subtitle {
  max-width: 520px;
  color: #4a4a4a;
  font-size: 1.1rem;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 260px;
  height: 260px;
  border-radius: 999px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.photo-circle {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #c7a4ff, #b388ff);
  border-radius: 999px;
  position: absolute;
  top: -20px;
  left: -20px;
  filter: blur(18px);
  opacity: 0.4;
  z-index: 1;
}

/* STORY SECTION */
.story-section {
  padding: 80px 0;
}

.story-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.story-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
}
.story-card:nth-child(even) {
  border: 2px solid rgba(128, 0, 255, 0.25);
  box-shadow: 0 0 18px rgba(128, 0, 255, 0.18);
}
/* VALUES */
.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.value-card {
  background: #fafafa;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.values-grid .value-card:nth-child(odd) {
  border: 2px solid rgba(128, 0, 255, 0.25);
  box-shadow: 0 0 18px rgba(128, 0, 255, 0.18);
}

.value-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(106,27,154,0.12);
}

/* CTA */
.about-cta-section {
  background: linear-gradient(135deg, #b388ff, #9575cd);
  padding: 100px 0;
  color: #fff;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-cta-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-cta-section p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-photo {
    margin-top: 20px;
  }
}
