/* ══════════════════════════════════════
   PRICING — INTERACTIVE 3D REDESIGN
══════════════════════════════════════ */
#pricing {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 110px 60px 120px;
}
#pricing::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
#pricing .section-label { color: var(--accent); }
#pricing .section-label::before { background: var(--accent); }
#pricing .section-title { color: var(--cream); }

.pricing-intro-text {
  margin-top: 12px; font-size: 14px;
  color: rgba(250,248,244,0.4);
  max-width: 520px; line-height: 1.6; font-weight: 300;
}

/* ── FAQ ── */
#faq { background: var(--warm-white); padding: 80px 60px; }
.faq-inner { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; cursor: pointer; }
.faq-q {
  font-size: 15px; font-weight: 500; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
}
.faq-q .arr { font-size: 18px; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .arr { transform: rotate(45deg); }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.3s; font-weight: 300; }
.faq-item.open .faq-a { max-height: 200px; margin-top: 14px; }

/* ── CTA BAND ── */
#cta-band {
  background: var(--dark); padding: 100px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,169,110,0.1) 0%, transparent 70%);
}
#cta-band .section-title { color: var(--cream); max-width: 700px; margin: 0 auto 16px; text-align: center; }
#cta-band p { color: rgba(250,248,244,0.5); font-size: 16px; margin-bottom: 44px; font-weight: 300; }
#cta-band .btn-primary { background: var(--accent); color: var(--dark); box-shadow: 0 8px 32px rgba(201,169,110,0.35); }
#cta-band .btn-primary:hover { background: #d4b077; }

/* ── STYLE PREVIEW SECTION ── */
.style-preview-section {
  background: var(--cream);
  padding: 100px 60px;
}
.style-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.style-preview-desc {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}
.style-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.style-preview-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
}
.feat-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PRICING GRID CARDS ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* New clean pricing cards */
.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  align-items: stretch;
}
.pc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pc-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.pc-card--featured {
  background: rgba(201,169,110,0.07);
  border-color: rgba(201,169,110,0.4);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.15), 0 20px 60px rgba(0,0,0,0.25);
}
.pc-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--dark);
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.pc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.pc-icon { font-size: 22px; color: var(--accent); }
.pc-plan {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 300;
  color: var(--cream); line-height: 1;
  margin-bottom: 12px;
}
.pc-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 300;
  color: rgba(250,248,244,0.4);
  vertical-align: middle;
}
.pc-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(250,248,244,0.45);
  line-height: 1.6; margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pc-features {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.pc-features li {
  font-size: 13px; color: rgba(250,248,244,0.65);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.pc-check {
  color: var(--accent); font-weight: 700;
  font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%; padding: 14px;
  border-radius: 100px; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: rgba(250,248,244,0.75);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  cursor: pointer; letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  margin-top: auto;
}
.pc-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); color: var(--cream); transform: translateY(-1px); }
.pc-btn--featured {
  background: var(--accent); border-color: var(--accent); color: var(--dark);
  font-weight: 600;
}
.pc-btn--featured:hover { background: #d4b077; border-color: #d4b077; color: var(--dark); }

/* Legacy grid classes kept for backward compat */
.pricing-grid { display: none; }
.price-card { display: none; }
