/* HERO */
.resources-hero {
  min-height: 85vh;
  padding: 180px 8vw 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, #1b1f3b, #0b0f1a);
}

.resources-hero-inner {
  max-width: 900px;
}

.resources-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
}

.resources-hero p {
  margin-top: 22px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* RESOURCES GRID */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.resource-card {
  background: var(--glass);
  padding: 38px;
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.resource-card h3 {
  margin-bottom: 14px;
  color: var(--accent);
}

/* PREMIUM STYLE */
.resource-card.premium {
  border: 1px solid rgba(123, 92, 255, 0.35);
}

/* HOW TO USE */
.usage-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.usage-step {
  background: var(--glass);
  padding: 28px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.usage-step span {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 8px;
}

/* =========================
   PREMIUM RESOURCES SPACING FIX
========================= */

/* Space between section description and cards */
.section-desc {
  margin-bottom: 48px;
}

/* =========================
   RESOURCES CTA BUTTONS
========================= */

.resources-cta {
  margin-top: 60px;
  text-align: center;
}
