:root {
  --black: #08090b;
  --charcoal: #11141a;
  --charcoal-2: #171b23;
  --gold: #c69b49;
  --gold-light: #e0bd72;
  --cream: #f5f1e8;
  --white: #ffffff;
  --muted: #aeb4bf;
  --line: rgba(255,255,255,0.12);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.promo-banner {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #101010;
  position: relative;
  z-index: 30;
}
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; padding: 10px 0; text-align: center; }
.promo-text { margin: 0; font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em; }
.promo-text strong { font-weight: 800; }
.promo-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(8,9,11,0.85);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
}
.promo-cta {
  font-weight: 800;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(8,9,11,0.55);
  color: #101010;
  transition: 0.2s ease;
  white-space: nowrap;
}
.promo-cta:hover { background: #101010; color: var(--gold-light); border-color: #101010; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header {
  position: relative;
  z-index: 20;
  background: rgba(8, 9, 11, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(198,155,73,0.55);
  color: var(--gold-light);
  border-radius: 50%;
  font-weight: 800;
}
.nav-links { display: flex; gap: 26px; align-items: center; color: #d7dbe2; font-size: 0.95rem; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { padding: 9px 15px; border: 1px solid rgba(198,155,73,0.55); border-radius: 999px; }

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(8,9,11,0.98) 0%, rgba(8,9,11,0.86) 48%, rgba(8,9,11,0.35) 100%),
    radial-gradient(circle at 75% 25%, rgba(198,155,73,0.22), transparent 36%),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80') center/cover;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 80%, var(--black)); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--gold-light); font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.75rem; margin: 0 0 14px; }
.eyebrow.dark { color: #8a672c; }
h1 { font-size: clamp(3rem, 6vw, 6.6rem); line-height: 0.92; letter-spacing: -0.075em; margin: 0; max-width: 870px; }
.hero-text { font-size: 1.18rem; color: #d5dae4; max-width: 620px; margin: 26px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; border-radius: 999px; font-weight: 800; transition: 0.2s ease; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--gold); color: #101010; box-shadow: 0 12px 35px rgba(198,155,73,0.25); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-light); }
.btn-secondary { border-color: rgba(255,255,255,0.22); color: var(--white); background: rgba(255,255,255,0.04); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 8px 12px; color: #d7dbe2; font-size: 0.88rem; background: rgba(255,255,255,0.04); }
.hero-card { background: rgba(17,20,26,0.78); border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.card-label { color: var(--gold-light); font-size: 0.82rem; text-transform: uppercase; font-weight: 800; letter-spacing: 0.12em; }
.hero-card h2 { font-size: 2rem; margin: 8px 0 12px; }
.hero-card p, .hero-card li { color: #d4d8df; }
.hero-card ul { padding-left: 20px; margin-bottom: 0; }

.section { padding: 96px 0; }
.intro { background: var(--cream); color: #141414; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.02; letter-spacing: -0.055em; margin: 0; }
.split p:last-child { font-size: 1.12rem; color: #3d3d3d; }
.dark-section { background: linear-gradient(180deg, var(--black), var(--charcoal)); }
.section-heading { margin-bottom: 36px; }
.section-heading.narrow { max-width: 650px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p:last-child { color: #5b6472; }
.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.service-card, .price-card, .stat-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  background: rgba(255,255,255,0.045);
}
.service-card .icon { color: var(--gold-light); font-weight: 800; }
.service-card h3, .price-card h3 { font-size: 1.35rem; margin: 14px 0 10px; }
.service-card p, .price-card p, .price-card li { color: #cbd1db; }

.process-section { background: var(--cream); color: #141414; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.step { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; padding: 24px; box-shadow: 0 10px 35px rgba(0,0,0,0.06); }
.step span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--black); color: var(--gold-light); font-weight: 800; }
.step h3 { margin-bottom: 8px; }
.step p { color: #555; }

.pricing-section { background: #f7f3ea; color: #121212; }
.pricing-cards { grid-template-columns: repeat(4, 1fr); }
.price-card { background: #fff; border-color: rgba(0,0,0,0.08); color: #121212; box-shadow: 0 10px 35px rgba(0,0,0,0.06); }
.price-card.featured { background: #11141a; color: #fff; transform: translateY(-10px); border-color: rgba(198,155,73,0.5); box-shadow: var(--shadow); }
.price-card.premium { background: linear-gradient(160deg, #151922, #0b0d11); color: #fff; }
.package { color: #8a672c !important; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; }
.price-card h3 { font-size: 2.65rem; margin: 4px 0 4px; letter-spacing: -0.05em; }
.muted { color: #69717c !important; }
.price-card.featured .muted, .price-card.premium .muted { color: #cbd1db !important; }
.price-card ul { padding-left: 19px; }
.price-card li { margin-bottom: 8px; color: #343434; }
.price-card.featured li, .price-card.premium li { color: #dce0e7; }
.pricing-note { text-align: center; color: #555; margin-top: 28px; }

.credibility { background: var(--black); }
.credibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card strong { display: block; font-size: 1.35rem; color: var(--gold-light); margin-bottom: 8px; }
.stat-card span { color: #cbd1db; }

.faq-section { background: var(--cream); color: #121212; }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
details { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 18px; padding: 18px 22px; }
summary { cursor: pointer; font-weight: 800; }
details p { color: #555; }

.contact-section { background: linear-gradient(135deg, #11141a, #06070a); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.contact-grid p { color: #cbd1db; }
.contact-form { background: rgba(255,255,255,0.055); border: 1px solid var(--line); border-radius: 26px; padding: 28px; display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: #e4e7ed; font-weight: 700; }
input, textarea { width: 100%; border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 14px; background: rgba(255,255,255,0.08); color: #fff; font: inherit; }
input::placeholder, textarea::placeholder { color: #aeb4bf; }
.form-note { font-size: 0.84rem; color: #8e96a3 !important; margin: 0; }

.site-footer { background: #050608; border-top: 1px solid var(--line); padding: 42px 0; color: #cbd1db; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.6fr 1fr; gap: 30px; }
.footer-brand { color: #fff; margin-bottom: 14px; }
.footer-grid a { display: block; margin-bottom: 8px; color: #cbd1db; }
.footer-title { color: var(--gold-light); font-weight: 800; margin-top: 0; }

@media (max-width: 950px) {
  .hero { min-height: auto; padding: 92px 0 64px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards.three, .timeline, .pricing-cards, .credibility-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { max-width: 620px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 70px 0; }
  .cards.three, .timeline, .pricing-cards, .credibility-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  h1 { font-size: 3.2rem; }
  .hero-card, .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}
