/* ===== About Us page =====
   Industrial B2B style — white background, yellow brand accent,
   black headings. Everything rendered by about.js from the CMS API. */

/* Banner — same family as the Products/News banner (white gradient) */
.about-banner {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}
.about-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.88) 40%,
    rgba(255, 255, 255, 0.35) 68%,
    rgba(255, 255, 255, 0) 82%);
}
.about-banner .container { position: relative; z-index: 2; }
.about-banner-content h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1.1;
}
.about-banner-en {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--yellow-dark);
  text-transform: uppercase;
}

/* Sections */
.about-section { padding: 56px 0; background: var(--white); }
.about-products, .about-culture { background: var(--gray-100); }
.about-cta { background: var(--yellow); padding: 0; }

.about-sec-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.about-sec-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--yellow);
}
.about-sec-sub {
  color: var(--gray-500);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 760px;
}

/* Intro: media (video / image) + text */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-media {
  border-radius: 8px;
  overflow: hidden;
  background: #101010;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.10);
}
.about-media video { display: block; width: 100%; background: #101010; }
.about-media-img { aspect-ratio: 16 / 10; }
.about-media-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-intro-body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--gray-700);
  margin-top: 6px;
  max-width: 620px;
}

/* Products list */
.about-products-list { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.about-product-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 20px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.about-product-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.ap-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}
.ap-body h3 { font-size: 16.5px; font-weight: 700; color: var(--black); margin-bottom: 7px; }
.ap-body p { font-size: 13.5px; line-height: 1.8; color: var(--gray-700); }

/* Tech */
.about-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-tech-body { font-size: 15px; line-height: 1.95; color: var(--gray-700); }
.about-tech-img { margin-bottom: 20px; }
.about-tech-img img { width: 100%; border-radius: 8px; display: block; }
.about-tech-items { display: flex; flex-direction: column; gap: 12px; }
.about-tech-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 16px 20px;
}
.about-tech-item strong { font-size: 14.5px; color: var(--black); display: block; }
.about-tech-item p { font-size: 13px; color: var(--gray-500); margin-top: 5px; line-height: 1.7; }

/* Culture — three horizontal cards */
.about-culture-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.about-culture-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-top: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.about-culture-card:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.about-culture-card h3 { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.about-culture-card p { font-size: 13.5px; line-height: 1.8; color: var(--gray-700); }

/* Power (capabilities) */
.about-power-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.about-power-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 24px 18px;
  text-align: center;
}
.about-power-card h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.about-power-card p { font-size: 13px; line-height: 1.7; color: var(--gray-500); }

/* Bottom CTA */
.about-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 48px 0;
}
.about-cta-row h2 { font-size: 27px; font-weight: 800; color: var(--black); line-height: 1.25; }
.about-cta-row p { margin-top: 8px; font-size: 14.5px; color: #333; max-width: 680px; line-height: 1.7; }
.about-cta-row .btn-dark {
  background: var(--black);
  color: var(--white);
  flex: 0 0 auto;
}
.about-cta-row .btn-dark:hover { background: #2a2a2a; }

/* RTL */
[dir="rtl"] .about-sec-title::after { left: auto; right: 0; }
[dir="rtl"] .about-product-item { border-left: 1px solid var(--gray-300); border-right: 3px solid var(--yellow); }
[dir="rtl"] .about-tech-item { border-left: 1px solid var(--gray-300); border-right: 3px solid var(--yellow); }
[dir="rtl"] .about-cta-row { text-align: right; }

/* Responsive */
@media (max-width: 992px) {
  .about-intro-grid, .about-tech-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-culture-cards { grid-template-columns: 1fr 1fr; }
  .about-power-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .about-section { padding: 44px 0; }
  .about-cta-row { flex-direction: column; text-align: center; }
  .about-cta-row p { max-width: 100%; }
}
@media (max-width: 640px) {
  .about-banner { height: 160px; }
  .about-banner-content h1 { font-size: 24px; }
  .about-sec-title { font-size: 24px; }
  .about-culture-cards, .about-power-grid { grid-template-columns: 1fr; }
  .about-product-item { padding: 16px 16px; gap: 14px; }
}
