/* ===== BHAUU ABOUT PAGE ===== */

.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(139,92,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-hero-inner .section-badge { margin-bottom: 24px; }

.about-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #0a0a0a;
}

.about-hero-desc {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Story Section */
.about-story {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content .section-badge { margin-bottom: 20px; }

.story-content .section-title { margin-bottom: 20px; }

.story-content p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(139,92,246,0.4), rgba(139,92,246,0.05));
}

.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding-bottom: 32px;
}

.timeline-year {
  font-size: 0.72rem;
  color: #a78bfa;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: #777777;
  line-height: 1.7;
  margin: 0;
}

/* Values */
.about-values {
  position: relative;
  background: #ffffff;
}

.about-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-values-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-values-header .section-desc { margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.value-card:hover {
  border-color: rgba(139,92,246,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.value-card:hover::after { transform: scaleX(1); }

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Founder Deep Dive */
.about-founder {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-wrap img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 1px solid rgba(139,92,246,0.2);
}

.founder-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(13,13,26,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 14px;
  padding: 14px 18px;
}

.founder-img-badge p:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.founder-img-badge p:last-child {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.founder-detail .section-badge { margin-bottom: 20px; }
.founder-detail .section-title { margin-bottom: 20px; }

.founder-detail p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.founder-detail-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.detail-chip {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  color: #a78bfa;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* CTA */
.about-cta {
  position: relative;
  background: #ffffff;
}

.about-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-cta-box {
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-cta-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.about-cta-box p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-founder-inner { grid-template-columns: 1fr; gap: 36px; }
  .founder-img-wrap img { aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; display: block; }
  .founder-detail { text-align: left; }
}

@media (max-width: 768px) {
  .about-hero { padding: 90px 0 50px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-cta-box { padding: 40px 24px; }
  .about-cta-btns { flex-direction: column; align-items: center; }
  .about-cta-btns .btn { width: 100%; justify-content: center; }
  .founder-detail-chips { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .founder-img-wrap img { aspect-ratio: 1/1; }
}

