/* ================================================================
   ODPL – about.css  (about page only)
   ================================================================ */

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: var(--color-4);
  padding: 80px 0 72px;
}

.page-hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(25,42,61,.98) 0%, rgba(49,84,83,.60) 100%),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,.013) 0px, rgba(255,255,255,.013) 1px,
      transparent 1px, transparent 14px);
}

.page-hero__accent {
  position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  border: 1px solid rgba(242,140,40,.12); border-radius: 50%;
  pointer-events: none;
}
.page-hero__accent::before {
  content: ''; position: absolute; inset: 60px;
  border: 1px solid rgba(242,140,40,.07); border-radius: 50%;
}

.page-hero__content {
  position: relative; z-index: 2;
  max-width: 680px;
}

.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .77rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.page-hero__breadcrumb a:hover { color: var(--color-2); }
.page-hero__breadcrumb span:last-child { color: var(--color-2); }

.page-hero__title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
}
.page-hero__title em {
  font-style: normal;
  color: var(--color-2);
}

.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 0;
}


/* ── SCROLL-REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}


/* ── ABOUT INTRO ─────────────────────────────────────────────── */
.about-intro__media {
  position: relative;
  flex-shrink: 0;
}

.about-intro__img {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 340px;
  overflow: hidden;
}

.about-intro__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-2);
  color: #fff;
  width: 120px; height: 120px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(242,140,40,.3);
}
.about-intro__badge-num {
  font-family: var(--heading-font);
  font-size: 2rem; font-weight: 700;
  line-height: 1;
}
.about-intro__badge-num sup {
  font-size: .8rem; vertical-align: super;
}
.about-intro__badge-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  margin-top: 4px; line-height: 1.3;
}

/* About stats row */
.about-intro__stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #e8edf1;
}
.about-stat { display: flex; flex-direction: column; gap: 3px; }
.about-stat__num {
  font-family: var(--heading-font);
  font-size: 1.9rem; font-weight: 700;
  color: var(--color-2); line-height: 1;
}
.about-stat__num sup {
  font-size: .75rem; vertical-align: super;
}
.about-stat__label {
  font-size: .78rem;
  color: #6a7b8d;
  font-weight: 600;
  letter-spacing: .03em;
}


/* ── MISSION / VISION / VALUES ───────────────────────────────── */
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv__card {
  background: var(--color-8);
  border: 1px solid #e0e7ed;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.mvv__card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--color-1);
}
.mvv__card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.mvv__card--accent::after { background: var(--color-2); }
.mvv__card--accent { border-top-color: var(--color-2); }

.mvv__icon {
  width: 56px; height: 56px;
  background: rgba(49,84,83,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.mvv__card--accent .mvv__icon {
  background: rgba(242,140,40,.1);
}
.mvv__icon svg {
  width: 26px; height: 26px;
  stroke: var(--color-1);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.mvv__card--accent .mvv__icon svg { stroke: var(--color-2); }

.mvv__card h3 {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  color: var(--heading-color);
  margin-bottom: 0;
}

.mvv__divider {
  width: 36px; height: 3px;
  background: var(--color-1);
  margin: 14px 0 18px;
}
.mvv__card--accent .mvv__divider { background: var(--color-2); }

.mvv__card p {
  font-size: .9rem;
  color: #6a7b8d;
  line-height: 1.75;
  margin-bottom: 0;
}

.mvv__values-list {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.mvv__values-list li {
  font-size: .9rem;
  color: #6a7b8d;
  padding-left: 16px;
  position: relative;
}
.mvv__values-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--color-1);
  border-radius: 50%;
}


/* ── WHY CHOOSE US ───────────────────────────────────────────── */
.why-us__list {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 8px;
}

.why-us__item {
  display: flex; gap: 18px; align-items: flex-start;
}

.why-us__item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(49,84,83,.09);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.why-us__item:hover .why-us__item-icon {
  background: var(--color-1);
}
.why-us__item-icon svg {
  width: 22px; height: 22px;
  stroke: var(--color-1); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--transition);
}
.why-us__item:hover .why-us__item-icon svg { stroke: #fff; }

.why-us__item-body h4 {
  font-family: var(--heading-font);
  font-size: 1rem; color: var(--heading-color);
  margin-bottom: 5px;
}
.why-us__item-body p {
  font-size: .88rem; color: #6a7b8d;
  line-height: 1.65; margin-bottom: 0;
}

.why-us__media { position: relative; }
.why-us__img {
  width: 100%; aspect-ratio: 4/3;
  min-height: 380px;
}


/* ── PARTNERS ────────────────────────────────────────────────── */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.partner-logo {
  background: var(--color-8);
  border: 1px solid #e0e7ed;
  min-height: 80px;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.partner-logo:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-1);
}
.partner-logo span {
  font-size: .88rem; font-weight: 700;
  color: #8a9bab; letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.partner-logo:hover span { color: var(--color-1); }


/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mvv__grid       { grid-template-columns: 1fr; gap: 20px; }
  .mvv__grid .reveal:nth-child(2) { transition-delay: .1s; }
  .mvv__grid .reveal:nth-child(3) { transition-delay: .2s; }
  .partners__grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding: 64px 0 56px; min-height: auto; }

  .about-intro__badge {
    right: -8px; bottom: -8px;
    width: 96px; height: 96px;
  }
  .about-intro__badge-num { font-size: 1.5rem; }

  .mvv__grid { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }

  .why-us__media { display: none; }
}

@media (max-width: 480px) {
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro__stats { gap: 20px; }
}