/* About page — Billion Vision marketplace onboarding */

.about-page .main {
  overflow-x: hidden;
}

/* ---------- Hero ---------- */
.ab-hero {
  position: relative;
  padding: 100px 0 48px;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
  overflow: hidden;
}

.ab-hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 44, 0.12), transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.ab-hero__title {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #112344;
  margin: 0.75rem 0 1rem;
}

.ab-hero__title span {
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ab-hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  max-width: 520px;
}

.ab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.75rem;
}

.ab-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.ab-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #e8ecf2;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.ab-hero__trust-item i {
  color: #ff3b2f;
}

.ab-hero__visual {
  position: relative;
}

.ab-hero__img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ab-hero__float {
  position: absolute;
  bottom: 24px;
  left: -12px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}

.ab-hero__float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ab-hero__float strong {
  display: block;
  font-size: 1.25rem;
  color: #112344;
  line-height: 1.2;
}

.ab-hero__float span {
  font-size: 12px;
  color: #64748b;
}

.ab-breadcrumbs {
  padding: 16px 0;
  background: #fff;
  border-top: 1px solid #eef1f6;
}

.ab-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  gap: 4px;
}

.ab-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
}

.ab-breadcrumbs a:hover {
  color: #ff3b2f;
}

.ab-breadcrumbs .current {
  color: #112344;
  font-weight: 500;
}

.ab-breadcrumbs li + li::before {
  content: "/";
  padding-right: 8px;
  color: #cbd5e1;
}

/* ---------- Story ---------- */
.ab-story {
  background: #fff;
}


#ourstory {
  padding-top: 150px;
}

.ab-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.ab-mv-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e8ecf2;
  background: #f8f9fc;
  height: 100%;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.ab-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.ab-mv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.ab-mv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #112344;
  margin-bottom: 0.75rem;
}

.ab-mv-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.ab-timeline {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eef1f6;
}

.ab-timeline__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #112344;
  margin-bottom: 1.5rem;
  text-align: center;
}

.ab-timeline__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.ab-timeline__track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #ff3b2f, #ff5a2c);
  opacity: 0.25;
  z-index: 0;
}

.ab-timeline__item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.ab-timeline__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ab-timeline__item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #112344;
  margin-bottom: 6px;
}

.ab-timeline__item p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.ab-story__media img {
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ab-story__copy p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Stats band ---------- */
.ab-stats {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 64px 0;
}

.ab-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.ab-stats__item h3 {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.ab-stats__item h3 span {
  color: #ff5a2c;
}

.ab-stats__item p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

/* ---------- Team ---------- */
.ab-team {
  background: #f8f9fc;
}

.ab-team__card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.ab-team__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.ab-team__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--heading-font, "Montserrat", sans-serif);
}

.ab-team__avatar--1 {
  background: linear-gradient(135deg, #ff3b2f, #ff8a4c);
}
.ab-team__avatar--2 {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}
.ab-team__avatar--3 {
  background: linear-gradient(135deg, #0d9488, #2dd4bf);
}
.ab-team__avatar--4 {
  background: linear-gradient(135deg, #1e40af, #60a5fa);
}

.ab-team__card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #112344;
  margin-bottom: 4px;
}

.ab-team__role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #ff3b2f;
  margin-bottom: 10px;
}

.ab-team__card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 14px;
}

.ab-team__social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ab-team__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.ab-team__social a:hover {
  background: #ff3b2f;
  color: #fff;
}

/* ---------- Testimonials ---------- */
.ab-testimonials {
  background: #fff;
}

.ab-quote {
  background: #f8f9fc;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #eef1f6;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ab-quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.ab-quote__stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ab-quote p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.ab-quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-quote__initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.ab-quote__author strong {
  display: block;
  font-size: 14px;
  color: #112344;
}

.ab-quote__author span {
  font-size: 12px;
  color: #64748b;
}

.ab-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eef1f6;
}

.ab-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.ab-trust-bar__item i {
  font-size: 1.25rem;
  color: #ff3b2f;
}

/* ---------- CTA ---------- */
.ab-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1a1030 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.ab-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 80% at 20% 50%,
      rgba(255, 59, 47, 0.15),
      transparent
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 80%,
      rgba(59, 130, 246, 0.1),
      transparent
    );
  pointer-events: none;
}

.ab-cta .container {
  position: relative;
  z-index: 1;
}

.ab-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ab-cta__inner h2 {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.ab-cta__inner h2 span {
  background: linear-gradient(135deg, #ff3b2f, #ff8a4c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ab-cta__inner p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.ab-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ab-cta .btn-primary {
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 12px;
}

.ab-cta .btn-outline-light {
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.ab-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .ab-hero {
    padding-top: 88px;
  }

  .ab-hero__float {
    left: 12px;
    bottom: 12px;
  }

  .ab-story__grid {
    grid-template-columns: 1fr;
  }

  .ab-timeline__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .ab-timeline__track::before {
    display: none;
  }

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

@media (max-width: 575px) {
  .ab-hero__actions {
    flex-direction: column;
  }

  .ab-hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .ab-timeline__track {
    grid-template-columns: 1fr;
  }

  .ab-stats__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ab-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-mv-card,
  .ab-team__card,
  .ab-quote {
    transition: none;
  }

  .ab-mv-card:hover,
  .ab-team__card:hover,
  .ab-quote:hover {
    transform: none;
  }
}
