:root {
  --bg: #0c0c0e;
  --bg-soft: #131317;
  --panel: #17171c;
  --panel-2: #1c1d22;
  --text: #f5f5f7;
  --muted: #c4c6cf;
  --line: rgba(255,255,255,.1);
  --accent: #b10b0b;
  --accent-2: #e22121;
  --shadow: 0 16px 40px rgba(0,0,0,.28);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at bottom right, rgba(178,17,17,.28), transparent 32%),
    radial-gradient(circle at top left, rgba(255,255,255,.06), transparent 24%),
    linear-gradient(180deg, #070709, #111114 40%, #0a0a0d 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-heading { text-align: center; margin-bottom: 2.25rem; }
.section-heading-left { text-align: left; }
.eyebrow {
  color: #f1a1a1;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 700;
  margin: 0 0 .8rem;
}
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.02; }
h1 { font-size: clamp(2.8rem, 5vw, 5.3rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--muted); line-height: 1.7; margin: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: 0 12px 28px rgba(178,17,17,.28);
}
.btn-secondary {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.28);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,14,.82);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 88px;
}
.logo img, .site-footer img { height: 56px; width: auto; }
.site-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
}
.site-nav a { color: #f0f1f6; opacity: .9; }
.site-nav a:hover { color: #fff; }
.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  padding: .7rem .95rem;
  border-radius: 12px;
}
.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: right center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,8,.92) 0%, rgba(8,8,10,.78) 42%, rgba(10,10,12,.28) 72%, rgba(10,10,12,.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.46));
}
.hero-grid { position: relative; z-index: 1; }
.hero-copy {
  max-width: 620px;
  padding: 5rem 0;
}
.hero-text { font-size: 1.15rem; max-width: 55ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9,9,12,.82);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
}
.trust-item {
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.trust-item span { color: #ff3c3c; margin-right: .4rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 1.25rem 1.25rem 1.4rem; }
.dark-strip {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature {
  background: rgba(255,255,255,.025);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.feature-icon {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.result-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.result-box img { width: 100%; height: 100%; min-height: 350px; object-fit: cover; }
.result-label {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  background: rgba(0,0,0,.72); color: white; padding: .55rem .9rem; border-radius: 999px; font-weight: 700;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
}
.step span {
  display: inline-grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%; background: linear-gradient(180deg, var(--accent-2), var(--accent));
  font-weight: 800; margin-bottom: 1rem;
}
.cta-band {
  background: linear-gradient(90deg, rgba(178,17,17,.14), rgba(255,255,255,.03));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr auto;
  align-items: center;
  gap: 2rem;
}
.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-list details {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.15rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
}
.faq-list details p { margin-top: .8rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: .75rem;
  color: var(--muted);
}
.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
}
.contact-form label {
  display: grid;
  gap: .5rem;
  font-weight: 600;
  color: #fff;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: white;
  padding: .95rem 1rem;
  font: inherit;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(9,9,12,.9);
}
.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .site-nav {
    position: absolute;
    top: 88px; left: 0; right: 0;
    background: rgba(10,10,12,.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    padding: 1rem;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .trust-items, .cards, .features, .results-grid, .steps, .cta-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 680px; background-position: 70% center; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero-copy { padding: 4rem 0; }
  .logo img, .site-footer img { height: 46px; }
  .hero-text { font-size: 1rem; }
  .btn { width: 100%; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; padding: 1.5rem 0; }
}
