:root {
  --brand: #7e2434;
  --brand-dark: #4d1420;
  --accent: #d33c57;
  --ink: #111827;
  --muted: #5b6472;
  --cream: #fff8f6;
  --line: #ead5d9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4, .logo-word {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.08;
}

h1 { font-size: clamp(39px, 7vw, 62px); letter-spacing: -0.04em; }
h2 { font-size: clamp(31px, 5vw, 46px); letter-spacing: -0.035em; }
h3, h4 { font-size: 22px; }
p, li, a, button, input, textarea { font-size: 16px; }

.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.wide-container { width: min(1280px, calc(100% - 24px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(126, 36, 52, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--brand); color: #fff; }
.logo-word { font-size: 24px; font-weight: 700; }
.desktop-nav { display: none; align-items: center; gap: 22px; }
.desktop-nav a, .mobile-nav a { color: #202938; font-weight: 700; text-decoration: none; }
.desktop-nav a { font-size: 16px; }
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--brand); }

.header-phone { display: none !important; }
.mobile-toggle { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border: 1px solid var(--line); background: #fff; color: var(--ink); }
.mobile-nav { display: none; border-top: 1px solid var(--line); padding: 16px 0 20px; background: #fff; }
.mobile-nav.is-open { display: block; }
.mobile-nav nav { display: grid; gap: 14px; }

.btn-primary, .header-phone, .mobile-menu-phone, .sticky-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  min-height: 54px;
  padding: 0 24px;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.62), 0 18px 36px rgba(126,36,52,0.25);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.btn-primary:hover, .header-phone:hover, .mobile-menu-phone:hover { transform: translateY(-2px); filter: brightness(1.04); }
.mobile-menu-phone { margin-top: 8px; width: max-content; color: #fff !important; }

.hero {
  position: relative;
  min-height: 760px;
  color: #fff;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #16080c url('../images/hero-technician.jpg') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,5,9,0.94) 0%, rgba(50,13,22,0.84) 46%, rgba(50,13,22,0.38) 100%);
}

.hero::after, .grid-section::after, .dark-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-content { position: relative; z-index: 2; display: grid; gap: 30px; padding: 80px 0; }
.hero h1, .hero h2, .hero h3, .hero p { color: #fff; }
.eyebrow { display: inline-flex; width: max-content; color: #fff; background: rgba(211,60,87,0.2); border-left: 4px solid var(--accent); padding: 8px 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.stars { color: #ffbf2f; font-size: 22px; letter-spacing: 4px; margin-top: 18px; }
.trust-icons { display: flex; align-items: center; gap: 10px; margin: 18px 0 0; flex-wrap: wrap; }
.trust-icons img { width: auto; height: 48px; max-width: 118px; object-fit: contain; border: 1px solid rgba(255,255,255,0.46); background: rgba(255,255,255,0.92); padding: 6px; }
.hero-lead { max-width: 720px; font-size: 18px; color: #f8e9ec !important; }
.hero-cta-text { font-weight: 800; color: #fff !important; margin-bottom: 14px; }
.benefit-panel { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.24); padding: 24px; backdrop-filter: blur(18px); }
.benefit-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.16); color: #fff; }
.benefit-item:last-child { border-bottom: 0; }
.benefit-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; background: #fff; color: var(--brand); }

.section { padding: 72px 0; position: relative; }
.section-light { background: #fff; }
.section-cream { background: var(--cream); }
.dark-band { background: linear-gradient(135deg, #250a11, #621b2a); color: #fff; position: relative; overflow: hidden; }
.dark-band h2, .dark-band h3, .dark-band p, .dark-band li { color: #fff; }
.section-title { max-width: 760px; margin-bottom: 34px; }
.title-mark { width: 68px; height: 4px; background: var(--accent); margin: 16px 0 0; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.two-col.text-first .text-col { order: 1; }
.two-col.text-first .image-col { order: 2; }
.image-card img { width: 100%; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.image-card { border: 1px solid var(--line); background: #fff; padding: 10px; box-shadow: 20px 20px 0 rgba(126,36,52,0.08); }
.text-col p { color: #303947; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); padding: 24px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(211,60,87,0.45); box-shadow: 0 24px 48px rgba(126,36,52,0.12); }
.service-card h3 { margin: 14px 0 12px; }
.service-card ul { padding-left: 18px; margin: 0; color: #303947; }
.line-icon { width: 54px; height: 54px; color: var(--brand); }

.parts-list, .payment-list, .area-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.parts-list span, .payment-list li, .area-list li { display: block; background: #fff; border-left: 4px solid var(--accent); padding: 14px 16px; color: var(--ink); font-weight: 700; }
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { counter-increment: step; background: #fff; border: 1px solid var(--line); padding: 24px; position: relative; }
.dark-band .step h3, .dark-band .step p { color: var(--ink); }
.step::before { content: counter(step); position: absolute; top: 20px; right: 20px; font-family: Georgia, serif; font-size: 54px; color: rgba(126,36,52,0.12); line-height: 1; }

.reviews-shell { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform .4s ease; }
.review-slide { min-width: 100%; padding: 0 8px; }
.review-card { height: 100%; background: #fff; border: 1px solid var(--line); padding: 24px; }
.review-card strong { display: block; color: var(--ink); margin-bottom: 10px; }
.review-card p { color: #303947; }
.carousel-controls { display: flex; gap: 10px; margin-top: 22px; }
.carousel-controls button { width: 48px; height: 48px; border: 1px solid var(--brand); background: #fff; color: var(--brand); font-weight: 900; }

.cta-strip { background: #111827; color: #fff; padding: 42px 0; }
.cta-strip h2, .cta-strip p { color: #fff; }
.faq-item { border: 1px solid var(--line); background: #fff; padding: 22px; margin-bottom: 14px; }
.site-footer { background: #16080c; color: #e8d9dc; padding: 54px 0 30px; font-size: 14px; }
.site-footer p, .site-footer a, .site-footer li { font-size: 14px; color: #e8d9dc; }
.site-footer h3 { color: #fff; }
.footer-grid { display: grid; gap: 28px; }
.footer-logo .logo-word { color: #fff; }
.footer-links { display: grid; gap: 8px; }
.disclaimer { border-top: 1px solid rgba(255,255,255,0.16); margin-top: 30px; padding-top: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: 100%;
  min-height: 62px;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  color: #fff !important;
}
.sticky-call.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.46), 0 18px 36px rgba(126,36,52,0.25); }
  50% { box-shadow: 0 0 0 11px rgba(255,255,255,0), 0 22px 44px rgba(126,36,52,0.35); }
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .parts-list, .payment-list, .area-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .mobile-toggle, .mobile-nav { display: none !important; }
  .header-phone { display: inline-flex !important; }
  .sticky-call { display: none !important; }
  .hero-content { grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr); }
  .two-col { grid-template-columns: minmax(0, 65fr) minmax(0, 35fr); }
  .two-col.image-left { grid-template-columns: minmax(0, 35fr) minmax(0, 65fr); }
  .two-col.image-left .image-col { order: 1; }
  .two-col.image-left .text-col { order: 2; }
  .review-slide { min-width: 33.3333%; }
  .footer-grid { grid-template-columns: 1.1fr .9fr .9fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  body { padding-bottom: 66px; }
  .hero { min-height: 720px; }
  .benefit-panel { padding: 18px; }
  .section { padding: 54px 0; }
  .trust-icons img { height: 44px; max-width: 96px; }
}
