:root {
  --blue: #07579f;
  --blue-strong: #004b91;
  --blue-dark: #063d74;
  --ink: #071629;
  --muted: #536274;
  --soft: #f5f8fc;
  --line: #e6edf5;
  --white: #ffffff;
  --gold: #ffb51b;
  --shadow: 0 18px 45px rgba(14, 31, 53, 0.1);
  --shadow-soft: 0 10px 28px rgba(10, 43, 77, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 26%, #f8fafc 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 239, 0.8);
  box-shadow: 0 8px 24px rgba(7, 22, 41, 0.05);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
  border: 3px solid var(--blue);
  border-radius: 8px 8px 11px 11px;
  clip-path: polygon(50% 0, 100% 10%, 100% 67%, 50% 100%, 0 67%, 0 10%);
  box-shadow: inset 0 0 0 3px #eef5fb;
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: -7px;
  width: 18px;
  height: 7px;
  border: 3px solid var(--blue);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.brand-copy {
  display: grid;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0;
}

.brand-copy span {
  color: #172336;
  font-size: 12px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 27px 0;
  color: #27364a;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 10px 20px rgba(0, 75, 145, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 15px 28px rgba(0, 75, 145, 0.28);
}

.btn-ghost,
.btn-outline {
  color: var(--blue-dark);
  background: var(--white);
  border-color: #b6cce4;
}

.btn-ghost {
  min-height: 40px;
  box-shadow: 0 8px 18px rgba(7, 22, 41, 0.05);
}

.btn-outline {
  box-shadow: 0 10px 20px rgba(7, 22, 41, 0.05);
}

.btn-light {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-large {
  min-height: 52px;
  padding-inline: 24px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 24%, rgba(7, 87, 159, 0.08), transparent 24%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #eef3f8 46%, #f7f9fc 100%);
}

.hero-grid {
  min-height: 420px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 64px 28px 76px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-text {
  max-width: 430px;
  margin: 22px 0 28px;
  color: #405064;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  align-self: stretch;
  min-height: 420px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 30px 0 44px rgba(255, 255, 255, 0.62);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowFrame 14s ease-in-out infinite alternate;
}

.trust-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -42px;
}

.info-card,
.feature-card,
.step-card,
.review-card,
.contact-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px 22px;
}

.info-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.info-card span:not(.symbol) {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.symbol {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: var(--blue);
  font-size: 27px;
  font-weight: 900;
}

.star {
  color: var(--gold);
}

.pin-symbol::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 5px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin-symbol::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-3px);
}

.shield-symbol::before {
  content: "";
  width: 22px;
  height: 26px;
  border-radius: 7px 7px 10px 10px;
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 12%, 100% 68%, 50% 100%, 0 68%, 0 12%);
}

.shield-symbol::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 15px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) translate(-1px, -3px);
}

.section {
  padding-block: 44px 16px;
}

.section-heading {
  text-align: center;
  margin-bottom: 22px;
}

.section-heading.align-left {
  text-align: left;
}

.section h2,
.location-map h2,
.final-cta h2 {
  margin: 0;
  color: #121c2a;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.15;
  letter-spacing: 0;
}

.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 178px;
  padding: 28px 22px 22px;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover,
.review-card:hover,
.step-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 87, 159, 0.25);
  box-shadow: var(--shadow);
}

.feature-card h3,
.step-card h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  line-height: 1.25;
}

.feature-card p,
.step-card p,
.review-card p,
.contact-card p,
.faq-list p,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service .line-icon {
  margin-inline: auto;
}

.line-icon,
.mini-icon {
  --icon-color: var(--blue);
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  color: var(--icon-color);
}

.mini-icon {
  width: 18px;
  height: 18px;
}

.mini-icon.light,
.line-icon.light {
  --icon-color: #ffffff;
}

.mini-icon.phone::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 14px;
  border: 2px solid var(--icon-color);
  border-top-width: 4px;
  border-radius: 7px 7px 5px 5px;
  transform: rotate(-35deg);
}

.mini-icon.pin::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--icon-color);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.line-icon {
  width: 48px;
  height: 48px;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
}

