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

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

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

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

/* IMAGE SIDE */
.panel-row__img {
  flex: 1;
  min-width: 0;
}
.panel-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;
}
.panel-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;
}
.panel-row__img-placeholder i {
  font-size: 48px;
  color: #ff0000;
  opacity: 0.6;
}
.panel-row__img-placeholder span {
  font-size: 14px;
}

/* TEXT SIDE */
.panel-row__text {
  flex: 1;
  min-width: 0;
  color: #fff;
}
.panel-row__number {
  font-size: 13px;
  font-weight: bold;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.panel-row__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #fff;
}
.panel-row__title span {
  color: #ff0000;
}
.panel-row__desc {
  font-size: 15px;
  color: #8b949e;
  line-height: 1.7;
  margin-bottom: 24px;
}
.panel-row__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.panel-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;
}
.panel-badge i {
  color: #ff0000;
  font-size: 12px;
}
.panel-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;
}
.panel-row__btn:hover {
  background: #cc0000;
}
.panel-row__btn--outline {
  background: transparent;
  border: 1px solid #30363d;
  color: #fff !important;
}
.panel-row__btn--outline:hover {
  border-color: #ff0000;
  color: #ff0000 !important;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .panel-row,
  .panel-row--reverse {
    flex-direction: column;
    gap: 36px;
  }
  .panel-hero__title {
    font-size: 28px;
  }
  .panel-row__title {
    font-size: 22px;
  }
}

/* Ascunde bara de titlu, butoanele sticky si spatiile ramase */
  .top-header, 
  .page-header, 
  .right-sticky-menu, 
  #sticky-panel, 
  .panel-sticky {
    display: none !important;
  }
  
  /* Elimina marginile si fundalul containerului implicit WHMCS */
  .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;
  }