.trading_cta_section {
  background: #000;
  padding: 30px 50px;
}

.trading_cta_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 32px 45px;

  background: radial-gradient(
    circle at center,
    rgba(118, 75, 10, 0.1) 0%,
    rgba(18, 13, 6, 0.95) 65%
  );

  border: 1px solid rgba(217, 154, 38, 0.28);
  border-radius: 8px;

  overflow: hidden;
}

/* Subtle golden glow */
.trading_cta_box::before {
  content: "";
  position: absolute;

  width: 300px;
  height: 150px;

  top: -100px;
  left: 50%;

  transform: translateX(-50%);

  background: rgba(218, 155, 37, 0.12);
  filter: blur(60px);

  pointer-events: none;
}

/* LEFT */

.trading_cta_content {
  position: relative;
  z-index: 2;
}

.trading_cta_content h2 {
  margin: 0 0 12px;

  font-size: 28px;
  line-height: 1.2;

  font-weight: 700;

  color: #fff;
}

.trading_cta_content h2 span {
    color: #e5a62d;
    font-weight: 400;
}
.trading_cta_content p {
  margin: 0;

  color: #d3d3d3;

  font-size: 14px;
  line-height: 1.6;
}

/* RIGHT */

.trading_cta_actions {
  position: relative;
  z-index: 2;

  min-width: 220px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;
}

/* LIVE BUTTON */

.live_account_btn {
  min-width: 200px;

  padding: 14px 24px;

  border: none;
  border-radius: 5px;

  background: linear-gradient(180deg, #ffc64d 0%, #e9a62a 100%);

  color: #16100a;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;
}

.live_account_btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(233, 166, 42, 0.3);
}

/* DEMO BUTTON */

.demo_account_btn {
  border: none;
  background: transparent;

  padding: 0;

  color: #c7b89e;

  font-size: 11px;

  cursor: pointer;

  transition: color 0.3s ease;
}

.demo_account_btn .arrow {
  display: inline-block;

  margin-left: 5px;

  transition: transform 0.3s ease;
}

.demo_account_btn:hover {
  color: #e5a62d;
}

.demo_account_btn:hover .arrow {
  transform: translateX(4px);
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 991px) {
  .trading_cta_box {
    padding: 28px 30px;
  }

  .trading_cta_content h2 {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .trading_cta_section {
    padding: 20px 0;
  }

  .trading_cta_box {
    flex-direction: column;

    text-align: center;

    padding: 30px 20px;

    gap: 25px;
  }

  .trading_cta_content h2 {
    font-size: 21px;
  }

  .trading_cta_content p {
    font-size: 13px;
  }

  .trading_cta_actions {
    width: 100%;
  }

  .live_account_btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 575px) {
.trading_cta_box {
    padding: 10px;
}
  .trading_cta_content h2 {
    font-size: 18px;
    line-height: 1.35;
  }

  .trading_cta_content p {
    font-size: 12px;
  }
}
