@use "../../../../styles/abstracts/variables" as *;

/* ================= ROOT SECTION ================= */
.section {
  padding: 7rem 1.5rem;
  background:
    radial-gradient(800px at 50% -200px, rgba(247,147,26,0.12), transparent 40%),
    linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 100%);
  color: #fff;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.header {
  max-width: 760px;
  margin: 0 auto 4.5rem;
  text-align: center;

  .badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f7931a;
    background: rgba(247,147,26,0.12);
    border: 1px solid rgba(247,147,26,0.25);
    border-radius: 999px;
  }

  h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.2rem;

    span {
       color: #f7931a;
    }
  }

  p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
  }
}

/* ================= GRID ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;

  @media (max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 640px) {
    grid-template-columns: 1fr;
  }
}

/* ================= CARD ================= */
.card {
  position: relative;
  padding: 2.3rem 2rem;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.015)
    );
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  transition: all 0.35s ease;
  overflow: hidden;

  &:hover {
    transform: translateY(-8px);
    border-color: rgba(247,147,26,0.4);
    box-shadow:
      0 25px 50px rgba(0,0,0,0.55),
      inset 0 0 0 1px rgba(247,147,26,0.1);
  }

  h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }

  p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.55;
  }
}

/* ================= TOP GLOW ================= */
.topGlow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f7931a, #ffd86f);
  opacity: 0.85;
}

