/* =========================
   ABOUT — MASTER STYLES
========================= */

.about-intro {
  max-width: 760px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #1e293b;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   STORY SECTION
========================= */

.about-story {
  padding: 70px 20px;
}

.about-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 14px;
}

/* =========================
   BIG STAT CARD
========================= */

.about-highlight {
  background: linear-gradient(135deg,#020617,#020617 40%,#0f172a);
  color: white;
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}

.about-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 60%);
}

.about-highlight .stat {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-highlight span {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* =========================
   VALUES GRID
========================= */

.about-values {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

.value-card {
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all .25s ease;
  backdrop-filter: blur(6px);
}

.value-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.value-card h3 {
  margin: 6px 0 8px;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.value-card .emoji {
  font-size: 2.1rem;
  margin-bottom: 8px;
}

/* =========================
   DIFFERENCE SECTION
========================= */

.about-difference {
  padding: 70px 20px;
  text-align: center;
  max-width: 820px;
  margin: auto;
}

.about-difference h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.about-difference p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-highlight {
    padding: 36px;
  }
}
