:root {
  --bg: #07080f;
  --bg-2: #0e1020;
  --card: #14162a;
  --purple: #8b4dff;
  --purple-2: #6a2fe0;
  --purple-dim: #3d2470;
  --text: #f3f1f8;
  --muted: #b7b0c9;
  --line: rgba(255,255,255,.08);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(7,8,15,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 10px;
  border: 1px solid rgba(139,77,255,.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: "Bebas Neue", Oswald, sans-serif;
  font-size: 22px; letter-spacing: .04em;
}
.brand-text em {
  font-style: normal; font-family: Oswald, sans-serif;
  font-size: 11px; letter-spacing: .18em; color: var(--purple); font-weight: 600;
}
nav { display: flex; gap: 22px; align-items: center; }
nav a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 14px; }
nav a:hover { color: #fff; }
.nav-actions { display: flex; gap: 8px; }
.nav-actions .btn { padding: 8px 16px; font-size: 14px; }

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 72px 0 64px;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url("img/hero-scene.jpg") center 30%/cover no-repeat;
  filter: saturate(.9) contrast(1.05);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(7,8,15,.94) 0%, rgba(7,8,15,.78) 46%, rgba(20,10,40,.45) 100%),
    linear-gradient(to top, var(--bg), transparent 40%);
}
.hero-content { position: relative; max-width: 720px; }
h1 {
  font-family: "Bebas Neue", Oswald, sans-serif;
  font-size: clamp(56px, 12vw, 108px);
  line-height: .85;
  letter-spacing: .02em;
  font-weight: 400;
}
h1 span { color: var(--purple); }
.tag {
  margin-top: 18px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 16px;
  color: #fff;
}
.tag-sub { color: var(--purple); font-weight: 600; margin: 6px 0 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.pills { display: flex; gap: 10px; flex-wrap: wrap; list-style: none; }
.pills li {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px; font-weight: 700;
  text-decoration: none; border: 1px solid transparent; cursor: pointer; font-size: 15px;
}
.btn.primary { background: var(--purple); color: #fff; }
.btn.primary:hover { background: #9d68ff; }
.btn.call { background: var(--purple); color: #fff; }
.btn.call:hover { background: #9d68ff; }
.btn.text { background: #fff; color: #1a1033; }
.btn.text:hover { background: #e8dffc; }
.btn.ghost { border-color: rgba(255,255,255,.2); color: #fff; background: rgba(0,0,0,.25); }
.btn.full { width: 100%; }

.sticky-call {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  gap: 8px;
}
.sticky-call .btn { flex: 1; box-shadow: 0 8px 24px rgba(0,0,0,.45); }

.bar {
  background: var(--purple-2);
  padding: 14px 0;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
}
.bar-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; align-items: center; }
.dot { opacity: .7; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 10px;
}
h2 {
  font-family: Oswald, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 14px;
}

.split { padding: 80px 0; }
.split-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.split img { width: 100%; border-radius: var(--radius); object-fit: cover; max-height: 420px; }
.split p { color: var(--muted); margin-bottom: 14px; }

.services { padding: 20px 0 80px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card img { width: 100%; height: 180px; object-fit: cover; }
.card h3, .card p { padding: 0 18px; }
.card h3 { margin: 16px 0 8px; font-family: Oswald, sans-serif; font-weight: 600; }
.card p { color: var(--muted); padding-bottom: 20px; }

.checks {
  background: linear-gradient(180deg, #1a1033, #2a1760);
  padding: 56px 0;
  border-block: 1px solid rgba(139,77,255,.25);
}
.checks-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center;
}
.checks ul { list-style: none; display: grid; gap: 12px; }
.checks li { font-size: 18px; font-weight: 600; }
.checks li::before { content: "✓  "; color: #c4a6ff; }
.badge {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.badge strong { display: block; font-family: Oswald, sans-serif; font-size: 22px; }
.badge span { color: var(--muted); }
.phone-xl {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  color: #fff;
  text-decoration: none;
  letter-spacing: .02em;
}

.areas { padding: 80px 0 40px; text-align: center; }
.lede { color: var(--muted); max-width: 640px; margin: 0 auto 24px; }
.cities { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cities li {
  border: 1px solid rgba(139,77,255,.35);
  color: #ddd6ff;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(139,77,255,.08);
}

.quote { padding: 60px 0 80px; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.quote p { color: var(--muted); }
.quote a { color: #c4a6ff; }
.quote-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 12px;
}
.quote-form label { font-size: 13px; color: var(--muted); display: grid; gap: 6px; }
.quote-form input, .quote-form select, .quote-form textarea {
  background: #0b0c18;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.fine-print { font-size: 12px; color: #7d7593; }
.thanks {
  font-size: 20px;
  padding: 40px;
  background: var(--card);
  border-radius: var(--radius);
}


.contact-plain {
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
.contact-plain span { display: block; color: var(--muted); font-weight: 500; font-size: 14px; }
html.device-desktop .mobile-only,
body.device-desktop .mobile-only { display: none !important; }
html.device-mobile .desktop-only,
body.device-mobile .desktop-only { display: none !important; }

footer { border-top: 1px solid var(--line); padding: 36px 0 48px; color: var(--muted); }
.foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-brand { display: flex; gap: 14px; align-items: center; }
.foot-brand img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.foot-brand strong { display: block; color: #fff; }
.foot-contact a {
  display: block;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 28px;
  text-decoration: none;
}

@media (max-width: 860px) {
  nav a:not(.btn) { display: none; }
  .split-grid, .cards, .checks-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 56px 0 48px; }
  h1 { font-size: 64px; }
}
html.device-mobile body,
body.device-mobile { padding-bottom: 84px; }
html.device-mobile .sticky-call,
body.device-mobile .sticky-call { display: flex; }

