:root {
  --navy: #000c26;
  --navy-soft: #001437;
  --blue: #00b7e9;
  --blue-light: #5bbdea;
  --blue-card: #13b9e1;
  --green: #00ad16;
  --white: #f7fbfe;
  --muted: #d8e7f0;
  --text: #121822;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --scroll-progress: 0%;
  --hero-parallax: 0px;
  --gallery-parallax: 0px;
  --truck-parallax: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: var(--scroll-progress);
  height: 3px;
  background: var(--blue);
  pointer-events: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container,
.topbar__inner,
.header__inner,
.footer__inner {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  height: 45px;
  background: #0c348e;
  font-size: 13px;
}

.topbar__inner,
.topbar__contacts,
.topbar__socials {
  display: flex;
  align-items: center;
}

.topbar__inner {
  height: 100%;
  justify-content: space-between;
}

.topbar__contacts {
  gap: 24px;
}

.topbar__contacts a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar__contacts img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.topbar__socials {
  gap: 8px;
}

.topbar__socials a {
  display: block;
  width: 26px;
  height: 26px;
  transition:
    transform 240ms var(--ease-out-expo),
    filter 240ms ease;
}

.topbar__socials img {
  width: 100%;
  height: 100%;
}

.topbar__socials a:hover {
  filter: drop-shadow(0 4px 8px rgba(91, 189, 234, 0.5));
  transform: translateY(-2px) scale(1.08);
}

.header {
  position: relative;
  z-index: 20;
  height: 94px;
  background: #fbfcfd;
  color: #131820;
}

.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 118px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 37px;
  font-size: 14px;
}

.nav > a:not(.nav__cta) {
  position: relative;
  transition: color 180ms ease;
}

.nav > a:not(.nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out-expo);
}

.nav > a:not(.nav__cta):hover {
  color: #008fc0;
}

.nav > a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-weight: 500;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.nav__cta:hover,
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.nav__cta {
  min-width: 205px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #00aa14;
  color: #fff;
}

.nav__cta img,
.button img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  position: absolute;
  inset: -5%;
  background: url("assets/hero.png") center center / cover no-repeat;
  content: "";
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.06);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 12, 38, 0) 50%, var(--navy) 97%),
    linear-gradient(90deg, rgba(0, 12, 38, 0.38), transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 162px;
  text-align: center;
}

.eyebrow,
.benefits__heading > p,
.testimonials__heading > p {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #f4f9fd;
  font-size: clamp(48px, 5.25vw, 72px);
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 0.96;
}

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

.hero__description {
  margin: 25px auto 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.35;
}

.button {
  min-width: 350px;
  min-height: 71px;
  padding: 16px 32px;
  color: #fff;
  font-size: 19px;
}

.button--blue {
  background: linear-gradient(90deg, #5bbdea 0%, #0077ae 100%);
}

.button--green {
  background: linear-gradient(90deg, #00bb13 0%, #00740c 100%);
}

.hero__features {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 38px;
  left: 0;
  display: flex;
  width: min(940px, calc(100% - 48px));
  margin: auto;
  justify-content: space-between;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f4f9fd;
  font-size: 16px;
  line-height: 1.25;
  animation: hero-enter 700ms var(--ease-out-expo) both;
}

.hero-feature:nth-child(1) {
  animation-delay: 420ms;
}

.hero-feature:nth-child(2) {
  animation-delay: 500ms;
}

.hero-feature:nth-child(3) {
  animation-delay: 580ms;
}

.hero-feature:nth-child(4) {
  animation-delay: 660ms;
}

.feature-icon {
  width: 46px;
  color: var(--blue);
}

.feature-icon svg,
.service-card__icon svg,
.benefit-card__icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services {
  padding: 80px 0 50px;
  background: var(--navy);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 54px;
}

.section-intro h2 {
  margin: 0;
  font-size: 43px;
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.02;
}

.section-intro h2 span {
  color: var(--blue);
}

.section-intro p {
  margin: 0 0 4px;
  color: #eff7fb;
  font-size: 16px;
  line-height: 1.75;
}

.section-intro strong {
  display: block;
  font-weight: 700;
}

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

.service-card {
  min-height: 348px;
  padding: 42px;
  border-radius: 20px;
  background: #fbfbfc;
  color: var(--text);
  transition:
    transform 350ms var(--ease-out-expo),
    box-shadow 350ms var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 52px rgba(0, 183, 233, 0.14);
}

.service-card__icon {
  transition:
    transform 350ms var(--ease-out-expo),
    background-color 250ms ease;
}

.service-card:hover .service-card__icon {
  background: #cef3fc;
  transform: rotate(-6deg) scale(1.08);
}

.service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 19px;
  padding: 9px;
  place-items: center;
  border-radius: 13px;
  background: #e5f8fd;
  color: var(--blue);
}

.service-card h3 {
  margin: 0 0 20px;
  font-size: 21px;
}

.service-card p {
  margin: 0;
  color: #778398;
  font-size: 17px;
  line-height: 1.5;
}

.showcase {
  background: #fafafa;
  color: #202128;
}

.showcase__dark {
  position: relative;
  height: 400px;
  background: var(--navy);
}

.photo-strip {
  position: absolute;
  inset: 8px 0 auto;
  height: 520px;
  transform: translate3d(0, var(--gallery-parallax), 0);
  will-change: transform;
}

.photo-card {
  position: absolute;
  top: 0;
  width: 282px;
  height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #ddd;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out-expo);
}

.photo-card:hover img {
  transform: scale(1.065);
}

.photo-card--far-left {
  left: -106px;
  top: 172px;
  transform: rotate(-38deg);
}

.photo-card--left {
  left: calc(50% - 510px);
  top: 66px;
  transform: rotate(-15deg);
}

.photo-card--center {
  left: 50%;
  transform: translateX(-50%);
}

.photo-card--right {
  right: calc(50% - 510px);
  top: 66px;
  transform: rotate(15deg);
}

.photo-card--far-right {
  right: -106px;
  top: 172px;
  transform: rotate(38deg);
}

.testimonials {
  min-height: 560px;
  padding: 80px 20px 40px;
  background: #fafafa;
}

.testimonials__heading {
  margin-bottom: 52px;
  text-align: center;
}

.testimonials__heading > p {
  margin-bottom: 7px;
  color: #252730;
  font-size: 11px;
}

.testimonials__heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.06;
}

