:root {
  --bg: #111111;
  --bg-soft: #161616;
  --bg-footer: #0a0a0a;
  --text: #f4f4f4;
  --muted: #c6c6c6;
  --accent: #ffb500;
  --accent-2: #ff8b00;
  --line: #3d2f00;
  --card: #191919;
  --radius: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(1220px 700px at 12% -10%, rgba(255, 187, 0, 0.16), transparent 68%),
    radial-gradient(1080px 640px at 88% 112%, rgba(255, 126, 0, 0.14), transparent 70%),
    radial-gradient(820px 420px at 50% 6%, rgba(255, 160, 0, 0.08), transparent 74%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20% -10%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(520px 360px at 14% 18%, rgba(255, 194, 0, 0.34), transparent 72%),
    radial-gradient(500px 340px at 84% 24%, rgba(255, 142, 0, 0.3), transparent 72%),
    radial-gradient(520px 350px at 36% 80%, rgba(255, 176, 0, 0.24), transparent 74%);
  filter: blur(62px) saturate(112%);
  opacity: 0.72;
  animation: ambientGlowDriftA 16s ease-in-out infinite alternate;
}

body::after {
  background:
    radial-gradient(460px 320px at 76% 74%, rgba(255, 170, 0, 0.24), transparent 72%),
    radial-gradient(420px 290px at 44% 42%, rgba(255, 110, 0, 0.22), transparent 74%),
    radial-gradient(500px 330px at 8% 86%, rgba(255, 190, 0, 0.2), transparent 74%);
  filter: blur(74px) saturate(110%);
  opacity: 0.58;
  animation: ambientGlowDriftB 20s ease-in-out infinite alternate;
}

body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

@keyframes ambientGlowDriftA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2.5%, -2%, 0) scale(1.04);
  }
}

@keyframes ambientGlowDriftB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-2%, 2.2%, 0) scale(1.03);
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  align-items: start;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: url("../img/hero-desktop.jpg") center bottom / cover no-repeat;
  transform-origin: 50% 60%;
  animation: heroDevicesWiggle 10s ease-in-out infinite;
  will-change: transform;
  z-index: 0;
}

@keyframes heroDevicesWiggle {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1.01);
  }
  25% {
    transform: translate3d(6px, -5px, 0) rotate(-0.35deg) scale(1.014);
  }
  50% {
    transform: translate3d(-5px, 3px, 0) rotate(0.28deg) scale(1.012);
  }
  75% {
    transform: translate3d(4px, -3px, 0) rotate(-0.22deg) scale(1.013);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1.01);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 58%, #111111 100%);
  z-index: 0;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 280px at 16% 12%, rgba(255, 196, 0, 0.24), transparent 74%),
    radial-gradient(500px 260px at 84% 14%, rgba(255, 132, 0, 0.2), transparent 74%);
  opacity: 0.76;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 50px 100px;
}

.hero-mobile-media {
  display: none;
}

.brand-logo {
  width: clamp(84px, 8vw, 132px);
  margin: 0 auto 20px;
}