.line-icon.clock {
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.line-icon.clock::before {
  width: 2px;
  height: 13px;
  left: 21px;
  top: 10px;
  background: var(--blue);
  border-radius: 2px;
}

.line-icon.clock::after {
  width: 13px;
  height: 2px;
  left: 21px;
  top: 24px;
  background: var(--blue);
  border-radius: 2px;
  transform-origin: left;
  transform: rotate(30deg);
}

.line-icon.search {
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.line-icon.search::after {
  width: 18px;
  height: 3px;
  right: -10px;
  bottom: 4px;
  background: var(--blue);
  border-radius: 4px;
  transform: rotate(45deg);
}

.line-icon.sparkle::before {
  left: 15px;
  top: 2px;
  width: 18px;
  height: 44px;
  background: var(--blue);
  clip-path: polygon(50% 0, 64% 34%, 100% 50%, 64% 66%, 50% 100%, 36% 66%, 0 50%, 36% 34%);
}

.line-icon.chat {
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.line-icon.chat::before,
.line-icon.chat::after {
  top: 21px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 10px 0 0 var(--blue);
}

.line-icon.chat::before {
  left: 13px;
}

.line-icon.chat::after {
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 0;
  top: auto;
  border-radius: 0 0 10px 0;
  background: transparent;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  box-shadow: none;
}

.line-icon.car::before {
  left: 7px;
  top: 18px;
  width: 34px;
  height: 16px;
  border: 3px solid var(--blue);
  border-radius: 6px 6px 4px 4px;
}

.line-icon.car::after {
  left: 12px;
  top: 30px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 18px 0 0 var(--blue);
}

.line-icon.leaf::before {
  left: 9px;
  top: 8px;
  width: 30px;
  height: 34px;
  background: #53b98d;
  border-radius: 32px 4px 32px 4px;
  transform: rotate(18deg);
}

.line-icon.leaf::after {
  left: 17px;
  top: 21px;
  width: 26px;
  height: 2px;
  background: #ffffff;
  transform: rotate(-35deg);
}

.line-icon.info {
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.line-icon.info::before {
  left: 21px;
  top: 18px;
  width: 5px;
  height: 18px;
  background: var(--blue);
  border-radius: 5px;
}

.line-icon.info::after {
  left: 20px;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.line-icon.handset::before {
  left: 14px;
  top: 4px;
  width: 17px;
  height: 34px;
  border: 3px solid var(--blue);
  border-top-width: 7px;
  border-radius: 12px 12px 8px 8px;
  transform: rotate(-35deg);
}

.line-icon.check {
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.line-icon.check::before {
  left: 15px;
  top: 14px;
  width: 12px;
  height: 20px;
  border: solid var(--blue);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.line-icon.small {
  width: 28px;
  height: 28px;
  border-width: 2px;
}

.line-icon.clock.small::before {
  left: 12px;
  top: 6px;
  height: 8px;
}

.line-icon.clock.small::after {
  left: 12px;
  top: 15px;
  width: 8px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 17%;
  right: 17%;
  border-top: 3px dotted #c7d4e2;
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 205px;
  padding: 52px 36px 28px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(7, 87, 159, 0.24);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  min-height: 170px;
  padding: 26px 24px 22px 58px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.quote {
  position: absolute;
  left: 24px;
  top: 26px;
  color: #c9d4df;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
}

.review-card strong {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.location-section {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: end;
}

.location-map h2 {
  margin-bottom: 14px;
}

.location-map img {
  width: 100%;
  min-height: 210px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-line .symbol {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.contact-line a {
  color: var(--ink);
  font-weight: 900;
}

.faq-section {
  padding-top: 34px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(7, 87, 159, 0.25);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  position: relative;
  min-height: 47px;
  display: flex;
  align-items: center;
  padding: 0 54px 0 24px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 17px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(5px) rotate(-135deg);
}

.faq-list p {
  padding: 0 24px 18px;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  margin-block: 32px 22px;
  padding: 22px 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #003d86);
  border-radius: var(--radius);
  box-shadow: 0 22px 42px rgba(0, 75, 145, 0.22);
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  animation: softPulse 2.4s ease-in-out infinite;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
}

.phone-number {
  color: var(--white);
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 900;
  letter-spacing: 0;
}

.footer {
  padding: 26px 0 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 46px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.footer a {
  display: block;
  margin: 5px 0;
  color: #1f334a;
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #6c7786;
  font-size: 12px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-bar [data-animate]:nth-child(2),
.feature-grid [data-animate]:nth-child(2),
.service-grid [data-animate]:nth-child(2),
.review-grid [data-animate]:nth-child(2) {
  transition-delay: 90ms;
}

.trust-bar [data-animate]:nth-child(3),
.feature-grid [data-animate]:nth-child(3),
.service-grid [data-animate]:nth-child(3),
.review-grid [data-animate]:nth-child(3) {
  transition-delay: 170ms;
}

.trust-bar [data-animate]:nth-child(4),
.feature-grid [data-animate]:nth-child(4),
.service-grid [data-animate]:nth-child(4) {
  transition-delay: 250ms;
}

@keyframes slowFrame {
  from {
    transform: scale(1.01) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(-8px);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links a {
    padding: 13px 12px;
  }

  .site-header.menu-open .nav-links a::after {
    bottom: 7px;
    left: 12px;
    right: auto;
    width: 46px;
  }

  .hero {
    background: #ffffff;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 26px;
  }

  .hero-copy {
    padding: 18px 0 22px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 46px;
  }

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

  .hero-media {
    min-height: 250px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .trust-bar,
  .feature-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar {
    margin-top: 18px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0;
  }

  .steps::before {
    top: 38px;
    bottom: 38px;
    left: 30px;
    right: auto;
    border-top: 0;
    border-left: 3px dotted #c7d4e2;
  }

  .step-card {
    min-height: 168px;
    padding: 26px 24px 26px 78px;
    text-align: left;
  }

  .step-card .line-icon {
    position: absolute;
    left: 78px;
    top: 26px;
    width: 34px;
    height: 34px;
    transform: translateX(0);
  }

  .step-card h3 {
    margin-top: 48px;
  }

  .step-number {
    top: 28px;
    left: 30px;
    width: 36px;
    height: 36px;
    font-size: 16px;
    transform: translateX(-50%);
  }

  .location-section {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .phone-number,
  .final-cta .btn {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  body {
    background: #ffffff;
  }

  .container {
    width: min(100% - 24px, 430px);
  }

  .site-header {
    border-bottom-color: #eef2f6;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .brand-mark {
    width: 30px;
    height: 36px;
    font-size: 8px;
  }

  .hero-grid {
    padding-top: 18px;
  }

  .eyebrow {
    display: none;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 32px;
    line-height: 1.08;
  }

  .hero h1 span {
    display: inline;
  }

  .hero-text {
    max-width: 330px;
    margin: 16px 0 20px;
    font-size: 14px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn-large,
  .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 156px;
    max-height: 176px;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .info-card {
    min-height: 74px;
    gap: 10px;
    padding: 13px 12px;
  }

  .info-card strong {
    font-size: 12px;
  }

  .info-card span:not(.symbol) {
    font-size: 11px;
  }

  .symbol {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 20px;
  }

  .section {
    padding-block: 30px 8px;
  }

  .section-heading {
    margin-bottom: 14px;
    text-align: left;
  }

  .section h2,
  .location-map h2,
  .final-cta h2 {
    font-size: 22px;
  }

  .feature-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    min-height: 0;
    padding: 18px;
    text-align: left;
    column-gap: 14px;
  }

  .feature-card .line-icon {
    grid-area: icon;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .feature-card h3 {
    grid-area: title;
    margin: 0 0 4px;
    font-size: 14px;
  }

  .feature-card p {
    grid-area: text;
    font-size: 12px;
  }

  .line-icon.clock::before {
    left: 17px;
    top: 7px;
    height: 11px;
  }

  .line-icon.clock::after {
    left: 17px;
    top: 20px;
    width: 10px;
  }

  .line-icon.search::after {
    width: 14px;
    right: -8px;
    bottom: 3px;
  }

  .line-icon.sparkle::before {
    left: 11px;
    width: 16px;
    height: 36px;
  }

  .line-icon.car::before {
    left: 4px;
    top: 14px;
    width: 30px;
    height: 14px;
  }

  .line-icon.car::after {
    left: 9px;
    top: 25px;
    width: 6px;
    height: 6px;
    box-shadow: 16px 0 0 var(--blue);
  }

  .review-card {
    min-height: 0;
    padding: 20px 18px 18px 46px;
  }

  .quote {
    left: 18px;
    top: 20px;
    font-size: 29px;
  }

  .location-map img {
    min-height: 190px;
  }

  .contact-card {
    padding: 22px 18px;
  }

  .faq-list summary {
    min-height: 54px;
    padding-left: 18px;
    font-size: 13px;
  }

  .faq-list p {
    padding-inline: 18px;
    font-size: 12px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
    text-align: left;
  }

  .cta-icon {
    width: 54px;
    height: 54px;
  }

  .phone-number {
    font-size: 30px;
  }

  .footer {
    padding-bottom: 72px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
