/* BikeStore FAQ + About — layout like reference */
.bs-about {
  position: relative;
  background: #f5f6f8;
  padding: 70px 0 12px;
  margin: 8px 0 0;
}
.bs-about .container {
  width: 100%;
  max-width: 100%;
  padding-left: 40px !important;
  padding-right: 40px !important;
  position: relative;
  z-index: 1;
}
.bs-about .about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.bs-about .about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #6b7280;
  background: transparent;
  padding: 0 0 6px;
  border-radius: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid #d1d5db;
}
.bs-about .about__eyebrow i { color: #374151; font-size: 13px; }
.bs-about .about__faq > h2,
.bs-about .about__card > h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #111827;
  letter-spacing: -0.4px;
}
.bs-about .faq { display: flex; flex-direction: column; gap: 8px; }
.bs-about .faq__item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.bs-about .faq__item:hover { border-color: #cbd5e1; }
.bs-about .faq__item.is-open {
  border-color: #ff0000;
  box-shadow: 0 8px 24px rgba(255, 0, 0, .12);
}
.bs-about .faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-align: left;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  cursor: pointer;
}
.bs-about .faq__q i {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform .3s, background .2s;
}
.bs-about .faq__item.is-open .faq__q i {
  transform: rotate(45deg);
  background: #ff0000;
  color: #fff;
}
.bs-about .faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.bs-about .faq__a p {
  padding: 14px 20px 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #6b7280;
  border-top: 1px solid #f1f5f9;
  margin: 0;
}
.bs-about .about__card {
  position: relative;
  background: #141414;
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, .18);
  overflow: hidden;
  color: #e5e7eb;
}
.bs-about .about__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,20,20,.97) 0%, rgba(20,20,20,.92) 55%, rgba(180,20,20,.45) 100%);
  pointer-events: none;
}
.bs-about .about__card > * { position: relative; z-index: 1; }
.bs-about .about__eyebrow--light {
  color: #9ca3af;
  border-bottom-color: #404040;
}
.bs-about .about__eyebrow--light i { color: #f5a623; }
.bs-about .about__card > h2 { color: #fff; }
.bs-about .about__text {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 18px;
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #1f2937;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 calc(100% - 28px), transparent 100%);
}
.bs-about .about__text::-webkit-scrollbar { width: 7px; }
.bs-about .about__text::-webkit-scrollbar-track { background: #1f2937; border-radius: 999px; }
.bs-about .about__text::-webkit-scrollbar-thumb { background: #4b5563; border-radius: 999px; }
.bs-about .about__text p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #9ca3af;
  margin-bottom: 12px;
}
.bs-about .about__lead {
  font-size: 16px !important;
  font-weight: 600;
  color: #f3f4f6 !important;
  line-height: 1.6 !important;
}
.bs-about .about__text h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  color: #f5a623;
  margin: 20px 0 10px;
}
.bs-about .about__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.bs-about .about__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #9ca3af;
}
.bs-about .about__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
  color: #ff0000;
}
.bs-about .about__list li strong { color: #e5e7eb; }
.bs-about .about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #333;
}
.bs-about .about__stat {
  padding: 0 18px;
  border-left: 1px solid #333;
}
.bs-about .about__stat:first-child {
  padding-left: 0;
  border-left: none;
}
.bs-about .about__stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.bs-about .about__stat span {
  font-size: 12.5px;
  color: #9ca3af;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .bs-about .about__inner { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .bs-about { padding: 36px 0 0; }
  .bs-about .container { padding-left: 0 !important; padding-right: 0 !important; max-width: 100% !important; width: 100% !important; }
  .bs-about .about__inner { grid-template-columns: 1fr; gap: 20px; }
  .bs-about .about__faq { padding-left: 12px; padding-right: 12px; }
  .bs-about .about__card {
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 24px 16px;
  }
  .bs-about .about__faq > h2,
  .bs-about .about__card > h2 { font-size: 24px; }
  .bs-about .about__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 24px;
    padding-top: 8px;
  }
  .bs-about .about__stat {
    text-align: center;
    padding: 18px 10px !important;
    border-left: none !important;
    border-top: 1px solid #333;
  }
  .bs-about .about__stat:nth-child(1),
  .bs-about .about__stat:nth-child(2) { border-top: none; }
  .bs-about .about__stat:nth-child(even) { border-left: 1px solid #333 !important; }
  .bs-about .about__stat strong { font-size: 22px; }
  .bs-about .about__stat span {
    display: block;
    margin: 0 auto;
    max-width: 140px;
  }
}
