/**
 * About page — clean, responsive, brand-aligned
 * Scoped to body.page-about
 */

:root {
  --about-ink: #0f172a;
  --about-muted: #64748b;
  --about-red: #c4121a;
  --about-red-deep: #9f0f16;
  --about-soft: #fff5f5;
  --about-border: rgba(196, 18, 26, 0.12);
  --about-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  --about-radius: 18px;
  --about-font: "Plus Jakarta Sans", "Poppins", system-ui, sans-serif;
}

body.page-about {
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 70% 40% at 50% -10%, rgba(196, 18, 26, 0.05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #fff7f7 100%);
  color: var(--about-ink);
}

body.page-about h1,
body.page-about h2,
body.page-about h3,
body.page-about h4 {
  font-family: var(--about-font);
  letter-spacing: -0.02em;
}

/* Reveal */
body.page-about [data-about-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--about-delay, 0ms);
}
body.page-about [data-about-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  body.page-about [data-about-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero */
body.page-about .about-page-hero {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -30%, rgba(196, 18, 26, 0.07), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
  color: var(--about-ink);
  min-height: 0;
}
body.page-about .about-page-hero .about-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 18, 26, 0.08), transparent 36%),
    radial-gradient(circle at 90% 8%, rgba(15, 23, 42, 0.04), transparent 32%);
}
body.page-about .about-page-hero .about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
body.page-about .about-page-hero .about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 18, 26, 0.16);
  background: #ffffff !important;
  color: var(--about-red) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}
body.page-about .about-page-hero .about-kicker i {
  color: var(--about-red) !important;
}
body.page-about .about-page-hero .about-hero__title {
  margin: 1.25rem 0 0.9rem;
  font-size: clamp(1.9rem, 4.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.14;
  color: var(--about-ink) !important;
}
body.page-about .about-page-hero .about-hero__title span {
  color: var(--about-red-deep) !important;
  display: inline;
}
body.page-about .about-page-hero .about-hero__lead {
  margin: 0 auto 1.85rem;
  max-width: 580px;
  color: #475569 !important;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.75;
  font-weight: 500;
}
body.page-about .about-page-hero .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
body.page-about .about-page-hero .about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
body.page-about .about-page-hero .about-btn:hover {
  transform: translateY(-2px);
}
body.page-about .about-page-hero .about-btn--primary {
  background: linear-gradient(135deg, #b3131b 0%, #dd1f27 100%);
  color: #fff !important;
  border: 0;
  box-shadow: 0 12px 24px rgba(179, 19, 27, 0.22);
}
body.page-about .about-page-hero .about-btn--primary:hover {
  color: #fff !important;
  box-shadow: 0 16px 28px rgba(179, 19, 27, 0.3);
}
body.page-about .about-page-hero .about-btn--ghost {
  background: #ffffff;
  color: var(--about-red-deep) !important;
  border: 1px solid #e8c8cb;
}
body.page-about .about-page-hero .about-btn--ghost:hover {
  color: var(--about-red-deep) !important;
  background: var(--about-soft);
  border-color: #f0b8bd;
}

/* Live stats strip */
body.page-about .about-page-hero .about-stats {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
body.page-about .about-page-hero .about-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
body.page-about .about-page-hero .about-stat {
  text-align: center;
  padding: 0.35rem 1rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  transition: transform 0.25s ease;
}
body.page-about .about-page-hero .about-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: rgba(15, 23, 42, 0.08);
}
body.page-about .about-page-hero .about-stat:hover {
  transform: translateY(-2px);
  box-shadow: none;
}
body.page-about .about-page-hero .about-stat__value {
  font-family: var(--about-font);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--about-red) !important;
  line-height: 1.1;
}
body.page-about .about-page-hero .about-stat__label {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--about-muted) !important;
}
@media (max-width: 575.98px) {
  body.page-about .about-page-hero .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 240px;
  }
  body.page-about .about-page-hero .about-stat:not(:last-child)::after {
    display: none;
  }
  body.page-about .about-page-hero .about-stat:not(:last-child) {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }
}

