/* ============================================
   whatisglam.css — WHAT IS GLAMOUR SECTION
   ============================================ */

/* ── SECTION BASE ── */
.what-is-glamour {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 140px 5%;
}

/* Ambient background glow — mirrors hero pattern */
.what-is-glamour::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(0, 229, 200, 0.04) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.what-is-glamour::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 214, 91, 0.18), transparent);
}

/* ── INNER WRAPPER — narrow centered ── */
.wig-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── EYEBROW ── */
.wig-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 28px;
}

.wig-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── HEADING ── */
.wig-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 32px;
}

.wig-title .gold {
  background: linear-gradient(180deg, #fff 0%, #fed65b 55%, #dbaf37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(254, 214, 91, 0.18));
}

/* ── BODY COPY ── */
.wig-body {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 20px;
}

.wig-body strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* ── DIVIDER ── */
.wig-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 44px 0;
  border-radius: 2px;
}

/* ── FEATURE CARDS GRID ── */
.wig-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}

.wig-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.wig-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 0%, rgba(254, 214, 91, 0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wig-card:hover {
  border-color: rgba(254, 214, 91, 0.22);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-6px);
}

.wig-card:hover::before {
  opacity: 1;
}

/* Icon wrapper */
.wig-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(254, 214, 91, 0.08);
  border: 1px solid rgba(254, 214, 91, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.wig-card:hover .wig-card-icon {
  background: rgba(254, 214, 91, 0.14);
  border-color: rgba(254, 214, 91, 0.3);
}

.wig-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 1.8;
}

/* Card label */
.wig-card-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wig-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .what-is-glamour {
    padding: 90px 5%;
  }

  .wig-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wig-title {
    font-size: 34px;
  }

  .wig-body {
    font-size: 15px;
  }
}