/* === Shared Containers === */
.fees-section,
.card-limits {
  max-width: 1200px;
  margin: 100px auto;
  padding: 80px 40px;
  background: radial-gradient(
    circle at top left,
    rgba(28, 28, 28, 0.95),
    rgba(8, 8, 8, 0.98)
  );
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(255, 166, 8, 0.08);
  color: #e6e6e6;
  font-family: "Inter", "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.fees-section::before,
.card-limits::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    rgba(255, 166, 8, 0.4),
    rgba(255, 204, 102, 0.3),
    rgba(8, 11, 24, 0.2)
  );
  border-radius: 20px;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.fees-section > *,
.card-limits > * {
  position: relative;
  z-index: 2;
}

/* === Shared Glass Box === */
.fee-box,
.limit-group,
.why-we-box {
  flex: 1 1 45%;
  background: linear-gradient(
    135deg,
    rgba(145, 98, 255, 0.18),
    rgba(28, 48, 168, 0.18)
  );
  border: 1px solid rgba(145, 98, 255, 0.3);
  border-radius: 18px;
  padding: 40px 35px;
  backdrop-filter: blur(18px);
  box-shadow: 0 0 35px rgba(145, 98, 255, 0.15);
  transition: all 0.35s ease;
}

.fee-box:hover,
.limit-group:hover,
.why-we-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 55px rgba(145, 98, 255, 0.25);
  border-color: rgba(145, 98, 255, 0.4);
  background: linear-gradient(
    135deg,
    rgba(145, 98, 255, 0.25),
    rgba(28, 48, 168, 0.25)
  );
}

/* === Titles === */
.section-title,
.card-limits-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
  text-align: center;
}

.section-title::after,
.card-limits-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #ffa608, #ffcc66);
  border-radius: 2px;
  margin: 8px auto 0;
  /* centers it horizontally */
}

.fee-title,
.limit-group h2 {
  font-size: 1.25rem;
  color: #ffa608;
  margin-bottom: 18px;
  font-weight: 600;
}

/* === Text & Description === */
.section-desc,
.card-limits-desc,
.fee-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.section-desc span,
.card-limits-desc span,
.fee-list li strong,
.why-we-list li strong {
  color: #ffa608;
  font-weight: 600;
}

/* === Lists === */
.fee-list,
.limit-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fee-list li,
.limit-group li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  line-height: 1.7;
  padding-left: 26px;
  position: relative;
}

.fee-list li::before,
.limit-group li::before,
.why-we-list li::before {
  content: "✔";
  color: #ffa608;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

/* === Layout === */
.limits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* === Card Limits Header === */
.card-limits-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.why-we-standout > * {
  position: relative;
  z-index: 2;
}

/* Inner layout */
.why-we-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* List styling */
.why-we-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.why-we-list li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  line-height: 1.7;
  padding-left: 28px;
  position: relative;
}

/* === Responsive === */
@media (max-width: 900px) {
  .limits-container {
    flex-direction: column;
    gap: 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 1rem;
  }
}
