/* ============================================
   BATTERY REPLACEMENT — FULL REDESIGN
   Industrial-Automotive Aesthetic
   Fonts: Teko (display) + Outfit (body)
   ============================================ */

/* --- TOKENS --- */
:root {
  --navy: #0d1321;
  --navy-mid: #1a1f3d;
  --navy-light: #252b50;
  --red: #d32f2f;
  --red-glow: rgba(211, 47, 47, 0.35);
  --gold: #f5a623;
  --white: #ffffff;
  --off-white: #f4f5f7;
  --gray-100: #e8eaed;
  --gray-300: #b0b3b8;
  --gray-500: #6b7280;
  --gray-800: #1f2937;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-subtle: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-card: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(211,47,47,0.18), 0 0 80px rgba(211,47,47,0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-800);
  background: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --- SECTION TAG --- */
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(211,47,47,0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('/images/battery-bg.jpg') center / cover no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,19,33,0.92) 0%, rgba(26,31,61,0.85) 50%, rgba(13,19,33,0.88) 100%);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}
.hero__wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.hero__content { text-align: center; }
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: 'Teko', sans-serif;
  font-size: 82px;
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero__headline em {
  font-style: normal;
  color: var(--red);
}
.hero__sub {
  font-family: 'Teko', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Teko', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  padding: 8px 28px;
  border: 2px solid var(--red);
  border-radius: 60px;
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
  animation: pulse-border 2.5s ease-in-out infinite;
}
.hero__phone:hover {
  background: var(--red);
  box-shadow: var(--shadow-glow);
}
.hero__phone-icon {
  font-size: 24px;
}
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}
.hero__meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 22px;
}
.hero__trust li {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.hero__badges {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero__badges img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s;
}
.hero__badges img:hover { filter: brightness(1.1); }

/* --- HERO FORM --- */
.hero__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.hero__form-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--red), transparent 40%, transparent 60%, var(--red));
  z-index: -1;
  opacity: 0.5;
}
.hero__form-header {
  background: var(--navy);
  padding: 22px 28px;
  text-align: center;
}
.hero__form-header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__form-header p {
  font-size: 13px;
  color: var(--gray-300);
}
.hero__form {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__form input,
.hero__form select {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-bottom: 2px solid var(--gray-300);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.hero__form input::placeholder { color: var(--gray-500); font-weight: 400; }
.hero__form input:focus,
.hero__form select:focus {
  border-bottom-color: var(--red);
}
.hero__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 4px 0;
}
.hero__form-row select {
  padding: 12px 32px 12px 12px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  font-size: 13px;
}
.hero__form-row select:valid {
  border-color: var(--navy);
  background-color: var(--white);
}
.hero__form > select {
  appearance: none;
  padding: 12px 32px 12px 12px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  font-size: 13px;
  margin: 4px 0;
}
.hero__form > select:valid {
  border-color: var(--navy);
  background-color: var(--white);
}
.hero__form select:valid { color: var(--navy); font-weight: 600; }
.hero__form button {
  margin-top: 12px;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero__form button:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

/* scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ============================================
   DELIVERY
   ============================================ */
.delivery {
  padding: 100px 32px;
  background: var(--white);
  position: relative;
}
.delivery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--navy), var(--red));
}
.delivery__wrap { max-width: 1200px; margin: 0 auto; }
.delivery__header {
  text-align: center;
  margin-bottom: 60px;
}
.delivery__header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}
.delivery__header p {
  font-size: 16px;
  color: var(--gray-500);
  margin-top: 8px;
}
.delivery__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.delivery__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.delivery__card {
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.delivery__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.delivery__card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.delivery__card:hover .delivery__card-accent { transform: scaleY(1); }
.delivery__card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.delivery__card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
.delivery__video { display: flex; justify-content: center; }
.delivery__vid-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.delivery__vid-wrap {
  width: 280px;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.delivery__vid-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  z-index: 0;
  animation: loading-shimmer 2s ease-in-out infinite;
}
@keyframes loading-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.delivery__vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.delivery__sound-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--red);
  border-radius: 30px;
  padding: 10px 22px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease);
  animation: pulse-sound 2s ease-in-out infinite;
}
.delivery__sound-btn:hover {
  background: var(--red);
  border-color: var(--red);
  animation: none;
}
.delivery__sound-btn.is-on {
  background: var(--red);
  border-color: var(--red);
  animation: none;
}
.delivery__sound-icon {
  font-size: 18px;
  line-height: 1;
}
.delivery__sound-text {
  white-space: nowrap;
}
@keyframes pulse-sound {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211,47,47,0.4); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
  padding: 70px 32px;
  background: var(--white);
  text-align: center;
  position: relative;
}
.brands::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--red);
}
.brands__wrap { max-width: 1200px; margin: 0 auto; }
.brands h3 {
  font-family: 'Teko', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.brands__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 36px;
}
.brands__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brands__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--off-white);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.brands__item:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.brands__item img {
  height: 90px;
  width: auto;
  object-fit: contain;
}
.brands__item span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--red);
}
.cta-strip__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-strip h3 {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
}
.cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.cta-strip__btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

