/* ==========================================================================
   Elevaan Network — Shared static content pages
   (About Elevaan, Become a Seller)
   ========================================================================== */

/* ---- Page hero banner ---- */

.page-hero,
.section.page-hero,
.section.page-hero:first-of-type {
  padding: 0 0 8px;
}

.page-hero-card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 320px;
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
  border-radius: 0;
  overflow: hidden;
  color: #fff;
  padding: 48px 44px;
  gap: 40px;
}

.page-hero-text {
  flex: 1 1 55%;
  min-width: 0;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6600;
  margin: 0 0 14px;
}

.page-hero-text h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.page-hero-text h1 .accent {
  color: #ff6600;
}

.page-hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: #d7e0f2;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 28px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.page-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
}

.page-hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #e6ecfa;
}

.page-hero-points li svg {
  flex-shrink: 0;
  color: #4ade80;
}

.page-hero-media {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero-media img {
  width: 100%;
  max-width: 380px;
  border-radius: 0;
}

/* ---- Stats ---- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 26px 20px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ---- Two-column content block (mission / story) ---- */

.split-block {
  display: flex;
  align-items: center;
  gap: 56px;
}

.split-block-media {
  flex: 1 1 42%;
}

.split-block-media img {
  width: 100%;
  border-radius: 0;
  display: block;
}

.split-block-text {
  flex: 1 1 58%;
  min-width: 0;
}

.split-block-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 10px;
}

.split-block-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1d;
  line-height: 1.3;
  margin: 0 0 14px;
}

.split-block-text p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 0 14px;
}

.split-block-text p:last-child {
  margin-bottom: 0;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

/* ---- Icon feature grid ---- */

.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.icon-feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 28px 24px;
}

.icon-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fdf1e6;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-feature-icon svg {
  width: 24px;
  height: 24px;
}

.icon-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1d;
  margin: 0 0 8px;
}

.icon-feature-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---- Numbered / icon steps (numbered steps) ---- */

.flow-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.flow-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 220px;
  position: relative;
  flex: 1 1 0;
}

.flow-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 46px);
  right: calc(-50% + 46px);
  height: 1px;
  border-top: 1px dashed #d1d5db;
}

.flow-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdf1e6;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step-circle svg {
  width: 26px;
  height: 26px;
}

.flow-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1d;
}

.flow-step-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ---- Category chip row ---- */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-row a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1d;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.chip-row a:hover {
  border-color: var(--color-orange-hover);
  color: var(--color-orange-hover);
  background: #fdf1e6;
}

/* ---- FAQ accordion ---- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- CTA band ---- */

.cta-band {
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
  border-radius: 0;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}

.cta-band h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
}

.cta-band p {
  font-size: 15px;
  color: #d7e0f2;
  max-width: 480px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.cta-band-actions .btn,
.cta-band .btn-orange,
.cta-band .btn-dark {
  background: #fff;
  color: #0b1f4a;
  border: 2px solid #fff;
}

.cta-band-actions .btn:hover,
.cta-band .btn-orange:hover,
.cta-band .btn-dark:hover {
  background: #f3f6fb;
  color: #002b80;
  border-color: #fff;
}

/* ---- Responsive ---- */

@media (max-width: 1000px) {
  .icon-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  main:has(> .page-hero:first-child) {
    padding-top: 0;
  }

  .page-hero,
  .section.page-hero,
  .section.page-hero:first-of-type {
    padding: 0 0 16px;
  }

  .page-hero .container {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
  }

  .page-hero-card {
    flex-direction: column;
    text-align: left;
    padding: 32px 20px 28px;
    border-radius: 0;
    min-height: 0;
  }

  .page-hero-card--compact {
    padding: 32px 20px 28px;
  }

  .page-hero-media {
    order: -1;
    width: 100%;
  }

  .page-hero-media img {
    max-width: 260px;
  }

  .split-block,
  .split-block.reverse {
    flex-direction: column;
  }

  .flow-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-steps li {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
  }

  .flow-steps li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .icon-feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-card,
  .page-hero-card--compact {
    padding: 28px 16px 24px;
  }

  .page-hero-text h1 {
    font-size: 28px;
  }

  .cta-band {
    padding: 34px 22px;
  }
}

/* ---- Legal pages ---- */

.page-hero-card--compact {
  min-height: 0;
  padding: 40px 44px;
}

.page-hero-card--compact .page-hero-media {
  display: none;
}

.legal-prose {
  max-width: 720px;
  padding-bottom: 24px;
}

.legal-updated {
  font-size: 13px;
  color: var(--color-muted, #6b7280);
  margin: 0 0 28px;
}

.legal-prose h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--color-text, #1c1c1d);
}

.legal-prose p {
  font-size: 15px;
  line-height: 1.7;
  color: #3f4450;
  margin: 0 0 12px;
}

.legal-prose a {
  color: var(--color-primary);
}
