/* ═══════════════════════════════════════════════════
   NEXAURO — Pricing + FAQ + Team (Apple Cinematic)
   ═══════════════════════════════════════════════════ */

/* ═══ PRICING ═══ */
#pricing {
  background: var(--bg-dark);
  text-align: center;
}

#pricing h2 { color: var(--text); }

.pricing-visual {
  margin: 48px auto 64px;
  max-width: 500px;
}

.pricing-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(212,175,55,0.15));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: left;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.pricing-card.elevated {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 0 60px rgba(212,175,55,0.08);
  transform: scale(1.03);
}

.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.elevated:hover { transform: scale(1.03) translateY(-6px); }

.pricing-rec {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
}

.pricing-header { margin-bottom: 28px; }
.pricing-tier { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.pricing-price { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--text); margin-top: 12px; letter-spacing: -2px; }
.pricing-price span { font-size: 16px; color: var(--text-muted); font-weight: 400; letter-spacing: 0; }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.pricing-blurb { font-size: 14px; color: var(--text-dim); margin-top: 8px; line-height: 1.6; }

.pricing-body { border-top: 1px solid var(--border); padding-top: 24px; }

.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dim); }
.pricing-list li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 13px; }

.pricing-card .btn-primary, .pricing-card .btn-secondary { width: 100%; }

/* ── Comparison Table ── */
.compare-wrap {
  margin-top: 72px;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  font-size: 14px;
}

.compare-table th {
  background: rgba(255,255,255,0.03);
  color: var(--text-dim);
  font-weight: 600;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-dim);
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text); font-weight: 500; }

/* ═══ FAQ ═══ */
#faq {
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}

#faq h2 { color: var(--text); }

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--gold); }
.faq-q span { font-size: 20px; transition: transform 0.3s; color: var(--text-muted); }
.faq-item.open .faq-q span { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
}

.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ═══ TEAM ═══ */
#team {
  background: var(--bg-dark);
  text-align: center;
}

#team h2 { color: var(--text); }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 56px auto 0;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
}

.founder-card:hover { border-color: rgba(212,175,55,0.15); transform: translateY(-4px); }

.founder-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: #000;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
}

.founder-name { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); }
.founder-role { color: var(--gold); font-size: 13px; font-weight: 600; margin-top: 4px; letter-spacing: 1px; }
.founder-desc { color: var(--text-dim); font-size: 14px; margin-top: 12px; line-height: 1.7; }
.founder-card .btn-secondary { margin-top: 20px; height: 40px; font-size: 13px; }

/* ── Value Pillars ── */
.value-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
}

.vp-card:hover { border-color: rgba(212,175,55,0.15); }

.vp-icon { font-size: 32px; margin-bottom: 12px; }
.vp-title { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.vp-desc { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.elevated { transform: none; }
  .founders-grid { grid-template-columns: 1fr; max-width: 380px; }
  .value-pillars { grid-template-columns: 1fr; }
}
