/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --bg-card: #13131a;
  --bg-elevated: #1a1a24;
  --gold: #d4a843;
  --gold-light: #e8c36a;
  --green: #34d399;
  --text: #e8e8ed;
  --text-secondary: #9ca3af;
  --border: #2a2a35;
  --radius: 12px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.nav-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold-light); color: #000; }
.nav-cta svg { width: 16px; height: 16px; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-card);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-cta-wrap {
    display: block;
    position: absolute;
    top: calc(64px + 140px); left: 0; right: 0;
    background: var(--bg-card);
    padding: 0 24px 16px;
    border-bottom: 1px solid var(--border);
  }
}

/* ===== HERO ===== */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212,168,67,.1);
  border: 1px solid rgba(212,168,67,.25);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  transition: all .2s;
}
.btn-primary:hover { background: var(--gold-light); color: #000; transform: translateY(-1px); }
.btn-primary svg { width: 20px; height: 20px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ===== FEATURES ===== */
.features {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(212,168,67,.3); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,.1);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 20px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== PRICING ===== */
.pricing {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}
.price-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.price-card.highlighted {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,168,67,.08);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--green);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.price-amount { font-size: 40px; font-weight: 800; margin-bottom: 4px; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--text-secondary); }
.price-period { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card li::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(52,211,153,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 24px;
  text-align: center;
}
.cta-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(212,168,67,.08), rgba(52,211,153,.05));
  border: 1px solid rgba(212,168,67,.2);
  border-radius: 16px;
}
.cta-box h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-box p { color: var(--text-secondary); margin-bottom: 28px; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-secondary); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--text-secondary); }
.footer-links a:hover { color: var(--gold); }

/* ===== LEGAL PAGES ===== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}
.legal .legal-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--gold);
}
.legal h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal p, .legal li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal li { margin-bottom: 6px; }

/* ===== SUPPORT PAGE ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.support-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.support-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.support-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.support-card a.support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.faq { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '-'; }
.faq-item .faq-answer {
  padding-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== UTILITIES ===== */
@media (max-width: 640px) {
  .hero { padding: 120px 20px 60px; }
  .hero p { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
