:root {
  --bg: #0b1220;
  --surface: #111827;
  --surface-2: #1f2937;
  --text: #f3f4f6;
  --muted: #cbd5e1;
  --line: #334155;
  --brand: #d4af37;
  --brand-2: #16a34a;
  --white: #ffffff;
  --max: 1200px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #08101b 0%, #0d1524 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(8, 16, 27, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: .2px;
}
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #f7e28a);
  color: #111827; display: grid; place-items: center; font-weight: 900;
  box-shadow: var(--shadow);
}
.logo-copy small { display: block; color: var(--muted); font-size: .78rem; font-weight: 600; }
.nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a.active, .nav a:hover { color: var(--white); }
.actions { display: flex; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: .2s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), #f6db7a); color: #111827; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { border-color: rgba(255,255,255,.12); color: var(--white); }
.hero {
  padding: 68px 0 42px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center;
}
.kicker {
  display: inline-flex; padding: 8px 12px; border-radius: 999px;
  background: rgba(22,163,74,.15); color: #9ef0b3; border: 1px solid rgba(22,163,74,.25);
  font-size: .86rem; font-weight: 700; letter-spacing: .2px;
}
.hero h1, .page-hero h1 { font-size: clamp(2.1rem, 4vw, 4.2rem); line-height: 1.05; margin: 16px 0; }
.hero p, .page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 64ch; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }
.section { padding: 26px 0 48px; }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(1.55rem, 3vw, 2.4rem); margin: 0; }
.section-head p { color: var(--muted); margin: 0; max-width: 62ch; }
.stat { font-size: 1.9rem; font-weight: 800; margin-bottom: 6px; }
.image-slot {
  min-height: 280px;
  border-radius: var(--radius);
  border: 1.5px dashed rgba(255,255,255,.22);
  background:
    linear-gradient(180deg, rgba(212,175,55,.12), rgba(22,163,74,.08)),
    rgba(255,255,255,.03);
  display: grid; place-items: center;
  overflow: hidden;
}
.image-slot img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder {
  text-align: center; padding: 26px; color: var(--white);
}
.image-placeholder strong { display: block; font-size: 1.1rem; }
.image-placeholder span { display: block; color: var(--muted); font-size: .95rem; }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.list-clean li:last-child { border-bottom: 0; }
.price-box { padding: 24px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(255,255,255,.03)); border: 1px solid rgba(212,175,55,.22); }
.price { font-size: 2.4rem; font-weight: 900; line-height: 1; margin: 6px 0 12px; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-size: .82rem; font-weight: 700; background: rgba(255,255,255,.08); color: var(--muted); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
th { text-align: left; color: var(--white); }
td { color: var(--muted); }
.cta-band {
  margin: 26px 0 54px; padding: 28px;
  border-radius: 24px; background: linear-gradient(135deg, rgba(22,163,74,.16), rgba(212,175,55,.14));
  border: 1px solid rgba(255,255,255,.1);
}
.footer {
  padding: 38px 0 46px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px;
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; }
.muted { color: var(--muted); }
.small { font-size: .92rem; }
.legal-box { font-size: .94rem; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 20px; }
.form-mock { display: grid; gap: 14px; }
.input-mock {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 14px 16px; color: var(--muted);
}
.page-hero { padding: 54px 0 22px; }
.note { color: #c7f7d3; font-size: .95rem; }
@media (max-width: 920px) {
  .hero-grid, .contact-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .topbar-inner { min-height: 70px; }
}
