:root {
  --ink: #121d33;
  --muted: #647084;
  --soft: #f7fafb;
  --surface: #ffffff;
  --line: #e5edf2;
  --teal: #0a8792;
  --teal-dark: #076f78;
  --teal-soft: #e8f7f8;
  --amber: #ffb51f;
  --shadow: 0 20px 55px rgba(17, 30, 54, 0.08);
  --card-shadow: 0 14px 34px rgba(17, 30, 54, 0.045);
  --radius: 8px;
  --page-x: clamp(24px, 5.4vw, 96px);
  --content-max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8fafb;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 0 var(--page-x);
  border-bottom: 1px solid rgba(229, 237, 242, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.btn,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

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

.btn:focus-visible,
.menu-toggle:focus-visible,
.faq-item:focus-visible {
  outline: 3px solid rgba(7, 141, 157, 0.2);
  outline-offset: 3px;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(7, 141, 157, 0.28);
}

.btn-primary::before {
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  content: "";
  transform: translateX(-120%);
  animation: shine 4s ease-in-out infinite;
}

.btn-primary svg,
.btn-primary span,
.btn-primary {
  isolation: isolate;
}

.btn-outline {
  border-color: #a7cbd2;
  background: #ffffff;
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 20px rgba(17, 30, 54, 0.08);
}

.btn-small {
  padding: 0 16px;
  font-size: 0.86rem;
}

.btn-large {
  min-height: 58px;
  padding: 0 24px;
  font-size: 1.04rem;
}

.btn-large svg {
  width: 1.45rem;
  height: 1.45rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: clamp(96px, 9vw, 138px) var(--page-x) clamp(92px, 8vw, 122px);
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.15rem, 5.4vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 .headline-line {
  color: inherit;
}

.hero h1 .headline-accent {
  display: block;
  color: var(--teal);
}

.hero-text {
  max-width: 520px;
  margin: 30px 0 34px;
  color: #17233a;
  font-size: 1.26rem;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 30%, rgba(255, 255, 255, 0.55) 51%, rgba(255, 255, 255, 0.04) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 28%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: imageDrift 12s ease-in-out infinite alternate;
}

.facts,
.benefit-grid,
.services-grid,
.steps,
.reviews,
.info-section {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--page-x);
  padding-left: var(--page-x);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: clamp(56px, 5vw, 76px);
  padding-bottom: 26px;
}

.fact-card,
.feature-card,
.service-card,
.step-card,
.review-card,
.location-card,
.faq-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

.fact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 24px 28px;
}

.fact-card svg {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  color: var(--teal);
  stroke-width: 2.2;
}

.fact-card strong,
.fact-card span {
  display: block;
}

.fact-card strong {
  font-size: 1rem;
}

.fact-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.section {
  padding-top: clamp(74px, 7vw, 106px);
}

.compact-section {
  padding-top: clamp(76px, 6.4vw, 98px);
}

.section-title {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
  padding: 0 var(--page-x);
  text-align: center;
}

.section-title h2,
.location-card h2,
.faq-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
  line-height: 1.15;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 36px;
}

.feature-card {
  min-height: 220px;
  padding: 42px 30px 34px;
  text-align: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.feature-card:hover,
.service-card:hover {
  border-color: rgba(7, 141, 157, 0.35);
  box-shadow: 0 16px 30px rgba(7, 141, 157, 0.11);
  transform: translateY(-4px);
}

.feature-card svg {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 auto 18px;
  color: var(--teal);
  stroke-width: 2;
}

.feature-card h3,
.service-card h3,
.step-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.feature-card p {
  margin: 14px auto 0;
  max-width: 220px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  padding-top: 34px;
}

.service-card {
  display: grid;
  place-items: center;
  min-height: 154px;
  padding: 24px 16px;
  text-align: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.service-card svg {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 12px;
  color: var(--teal);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 28px 30px;
}

.step-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 3;
  width: 30px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.step-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
}

.step-card svg {
  width: 2.1rem;
  height: 2.1rem;
  color: var(--teal);
}

.step-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 34px;
}

.review-card {
  position: relative;
  min-height: 164px;
  padding: 30px 34px 28px 54px;
}

.quote {
  position: absolute;
  top: 16px;
  left: 22px;
  color: var(--teal);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.review-card p {
  margin: 0 0 12px;
  color: #26334a;
  font-size: 0.92rem;
  font-weight: 650;
}

.stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.info-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 34px;
  padding-top: 40px;
}

.location-card,
.faq-card {
  padding: 34px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.96fr) minmax(220px, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 26px;
}

.location-layout img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  object-fit: cover;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 750;
}

.contact-list svg {
  color: var(--teal);
}

.faq-card h2,
.location-card h2 {
  font-size: 1.55rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-item[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin: -2px 0 6px;
  padding: 0 16px 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.faq-answer.is-open {
  display: block;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  gap: 24px;
  align-items: center;
  width: min(calc(100% - (var(--page-x) * 2)), var(--content-max));
  margin: clamp(72px, 6vw, 96px) auto 0;
  padding: 36px 44px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 141, 157, 0.25);
}

.cta-phone,
.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--teal);
}

.cta-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.cta-phone p,
.cta-phone span,
.cta-whatsapp span {
  margin: 0;
}

.cta-phone p,
.cta-whatsapp strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
}

