/* SECTION */
.how-section {
  padding: 100px 20px;
  background: #050507;
  color: #fff;
}

.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.how-header h2 span {
  background: linear-gradient(90deg, #b86bff, #ff4fd8);
  -webkit-background-clip: text;
  color: transparent;
}

.how-header p {
  margin-top: 10px;
  color: #9a9ab0;
}

/* GRID */
.how-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.how-card {
  position: relative;
  height: 270px;
  padding: 32px;
  border-radius: 22px;

  /* GLASS BACKGROUND */
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    radial-gradient(
      circle at top left,
      rgba(186, 107, 255, 0.18),
      transparent 60%
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* STRONG SEPARATION */
  border: 1px solid rgba(186, 107, 255, 0.28);

  /* DEPTH */
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);

  transition: all 0.4s ease;
}
.how-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(186, 107, 255, 0.45),
    rgba(255, 79, 216, 0.35),
    transparent 60%
  );
  opacity: 0.6;
  z-index: -1;
  filter: blur(18px);
}
.how-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 70px rgba(186, 107, 255, 0.35),
    0 0 0 1px rgba(186, 107, 255, 0.6);
}

/* STEP BADGE */
.step {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(90deg, #b86bff, #ff4fd8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ICON */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, #ff4fd8, #9b5cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 18px rgba(186, 107, 255, 0.45);
  transition: all 0.35s ease;
}

.how-card:hover .icon-box {
  box-shadow: 0 0 30px rgba(186, 107, 255, 0.65);
}

/* TEXT */
.how-card h4 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
}

.how-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}
/* INTERACTIVE SECTION */
.interactive-section {
  padding: 100px 20px;
  background:
    radial-gradient(
      700px circle at 50% -10%,
      rgba(186, 107, 255, 0.14),
      transparent 45%
    ),
    linear-gradient(180deg, #030306, #07070d);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.section-header h2 span {
  background: linear-gradient(90deg, #b86bff, #ff4fd8);
  -webkit-background-clip: text;
  color: transparent;
}

.section-header p {
  margin-top: 10px;
  color: #fff;
}

/* GRID */
.interactive-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.interactive-card {
  position: relative;
  z-index: 1;
  padding: 36px;
  border-radius: 22px;

  background: linear-gradient(180deg, #14141c, #0c0c12);

  border: 1px solid rgba(186, 107, 255, 0.35);

   box-shadow:
    0 14px 40px rgba(186, 107, 255, 0.45), /* brighter */
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(186, 107, 255, 0.65); 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.interactive-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(186, 107, 255, 0.7),
    0 0 45px rgba(186, 107, 255, 0.45);
}

/* STEP BADGE */
.step-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(90deg, #b86bff, #ff4fd8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ICON */
.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, #ff4fd8, #9b5cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 20px rgba(186, 107, 255, 0.5);
}

/* TEXT */
.interactive-card h4 {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 600;
}

.interactive-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #9a9ab0;
}

/* BUTTON */
.card-action {
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #b86bff, #ff4fd8);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-action:hover {
  box-shadow: 0 0 22px rgba(186, 107, 255, 0.6);
}

.card-action:focus-visible {
  outline: 2px solid #ff4fd8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .interactive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .interactive-grid {
    grid-template-columns: 1fr;
  }
}
