:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --ink: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.05rem, 7vw, 4.7rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.75rem, 5vw, 3.05rem);
  line-height: 1.08;
}

h3,
h4 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.2;
}

p,
li,
a,
button,
input,
textarea {
  font-size: 16px;
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.container-wide {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.desktop-only {
  display: none !important;
}

.mobile-only {
  display: flex !important;
}

@media (min-width: 768px) {
  .desktop-only {
    display: flex !important;
  }

  .mobile-only {
    display: none !important;
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.header-phone,
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--orange);
  color: #111827;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: pulse-white 2.25s infinite;
}

.header-phone:hover,
.cta-button:hover {
  background: #fff7ed;
  color: #111827;
  transform: translateY(-1px);
}

@keyframes pulse-white {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-section {
  min-height: 760px;
  background-image: linear-gradient(90deg, rgba(3, 7, 18, 0.92) 0%, rgba(17, 24, 39, 0.82) 46%, rgba(17, 24, 39, 0.45) 100%), url('../images/hero-technician.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 7.5rem 0 4rem;
}

.hero-section h1,
.hero-section h2,
.hero-section h3 {
  color: #fff !important;
}

.stars {
  color: var(--orange);
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  line-height: 1;
}

.award-icon {
  width: auto;
  height: 48px;
  max-width: 110px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 115, 22, 0.55);
  padding: 5px;
}

.glass-panel {
  background: rgba(17, 24, 39, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  color: #fff;
}

.accent-rule {
  display: block;
  width: 64px;
  height: 5px;
  background: var(--orange);
  margin-top: 1rem;
}

.split-card {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-card {
    grid-template-columns: 65% 35%;
  }

  .split-card.reverse {
    grid-template-columns: 35% 65%;
  }
}

.section-pad {
  padding: 4.8rem 0;
}

.dark-section {
  background: radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.18), transparent 32%), linear-gradient(135deg, #111827, #030712);
  color: #f9fafb;
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: #fff !important;
}

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f9fafb;
}

.light-card {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.service-card {
  border-top: 5px solid var(--orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff7ed;
  color: var(--orange-dark);
  border: 1px solid #fed7aa;
}

.issue-list {
  columns: 1;
}

@media (min-width: 768px) {
  .issue-list {
    columns: 2;
    column-gap: 2.5rem;
  }
}

@media (min-width: 1100px) {
  .issue-list {
    columns: 3;
  }
}

.issue-list li,
.city-list li,
.payment-list li {
  break-inside: avoid;
  margin-bottom: 0.65rem;
}

.review-track {
  transition: transform 0.45s ease;
}

.review-slide {
  flex: 0 0 100%;
}

@media (min-width: 900px) {
  .review-slide {
    flex-basis: 33.3333%;
  }
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none !important;
  width: 100%;
  background: var(--orange);
  color: #111827;
  text-align: center;
  font-weight: 900;
  padding: 1rem 0.75rem calc(1rem + env(safe-area-inset-bottom));
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(110%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-sticky-call.is-visible {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible {
    display: none !important;
  }
}

.site-footer {
  background: #030712;
  color: #d1d5db;
  font-size: 14px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  font-size: 14px;
}

.site-footer a {
  color: #fff;
}

.model-text,
.zip-text,
.street-text {
  word-break: break-word;
}

.fade-up {
  animation: fade-up 0.7s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 6.2rem 0 3rem;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-pad {
    padding: 3.3rem 0;
  }

  .award-icon {
    height: 42px;
    max-width: 92px;
  }
}
