/* =============================================
   HERYERPARKOUR — Pricing Section
   3 paket kartı, favori badge, koyu arka plan
   ============================================= */

.pricing-section {
  background: var(--bg-dark);
  padding: 120px 0 140px;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: -1px;
}

/* Transition from bej */
.pricing-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(242, 239, 233, 0.5) 25%, rgba(15, 15, 15, 0.3) 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ₺ watermark */
.pricing-section::after {
  content: '\20BA';
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 400px;
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
}

.pricing-section > .container { position: relative; z-index: 1; }
.pricing-section .sec-label { color: var(--lime); }
.pricing-section .sec-sub { color: rgba(255, 255, 255, 0.4); }

/* Title override */
.pricing-title .letter {
  color: white !important;
  -webkit-text-fill-color: white !important;
}

.pricing-title .letter.stroke-letter {
  -webkit-text-stroke: 2px white !important;
  -webkit-text-fill-color: transparent !important;
}

.pricing-header { margin-bottom: 56px; }

/* Grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--duration-slow) var(--ease-out);
}

.price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card inner */
.price-card-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
  transition: all 0.4s;
  clip-path: var(--clip-card-1);
}

.price-card:nth-child(2) .price-card-inner { clip-path: var(--clip-card-2); }
.price-card:nth-child(3) .price-card-inner { clip-path: var(--clip-card-3); }

.price-card:hover .price-card-inner {
  border-color: var(--accent-border);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px);
}

/* Popular card */
.price-pop .price-card-inner {
  background: var(--accent);
  border-color: var(--accent);
}

.price-pop:hover .price-card-inner {
  background: var(--accent-hover);
}

/* Elements */
.price-label {
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-on-dark-faint);
  margin-bottom: 12px;
}

.price-pop .price-label { color: var(--text-on-dark-dim); }

.price-amount {
  font-family: var(--ff-display);
  font-size: 52px;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount span {
  font-family: var(--ff-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.price-pop .price-amount span { color: var(--text-on-dark-dim); }

.price-period {
  font-size: 15px;
  color: var(--text-on-dark-faint);
  margin-bottom: 28px;
  font-weight: 600;
}

.price-pop .price-period { color: rgba(255, 255, 255, 0.6); }

.price-features {
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '\2192';
  color: var(--accent);
  font-weight: 900;
}

.price-pop .price-features li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.price-pop .price-features li::before { color: white; }

/* CTA button */
.price-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
  transition: all var(--duration-normal);
  cursor: pointer;
}

.price-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.price-btn-fill {
  background: var(--bg-dark) !important;
  border-color: var(--bg-dark) !important;
  color: white !important;
}

.price-btn-fill:hover {
  background: white !important;
  color: var(--bg-dark) !important;
}

/* Note */
.price-note {
  text-align: center;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

.price-note strong { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card:nth-child(3) {
    grid-column: span 2;
    width: calc((100% - 20px) / 2);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .price-card:nth-child(3) {
    grid-column: span 2;
    width: calc((100% - 16px) / 2);
    margin: 0 auto;
  }
  .pricing-section { padding: 80px 0 100px; }
  .pricing-section::after {
    top: auto;
    bottom: 5%;
    transform: none;
    font-size: 280px;
  }
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }
  .price-card-inner { padding: 28px; }
}
