:root {
  --bg: #0b0b10;
  --bg-soft: #12121a;
  --card: #171723;
  --text: #e8e8ee;
  --muted: #b6b6c2;
  --line: #2a2a3a;
  --gold: #d6b36a;
  --gold-strong: #f1cd81;
  --danger: #ff6d6d;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 500px at 10% -10%, #1a1a2b 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.55;
}

a { color: var(--gold-strong); text-decoration: none; }
a:hover { opacity: .9; }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  margin-top: 0;
  line-height: 1.2;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(11, 11, 16, 0.85);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.nav-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a { color: var(--text); font-size: 0.95rem; }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
  padding: 8px 12px;
}

.hero {
  padding: 88px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 12px;
}

.hero-text { color: var(--muted); max-width: 700px; }

.hero-card {
  background: linear-gradient(180deg, #1a1a2a, #12121c);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.hero-card ul { margin: 8px 0 0 18px; color: var(--muted); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  border: 1px solid var(--line);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #f5d58d, #d6b36a);
  color: #221a0e !important;
  border-color: #e6c479;
}

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.mini-stats div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  padding: 10px;
}

.mini-stats strong { display: block; font-size: 1.2rem; }
.mini-stats span { color: var(--muted); font-size: .86rem; }

.section { padding: 60px 0; }
.alt { background: rgba(18,18,26,.6); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head h2 { margin-bottom: 8px; }
.section-note { color: var(--muted); font-size: .95rem; }

.cards, .cases, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card, .case, .plan-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.plan-card {
  position: relative;
  overflow: hidden;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  border: 1px solid rgba(214, 179, 106, .45);
  color: var(--gold-strong);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.card-subtitle { color: var(--gold); font-weight: 700; }
.result { font-weight: 800; color: var(--gold-strong); }

.cta-band {
  background: linear-gradient(90deg, rgba(214,179,106,.16), rgba(214,179,106,.06));
  border-top: 1px solid rgba(214,179,106,.4);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-hero {
  padding: 72px 0 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.about-card,
.contact-form,
.center-card,
.service-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.center-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.service-stack {
  display: grid;
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #101018;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.error { color: var(--danger); }

.flash-wrap { padding-top: 12px; }
.flash {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.flash-success { background: rgba(60, 210, 130, .16); border: 1px solid rgba(60, 210, 130, .35); }

.site-footer {
  border-top: 1px solid var(--line);
  background: #08080d;
  padding-top: 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.footer-bottom {
  padding: 20px 0;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .cards,
  .cases,
  .pricing-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0e0e16;
    border-bottom: 1px solid var(--line);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
}