.testimonials__heading h2 span {
  color: var(--blue);
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.testimonial-window {
  width: 750px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial {
  flex: 0 0 365px;
  min-height: 302px;
  padding: 26px 30px;
  border-radius: 15px;
  background: #f5f5f5;
  transition:
    box-shadow 320ms var(--ease-out-expo),
    translate 320ms var(--ease-out-expo);
}

.testimonial:hover {
  box-shadow: 0 18px 42px rgba(0, 12, 38, 0.09);
  translate: 0 -7px;
}

.testimonial__person {
  margin-bottom: 18px;
}

.testimonial__person strong,
.testimonial__person span {
  display: block;
}

.testimonial__person strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.testimonial__person span {
  color: #ff8a22;
  letter-spacing: 2px;
}

.testimonial > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
}

.carousel-arrow {
  width: 53px;
  height: 53px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 220ms var(--ease-out-expo),
    filter 220ms ease;
}

.carousel-arrow img {
  width: 100%;
  height: 100%;
}

.carousel-arrow[data-carousel="prev"] img {
  transform: rotate(180deg);
}

.carousel-arrow:hover {
  filter: drop-shadow(0 12px 14px rgba(0, 183, 233, 0.25));
  transform: scale(1.08);
}

.carousel-arrow:active {
  transform: scale(0.94);
}

.benefits {
  min-height: 690px;
  padding: 70px 0;
  background: var(--navy);
  text-align: center;
}

.benefits__heading {
  margin-bottom: 58px;
}

.benefits__heading > p {
  margin-bottom: 9px;
  color: #fff;
  font-size: 12px;
}

.benefits__heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
}

.benefits__heading h2 span {
  color: var(--blue);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}

.benefit-card {
  min-height: 337px;
  padding: 42px;
  border-radius: 20px;
  background: var(--blue-card);
  color: #fff;
  transition:
    transform 350ms var(--ease-out-expo),
    box-shadow 350ms var(--ease-out-expo),
    background-color 300ms ease;
}

.benefit-card:hover {
  background: #08add5;
  box-shadow: 0 22px 55px rgba(0, 183, 233, 0.2);
  transform: translateY(-9px);
}

.benefit-card__icon {
  transition: transform 350ms var(--ease-out-expo);
}

.benefit-card:hover .benefit-card__icon {
  transform: translateY(-3px) rotate(5deg) scale(1.08);
}

.benefit-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 23px;
  padding: 10px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.benefit-card h3 {
  margin: 0 0 17px;
  font-size: 21px;
  line-height: 1.15;
}

.benefit-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.benefits .button {
  margin-top: 30px;
}

.location {
  padding: 10px 0 50px;
  background: var(--navy);
}

