:root {
  color-scheme: dark;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --bg: #05060a;
  --card: #0d0f16;
  --card-alt: #111427;
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.65);
  --accent: #8e8dff;
  --accent-2: #52c7ff;
  --border: rgba(255, 255, 255, 0.1);
  --pill: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top, #12152a 0%, #05060a 55%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Space Grotesk", serif;
  letter-spacing: -0.015em;
}

body::before {
  content: "";
  position: fixed;
  inset: -40px;
  background: radial-gradient(circle at 20% 20%, rgba(82, 199, 255, 0.15), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(142, 141, 255, 0.15), transparent 35%);
  filter: blur(60px);
  z-index: -2;
}

.page {
  width: min(1200px, 100%);
  box-sizing: border-box;
  margin: 40px auto 80px;
  padding: 40px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 10, 0.7);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.hero {
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  margin-bottom: 32px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 6, 10, 0.1), rgba(5, 6, 10, 0.75));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.logo strong {
  font-size: 1.15rem;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.spark {
  font-size: 1.4rem;
  color: var(--accent-2);
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.solid-btn,
.ghost-btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.solid-btn {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05060a;
}

.ghost-btn {
  border-color: var(--border);
  color: var(--text);
}

.solid-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 40px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hero-video {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}

.hero-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.1);
  position: relative;
  z-index: 1;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 6, 10, 0.2), rgba(5, 6, 10, 0.4));
  z-index: 2;
}

.video-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  color: #fff;
}

.video-overlay strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .hero-video {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .hero-card,
  .call-widget {
    min-height: 100%;
  }
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.9rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy .lede {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.sms-note {
  font-size: 0.85rem;
  color: rgba(247, 248, 251, 0.8);
}

.hero-meta .stat {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
}

.hero-card {
  background: linear-gradient(135deg, rgba(17, 20, 39, 0.9), rgba(11, 12, 24, 0.9));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.4);
  height: 100%;
}

.call-widget {
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(82, 199, 255, 0.12), rgba(142, 141, 255, 0.12));
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.hero-photo-card {
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
}

.hero-photo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.photo-meta {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.photo-meta .signature {
  font-family: "Playfair Display", "Space Grotesk", serif;
  font-size: 1.1rem;
  color: var(--accent-2);
}

.call-widget .badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
}

.call-widget-title {
  font-size: 1.8rem;
  font-weight: 600;
}

.wide-btn {
  text-align: center;
}

.tag-roll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tag-roll span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.card-header {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.card-body ul {
  list-style: none;
  margin: 16px 0;
  padding-left: 0;
}

.card-body li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.call-line {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--pill);
  font-size: 0.85rem;
  color: var(--muted);
}

.pill.alt {
  background: rgba(142, 141, 255, 0.2);
  color: var(--accent);
}

.card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-band {
  margin-top: 20px;
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.trust-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-tags span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.authority-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.authority-cta {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.call-banner {
  margin-top: 32px;
  padding: 20px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(142, 141, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.call-banner strong {
  font-size: 1.6rem;
}

.section {
  margin-top: 80px;
}

.section.light {
  background: rgba(255, 255, 255, 0.03);
  padding: 60px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
}

.section.dark {
  background: rgba(9, 11, 20, 0.85);
  padding: 60px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}

.section.light + .section.dark,
.section.dark + .section.light {
  margin-top: 50px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section p {
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.value-grid article {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.logo-grid span {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  background: var(--card);
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline article {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.timeline h3 {
  margin-bottom: 8px;
}

.process-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.process-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05060a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.persona-grid article {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.persona-grid span {
  font-size: 0.9rem;
  color: var(--accent-2);
}

.proof {
  margin-top: 60px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-grid article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 25px 60px rgba(3, 5, 20, 0.4);
}

.stat-grid .stat {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(142, 141, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.call-cta {
  font-size: 1.05rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-map svg {
  width: 100%;
  height: auto;
}

.service-map iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-grid article {
  background: rgba(5, 6, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-grid ul {
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.coverage-details ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
}

.coverage-details li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
}

.sms-note {
  font-size: 0.85rem;
}

.priority-form {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.priority-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.priority-form input,
.priority-form select,
.priority-form textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
}

.priority-form textarea {
  resize: vertical;
}

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

#form-status.success {
  color: #6fdaaa;
}

#form-status.error {
  color: #ffb4b4;
}

.reviews-card {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(17, 20, 39, 0.9), rgba(10, 12, 25, 0.9));
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.5);
}

.reviews-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.star-row {
  color: #f9c846;
  letter-spacing: 4px;
  font-size: 1.1rem;
}

.yelp-badge {
  height: 48px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.quote-grid article {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-grid span {
  color: var(--accent-2);
  font-size: 0.9rem;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.cta {
  margin-top: 80px;
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(142, 141, 255, 0.25), rgba(82, 199, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05060a;
  padding: 14px 24px;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 600;
}

.floating-call span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.floating-call strong {
  font-size: 1.1rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 6, 10, 0.95);
  display: none;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 20;
}

.mobile-cta a {
  flex: 1;
  margin: 0 6px;
  text-align: center;
  padding: 12px 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.mobile-cta a:first-child {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05060a;
  border: none;
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 800px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-card {
    order: -1;
  }

  .section.alt {
    padding: 24px;
  }

  .cta {
    padding: 32px;
  }

  .call-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .authority-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .priority-form {
    padding: 24px;
  }

  .floating-call.desktop-only {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }
}

