/* Jumpstart Service — mobile-first, conversion-focused */

:root {
  --red: #c41e1e;
  --red-dark: #9a1515;
  --red-glow: rgba(196, 30, 30, 0.35);
  --bg: #0f1115;
  --bg-elevated: #181b22;
  --bg-card: #1e222b;
  --text: #f4f5f7;
  --text-muted: #a8adb8;
  --border: #2a2f3a;
  --focus: #ff6b6b;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --header-h: 64px;
  --callbar-h: 72px;
  --max: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--callbar-h);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #ff8a8a;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: #ffb3b3;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible,
.carousel-dot:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: #fff;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: 0 0 0 2px rgba(196, 30, 30, 0.25);
  font-size: 1rem;
}

.logo-text {
  font-size: 0.95rem;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  line-height: 1.2;
}

.header-phone:hover {
  color: #fff;
}

.header-phone-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}

.header-phone-number {
  font-weight: 800;
  font-size: 1rem;
  color: #ff8a8a;
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, var(--red-glow), transparent 60%),
    var(--bg);
}

.hero-inner {
  text-align: center;
}

.hero-badge {
  margin: 0 0 1.25rem;
}

.hero-badge a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-badge a:hover {
  border-color: var(--red);
  color: #fff;
}

.stars {
  color: #f5c518;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-lead {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.hero-hours {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-hours strong {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(180deg, #e02828, var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 18px var(--red-glow);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ef3333, var(--red));
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #555b68;
  color: #fff;
  background: var(--bg-elevated);
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}

/* Sections */
.section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-intro {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.section-cta {
  margin: 2rem 0 0;
  text-align: center;
}

/* Why */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.why-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.25rem;
  border-left: 4px solid var(--red);
}

.why-list strong {
  font-size: 1.05rem;
}

.why-list span {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* How */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
}

/* Vehicles */
.vehicle-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.vehicle-grid li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
}

/* Areas */
.area-tags {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.area-tags li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.areas-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, var(--red-glow), transparent 55%),
    var(--bg-elevated);
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-band-inner p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.cta-band .btn {
  width: 100%;
  max-width: 22rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #0a0c10;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-name {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-tag {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact {
  margin: 0;
}

.footer-contact p {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
}

.footer-contact a {
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: #ff8a8a;
}

.footer-contact a:hover {
  color: #ffb3b3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Sticky mobile call bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #e02828, var(--red-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px var(--red-glow);
}

.mobile-call-btn:hover {
  color: #fff;
  background: linear-gradient(180deg, #ef3333, var(--red));
}


/* Reviews carousel */
.reviews-header {
  margin-bottom: 1.5rem;
}

.reviews-header h2 {
  margin-bottom: 0.5rem;
}

.reviews-rating {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}

.reviews-rating strong {
  color: var(--text);
}

.reviews-rating a {
  color: #ff8a8a;
  text-decoration: none;
  font-weight: 700;
}

.reviews-rating a:hover {
  color: #ffb3b3;
  text-decoration: underline;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0;
}

.review-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.25rem;
  border-left: 4px solid #f5c518;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.review-stars {
  margin: 0;
  color: #f5c518;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.review-quote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  flex: 1;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 0.25rem;
}

.review-author {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.review-theme {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f5c518;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.carousel-btn:hover {
  background: var(--bg-card);
  border-color: #555b68;
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #3a4050;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.carousel-dot:hover {
  background: #6b7280;
}

.carousel-dot[aria-selected="true"],
.carousel-dot.is-active {
  background: var(--red);
  transform: scale(1.15);
}

.reviews-cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Social follow */
.social-actions {{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}}

.social-actions .btn {{
  min-width: 12rem;
}}

/* Desktop tweaks */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .btn-lg {
    min-width: 12rem;
  }

  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-band .btn {
    width: auto;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .header-phone-number {
    font-size: 1.1rem;
  }
}

@media (min-width: 900px) {
  :root {
    --max: 800px;
  }

  /* Keep sticky call bar on larger screens too for conversion,
     but slightly subtler padding */
  body {
    padding-bottom: var(--callbar-h);
  }
}
