:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: rgba(20, 20, 20, 0.9);
  --line: rgba(212, 175, 55, 0.2);
  --gold: #d4af37;
  --gold-soft: #f6e3a5;
  --gold-deep: #b78412;
  --text: #f4f1e8;
  --muted: #c4bca7;
  --success-bg: rgba(20, 96, 47, 0.25);
  --success-border: rgba(89, 220, 126, 0.55);
  --success-text: #d7f7de;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 28%),
    radial-gradient(circle at left center, rgba(212, 175, 55, 0.06), transparent 25%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
  color: var(--text);
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell { min-height: 100vh; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 40px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9, 9, 9, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; }
.logo-bar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 220, 120, 0.36);
  background: linear-gradient(135deg, #8f6510 0%, #c49523 18%, #f4d57e 50%, #b27b12 78%, #6a4806 100%);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.22), inset 0 1px 0 rgba(255,255,255,0.35);
  overflow: hidden;
}
.logo-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,0.14) 45%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.12) 56%, transparent 72%);
  transform: translateX(-120%);
  animation: shine 4.6s ease-in-out infinite;
}
.logo-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #251600;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
}

@keyframes shine {
  0%, 70%, 100% { transform: translateX(-120%); }
  82% { transform: translateX(130%); }
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-soft);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-size: 0.97rem;
}

.nav a:hover:not(.btn),
.footer-links a:hover {
  color: var(--gold-soft);
}

.hero,
.page-hero {
  padding: 88px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag {
  margin-bottom: 18px;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.06;
}

.hero-title,
.page-title {
  max-width: 900px;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

.page-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  font-size: 1.06rem;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-gold {
  background: linear-gradient(180deg, #efcf71 0%, #c89b22 100%);
  color: #141414;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.28);
}

.btn-gold:hover { transform: translateY(-1px); }

.btn-secondary,
.btn-outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn-full { width: 100%; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat-card,
.card-glow {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.88), rgba(15, 15, 15, 0.97));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.stat-card span { color: var(--muted); font-size: 0.95rem; }
.disclaimer { font-size: 0.88rem; margin-top: 12px; }

.hero-panel,
.step-card,
.metric-card,
.faq-item,
.info-panel,
.form-panel,
.legal-content {
  padding: 28px;
}

.hero-panel-top {
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--text);
}

.feature-list span,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

.alt-bg {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.step-card p,
.metric-card p,
.faq-item p,
.info-panel p {
  margin-bottom: 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.94), rgba(10, 10, 10, 0.98));
}

.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-section { padding-top: 32px; }
.compact { padding-bottom: 10px; }
.compact-list { gap: 18px; }
.small-note { margin-top: 18px; font-size: 0.92rem; }
.legal-hero { text-align: left; }
.legal-section { padding-top: 32px; }
.legal-content h2 { font-size: 1.18rem; margin-top: 28px; margin-bottom: 10px; }
.legal-content h2:first-of-type { margin-top: 4px; }
.legal-meta { font-size: 0.92rem; color: var(--gold-soft); }

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.success-box {
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid var(--success-border);
  background: var(--success-bg);
  color: var(--success-text);
}

.success-box p {
  color: var(--success-text);
  margin-top: 8px;
  margin-bottom: 0;
}

.footer {
  padding: 26px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-logo { margin-bottom: 12px; }
.footer-copy { margin: 0; max-width: 560px; font-size: 0.95rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); justify-content: flex-end; }
.footer-bottom {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #a89667;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .section-grid,
  .cards-4,
  .cards-3,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(14,14,14,0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .nav .btn { width: 100%; }

  .hero,
  .page-hero,
  .section {
    padding: 64px 0;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .step-card,
  .metric-card,
  .faq-item,
  .info-panel,
  .form-panel,
  .cta-banner,
  .legal-content {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 78px; }
  .logo-bar { min-width: 154px; min-height: 46px; padding: 0 18px; }
  .logo-text { font-size: 0.88rem; letter-spacing: 0.24em; }
  .hero-title { font-size: 2rem; }
  .page-title { font-size: 1.7rem; }
  h2 { font-size: 1.8rem; }
}
