/* -------------------------------------------------- */
/* NEW PREMIUM CLEAN DESIGN — ABOUT PAGE */
/* -------------------------------------------------- */

/* GLOBAL SPACING */
section {
  padding: 8rem 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* -------------------------------------------------- */
/* HERO — Modern, Minimal, Beautiful */
/* -------------------------------------------------- */

.hero {
  text-align: center;
  padding: 7rem 0 4rem;
}

.hero-content {
  max-width: 830px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Title */
.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Main paragraph */
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.7;
}

/* Points */
.hero-points {
  margin: 2.8rem auto;
  max-width: 520px;
}

.hero-points li {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
  color: var(--text-secondary);
}

/* Buttons — Modern Rounded */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.8rem;
}

.hero-buttons .btn {
  padding: 0.9rem 2rem;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.25s ease;
}

/* -------------------------------------------------- */
/* HERO EXTRA — Clean Vertical Layout */
/* -------------------------------------------------- */

.hero-extra {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.hero-subtext {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* -------------------------------------------------- */
/* STATS — New Modern Rounded Glass Cards */
/* -------------------------------------------------- */

.hero-stats {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.8rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem 1.2rem;
  border-radius: 22px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

/* -------------------------------------------------- */
/* BENEFITS — Clean List */
/* -------------------------------------------------- */

.hero-benefits {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.hero-benefits li {
  margin-bottom: 0.65rem;
}

/* -------------------------------------------------- */
/* LOGO STRIP — Minimal & Clean */
/* -------------------------------------------------- */

.hero-logos {
  text-align: center;
  margin-top: 1rem;
}

.hero-logos span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}




.logo-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0.7;
  transition: 0.2s ease;
}

.logo-row img {
  height: 36px;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: 0.25s ease;
}

.logo-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* -------------------------------------------------- */
/* CARDS (Values, Stats, FAQ, Team) */
/* -------------------------------------------------- */

.values-grid,
.team-grid,
.stats-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card,
.team-card,
.stat-card,
.faq-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.value-card:hover,
.stat-card:hover,
.team-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
}

/* -------------------------------------------------- */
/* CTA — Modern Glass Box */
/* -------------------------------------------------- */

.cta-section {
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  backdrop-filter: blur(11px);
}

/* -------------------------------------------------- */
/* RESPONSIVE */
/* -------------------------------------------------- */

@media (max-width: 860px) {
  .hero h1 { font-size: 3.1rem; }
}

@media (max-width: 580px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-stat h3 { font-size: 2rem; }
}
