.what-we-do-section {
  position: relative;
  overflow: hidden;
}

.what-we-do-section h2 {
  color: var(--text);
}

/* Bottom glow (cyan instead of purple) */
.what-we-do-section::after {
  content: "";
  position: absolute;
  left: 75%;
  bottom: -200px;
  transform: translateX(-50%);
  width: 1800px;
  height: 500px;
  background: radial-gradient(
    ellipse at right,
    rgba(34, 211, 238, 0.22),   /* cyan glow */
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.what-we-do-section > .container {
  position: relative;
  z-index: 1;
}

.orbit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.orbit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.65); /* cyan border */
  box-shadow:
    0 14px 32px rgba(34, 211, 238, 0.22), /* cyan glow */
    0 4px 16px rgba(168, 85, 247, 0.12);  /* tiny purple accent (optional) */
}

.orbit-card h3 {
  color: var(--text);
}

.orbit-card p,
.orbit-card ul li {
  color: var(--text-dim);
}

.orbit-card ul {
  padding-left: 20px;
  margin-top: 12px;
}

.orbit-card ul li {
  margin-bottom: 6px;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: var(--text-dim);
  font-weight: 500;
  padding-left: 0;
}

.tick-list li::before {
  content: "\2713";
  font-size: 15px;
  font-weight: 900;

  /* use your theme vars */
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 6px rgba(34, 211, 238, 0.35);
  position: static;
}

.what-sub{
  max-width: 920px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 15px;
}

.what-lead{
  color: var(--text);
  font-weight: 700;
}
