/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg3: #1a1a28;
  --gold: #d4a853;
  --gold2: #f0c56d;
  --text: #e8e8ec;
  --muted: #8888a0;
  --radius: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 3rem; }
h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 0.8rem auto 0; border-radius: 2px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-size: 1rem; font-weight: 600; transition: all .3s; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #0a0a0f; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,83,.3); }
.btn-secondary { background: rgba(255,255,255,.08); color: var(--text); border: 1px solid rgba(255,255,255,.15); }
.btn-secondary:hover { background: rgba(255,255,255,.15); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; width: 100%; justify-content: center; }
.btn-outline:hover { background: var(--gold); color: #0a0a0f; }

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 5%; max-width: 1200px; margin: 0 auto; }
.nav-brand { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.nav-brand span { color: var(--text); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--muted); transition: color .3s; }
.nav-links a:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { min-height: 100vh; display: flex; flex-direction: column; background: radial-gradient(ellipse at 50% 0%, rgba(212,168,83,.08) 0%, transparent 60%), var(--bg); }
.hero-content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem 5%; }
.hero h1 { font-size: 4rem; font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; }
.tagline { font-size: 1.3rem; color: var(--muted); max-width: 600px; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Features */
.features { padding: 6rem 5%; max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--bg2); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; transition: all .3s; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(212,168,83,.3); }
.feature-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.2rem; }
.feature-card h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* Pricing */
.pricing { padding: 6rem 5%; background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.pricing-card { background: var(--bg); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; position: relative; transition: all .3s; }
.pricing-card.featured { border-color: var(--gold); transform: scale(1.05); }
.pricing-card:hover { border-color: rgba(212,168,83,.4); }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #0a0a0f; padding: 4px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.price { font-size: 2rem; font-weight: 800; color: var(--gold); margin-bottom: 2rem; }
.price span { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.pricing-card ul { margin-bottom: 2rem; text-align: left; }
.pricing-card li { padding: 0.5rem 0; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.pricing-card li i { font-size: 0.8rem; }
.pricing-card li .fa-check { color: var(--gold); }
.pricing-card li.disabled { color: var(--muted); }
.pricing-card li.disabled .fa-times { color: #555; }

/* Testimonials */
.testimonials { padding: 6rem 5%; max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--bg2); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 2rem; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 10px; left: 18px; font-size: 4rem; color: var(--gold); opacity: .2; font-family: Georgia, serif; }
.testimonial-card p { font-style: italic; color: var(--muted); margin-bottom: 1.5rem; padding-top: 1rem; }
.author strong { display: block; color: var(--text); }
.author span { font-size: 0.85rem; color: var(--muted); }

/* FAQ */
.faq { padding: 6rem 5%; background: var(--bg2); }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.faq-question { width: 100%; background: none; border: none; color: var(--text); padding: 1.2rem 0; font-size: 1.05rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { color: var(--gold); transition: transform .3s; font-size: 0.8rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 0 1.2rem; color: var(--muted); }

/* Footer */
.footer { padding: 4rem 5% 0; background: var(--bg3); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer-brand h3 span { color: var(--text); }
.footer-brand p { color: var(--muted); }
.footer-contact h4, .footer-links h4, .footer-social h4 { margin-bottom: 1rem; color: var(--gold); }
.footer-contact p { color: var(--muted); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
.footer-links a { display: block; color: var(--muted); margin-bottom: 0.5rem; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .3s; }
.social-icons a:hover { background: var(--gold); color: #0a0a0f; }
.footer-bottom { text-align: center; padding: 1.5rem; color: var(--muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg2); padding: 1.5rem 5%; gap: 1rem; z-index: 100; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .tagline { font-size: 1.1rem; }
  .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h2 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