/* ============================================
   CALL BANNER
   ============================================ */
.call-banner {
  position: relative;
  padding: 80px 32px;
  overflow: hidden;
}
.call-banner__bg {
  position: absolute;
  inset: 0;
  background: url('/images/battery-bg.jpg') center / cover no-repeat;
}
.call-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,19,33,0.92), rgba(26,31,61,0.88));
}
.call-banner__wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.call-banner__text h3 {
  font-family: 'Teko', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}
.call-banner__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.call-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.call-banner__btn:hover {
  background: var(--white);
  color: var(--navy);
}
.call-banner__btn-icon { font-size: 20px; }

/* ============================================
   BENEFITS
   ============================================ */
.benefits { background: var(--navy); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.benefits__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: default;
}
.benefits__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.benefits__tile:hover img { transform: scale(1.08); }
.benefits__glass {
  position: absolute;
  inset: 0;
  background: rgba(13,19,33,0.55);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  transition: background 0.4s;
}
.benefits__tile:hover .benefits__glass {
  background: rgba(13,19,33,0.75);
  backdrop-filter: blur(6px);
}
.benefits__glass h3 {
  font-family: 'Teko', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative;
}
.benefits__glass h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: var(--red);
  margin: 8px auto 0;
}
.benefits__glass p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 180px;
}

/* ============================================
   SAME DAY
   ============================================ */
.sameday {
  padding: 40px 32px;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sameday__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.sameday__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.3);
  max-width: 200px;
}
.sameday h2 {
  font-family: 'Teko', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
}
.sameday h2 em { font-style: italic; font-weight: 400; }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  padding: 100px 32px;
  background: var(--white);
}
.guarantee__wrap {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.guarantee__photo {
  position: relative;
  z-index: 1;
}
.guarantee__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guarantee__photo-accent {
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 60%;
  height: 6px;
  background: var(--red);
}
.guarantee__card {
  background: var(--navy);
  color: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  border-left: 5px solid var(--red);
}
.guarantee__card h2 {
  font-family: 'Teko', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
}
.guarantee__card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.guarantee__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s var(--ease);
}
.guarantee__cta:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 32px;
  background: var(--off-white);
}
.testimonials__wrap { max-width: 1200px; margin: 0 auto; }
.testimonials__header {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials__header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonials__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonials__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.testimonials__avatar {
  width: 64px; height: 64px;
  margin-bottom: 18px;
}
.testimonials__avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gray-100);
  transition: border-color 0.3s;
}
.testimonials__card:hover .testimonials__avatar img {
  border-color: var(--red);
}
.testimonials__card blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.testimonials__card cite {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  font-style: normal;
  display: block;
  margin-bottom: 10px;
}
.testimonials__accent {
  width: 40px;
  height: 3px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}
