* { box-sizing: border-box; margin: 0; padding: 0; }

.stabilizer-about .top-bar {
  background: #1a1a1a;
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: Arial, sans-serif; flex-wrap: wrap; gap: 6px;
  width: 100%;
}
.top-bar-left { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.top-bar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.o-dot { width: 5px; height: 5px; border-radius: 50%; background: #FF7800; flex-shrink: 0; }

.hero {
  font-family: Arial, sans-serif;
  background: #ffffff;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,120,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.left-col { position: relative; z-index: 2; min-width: 0; }

.tag-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff4ec;
  border: 1.5px solid rgba(255,120,0,0.25);
  border-radius: 100px;
  padding: 6px 16px; margin-bottom: 24px;
  max-width: 100%;
}
.tag-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #FF7800; flex-shrink: 0; }
.tag-pill-text { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #CC5500; }

.hero-title {
  font-size: 40px; font-weight: 700;
  line-height: 1.12; color: #1a1a1a;
  margin-bottom: 8px; letter-spacing: -0.5px;
  word-break: break-word;
}
.hero-title .brand { color: #FF7800; }
.hero-title .sub { font-size: 24px; font-weight: 400; color: #444; display: block; margin-top: 6px; }

.divider-line { width: 52px; height: 4px; background: #FF7800; border-radius: 2px; margin: 16px 0 20px; }

.hero-desc { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 32px; word-break: break-word; }

.cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF7800; color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
  padding: 13px 26px; border-radius: 6px;
  border: none; cursor: pointer; text-decoration: none; font-family: Arial, sans-serif;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #1a1a1a;
  font-size: 13px; font-weight: 600;
  padding: 12px 22px; border-radius: 6px;
  border: 1.5px solid #1a1a1a;
  text-decoration: none; cursor: pointer; font-family: Arial, sans-serif;
}

.stats-row { display: flex; margin-top: 36px; padding-top: 24px; border-top: 1px solid #eee; }
.stat-item { flex: 1; min-width: 0; }
.stabilizer-about .stat-item + .stat-item { padding-left: 20px; border-left: 1px solid #eee; }
.stat-num { font-size: 24px; font-weight: 700; color: #FF7800; line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: 10px; color: #999; letter-spacing: 0.8px; text-transform: uppercase; font-weight: 600; }

.right-col {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  height: 420px;
  min-width: 0;
}

.img-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex: 1;
  min-width: 0;
}

.img-card.tall { height: 100%; }
.img-card.short { height: 100%; margin-top: 56px; }

.img-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
}

.badge {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 5px 10px; border-radius: 5px;
  font-family: Arial, sans-serif; z-index: 2;
}
.badge-orange { background: #FF7800; color: #fff; }
.badge-dark { background: #1a1a1a; color: #FF7800; border: 1px solid #FF7800; }

.stabilizer-about .card-title {
  position: absolute; bottom: 40px; left: 14px; right: 14px;
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: 0.3px; font-family: Arial, sans-serif; z-index: 2;
}

.floating-tag {
  position: absolute; top: 14px; right: 0; z-index: 2;
  background: #FF7800; color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.6px;
  padding: 5px 10px; border-radius: 4px 0 0 4px;
  font-family: Arial, sans-serif;
}

/* TABLET */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 36px;
  }
  .hero-title { font-size: 32px; }
  .hero-title .sub { font-size: 20px; }
  .right-col { height: 360px; max-width: 100%; }
  .hero::before { display: none; }
}

/* MOBILE */
@media (max-width: 560px) {
  .top-bar { padding: 10px 16px; }
  .top-bar-left { font-size: 11px; }
  .top-bar-item { font-size: 10px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 28px 16px;
    gap: 28px;
    overflow: visible;
  }

  .hero-title { font-size: 26px; }
  .hero-title .sub { font-size: 17px; }
  .hero-desc { font-size: 14px; }

  .btn-primary { padding: 12px 20px; font-size: 12px; }
  .btn-outline { padding: 11px 18px; font-size: 12px; }

  .stat-num { font-size: 20px; }
  .stat-lbl { font-size: 9px; }

  /* Stack images vertically */
  .right-col {
    flex-direction: column;
    height: auto;
    gap: 12px;
    width: 100%;
  }
  .img-card.tall,
  .img-card.short {
    height: 200px;
    width: 100%;
    margin-top: 0;
    flex: none;
  }

  .stabilizer-about .card-title { font-size: 11px; bottom: 34px; }
  .badge { font-size: 9px; padding: 4px 8px; bottom: 10px; left: 10px; }
  .floating-tag { font-size: 9px; padding: 4px 8px; }
}

/* SMALL MOBILE */
@media (max-width: 380px) {
  .hero { padding: 24px 14px; }
  .hero-title { font-size: 22px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}


/* Add this to your existing CSS */

@media (max-width: 560px) {
  .stats-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding-bottom: 6px;
    border-top: 1px solid #eee;
    margin-top: 36px;
    padding-top: 24px;

    /* Hide scrollbar visually */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .stats-row::-webkit-scrollbar {
    display: none;
  }

  .stat-item {
    flex: 0 0 auto;
    min-width: 110px;
    scroll-snap-align: start;
    padding: 0 20px 0 0;
    border-left: none !important;
    padding-left: 0 !important;
  }

  .stabilizer-about .stat-item + .stat-item {
    padding-left: 16px !important;
    border-left: 1px solid #eee !important;
  }
}

@media (max-width: 380px) {
  .stat-item {
    min-width: 90px;
  }
}