/* ===== PRICING PAGE ===== */

/* Hero */
.pricing-hero {
  padding: 100px 48px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% -5%, rgba(245,158,11,0.08) 0%, transparent 65%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 24px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.02);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.pricing-sub {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 44px;
}
.pricing-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-cta-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Shared */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: #0d0d0f;
  border-radius: 14px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: -0.2px;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.25);
}
.btn-large { padding: 20px 44px; font-size: 17px; border-radius: 16px; }

/* ===== TIER CARDS ===== */
.tiers-section {
  padding: 80px 48px;
  background: var(--bg);
}
.tiers-inner { max-width: 1200px; margin: 0 auto; }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.tier-card:hover {
  border-color: rgba(245,158,11,0.2);
}
.tier-card-featured {
  border-color: rgba(245,158,11,0.35);
  background: linear-gradient(160deg, rgba(245,158,11,0.05) 0%, var(--surface) 40%);
  box-shadow: 0 0 40px rgba(245,158,11,0.06);
}
.tier-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #0d0d0f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-card-top { display: flex; flex-direction: column; gap: 6px; }
.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
}
.tier-for {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.tier-price span {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.feat-check {
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 16px;
}
.btn-tier {
  display: block;
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}
.btn-tier:hover {
  border-color: rgba(245,158,11,0.4);
  background: rgba(245,158,11,0.08);
  color: var(--cream);
}
.btn-tier-featured {
  background: var(--amber);
  color: #0d0d0f;
  border-color: var(--amber);
  font-weight: 700;
}
.btn-tier-featured:hover {
  background: #d97706;
  border-color: #d97706;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.tiers-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 900px; margin: 0 auto; }
.how-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 56px;
  margin-top: 16px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: start;
  position: relative;
}
.how-step + .how-step {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.how-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}
.how-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.how-step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 48px;
  background: var(--bg);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 48px;
  margin-top: 16px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.2s ease;
}
.testimonial-card:hover { border-color: rgba(245,158,11,0.2); }
.testimonial-featured {
  border-color: rgba(245,158,11,0.3);
  background: linear-gradient(160deg, rgba(245,158,11,0.05) 0%, var(--surface) 60%);
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.quote-mark {
  font-size: 48px;
  line-height: 0;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
  font-style: normal;
  opacity: 0.4;
}
.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--cream); }
.testimonial-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testimonial-plan {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 48px;
  margin-top: 16px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.faq-item { }
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== TRUST BAND ===== */
.trust-section {
  padding: 64px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { max-width: 1000px; margin: 0 auto; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 32px;
}
.trust-icon {
  color: var(--amber);
  opacity: 0.8;
}
.trust-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}
.trust-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.trust-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ===== FINAL CTA ===== */
.pricing-cta-section {
  padding: 100px 48px;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(245,158,11,0.07) 0%, transparent 70%);
}
.pricing-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.pricing-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.pricing-cta-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.pricing-cta-buttons { margin-bottom: 20px; }
.pricing-cta-note { font-size: 13px; color: var(--muted); }

/* ===== SECTION LABEL ===== */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

/* ===== FEATURE COMPARISON TABLE ===== */
.compare-section {
  padding: 80px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.compare-inner { max-width: 1100px; margin: 0 auto; }
.compare-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 48px;
  margin-top: 16px;
}
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead tr {
  background: var(--surface);
}
.compare-table th {
  padding: 20px 24px;
  text-align: center;
  font-weight: 700;
  color: var(--cream);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-feature-col {
  text-align: left !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600 !important;
  width: 40%;
}
.compare-plan-col {
  width: 20%;
}
.compare-featured-col {
  background: linear-gradient(180deg, rgba(245,158,11,0.07) 0%, transparent 100%);
  color: var(--amber) !important;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.15s;
}
.compare-table tbody tr:hover {
  background: var(--surface2);
}
.compare-section-row td {
  padding: 16px 24px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border);
}
.compare-feature {
  padding: 18px 24px;
  color: var(--text);
  font-weight: 400;
}
.compare-table tbody td:not(.compare-feature):not(.compare-section-label) {
  padding: 18px 24px;
  text-align: center;
  color: var(--muted);
}
.compare-featured-cell {
  background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, transparent 100%);
  color: var(--cream) !important;
  font-weight: 500;
  border-left: 1px solid rgba(245,158,11,0.15);
  border-right: 1px solid rgba(245,158,11,0.15);
}
.compare-table tfoot tr {
  background: var(--surface);
}
.compare-table tfoot td {
  padding: 28px 24px 20px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tier-grid { gap: 16px; }
  .tier-card { padding: 28px 24px; }
  .tier-price { font-size: 40px; }
}
@media (max-width: 900px) {
  .pricing-hero { padding: 72px 24px 56px; }
  .tiers-section { padding: 60px 24px; }
  .how-section, .testimonials-section, .faq-section { padding: 60px 24px; }
  .trust-section { padding: 56px 24px; }
  .pricing-cta-section { padding: 72px 24px; }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-divider { display: none; }
  .how-step { grid-template-columns: 60px 1fr; }
  .how-step-num { font-size: 36px; }
}
@media (max-width: 600px) {
  .pricing-hero { padding: 56px 16px 48px; }
  .tiers-section { padding: 48px 16px; }
  .how-section, .testimonials-section, .faq-section { padding: 48px 16px; }
  .trust-section { padding: 48px 16px; }
  .pricing-cta-section { padding: 56px 16px; }
  .pricing-headline { font-size: 36px; }
  .tier-price { font-size: 36px; }
}