/* Sections */
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--about-border);
  background: #fff;
  color: var(--about-red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(196, 18, 26, 0.08);
}
.about-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.about-section--soft {
  background: linear-gradient(180deg, #fff 0%, var(--about-soft) 100%);
}
.about-section--white {
  background: #fff;
}
.about-section--slate {
  background: #f8fafc;
}
.about-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.about-section__head h2 {
  margin: 0.65rem 0 0.55rem;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 800;
  color: var(--about-ink);
}
.about-section__head p {
  margin: 0;
  color: var(--about-muted);
  line-height: 1.7;
}

/* Purpose / mission vision */
.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.about-purpose {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--about-radius);
  background: #fff;
  border: 1px solid var(--about-border);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-purpose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #b3131b, #ef3f49);
  opacity: 0.85;
}
.about-purpose:hover {
  transform: translateY(-4px);
  box-shadow: var(--about-shadow);
  border-color: rgba(196, 18, 26, 0.22);
}
.about-purpose__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--about-soft);
  color: var(--about-red);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.about-purpose h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--about-red-deep);
}
.about-purpose p {
  margin: 0;
  color: #334155;
  line-height: 1.75;
  font-size: 1.02rem;
}
@media (max-width: 767.98px) {
  .about-purpose-grid {
    grid-template-columns: 1fr;
  }
}

/* Values */
.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.about-value {
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: var(--about-radius);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.about-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--about-shadow);
  border-color: var(--about-border);
}
.about-value i {
  font-size: 1.45rem;
  color: var(--about-red);
  margin-bottom: 0.75rem;
}
.about-value h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
}
.about-value p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--about-muted);
  line-height: 1.55;
}
@media (max-width: 991.98px) {
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

/* Founder */
.about-founder {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff8f8 0%, #ffffff 55%, #fff5f5 100%);
  border: 1px solid #f1d9dc;
  box-shadow: 0 18px 36px rgba(179, 19, 27, 0.1);
}
.about-founder__photo {
  width: min(100%, 260px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 20px;
  padding: 6px;
  background: linear-gradient(135deg, #f59e0b 0%, #facc15 40%, #dc2626 100%);
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.22);
}
.about-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  display: block;
}
.about-founder__name {
  margin: 0.55rem 0 0.2rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--about-red-deep);
  line-height: 1.15;
}
.about-founder__role {
  margin: 0 0 1rem;
  color: var(--about-muted);
  font-weight: 600;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #efd2d6;
  background: #fff7f8;
  color: #7f1d1d;
  font-size: 0.8rem;
  font-weight: 600;
}
.about-chip i {
  color: #d97706;
}
.about-quote {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid #f59e0b;
  background: #fff8e8;
  border-radius: 0 12px 12px 0;
  color: #7c2d12;
  font-style: italic;
  line-height: 1.55;
}
.about-founder__bio {
  color: #475569;
  line-height: 1.75;
}
.about-founder__bio p {
  margin: 0 0 0.65rem;
}
.about-founder__bio p:last-child {
  margin-bottom: 0;
}
.about-founder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.about-founder__actions .btn {
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.48rem 0.95rem;
}
@media (max-width: 767.98px) {
  .about-founder {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-chips,
  .about-founder__actions {
    justify-content: center;
  }
  .about-quote {
    text-align: left;
  }
}

/* Leadership / partners */
.about-leaders {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.about-leader {
  text-align: center;
  padding: 1.1rem 0.7rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-leader:hover {
  transform: translateY(-4px);
  box-shadow: var(--about-shadow);
}
.about-leader img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(196, 18, 26, 0.14);
  margin-bottom: 0.65rem;
}
.about-leader h3 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 800;
}
.about-leader p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--about-muted);
  line-height: 1.35;
}
.about-leader__co {
  margin-top: 0.25rem !important;
  font-size: 0.75rem !important;
}
@media (max-width: 991.98px) {
  .about-leaders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .about-leaders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-partners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.about-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 140px;
  padding: 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-partner:hover {
  transform: translateY(-3px);
  box-shadow: var(--about-shadow);
}
.about-partner img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.about-partner span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--about-ink);
  text-align: center;
}
@media (max-width: 991.98px) {
  .about-partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .about-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* CTA */
.about-cta {
  padding: clamp(3rem, 6vw, 4.25rem) 0;
  background: linear-gradient(135deg, #ff1212 0%, #b70f19 100%);
  color: #fff;
  text-align: center;
}
.about-cta h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: #fff;
}
.about-cta p {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.about-cta .btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
}
.about-cta .btn-light {
  color: #b70f19;
}
.about-cta .btn-outline-light:hover {
  color: #b70f19;
}
