/* ==========================
   PAGE THEME
   این صفحه (فقط about.html) از ابتدا برای متن روشن روی پس‌زمینه‌ی
   تیره طراحی شده بود (رنگ‌های #fff, #c7c7c7 و ...)، ولی پس‌زمینه‌ی
   واقعی صفحه هیچ‌جا ست نشده بود؛ در نتیجه متن روشن روی پس‌زمینه‌ی
   سفید سایت (body { background: var(--white) } در style.css) کاملاً
   محو می‌شد. این قانون کل صفحه را روی همان تم تیره‌ای که هدر و کارت‌های
   شیشه‌ای (backdrop-blur) برایش طراحی شده بودند می‌گذارد. چون این فایل
   فقط در about.html لود می‌شود، روی بقیه‌ی صفحات سایت اثری ندارد.
========================== */

body {
  background: linear-gradient(180deg, #0b1120 0%, var(--primary) 6%, var(--primary) 100%);
}

.about-story,
.why-us,
.mission,
.brands-section,
.about-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ==========================
   ABOUT HERO
========================== */

.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(8, 12, 18, 0.82), rgba(8, 12, 18, 0.82)),
    url("../assets/images/hero-banner.webp") center/cover no-repeat;
}

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 10, 18, 0.9) 0%,
    rgba(5, 10, 18, 0.55) 55%,
    rgba(5, 10, 18, 0.15) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffb300;
  margin-bottom: 30px;
}

.about-hero h1 {
  font-size: 62px;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.25;
}

.about-hero h1 span {
  color: #ffb300;
}

.about-hero p {
  color: #d7d7d7;
  font-size: 18px;
  line-height: 2;
}

/* ==========================
ABOUT STORY
========================== */

.about-story {
  padding: 110px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.about-image-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 380px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 179, 0, 0.14), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 30px;
  text-align: center;
}

.about-image-fallback i {
  font-size: 56px;
  color: #ffb300;
}

.about-image-fallback span {
  color: #9aa5b1;
  font-size: 15px;
  max-width: 260px;
  line-height: 1.9;
}

.about-content h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 30px;
}

.about-content p {
  color: #c7c7c7;
  line-height: 2.1;
  margin-bottom: 20px;
}

/* ==========================
STATS
========================== */

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: #ffb300;
}

.stat-box h3 {
  font-size: 38px;
  color: #ffb300;
  margin-bottom: 10px;
}

.stat-box span {
  color: #ddd;
}

/* ==========================
SECTION TITLE
========================== */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #ffb300;
  font-weight: 700;
}

.section-title h2 {
  color: #fff;
  margin-top: 15px;
  font-size: 40px;
}

/* ==========================
WHY US
========================== */

.why-us {
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  transition: 0.35s;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #ffb300;
}

.why-card i {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 22px;
  background: #ffb300;
  color: #111;
  font-size: 28px;
  margin-bottom: 25px;
}

.why-card h3 {
  color: #fff;
  margin-bottom: 15px;
}

.why-card p {
  color: #c7c7c7;
  line-height: 1.9;
}

/* ==========================
MISSION
========================== */

.mission {
  padding: 100px 0;
}

.mission-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-box > div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mission-box h2 {
  color: #fff;
  margin-bottom: 20px;
}

.mission-box p {
  color: #cfcfcf;
  line-height: 2;
}

/* ==========================
BRANDS
========================== */

.brands-section {
  padding: 100px 0;
  text-align: center;
}

.brands-section h2 {
  color: #fff;
  margin-bottom: 40px;
}

.brands-image {
  width: 100%;
  border-radius: 24px;
}

.brands-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 180px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 179, 0, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 36px 30px;
}

.brands-fallback-icons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.brands-fallback-icons i {
  font-size: 32px;
  color: #ffb300;
}

.brands-fallback span {
  color: #9aa5b1;
  font-size: 15px;
}

/* ==========================
CTA
========================== */

.about-cta {
  padding: 110px 0;
}

.cta-box {
  background: linear-gradient(135deg, #111827, #1f2937);
  border-radius: 30px;
  text-align: center;
  padding: 70px 40px;
}

.cta-box h2 {
  color: #fff;
  font-size: 42px;
}

.cta-box p {
  color: #cfcfcf;
  margin: 25px auto 40px;
  max-width: 700px;
  line-height: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-call,
.cta-contact {
  padding: 18px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.cta-call {
  background: #ffb300;
  color: #111;
}

.cta-contact {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-call:hover,
.cta-contact:hover {
  transform: translateY(-5px);
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 992px) {
  .about-grid,
  .mission-box,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