h1 {
  margin: 0 auto;
  width: min(75%, 980px);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: transparent;
  background: linear-gradient(115deg, #ffe08b 0%, #ffbe33 26%, #ff9600 54%, #ffbf4a 78%, #ffeaac 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTitleGradient 7s linear infinite;
}

@keyframes heroTitleGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-copy {
  margin: 24px auto 0;
  width: min(75%, 980px);
  max-width: none;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.45;
  font-weight: 400;
  color: #ffffff;
}

.hero-copy strong {
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.section-dark {
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.split-reverse article {
  order: 2;
}

.split-reverse figure {
  order: 1;
}

article h2,
.section-title-center {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}

article p {
  margin: 0 0 12px;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.faq-section .section-title-center {
  margin-bottom: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #272a31;
  background: linear-gradient(180deg, #171a20 0%, #14171d 100%);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  line-height: 1.35;
  color: #f1f1f1;
}

.faq-item p {
  margin: 0;
  color: #c4cad4;
  font-size: 0.96rem;
  line-height: 1.55;
}

figure {
  margin: 0;
}

.wiggle-image {
  transform-origin: 50% 56%;
  animation: imageWiggle 9s ease-in-out infinite;
}

.wiggle-main {
  animation-duration: 8.6s;
}

.wiggle-soft {
  animation-duration: 10.8s;
}

@keyframes imageWiggle {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  22% {
    transform: translate3d(0.8px, -1px, 0) rotate(-0.5deg);
  }
  50% {
    transform: translate3d(-0.6px, 0.9px, 0) rotate(0.45deg);
  }
  75% {
    transform: translate3d(0.9px, -0.5px, 0) rotate(-0.35deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.cta-btn-inline {
  margin-top: 16px;
}

.hero .cta-btn {
  margin-top: 20px;
}

.cta-fa-icon {
  font-size: 1rem;
  line-height: 1;
}

.benefits-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.benefits-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: #ffffff;
  font-weight: 500;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #1f1f1f;
  font-size: 1rem;
  color: var(--accent);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.benefit-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.benefits-grid li:nth-child(1) .benefit-icon { color: #ffbe3b; }
.benefits-grid li:nth-child(2) .benefit-icon { color: #52c7ff; }
.benefits-grid li:nth-child(3) .benefit-icon { color: #ff8f62; }
.benefits-grid li:nth-child(4) .benefit-icon { color: #8de38d; }
.benefits-grid li:nth-child(5) .benefit-icon { color: #c29bff; }
.benefits-grid li:nth-child(6) .benefit-icon { color: #ffd36a; }

.benefits-grid li:nth-child(1) { border-color: #5d4500; }
.benefits-grid li:nth-child(2) { border-color: #1e4f62; }
.benefits-grid li:nth-child(3) { border-color: #5d2e22; }
.benefits-grid li:nth-child(4) { border-color: #2d5a2d; }
.benefits-grid li:nth-child(5) { border-color: #4b3a68; }
.benefits-grid li:nth-child(6) { border-color: #5c4b1f; }

.benefits-grid li:nth-child(1):hover { background: linear-gradient(180deg, #ffb500 0%, #ff9f00 100%); border-color: #ffb500; }
.benefits-grid li:nth-child(2):hover { background: linear-gradient(180deg, #14b9ff 0%, #0f88ff 100%); border-color: #15a7ff; }
.benefits-grid li:nth-child(3):hover { background: linear-gradient(180deg, #ff8f62 0%, #ff6d44 100%); border-color: #ff8f62; }
.benefits-grid li:nth-child(4):hover { background: linear-gradient(180deg, #6ecb5e 0%, #49a644 100%); border-color: #6ecb5e; }
.benefits-grid li:nth-child(5):hover { background: linear-gradient(180deg, #9b7dff 0%, #7658e6 100%); border-color: #9b7dff; }
.benefits-grid li:nth-child(6):hover { background: linear-gradient(180deg, #ffc860 0%, #ffab2f 100%); border-color: #ffc860; }

.benefits-grid li:hover {
  color: #101010;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 181, 0, 0.24);
}

.benefits-grid li:hover .benefit-icon {
  background: #20242b;
  color: #ffffff;
  transform: scale(1.03);
}

.benefits-cta {
  width: 100%;
  justify-content: center;
  border-radius: 14px;
  margin-top: 16px;
  animation: benefitsPulse 2.6s ease-in-out infinite;
}

.benefits-cta:hover {
  animation-play-state: paused;
}

@keyframes benefitsPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 181, 0, 0), 0 0 0 rgba(255, 181, 0, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 181, 0, 0.1), 0 0 20px rgba(255, 181, 0, 0.26);
  }
}

.section-title-center {
  text-align: center;
}

.reviews-section .section-title-center {
  margin-bottom: 42px;
}

.reviews-section {
  padding-top: 104px;
  padding-bottom: 112px;
}

.reviews-slider {
  --cards-per-view: 3;
  --card-gap: 18px;
  position: relative;
  margin-bottom: 10px;
}

.reviews-viewport {
  position: relative;
  overflow: hidden;
}

.reviews-viewport::before,
.reviews-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 74px;
  z-index: 2;
  pointer-events: none;
}

.reviews-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
}

.reviews-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
}

.reviews-track {
  display: flex;
  gap: var(--card-gap);
  transition: none;
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - (var(--cards-per-view) - 1) * var(--card-gap)) / var(--cards-per-view));
  min-height: 216px;
  padding: 20px 22px 24px;
  border-radius: 16px;
  border: 1px solid #1f2228;
  background: linear-gradient(180deg, #16191f 0%, #14171d 100%);
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.review-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #2c323b;
  background: #20242b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initial {
  font-size: 1.38rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.avatar-theme-1 { background: linear-gradient(160deg, #ff8a00 0%, #f36d00 100%); }
.avatar-theme-2 { background: linear-gradient(160deg, #0ea5a5 0%, #0b7c7c 100%); }
.avatar-theme-3 { background: linear-gradient(160deg, #7b61ff 0%, #5c45d8 100%); }
.avatar-theme-4 { background: linear-gradient(160deg, #3b82f6 0%, #225fbe 100%); }
.avatar-theme-5 { background: linear-gradient(160deg, #ef4444 0%, #c22828 100%); }
.avatar-theme-6 { background: linear-gradient(160deg, #14b8a6 0%, #0f8f81 100%); }
.avatar-theme-7 { background: linear-gradient(160deg, #f59e0b 0%, #d17d00 100%); }
.avatar-theme-8 { background: linear-gradient(160deg, #22c55e 0%, #169447 100%); }

.review-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.review-name {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
  color: #f5f5f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  font-size: 0.82rem;
  color: #8f97a3;
}

.review-google {
  width: 26px;
  height: 26px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  color: #ffc107;
}

.review-stars i {
  font-size: 0.94rem;
}

.review-stars .verified-icon {
  margin-left: 4px;
  color: #4f8dff;
  font-size: 0.82rem;
}

.review-text {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #f1f1f1;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 29, 35, 0.95);
  color: #d7dde6;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reviews-nav:hover {
  background: #222730;
  color: #ffffff;
  transform: translateY(-50%) scale(1.03);
}

.reviews-nav:active {
  transform: translateY(-50%) scale(0.98);
}

.reviews-nav-prev {
  left: -22px;
}

.reviews-nav-next {
  right: -22px;
}

.reviews-cert {
  width: fit-content;
  margin: 30px auto 0;
  padding: 7px 16px;
  border-radius: 6px;
  background: #14815a;
  color: #dcf8ee;
  font-size: 0.9rem;
  font-weight: 600;
}

.reviews-cert i {
  margin-left: 4px;
}

.reviews-actions {
  margin-top: 30px;
  text-align: center;
}

.reviews-actions .cta-btn {
  min-width: 430px;
  justify-content: center;
}

.map-wrap {
  margin-top: 12px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.footer {
  background: var(--bg-footer);
  margin-top: 0;
}

.footer-grid {
  padding: 64px 0 42px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 122px;
  margin-bottom: 16px;
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #dddddd;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 9px;
  color: var(--muted);
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  text-align: center;
  padding: 14px 16px 20px;
  font-size: 0.88rem;
  color: #dadada;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  z-index: 20;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    min-height: 800px;
  }

  .hero-content {
    padding-block: 35px 50px;
  }

  .brand-logo {
    width: clamp(88px, 14vw, 126px);
    margin-bottom: 10px;
  }

  h1 {
    width: min(80%, 840px);
    font-size: clamp(2rem, 3.8vw, 2.25rem);
  }

  .hero-copy {
    width: min(85%, 840px);
    margin-top: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-reverse article,
  .split-reverse figure {
    order: initial;
  }

  .reviews-section {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .reviews-section .section-title-center {
    margin-bottom: 34px;
  }

  .reviews-slider {
    --cards-per-view: 2;
    --card-gap: 14px;
  }

  .review-slide {
    min-height: 204px;
    padding: 16px 18px 20px;
  }

  .benefit-label {
    font-size: 1.04rem;
  }

  .reviews-nav {
    width: 40px;
    height: 40px;
  }

  .reviews-nav-prev {
    left: -14px;
  }

  .reviews-nav-next {
    right: -14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 54px 0 34px;
  }

  .faq-grid {
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    grid-template-rows: auto minmax(280px, 40vh);
    align-items: stretch;
    background: linear-gradient(180deg, #1a1d22 0%, #141820 45%, #0f1116 74%, #0c0d10 100%);
  }

  .hero::before {
    display: none;
  }

  .hero-overlay {
    display: block;
    z-index: 1;
    background: linear-gradient(180deg, rgba(17, 23, 32, 0.06) 0%, rgba(17, 23, 32, 0.16) 100%);
  }

  .hero-content {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-block: clamp(22px, 6vh, 46px) clamp(10px, 2.4vh, 20px);
    z-index: 2;
  }

  .brand-logo {
    width: clamp(94px, 25vw, 124px);
  }

  h1 {
    width: 100%;
    font-size: 1.875rem;
  }

  .hero-copy {
    width: 100%;
    margin-top: 14px;
  }

  .hero .cta-btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .split article > .cta-btn-inline:not(.benefits-cta) {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-mobile-media {
    position: relative;
    display: block;
    z-index: 0;
    width: 100%;
    min-height: min(40svh, 390px);
    margin-top: 0;
    background: url("../img/hero-mobile.jpg") center 92% / cover no-repeat;
    transform-origin: 50% 62%;
    animation: heroDevicesWiggle 11s ease-in-out infinite;
    will-change: transform;
  }

  .hero-mobile-media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    background: linear-gradient(180deg, #111720 0%, rgba(17, 23, 32, 0.52) 42%, rgba(17, 23, 32, 0) 100%);
  }

  .hero-mobile-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.06) 0%, rgba(17, 17, 17, 0.3) 100%);
  }

  .section {
    padding: 54px 0;
  }

  .faq-section .section-title-center {
    margin-bottom: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-item {
    padding: 14px 14px;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.93rem;
  }

  .reviews-section {
    padding-top: 82px;
    padding-bottom: 102px;
  }

  .reviews-section .section-title-center {
    margin-bottom: 24px;
  }

  .reviews-slider {
    --cards-per-view: 1;
    --card-gap: 12px;
  }

  .reviews-slider.is-vertical .reviews-viewport {
    height: clamp(520px, 70vh, 700px);
  }

  .reviews-slider.is-vertical .reviews-track {
    flex-direction: column;
    gap: var(--card-gap);
  }

  .reviews-slider.is-vertical .review-slide {
    flex: 0 0 auto;
    width: 100%;
    min-height: 164px;
    padding: 13px 14px 15px;
  }

  .review-name {
    font-size: 0.95rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .benefit-label {
    font-size: 1rem;
  }

  .benefit-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-viewport::before,
  .reviews-viewport::after {
    width: auto;
    height: 34px;
    left: 0;
    right: 0;
  }

  .reviews-viewport::before {
    top: 0;
    bottom: auto;
    background: linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
  }

  .reviews-viewport::after {
    top: auto;
    bottom: 0;
    background: linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
  }

  .reviews-actions .cta-btn {
    min-width: 100%;
  }

  .map-wrap iframe {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  h1 {
    animation: none;
    background-position: 50% 50%;
  }

  body::before,
  body::after {
    animation: none;
  }

  .benefits-cta {
    animation: none;
  }

  .hero::before,
  .hero-mobile-media,
  .wiggle-image {
    animation: none;
  }
}
