:root {
  --bg: #0b0f14;
  --panel: #101823;
  --text: #e7edf5;
  --muted: #b6c2d1;
  --accent: #ff3b30;
  --line: rgb(231 237 245 / 12%);
  --shadow: 0 10px 30px rgb(0 0 0 / 35%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgb(255 59 48 / 10%), transparent 60%),
    radial-gradient(900px 650px at 88% 0%, rgb(255 59 48 / 7%), transparent 58%),
    linear-gradient(180deg, rgb(255 255 255 / 2%), transparent 42%, rgb(0 0 0 / 14%) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgb(255 59 48 / 85%);
  outline-offset: 3px;
}

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

.site-header {
  padding: 42px 0 28px;
  border-bottom: 1px solid var(--line);
}

.header-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgb(0 0 0 / 45%));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.subhead,
.muted {
  color: var(--muted);
}

.subhead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
}

.note,
.small {
  font-size: 13px;
}

.note {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 2%);
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 700;
}

.btn:hover {
  text-decoration: none;
}

.btn.primary {
  border-color: rgb(255 59 48 / 45%);
  background: linear-gradient(180deg, rgb(255 59 48 / 28%), rgb(255 59 48 / 10%));
}

.section {
  padding: 30px 0;
}

.section.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgb(255 255 255 / 2%), transparent);
}

.section-header {
  margin-bottom: 16px;
}

.split-grid,
.grid-2 {
  display: grid;
  gap: 18px;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(255 255 255 / 3%), rgb(255 255 255 / 1.5%));
  box-shadow: var(--shadow);
}

.card.wide {
  padding: 20px;
}

h2 {
  margin: 0 0 10px;
  font-size: 19px;
}

h3 {
  margin: 18px 0 8px;
  font-size: 15px;
}

p {
  line-height: 1.65;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin: 8px 0;
}

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

.service-group-title {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(0 0 0 / 12%);
  color: var(--muted);
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.contact-grid .full,
.form-grid .full {
  grid-column: 1 / -1;
}

.label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.contact-link,
.contact-text {
  font-size: 16px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 10px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 3%);
  padding: 10px 12px;
  color: var(--text);
  font: inherit;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.faq {
  margin: 0;
}

.faq dt {
  margin-top: 14px;
  font-weight: 700;
}

.faq dt:first-of-type {
  margin-top: 0;
}

.faq dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer {
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

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

.sep {
  margin: 0 8px;
}

.call-fab {
  position: fixed;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 10;
  display: none;
  padding: 14px;
  border: 1px solid rgb(255 59 48 / 45%);
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(255 59 48 / 32%), rgb(255 59 48 / 12%));
  box-shadow: 0 18px 40px rgb(0 0 0 / 45%);
  text-align: center;
  font-weight: 800;
}

@media (width <= 900px) {
  .header-grid,
  .split-grid,
  .grid-2,
  .contact-split,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    max-width: 360px;
  }

  .footer-grid {
    display: block;
  }

  .footer .right {
    margin-top: 10px;
  }

  .call-fab {
    display: block;
  }

  body {
    padding-bottom: 78px;
  }
}