.location-card {
  width: min(942px, calc(100% - 48px));
  min-height: 966px;
  margin: auto;
  padding: 62px 41px 48px;
  border-radius: 15px;
  background: #f2f2f2;
  color: #111;
  text-align: center;
}

.location-card h2 {
  margin: 0 0 38px;
  color: var(--blue);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1.4px;
}

.address {
  display: grid;
  grid-template-columns: 170px 1px 32px 1fr;
  min-height: 118px;
  margin: 0 auto 24px;
  padding: 25px 38px;
  align-items: center;
  gap: 24px;
  border: 1px solid #dadada;
  border-radius: 15px;
  background: linear-gradient(90deg, #e8edf1 0%, #f2f2f2 100%);
  text-align: left;
}

.address strong {
  font-size: 20px;
  line-height: 1.5;
}

.address__line {
  width: 1px;
  height: 38px;
  background: var(--blue);
}

.address svg {
  width: 28px;
  fill: none;
  stroke: #00aede;
  stroke-width: 2;
}

.address p {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.map {
  position: relative;
  width: 100%;
  height: 482px;
  overflow: hidden;
  border-radius: 20px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(1.04);
}

.hours {
  margin: 28px 0 23px;
  font-size: 20px;
}

.location-card .button {
  min-height: 64px;
}

.faq {
  position: relative;
  min-height: 885px;
  overflow: hidden;
  background: var(--navy);
}

.faq__inner {
  position: relative;
  width: min(1148px, calc(100% - 48px));
  min-height: 885px;
  margin: auto;
}

.faq__content {
  position: relative;
  z-index: 4;
  width: 520px;
  padding-top: 120px;
}

.faq__title {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 44px;
}

.faq__title > span {
  display: grid;
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  place-items: center;
  border: 5px solid rgba(0, 140, 190, 0.42);
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  font-size: 55px;
  font-weight: 600;
}

.faq__title h2 {
  margin: -4px 0 0;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 0.94;
}

.accordion {
  display: grid;
  gap: 8px;
}

.accordion-item {
  overflow: hidden;
  border-radius: 20px;
  background: var(--blue);
  transition:
    transform 240ms var(--ease-out-expo),
    background-color 240ms ease;
}

.accordion-item:hover {
  background: #08add5;
  transform: translateX(7px);
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 61px;
  padding: 16px 21px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: 400 15px/1.35 "DM Sans", sans-serif;
  text-align: left;
}

.accordion-item button span {
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
  transition: transform 250ms ease;
}

.accordion-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  background: #eaf9fd;
  color: #163243;
  transition: grid-template-rows 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item__answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 21px;
  font-size: 14px;
  line-height: 1.5;
}

.accordion-item.is-open .accordion-item__answer {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-item__answer p {
  padding-block: 16px 20px;
}

.accordion-item.is-open button span {
  transform: rotate(45deg);
}

.faq__visual {
  position: absolute;
  z-index: 2;
  right: -60px;
  bottom: 65px;
  width: 750px;
  height: 580px;
}

.faq__visual img {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 55px;
  width: 720px;
  transform: translate3d(-50%, var(--truck-parallax), 0);
  will-change: transform;
}

.ring {
  position: absolute;
  border-radius: 50%;
}

.ring--outer {
  top: -8px;
  left: 50%;
  width: 530px;
  height: 530px;
  border: 14px solid var(--blue);
  clip-path: polygon(0 0, 100% 0, 100% 24%, 74% 24%, 74% 100%, 0 100%);
  transform: translateX(-50%) rotate(-17deg);
}

.ring--inner {
  top: 70px;
  left: 50%;
  width: 390px;
  height: 390px;
  background: #00d0ec;
  transform: translateX(-50%);
}

.footer {
  height: 150px;
  background: var(--navy-soft);
}

.footer__inner {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  height: 100%;
  align-items: center;
  gap: 30px;
  color: #c2d4df;
}

.footer img {
  width: 112px;
  height: 55px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 700ms var(--ease-out-expo) var(--reveal-delay, 0ms),
    transform 700ms var(--ease-out-expo) var(--reveal-delay, 0ms);
}

.reveal.reveal--left {
  transform: translate3d(-42px, 0, 0);
}

.reveal.reveal--right {
  transform: translate3d(42px, 0, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fade-reveal {
  opacity: 0;
  transition: opacity 800ms var(--ease-out-expo) var(--reveal-delay, 0ms);
}

.fade-reveal.is-visible {
  opacity: 1;
}

.topbar__contacts,
.topbar__socials,
.brand,
.nav {
  animation: header-enter 650ms var(--ease-out-expo) both;
}

.topbar__socials {
  animation-delay: 100ms;
}

.brand {
  animation-delay: 160ms;
}

.nav {
  animation-delay: 240ms;
}

.service-grid .service-card,
.benefit-grid .benefit-card {
  opacity: 0;
  scale: 0.96;
  transition:
    opacity 620ms var(--ease-out-expo),
    scale 620ms var(--ease-out-expo),
    transform 350ms var(--ease-out-expo),
    box-shadow 350ms var(--ease-out-expo),
    background-color 300ms ease;
}

.service-grid.is-visible .service-card,
.benefit-grid.is-visible .benefit-card {
  opacity: 1;
  scale: 1;
}

.service-grid.is-visible .service-card:nth-child(2),
.benefit-grid.is-visible .benefit-card:nth-child(2) {
  transition-delay: 100ms;
}

.service-grid.is-visible .service-card:nth-child(3),
.benefit-grid.is-visible .benefit-card:nth-child(3) {
  transition-delay: 200ms;
}

.showcase__dark .photo-card {
  opacity: 0;
  clip-path: inset(45% 0 45% 0 round 16px);
  transition:
    opacity 800ms var(--ease-out-expo),
    clip-path 900ms var(--ease-out-expo);
}

.showcase__dark.is-visible .photo-card {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 16px);
}

.showcase__dark.is-visible .photo-card:nth-child(2) {
  transition-delay: 80ms;
}

.showcase__dark.is-visible .photo-card:nth-child(3) {
  transition-delay: 160ms;
}

.showcase__dark.is-visible .photo-card:nth-child(4) {
  transition-delay: 240ms;
}

.showcase__dark.is-visible .photo-card:nth-child(5) {
  transition-delay: 320ms;
}

.testimonial-carousel.is-visible .testimonial {
  animation: testimonial-enter 650ms var(--ease-out-expo) both;
}

.testimonial-carousel.is-visible .testimonial:nth-child(2) {
  animation-delay: 100ms;
}

.testimonial-carousel.is-visible .testimonial:nth-child(3) {
  animation-delay: 200ms;
}

.testimonial-carousel.is-visible .testimonial:nth-child(4) {
  animation-delay: 300ms;
}

.testimonial-carousel.is-visible .testimonial:nth-child(5) {
  animation-delay: 400ms;
}

.testimonial-carousel.is-visible .testimonial:nth-child(6) {
  animation-delay: 500ms;
}

.location-card.reveal.is-visible .address,
.location-card.reveal.is-visible .map,
.location-card.reveal.is-visible .hours,
.location-card.reveal.is-visible .button {
  animation: detail-enter 650ms var(--ease-out-expo) both;
}

.location-card.reveal.is-visible .map {
  animation-delay: 100ms;
}

.location-card.reveal.is-visible .hours {
  animation-delay: 180ms;
}

.location-card.reveal.is-visible .button {
  animation-delay: 240ms;
}

.accordion.reveal.is-visible .accordion-item {
  animation: faq-enter 600ms var(--ease-out-expo) both;
}

.accordion.reveal.is-visible .accordion-item:nth-child(2) {
  animation-delay: 70ms;
}

.accordion.reveal.is-visible .accordion-item:nth-child(3) {
  animation-delay: 140ms;
}

.accordion.reveal.is-visible .accordion-item:nth-child(4) {
  animation-delay: 210ms;
}

.accordion.reveal.is-visible .accordion-item:nth-child(5) {
  animation-delay: 280ms;
}

.accordion.reveal.is-visible .accordion-item:nth-child(6) {
  animation-delay: 350ms;
}

.hero__content > * {
  animation: hero-enter 800ms var(--ease-out-expo) both;
}

.hero__content > :nth-child(2) {
  animation-delay: 100ms;
}

.hero__content > :nth-child(3) {
  animation-delay: 200ms;
}

.hero__content > :nth-child(4) {
  animation-delay: 300ms;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes testimonial-enter {
  from {
    opacity: 0;
    scale: 0.96;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes detail-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes faq-enter {
  from {
    opacity: 0;
    translate: -22px 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

.footer p,
.footer small {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
}

.footer p {
  text-align: center;
}

.footer small {
  text-align: right;
}

@media (max-width: 980px) {
  .nav {
    gap: 20px;
  }

  .nav > a:not(.nav__cta) {
    display: none;
  }

  .hero__features {
    width: calc(100% - 40px);
    gap: 22px;
  }

  .hero-feature {
    font-size: 14px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-intro p br {
    display: none;
  }

  .photo-card--far-left,
  .photo-card--far-right {
    display: none;
  }

  .photo-card--left {
    left: 6%;
  }

  .photo-card--right {
    right: 6%;
  }

  .faq__content {
    width: 48%;
  }

  .faq__visual {
    right: -240px;
  }
}

@media (max-width: 760px) {
  .container,
  .topbar__inner,
  .header__inner,
  .footer__inner {
    width: min(100% - 32px, 560px);
  }

  .topbar {
    height: 38px;
  }

  .topbar__contacts a:first-child,
  .topbar__socials {
    display: none;
  }

  .header {
    height: 78px;
  }

  .brand img {
    width: 96px;
  }

  .nav__cta {
    min-width: 0;
    padding: 11px 16px;
    font-size: 13px;
  }

  .nav__cta img {
    width: 17px;
    height: 17px;
  }

  .hero {
    min-height: 820px;
    background-position: 64% center;
  }

  .hero__content {
    padding-top: 105px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    letter-spacing: -2px;
  }

  .hero__description {
    max-width: 520px;
    font-size: 16px;
  }

  .hero__description br {
    display: none;
  }

  .button {
    width: min(100%, 350px);
    min-width: 0;
  }

  .hero__features {
    bottom: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }

  .feature-icon {
    width: 36px;
  }

  .services {
    padding: 78px 0 70px;
  }

  .section-intro h2 {
    font-size: 36px;
  }

  .service-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .benefit-card {
    min-height: 0;
  }

  .showcase__dark {
    height: 345px;
  }

  .photo-card {
    width: 210px;
    height: 320px;
  }

  .photo-card--left {
    left: -68px;
    top: 46px;
  }

  .photo-card--center {
    width: 220px;
  }

  .photo-card--right {
    right: -68px;
    top: 46px;
  }

  .testimonials {
    min-height: 600px;
    padding-top: 105px;
  }

  .testimonial-window {
    width: min(365px, calc(100vw - 118px));
  }

  .testimonial {
    flex-basis: min(365px, calc(100vw - 118px));
  }

  .testimonial-carousel {
    gap: 10px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .benefits {
    padding: 85px 0;
  }

  .benefits__heading h2 {
    font-size: 33px;
  }

  .location {
    padding: 30px 0 100px;
  }

  .location-card {
    width: calc(100% - 24px);
    min-height: 0;
    padding: 45px 16px;
  }

  .location-card h2 {
    font-size: 37px;
  }

  .address {
    grid-template-columns: 1px 26px 1fr;
    padding: 22px 18px;
    gap: 14px;
  }

  .address strong {
    grid-column: 1 / -1;
    font-size: 17px;
  }

  .address strong br {
    display: none;
  }

  .address p {
    font-size: 15px;
  }

  .map {
    height: 360px;
  }

  .hours {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq {
    min-height: 1100px;
  }

  .faq__inner {
    width: min(100% - 32px, 560px);
    min-height: 1100px;
  }

  .faq__content {
    width: 100%;
    padding-top: 95px;
  }

  .faq__title {
    gap: 17px;
  }

  .faq__title > span {
    width: 70px;
    height: 70px;
    font-size: 45px;
  }

  .faq__title h2 {
    font-size: 43px;
  }

  .faq__visual {
    right: 50%;
    bottom: 30px;
    width: 620px;
    height: 440px;
    transform: translateX(50%);
  }

  .faq__visual img {
    left: 50%;
    bottom: 35px;
    width: 590px;
    transform: translate3d(-50%, var(--truck-parallax), 0);
  }

  .ring--outer {
    left: 50%;
    width: 430px;
    height: 430px;
  }

  .ring--inner {
    top: 62px;
    left: 50%;
    width: 315px;
    height: 315px;
  }

  .footer {
    height: auto;
    min-height: 220px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    padding: 38px 0;
    justify-items: center;
    gap: 18px;
  }

  .footer p,
  .footer small {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .fade-reveal {
    opacity: 1;
  }

  .hero__content > * {
    animation: none;
  }

  .hero-feature {
    animation: none;
  }

  .topbar__contacts,
  .topbar__socials,
  .brand,
  .nav,
  .testimonial-carousel.is-visible .testimonial,
  .location-card.reveal.is-visible .address,
  .location-card.reveal.is-visible .map,
  .location-card.reveal.is-visible .hours,
  .location-card.reveal.is-visible .button,
  .accordion.reveal.is-visible .accordion-item {
    animation: none;
  }

  .service-grid .service-card,
  .benefit-grid .benefit-card,
  .showcase__dark .photo-card {
    opacity: 1;
    scale: 1;
    clip-path: none;
  }
}