.cta-phone a {
  display: block;
  margin: -2px 0 2px;
  font-size: 2.55rem;
  font-weight: 950;
  line-height: 1;
}

.cta-phone span,
.cta-whatsapp span {
  font-size: 0.95rem;
  font-weight: 750;
  opacity: 0.92;
}

.cta-whatsapp {
  justify-self: end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(170px, 1.35fr) repeat(4, minmax(120px, 1fr));
  gap: 26px;
  margin-top: 64px;
  padding: 42px var(--page-x) 38px;
  border-top: 1px solid var(--line);
  background: #f9fbfc;
}

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

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.94rem;
}

.site-footer a,
.site-footer span,
.site-footer small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.75;
}

.site-footer a:hover {
  color: var(--teal);
}

.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
}

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

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

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

@keyframes shine {
  0%,
  42% {
    transform: translateX(-120%);
  }
  68%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes imageDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.065) translateX(-10px);
  }
}

@media (max-width: 1120px) {
  :root {
    --page-x: 28px;
  }

  .site-shell {
    margin: 0;
    border-radius: 0;
  }

  .site-header,
  .hero,
  .facts,
  .benefit-grid,
  .services-grid,
  .steps,
  .reviews,
  .info-section,
  .section-title,
  .site-footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .brand img {
    width: 132px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --page-x: 18px;
  }

  body {
    background: #ffffff;
  }

  .site-header {
    min-height: 74px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img {
    width: 126px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 6px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 10px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: var(--soft);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 0 var(--page-x) 54px;
    background: #ffffff;
  }

  .hero-media {
    position: relative;
    order: -1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: 250px;
    margin: 0 calc(var(--page-x) * -1) 34px;
    border-bottom: 1px solid var(--line);
  }

  .hero-media::after {
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.32) 35%, transparent 70%);
  }

  .hero-media img {
    object-position: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 2.7rem);
    line-height: 1.12;
  }

  .hero-text {
    max-width: 100%;
    margin: 18px 0 22px;
    font-size: 1rem;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 310px;
  }

  .btn-large {
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 30px var(--page-x) 18px;
  }

  .fact-card {
    min-height: 78px;
    padding: 14px 12px;
    gap: 10px;
  }

  .fact-card svg {
    width: 1.55rem;
    height: 1.55rem;
  }

  .fact-card strong {
    font-size: 0.86rem;
  }

  .fact-card span {
    font-size: 0.75rem;
  }

  .section {
    padding-top: 56px;
  }

  .section-title {
    padding-right: var(--page-x);
    padding-left: var(--page-x);
  }

  .section-title h2 {
    font-size: 1.32rem;
  }

  .benefit-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px var(--page-x) 0;
  }

  .feature-card {
    min-height: 138px;
    padding: 20px 12px 16px;
  }

  .feature-card svg,
  .service-card svg {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 10px;
  }

  .feature-card h3,
  .service-card h3 {
    font-size: 0.86rem;
  }

  .feature-card p {
    margin-top: 7px;
    font-size: 0.75rem;
  }

  .service-card {
    min-height: 112px;
    padding: 14px 10px;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px var(--page-x) 0;
  }

  .step-card {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .step-number {
    align-self: start;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .step-card svg {
    display: none;
  }

  .step-card h3 {
    font-size: 0.92rem;
  }

  .step-card p {
    font-size: 0.78rem;
  }

  .reviews {
    display: flex;
    gap: 14px;
    padding: 24px var(--page-x) 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 82%;
    min-height: 178px;
    padding: 24px 24px 22px 40px;
    scroll-snap-align: center;
  }

  .review-card p {
    font-size: 0.84rem;
  }

  .info-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px var(--page-x) 0;
  }

  .location-card,
  .faq-card {
    padding: 18px;
  }

  .location-card h2,
  .faq-card h2 {
    font-size: 1.18rem;
    text-align: center;
  }

  .location-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-layout img {
    max-height: 190px;
    object-position: top center;
  }

  .contact-list {
    gap: 11px;
  }

  .contact-list li {
    font-size: 0.84rem;
  }

  .faq-item {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .faq-answer {
    font-size: 0.78rem;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - (var(--page-x) * 2));
    margin: 42px auto 0;
    padding: 24px;
  }

  .cta-phone,
  .cta-whatsapp {
    justify-content: center;
    text-align: center;
  }

  .cta-whatsapp {
    justify-self: stretch;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

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

  .cta-icon svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  .cta-phone a {
    font-size: clamp(1.95rem, 10vw, 2.45rem);
  }

  .cta-phone p,
  .cta-whatsapp strong {
    font-size: 0.98rem;
  }

  .cta-phone span,
  .cta-whatsapp span {
    font-size: 0.78rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 20px 18px;
    padding: 34px var(--page-x) 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

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

  .fact-card,
  .feature-card,
  .service-card {
    min-height: auto;
  }

  .feature-card {
    padding-top: 28px;
    padding-bottom: 26px;
  }
}

@media (max-width: 430px) {
  :root {
    --page-x: 16px;
  }

  .site-header {
    padding-right: var(--page-x);
    padding-left: var(--page-x);
  }

  .hero-media {
    height: 220px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .fact-card {
    align-items: flex-start;
  }

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

  .review-card {
    flex-basis: 88%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@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;
  }

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