/* Responsive improvements for mobile and desktop friendliness */
@media (max-width: 700px) {
  body {
    font-size: 1rem;
  }
  .site-header {
    flex-direction: column;
    gap: 10px;
    padding: 18px 3vw 12px;
  }
  .hero {
    padding: 30px 3vw 20px;
    gap: 20px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .request-card {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 18px 3vw 30px;
    gap: 10px;
    font-size: 0.95rem;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .site-nav {
    gap: 12px;
  }
  .cta, .cta.ghost {
    padding: 10px 16px;
    font-size: 1rem;
  }
}
:root {
  --bg: #000000;
  --card: #222;
  --ink: #ffe600;
  --muted: #fff700cc;
  --accent: #ffe600;
  --accent-2: #ffe600;
  --sand: #222;
  --shadow: 0 22px 45px rgba(255, 230, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 7vw 20px;
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #222);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

a {
  color: inherit;
}

.request a,
.site-footer a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.request a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.cta {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 30px rgba(255, 230, 0, 0.14);
}

.cta:hover {
  transform: translateY(-2px);
}

.cta.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.cta.full {
  width: 100%;
  margin-top: 16px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding: 70px 7vw 40px;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(244, 242, 239, 0.9), rgba(244, 242, 239, 0.4));
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  margin: 12px 0 18px;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 26px 0 30px;
}

.hero-highlights {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.highlight-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.highlight-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selector-btn {
  border: 1px solid rgba(24, 20, 16, 0.18);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.selector-btn.is-active {
  background: var(--accent-2);
  color: #fff;
  border-color: transparent;
}

.service-panel {
  background: var(--sand);
  border-radius: 20px;
  padding: 18px;
}

.service-panel ul {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.services,
.how,
.request {
  padding: 60px 7vw;
}

.section-head {
  margin-bottom: 30px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--accent-2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-grid article {
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(24, 20, 16, 0.08);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.steps span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.steps div {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 25px rgba(24, 20, 16, 0.08);
}

.request-card {
  background: var(--card);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.request-card form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  border: 1px solid rgba(24, 20, 16, 0.15);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
}

#formStatus {
  font-weight: 600;
  min-height: 1.2em;
}

#formStatus.success {
  color: #1c7a30;
}

#formStatus.error {
  color: #b3261e;
}

.site-footer {
  padding: 30px 7vw 50px;
  background: #000;
  color: var(--accent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.muted {
  color: var(--muted);
}

.call-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #1fbf6b;
  display: none;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 18px 35px rgba(31, 191, 107, 0.45);
  z-index: 20;
  overflow: hidden;
  border: 2px solid #fff;
}

.call-widget:hover {
  transform: translateY(-2px);
}

.call-ring {
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(31, 191, 107, 0.55);
  animation: callPulse 2.4s ease-in-out infinite;
}

.call-icon {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

@keyframes callPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  60% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps,
  .request-card {
    grid-template-columns: 1fr;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .call-widget {
    display: grid;
  }
}

@media (hover: none) and (pointer: coarse) {
  .call-widget {
    display: grid;
  }
}
