/* =========================
   PRICING — Minimal, luxury
========================= */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.gradient-text {
  color: var(--text-primary);
}

.pricing-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 0 80px;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-section);
}

.pricing-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-hero .subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-hero p {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-hero .trust {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.btn-second {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  background: var(--text-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  border: 1px solid var(--text-primary);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-second:hover {
  background: rgba(250, 250, 250, 0.92);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

/* ---------- Pricing Grid ---------- */
.pricing-grid {
  padding: 100px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-section);
}

.plans-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
  grid-column: 1 / -1;
  letter-spacing: -0.02em;
}

.tier {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
}

.tier:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.tier.popular {
  border-color: var(--border-accent);
  background: rgba(18, 18, 20, 0.88);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
}

.tier h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 600;
  flex-shrink: 0;
}

.tier .btn-second {
  width: 100%;
  margin-top: 28px;
}

/* ---------- Comparison ---------- */
.comparison {
  padding: 80px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-section);
}

.comparison h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

#comparison {
  padding: 0;
}

.comparison table,
.pricing-cta .container table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
}

.comparison th,
.comparison td,
.pricing-cta th,
.pricing-cta td {
  padding: 16px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.comparison th,
.pricing-cta th {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.comparison td,
.pricing-cta td {
  color: var(--text-primary);
}

.comparison .check,
.pricing-cta .check {
  color: var(--green);
}

.comparison .cross,
.pricing-cta .cross {
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}

/* ---------- Final CTA ---------- */
.pricing-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-section);
}

.pricing-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.pricing-cta .btn-second {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 100px 0 60px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 80px 0;
  }

  .tier {
    padding: 32px 24px;
  }
}
