/* ===== ABOUT PAGE ===== */
.about-hero {
  background: #0d1117;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  width: 100%;
}
.about-hero__badge {
  background: #ff0000;
  color: #fff;
  padding: 6px 16px;
  display: inline-block;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 14px;
}
.about-hero__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff !important;
}
.about-hero__title span {
  color: #ff0000;
}
.about-hero__sub {
  font-size: 18px;
  color: #8b949e;
  max-width: 700px;
  margin: 0 auto;
}

.about-divider {
  border: 0;
  height: 1px;
  background: #21262d;
  margin: 0;
}

/* ===== STATS BAR ===== */
.about-stats {
  background: #161b22;
  padding: 48px 0;
  width: 100%;
}
.about-stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.about-stat {
  text-align: center;
}
.about-stat__number {
  font-size: 40px;
  font-weight: 800;
  color: #ff0000;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat__label {
  font-size: 14px;
  color: #8b949e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== ROWS ===== */
.about-section {
  padding: 80px 0;
  width: 100%;
}
.about-section--dark {
  background: #0d1117;
}
.about-section--mid {
  background: #161b22;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.about-row--reverse {
  flex-direction: row-reverse;
}

/* IMAGE SIDE */
.about-row__img {
  flex: 1;
  min-width: 0;
}
.about-row__img img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #30363d;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  display: block;
}
.about-row__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  border: 1px solid #30363d;
  background: #21262d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #484f58;
}
.about-row__img-placeholder i {
  font-size: 48px;
  color: #ff0000;
  opacity: 0.6;
}
.about-row__img-placeholder span {
  font-size: 14px;
}

/* TEXT SIDE */
.about-row__text {
  flex: 1;
  min-width: 0;
  color: #fff;
}
.about-row__number {
  font-size: 13px;
  font-weight: bold;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.about-row__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #fff;
}
.about-row__title span {
  color: #ff0000;
}
.about-row__desc {
  font-size: 15px;
  color: #8b949e;
  line-height: 1.7;
  margin-bottom: 24px;
}
.about-row__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.about-badge {
  background: #21262d;
  border: 1px solid #30363d;
  color: #c9d1d9;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.about-badge i {
  color: #ff0000;
  font-size: 12px;
}
.about-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff !important;
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.about-row__btn:hover {
  background: #cc0000;
}
.about-row__btn--outline {
  background: transparent;
  border: 1px solid #30363d;
  color: #fff !important;
}
.about-row__btn--outline:hover {
  border-color: #ff0000;
  color: #ff0000 !important;
}

/* ===== TEAM SECTION ===== */
.about-team {
  background: #0d1117;
  padding: 80px 0;
  width: 100%;
}
.about-team__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.about-team__header {
  text-align: center;
  margin-bottom: 48px;
}
.about-team__header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.about-team__header h2 span {
  color: #ff0000;
}
.about-team__header p {
  font-size: 15px;
  color: #8b949e;
}
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.about-team-card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.about-team-card:hover {
  border-color: #ff0000;
}
.about-team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #21262d;
  border: 2px solid #30363d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #ff0000;
}
.about-team-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.about-team-card__role {
  font-size: 13px;
  color: #ff0000;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-team-card__bio {
  font-size: 13px;
  color: #8b949e;
  line-height: 1.6;
}

/* ===== VALUES SECTION ===== */
.about-values {
  background: #161b22;
  padding: 80px 0;
  width: 100%;
}
.about-values__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.about-values__header {
  text-align: center;
  margin-bottom: 48px;
}
.about-values__header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.about-values__header h2 span {
  color: #ff0000;
}
.about-values__header p {
  font-size: 15px;
  color: #8b949e;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.about-value-card {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.about-value-card:hover {
  border-color: #ff0000;
}
.about-value-card__icon {
  font-size: 28px;
  color: #ff0000;
  margin-bottom: 16px;
  display: block;
}
.about-value-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.about-value-card__desc {
  font-size: 14px;
  color: #8b949e;
  line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.about-cta {
  background: #0d1117;
  border-top: 1px solid #21262d;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.about-cta__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}
.about-cta__title span {
  color: #ff0000;
}
.about-cta__sub {
  color: #8b949e;
  font-size: 16px;
  margin-bottom: 32px;
}
.about-cta__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-row,
  .about-row--reverse {
    flex-direction: column;
    gap: 36px;
  }
  .about-hero__title {
    font-size: 28px;
  }
  .about-row__title {
    font-size: 22px;
  }
  .about-stat__number {
    font-size: 30px;
  }
  .about-team__grid,
  .about-values__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .about-team__grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }
  .about-stats__inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

/* Ascunde bara de titlu, butoanele sticky si spatiile ramase */
.top-header,
.page-header,
.right-sticky-menu,
#sticky-panel,
.panel-sticky {
  display: none !important;
}

.wrapper.sec-normal,
.content.bg-colorstyle,
section#main-body,
.main-content {
  padding: 0px !important;
  margin: 0px !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  max-width: 100% !important;
  width: 100% !important;
}