:root {
  --bg: #050505;
  --bg-card: #111111;
  --bg-elevated: #1a1a1a;
  --gold: #D4AF37;
  --gold-light: #F0D875;
  --gold-dark: #B8941F;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --border: rgba(212, 175, 55, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-weight: 800; letter-spacing: 0.15em; color: var(--text);
  text-decoration: none; font-size: 0.95rem;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #000 !important; padding: 0.5rem 1rem !important;
  border-radius: 8px; font-weight: 700 !important;
}

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 6rem 1.5rem 4rem; position: relative; text-align: center;
}
.hero-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1); border: 1px solid var(--border);
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.85rem; color: var(--gold); margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted); max-width: 620px; margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
  display: block; font-size: 2rem; color: var(--gold);
  font-weight: 800; line-height: 1;
}
.stat span { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary, .btn-secondary {
  display: inline-block; padding: 1rem 2rem; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35); color: #000; }
.btn-secondary {
  border: 1px solid var(--border); color: var(--gold);
  background: transparent;
}
.btn-secondary:hover { border-color: var(--gold); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* Trust bar */
.trust-bar {
  background: var(--bg-elevated); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; text-align: center;
}
.trust-bar p { color: var(--muted); font-size: 0.9rem; }
.trust-bar strong { color: var(--gold); }

/* Sections */
.section { padding: 5rem 0; }
.section-dark { background: var(--bg-card); }
.section-label {
  display: block; color: var(--gold); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem;
}
.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  margin-bottom: 1rem; line-height: 1.2;
}
.section h2 em {
  font-style: normal; color: var(--gold);
}
.section-intro {
  color: var(--muted); max-width: 640px; margin-bottom: 2.5rem;
  font-size: 1.05rem; line-height: 1.7;
}

/* Feature cards */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(212, 175, 55, 0.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* Method steps */
.method-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step {
  padding: 1.5rem; border-left: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.03); border-radius: 0 12px 12px 0;
}
.step-num { font-size: 2rem; font-weight: 800; color: rgba(212, 175, 55, 0.3); line-height: 1; }
.step h3 { margin: 0.5rem 0; color: var(--gold); }
.step p { color: var(--muted); font-size: 0.9rem; }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 3rem; align-items: center;
}
.about-frame {
  aspect-ratio: 3/4; border-radius: 20px;
  border: 2px solid var(--border);
  background: linear-gradient(135deg, #1a1508, var(--bg-card));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-placeholder { font-size: 5rem; color: rgba(212, 175, 55, 0.2); }
.about-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.about-text strong { color: var(--gold); }
.about-list { list-style: none; margin-top: 1.5rem; }
.about-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0; color: var(--muted);
}
.about-list i { color: var(--gold); }

/* CTA / Lead form */
.section-cta { padding-bottom: 6rem; }
.cta-box {
  background: linear-gradient(135deg, #1a1508, var(--bg-card));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 3rem 2rem; text-align: center; max-width: 560px; margin: 0 auto;
}
.cta-box h2 { margin-bottom: 0.75rem; }
.cta-box > p { color: var(--muted); margin-bottom: 2rem; }
.lead-form { display: flex; flex-direction: column; gap: 0.75rem; text-align: left; }
.lead-form input {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: 1rem;
}
.lead-form input:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }

.alert-success, .alert-error {
  padding: 1rem; border-radius: 12px; margin-bottom: 1rem;
  display: flex; align-items: flex-start; gap: 0.75rem; text-align: left;
}
.alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #86efac; }
.alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #fca5a5; }

/* Footer */
.footer {
  border-top: 1px solid var(--border); padding: 2rem 0;
  color: var(--muted); font-size: 0.85rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.footer a { color: var(--gold); text-decoration: none; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