.testimonials__card:hover .testimonials__accent { width: 70px; }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 32px;
  background: var(--white);
}
.faq__wrap { max-width: 780px; margin: 0 auto; }
.faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq__header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}
.faq__item {
  border-bottom: 1px solid var(--gray-100);
}
.faq__item summary {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--red); }
.faq__answer { padding: 0 0 24px; }
.faq__answer p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 10px;
}
.faq__answer ul { list-style: none; padding: 0; margin: 12px 0; }
.faq__answer li {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.faq__answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.faq__answer strong { color: var(--navy); }

/* ============================================
   SERVICE AREA MAP
   ============================================ */
.svc-map {
  padding: 100px 32px;
  background: var(--off-white);
}
.svc-map__wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.svc-map__wrap h2 {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.svc-map__sub {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.svc-map__frame {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 3px solid var(--gray-100);
}
.svc-map__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   VEHICLE GALLERY
   ============================================ */
.vgallery {
  padding: 80px 0 60px;
  background: var(--navy);
  overflow: hidden;
}
.vgallery__header {
  text-align: center;
  padding: 0 32px;
  margin-bottom: 40px;
}
.vgallery__header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.vgallery__track {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.vgallery__scroll {
  display: flex;
  gap: 20px;
  animation: gallery-scroll 120s linear infinite;
  width: max-content;
}
.vgallery__scroll:hover {
  animation-play-state: paused;
}
@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.vgallery__item {
  flex-shrink: 0;
  width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.vgallery__item:hover {
  transform: scale(1.04);
  z-index: 2;
}
.vgallery__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.vgallery__label {
  background: var(--navy-mid);
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vgallery__item:hover .vgallery__label {
  background: var(--red);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-wrap { max-width: 440px; margin: 0 auto; }
  .hero { min-height: auto; }
  .delivery__grid { grid-template-columns: 1fr; }
  .delivery__video { order: -1; }
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .guarantee__wrap { grid-template-columns: 1fr; }
  .guarantee__card { border-left: none; border-top: 5px solid var(--red); }
}
@media (max-width: 768px) {
  .fade-up { opacity: 1 !important; transform: translateY(0) !important; }

  /* Buttons full-width on mobile */
  .cta-strip__btn,
  .bcta__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 18px;
  }
  .call-banner__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 18px;
    background: var(--red) !important;
    color: var(--white) !important;
    border-color: var(--red) !important;
    white-space: nowrap;
  }
  .guarantee__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 18px;
    background: var(--red) !important;
    color: var(--white) !important;
    border: none;
    white-space: nowrap;
  }
  .hero__phone {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }
  .bcta__card { width: 90%; }

  .hero { min-height: auto; padding: 30px 0; }
  .hero__wrap { padding: 30px 16px; gap: 30px; }
  .hero__scroll { display: none; }
  .hero__headline { font-size: 42px; }
  .hero__sub { font-size: 22px; letter-spacing: 1px; }
  .hero__phone { font-size: 24px; padding: 8px 18px; }
  .hero__desc { font-size: 13px; }
  .hero__trust li { font-size: 11px; }
  .hero__badges img { height: 40px; }
  .hero__form-row { grid-template-columns: 1fr !important; }
  .hero__form-row select { margin-bottom: 4px; }
  .delivery__grid { grid-template-columns: 1fr; }
  .delivery__video { order: -1; }
  .delivery__col { gap: 16px; }
  .delivery__header h2 { font-size: 30px; }
  .brands__row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .brands__item { padding: 20px 12px; }
  .brands__item img { height: 65px; }
  .brands__item span { font-size: 11px; }
  .brands h3 { font-size: 26px; }
  .brands__sub { font-size: 13px; margin-bottom: 24px; }
  .brands { padding: 50px 16px; }
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .svc-map__frame { height: 260px; }
  .svc-map__wrap h2 { font-size: 30px; }
  .vgallery__item { width: 200px; }
  .vgallery__item img { height: 150px; }
  .vgallery__header h2 { font-size: 28px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__header h2 { font-size: 34px; }
  .guarantee__wrap { grid-template-columns: 1fr; }
  .guarantee__card { border-left: none; border-top: 5px solid var(--red); }
  .call-banner__wrap { flex-direction: column; text-align: center; }
  .call-banner__text { text-align: center; }
  .call-banner__text h3 { font-size: 26px; }
  .cta-strip__wrap { flex-direction: column; gap: 12px; text-align: center; }
  .cta-strip h3 { font-size: 22px; }
  .sameday h2 { font-size: 18px; letter-spacing: 1px; }
  .sameday__line { display: none; }
  .faq__header h2 { font-size: 30px; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 44px; }
  .hero__sub { font-size: 22px; }
  .hero__phone { font-size: 24px; }
  .hero__form-wrap { margin: 0 -8px; border-radius: var(--radius); }
  .benefits__grid { grid-template-columns: 1fr; }
  .brands__row { gap: 28px; }
  .brands__row img { height: 70px; }
  .svc-map__frame { height: 260px; }
  .vgallery__item { width: 200px; }
  .vgallery__item img { height: 140px; }
}
