@font-face {
  font-family: Vazirmatn;
  src: url("fonts/webfonts/Vazirmatn-Bold.woff2");
  font-display: swap;
}

:root {
  --red: #d71920;
  --red-dark: #a90f15;
  --red-soft: #fff1f2;
  --text: #202124;
  --muted: #667085;
  --border: #ececec;
  --surface: #fafafa;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Vazirmatn;
  line-height: 1.9;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}

.glass-nav {
  position: fixed;
  z-index: 100;
  top: 18px;
  right: 50%;
  transform: translateX(50%);
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.nav-logo img {
  width: 86px;
  max-height: 50px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a {
  padding: 9px 13px;
  border-radius: 11px;
  font-size: 14px;
  transition: 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: var(--red-soft);
}
.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: var(--red-soft);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 9px;
  background: var(--red);
}

.about-page {
  overflow: hidden;
}
.about-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 58px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 145px 28px 75px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid rgba(215, 25, 32, 0.16);
  border-radius: 999px;
  color: var(--red);
  background: var(--red-soft);
  font-size: 13px;
  font-weight: 800;
}
.hero-copy h1 {
  margin: 18px 0 15px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.22;
  letter-spacing: -1px;
}
.hero-copy h1 span {
  color: var(--red);
}
.hero-copy p {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.btn-primary,
.btn-light {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}
.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.22);
}
.btn-light {
  border: 1px solid #e8e8e8;
  background: #fff;
}
.btn-primary:hover,
.btn-light:hover {
  transform: translateY(-2px);
}
.hero-visual {
  position: relative;
  min-height: 530px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -60px;
  top: -55px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.08);
  filter: blur(2px);
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px 36px 100px 36px;
  box-shadow: 0 28px 70px rgba(24, 24, 24, 0.14);
}
.year-badge {
  position: absolute;
  z-index: 2;
  right: -25px;
  bottom: 32px;
  min-width: 150px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  color: #fff;
  background: rgba(215, 25, 32, 0.92);
  box-shadow: 0 18px 42px rgba(215, 25, 32, 0.24);
  backdrop-filter: blur(12px);
}
.year-badge strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
}
.year-badge span {
  font-size: 12px;
  opacity: 0.9;
}

.stats {
  max-width: 1120px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}
.stat {
  padding: 25px;
  text-align: center;
}
.stat + .stat {
  border-right: 1px solid var(--border);
}
.stat strong {
  display: block;
  color: var(--red);
  font-size: 24px;
}
.stat span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 95px;
}
.section-head {
  max-width: 660px;
  margin-bottom: 34px;
}
.section-head span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}
.section-head h2 {
  margin: 5px 0 10px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.35;
}
.section-head p {
  margin: 0;
  color: var(--muted);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.story-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.05);
}
.story-card.accent {
  color: #fff;
  border-color: var(--red);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
}
.story-card h3 {
  margin: 0 0 13px;
  font-size: 24px;
}
.story-card p {
  margin: 0;
  color: var(--muted);
}
.story-card.accent p {
  color: rgba(255, 255, 255, 0.86);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  transition: 0.25s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, 0.25);
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
}
.value-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
}
.value-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.process {
  padding-top: 3px;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-item {
  position: relative;
  padding: 25px 20px;
  border-radius: 20px;
  background: var(--red-soft);
}
.process-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 16px;
}
.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about-cta {
  max-width: 1120px;
  margin: 0 auto 80px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 28px;
  color: #fff;
  background: #1d1d1f;
}
.about-cta h2 {
  margin: 0 0 6px;
  font-size: 27px;
}
.about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.about-cta a {
  flex: 0 0 auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 14px;
  color: var(--red);
  background: #fff;
  font-weight: 900;
}
.page-footer {
  padding: 25px;
  border-top: 1px solid #eee;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
.page-footer strong {
  color: var(--red);
}

@media (max-width: 880px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy p {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    min-height: 460px;
  }
  .year-badge {
    right: 18px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .glass-nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 7px 11px;
    flex-wrap: wrap;
  }
  .nav-logo img {
    width: 68px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 4px;
    border-top: 1px solid #eee;
  }
  .glass-nav.open .nav-links {
    display: flex;
  }
  .nav-links a {
    text-align: center;
  }
  .about-hero {
    gap: 36px;
    padding: 112px 16px 55px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-visual img {
    border-radius: 26px 26px 72px 26px;
  }
  .stats {
    grid-template-columns: 1fr;
    margin: 0 16px 65px;
  }
  .stat + .stat {
    border-right: 0;
    border-top: 1px solid var(--border);
  }
  .section {
    padding: 0 16px 68px;
  }
  .story-grid,
  .values-grid,
  .process-list {
    grid-template-columns: 1fr;
  }
  .about-cta {
    margin: 0 16px 55px;
    padding: 30px 23px;
    flex-direction: column;
    text-align: center;
  }
}
