:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

.site-shell {
  background:
    radial-gradient(circle at 10% 5%, rgba(194, 98, 152, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 18%, rgba(133, 14, 81, 0.12), transparent 28rem),
    #fff;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(133, 14, 81, 0.12);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #111827;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: none;
}

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

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

.mobile-menu-button {
  display: inline-flex !important;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #111827;
  border: 1px solid rgba(133, 14, 81, 0.22);
  background: #fff;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(133, 14, 81, 0.12);
  background: #fff;
}

.mobile-menu.open {
  display: block;
}

.nav-link {
  color: #374151;
  font-size: 16px;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: #850E51;
}

.btn-primary,
.btn-secondary,
.desktop-call,
.mobile-menu-call,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 0;
  color: #fff !important;
  background: linear-gradient(135deg, #850E51, #C26298);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 18px 42px rgba(133, 14, 81, 0.32);
  position: relative;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-primary::after,
.btn-secondary::after,
.desktop-call::after,
.mobile-menu-call::after,
.sticky-call::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  opacity: 0;
  animation: pulseGlow 2.2s ease-in-out infinite;
  z-index: -1;
}

.btn-primary:hover,
.btn-secondary:hover,
.desktop-call:hover,
.mobile-menu-call:hover,
.sticky-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(133, 14, 81, 0.44);
}

.btn-secondary {
  background: #111827;
}

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.93) 0%, rgba(133, 14, 81, 0.82) 49%, rgba(17, 24, 39, 0.28) 100%), url("../images/hero-technician.jpg");
  background-size: cover;
  background-position: center;
}

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

.hero-section .section-eyebrow,
.dark-section .section-eyebrow {
  color: #fff;
}

.hero-title {
  font-size: clamp(30px, 9vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero-text {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.94);
}

.star-row {
  color: #F8C24E;
  font-size: 24px;
  letter-spacing: 0.14em;
}

.badge-row img {
  width: auto;
  height: 48px;
  max-width: 31%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.glass-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.section-pad {
  padding-block: 72px;
}

.section-eyebrow {
  color: #850E51;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}

.section-title {
  font-size: clamp(31px, 6.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: #111827;
}

.heading-accent {
  width: 74px;
  height: 5px;
  background: linear-gradient(90deg, #850E51, #C26298);
  margin-top: 1rem;
}

.text-image-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.info-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(133, 14, 81, 0.12);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.08);
}

.soft-panel {
  background:
    linear-gradient(135deg, rgba(133, 14, 81, 0.08), rgba(194, 98, 152, 0.1)),
    #fff;
  border: 1px solid rgba(133, 14, 81, 0.12);
}

.service-card {
  background: #fff;
  border: 1px solid rgba(133, 14, 81, 0.13);
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.07);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(133, 14, 81, 0.44);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(133, 14, 81, 0.09);
  color: #850E51;
}

.icon-box svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
}

.dark-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(194, 98, 152, 0.42), transparent 28rem),
    linear-gradient(135deg, #111827, #2d0f27 54%, #850E51);
  color: #fff;
}

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

.dark-section p,
.dark-section li {
  color: rgba(255, 255, 255, 0.87);
}

.review-track {
  display: flex;
  transition: transform 420ms ease;
}

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

.review-card {
  height: 100%;
  background: #fff;
  color: #374151;
  border: 1px solid rgba(133, 14, 81, 0.13);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.08);
}

.review-card h3 {
  color: #111827;
  font-size: 22px;
}

.faq-item {
  border: 1px solid rgba(133, 14, 81, 0.14);
  background: #fff;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #111827;
  font-weight: 800;
  text-align: left;
}

.faq-answer {
  display: none;
  color: #374151;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer h2,
.footer h3,
.footer .logo-link {
  color: #fff;
}

.footer a {
  color: #fff;
}

.sticky-call-wrap {
  display: none !important;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0; transform: scale(0.96); }
  45% { opacity: 0.75; transform: scale(1.04); }
}

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

  .desktop-call {
    display: inline-flex !important;
  }

  .mobile-menu-button,
  .mobile-menu {
    display: none !important;
  }

  .text-image-grid {
    grid-template-columns: minmax(0, 65fr) minmax(260px, 35fr);
  }

  .text-image-grid.image-left {
    grid-template-columns: minmax(260px, 35fr) minmax(0, 65fr);
  }

  .text-image-grid.image-left .image-col {
    order: -1;
  }

  .review-slide {
    flex-basis: 33.3333%;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 820px;
    padding-top: 2rem;
    background-position: 63% center;
  }

  .hero-text {
    font-size: 16px;
  }

  .section-pad {
    padding-block: 54px;
  }

  .sticky-call-wrap {
    display: block !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms ease, opacity 240ms ease;
  }

  .sticky-call-wrap.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-call {
    width: 100%;
    min-height: 58px;
    padding-inline: 0.65rem;
    font-size: 15px;
  }

  body.has-sticky-space {
    padding-bottom: 72px;
  }
}
