/* ============================
   PRICING PAGE — BASE
   ============================ */

.pricing-page {
  background: var(--bg);
  color: var(--ink);
  padding-bottom: 80px;
}

/* ----------------------------
   PAGE HEADER
   ---------------------------- */
.pricing-head {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 20px;
  position: relative;
}

.pricing-title {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #ffe7be 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 2;
}

.pricing-sub {
  font-size: 16px;
  margin-top: 6px;
  color: var(--muted);
}

/* Soft glow behind pricing title */
.pricing-head::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 420px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
      circle at center,
      rgba(224,176,104,.25),
      rgba(224,176,104,.10) 50%,
      transparent 80%
  );
  filter: blur(40px);
  opacity: .9;
  z-index: 0;
}


/* ----------------------------
   INTRO TEXT
   ---------------------------- */
.pricing-intro {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.65;
  color: var(--muted);
  font-size: 1rem;
}


/* ----------------------------
   GRID LAYOUT
   ---------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
  margin-bottom: 40px;
}

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


/* ============================
   PRICE CARD (BASE)
   ============================ */
.price-card {
  background: #171923;
  border: 1px solid #202332;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  opacity: 1;            /* always visible */
  transform: none;       /* no animation */
}



/* ----------------------------
   FLOATING GOLD PREMIUM BADGE
   ---------------------------- */
.price-card.premium::before {
  content: "PREMIUM";
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  color: #000;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  transform: rotate(6deg);
  opacity: .9;
  pointer-events: none;
}

.price-card.basic::before,
.price-card.extra::before {
  display: none;
}


/* ----------------------------
   3D Tilt Hover Effect
   ---------------------------- */
@media (hover:hover){
  .price-card {
    perspective: 900px;
    transform-style: preserve-3d;
  }
  .price-card:hover {
    transform: rotateX(4deg) rotateY(-4deg) translateY(-8px);
  }
}


/* ----------------------------
   Gold Shimmer Sweep Border
   ---------------------------- */
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(224,176,104,.35) 50%,
    transparent 100%
  );
  border-radius: inherit;
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 1.4s ease, opacity .6s;
}

.price-card:hover::after {
  opacity: .7;
  transform: translateX(120%);
}


/* ============================
   TITLES / SUBTITLES
   ============================ */
.pc-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
}

/* Animated gold underline */
.pc-title::after {
  content: "";
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  display: block;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmerLine 4s linear infinite;
}

@keyframes shimmerLine {
  0% { width: 40px; opacity: .3; }
  50% { width: 80px; opacity: 1; }
  100% { width: 40px; opacity: .3; }
}

.pc-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}


/* ============================
   INCLUDED LIST
   ============================ */
.pc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: var(--muted);
}

.pc-list li {
  padding: 4px 0;
}


/* ============================
   TABLES
   ============================ */
.pc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}

.pc-table th,
.pc-table td {
  padding: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

/* Header */
.pc-table th {
  color: var(--gold);
  font-weight: 800;
}

/* Price values */
.pc-table td {
  color: #fff;
  transition: color .25s ease, text-shadow .25s ease;
}

/* Price glow on hover */
.pc-table td:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(224,176,104,.45);
}


/* ============================
   NOTES
   ============================ */
.pc-note {
  background: rgba(255,255,255,0.05);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.08);
}

.pc-note span {
  color: var(--gold);
  font-weight: 800;
}

/* Red notice */
.pc-small {
  color: #ffb3b3;
  font-size: .86rem;
  margin-bottom: 14px;
}


/* ============================
   MOBILE TWEAKS
   ============================ */
@media (max-width: 600px){
  .price-card {
    padding: 20px;
  }
  .pricing-head {
    padding-top: 120px;
  }
}

/* Ensure second grid shows */
.pricing-grid + .pricing-grid {
  margin-top: 40px;
}


/* ===========================================
   PRICING DESCRIPTION — GOLD + FADE EFFECT
=========================================== */

.pricing-desc {
  max-width: 920px;
  margin: 24px auto 46px auto;
  text-align: center;
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.75;
  position: relative;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadePricing 0.8s ease forwards;
  animation-delay: 0.15s;
}

/* Gold underline under the entire paragraph */
.pricing-desc.gold-effect::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(224,176,104,0.7);
  animation: goldLine 2.2s ease-in-out infinite alternate;
}

/* Subtle gold background glow */
.pricing-desc.gold-effect::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 240px;
  background: radial-gradient(circle, rgba(224,176,104,0.22), transparent 70%);
  filter: blur(40px);
  opacity: 0.4;
  z-index: -1;
}

/* Fade + rise animation */
@keyframes fadePricing {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Soft shimmer on underline */
@keyframes goldLine {
  0% { width: 70px; opacity: 0.6; }
  100% { width: 115px; opacity: 1; }
}

.pc-list--columns {
  columns: 2;
  column-gap: 30px;
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.pc-list--columns li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.pc-list--columns li::before {
  content: "•";
  color: var(--gold, #d4af37); /* matches your gold accent if you have it */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
  .pc-list--columns {
    columns: 1;
  }
}