* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #ff7417 #eef6fa;
  scrollbar-width: thin;
  overflow-x: hidden;
}

body {
  color: #0051A2;
  background: #fff;
  font-family: "Nunito Sans", system-ui, sans-serif;
  line-height: 1.55;
  width: 100%;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #eef6fa;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff7417, #e35d07);
  border: 3px solid #eef6fa;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0051A2;
}

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

.nowrap {
  white-space: nowrap;
}

.siteHeader {
  position: sticky;
  top: 38px;
  z-index: 20;
  background: transparent;
  backdrop-filter: blur(16px);
  margin-top: 30px;
  margin-bottom: 58px;
}

.navWrap {
  background: rgba(240, 240, 240, .94);
  border-bottom: 1px solid rgba(219, 231, 238, .85);
  box-shadow: 0 14px 34px rgba(7, 63, 99, .08);
}

.nav {
  position: relative;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.navBubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.navBubbles span {
  position: absolute;
  left: -44px;
  bottom: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 81, 162, .22);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .95), rgba(219, 239, 249, .28) 48%, rgba(255, 255, 255, 0) 70%);
  box-shadow: inset -3px -4px 8px rgba(0, 81, 162, .08);
  opacity: 0;
  animation: navBubbleFloat 30s ease-in-out infinite;
}

.navBubbles span:nth-child(2) {
  width: 12px;
  height: 12px;
  bottom: 38px;
  animation-delay: 2.5s;
}

.navBubbles span:nth-child(3) {
  width: 24px;
  height: 24px;
  bottom: 24px;
  animation-delay: 5s;
}

.navBubbles span:nth-child(4) {
  width: 15px;
  height: 15px;
  bottom: 50px;
  animation-delay: 7.5s;
}

.navBubbles span:nth-child(5) {
  width: 20px;
  height: 20px;
  bottom: 16px;
  animation-delay: 10s;
}

.navBubbles span:nth-child(6) {
  width: 10px;
  height: 10px;
  bottom: 28px;
  animation-delay: 12.5s;
}

.navBubbles span:nth-child(7) {
  width: 26px;
  height: 26px;
  bottom: 44px;
  animation-delay: 15s;
}

.navBubbles span:nth-child(8) {
  width: 14px;
  height: 14px;
  bottom: 12px;
  animation-delay: 17.5s;
}

.navBubbles span:nth-child(9) {
  width: 22px;
  height: 22px;
  bottom: 54px;
  animation-delay: 20s;
}

@keyframes navBubbleFloat {
  0%, 72% {
    opacity: 0;
    transform: translateX(0) translateY(8px) scale(.8);
  }

  76% {
    opacity: .72;
  }

  88% {
    opacity: .62;
    transform: translateX(55vw) translateY(-8px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(calc(100vw + 90px)) translateY(-18px) scale(.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .navBubbles span {
    animation: none;
  }
}

.brand {
  display: block;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: 260px;
  margin: -36px 0 -54px;
  position: relative;
  z-index: 30;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(8, 119, 184, .2));
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #445668;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.navRight {
  grid-column: 2;
  grid-row: 1;
  justify-content: flex-end;
}

.navLinks a:hover {
  color: #ff7417;
}

.menuToggle {
  display: none;
  position: relative;
  z-index: 70;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #0051A2;
  color: #fff;
  cursor: pointer;
  place-items: center;
  padding: 10px;
}

.menuToggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mobileMenu {
  display: none;
}

.mobileMenuClose {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: #ff7417;
  color: #fff;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .25);
  transition: .2s ease;
}

.btn:hover {
  background: #e35d07;
  transform: translateY(-1px);
}

.btnSecondary {
  background: #fff;
  color: #073f63;
  border: 1px solid #dbe7ee;
  box-shadow: none;
}

.btn img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #0051a2 0%, rgba(7, 43, 65, .8) 45%, rgba(255, 116, 23, .22) 100%),
    url("images/higienizacao-sofa.webp") center right / cover;
  color: #fff;
}

.heroInner {
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 68px 0 82px;
}

.heroCopy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff3e8;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7417;
  box-shadow: 0 0 0 5px rgba(249, 115, 22, .18);
}

.hero h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.03;
  max-width: 760px;
  font-weight: 900;
}

.heroCopy p {
  max-width: 620px;
  color: #fff1e7;
  font-size: 19px;
  margin: 24px 0 32px;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trustRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.trustRowFooter {
  margin-top: 0;
  margin-bottom: 64px;
}

.trustCard {
  background: #fff;
  border: 1px solid rgba(255, 116, 23, .18);
  border-top: 4px solid #ff7417;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 16px 38px rgba(16, 32, 51, .09);
}

.trustCard strong {
  display: block;
  color: #e35d07;
  font-size: 21px;
  margin-bottom: 3px;
}

.trustCard span {
  color: #5f6f82;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.soft {
  background: #fff9f2;
}

.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.kicker {
  color: #ff7417;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.section h2,
.ctaBand h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  max-width: 720px;
  font-weight: 900;
}

.sectionHead p {
  max-width: 410px;
  color: #5f6f82;
  font-size: 15px;
}

.videoShowcase {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 34px;
  align-items: center;
}

.videoShowcase p {
  color: #5f6f82;
  margin-top: 14px;
}

.videoStrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.videoCard {
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 8px;
  background: #073f63;
  box-shadow: 0 22px 60px rgba(16, 32, 51, .14);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  text-align: left;
}

.videoCard:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 116, 23, .32), 0 22px 60px rgba(16, 32, 51, .14);
}

.videoCard video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoCard > span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 50px);
  white-space: nowrap;
  line-height: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  color: #e35d07;
  padding: 5px 6px;
  font-size: 9px;
  font-weight: 900;
  overflow: hidden;
}

.videoCard > .videoLabelLong {
  font-size: 8px;
  padding-inline: 4px;
}

.videoInstagram {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  filter: drop-shadow(0 4px 8px rgba(16, 32, 51, .28));
}

.videoInstagram:hover {
  color: #ff7417;
}

.videoInstagram:hover .footerGlyph {
  background: #ff7417;
}

.videoInstagram .footerGlyph {
  width: 21px;
  height: 21px;
}

.videoModal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(7, 18, 30, .82);
  backdrop-filter: blur(6px);
  padding: 24px;
}

.videoModal.isOpen {
  display: grid;
}

.videoModalInner {
  position: relative;
  width: min(92vw, 520px);
  max-height: 92vh;
  display: grid;
  place-items: center;
}

.videoModalInner video {
  width: auto;
  max-width: 100%;
  height: min(86vh, 820px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

.videoModalClose {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ff7417;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.videoModalClose:hover {
  background: #e35d07;
}

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

.serviceCard,
.step,
.testimonial,
.faqItem {
  background: #fff;
  border: 1px solid rgba(255, 116, 23, .16);
  border-radius: 8px;
}

.serviceCard {
  overflow: hidden;
  transition: .2s ease;
}

.serviceCard:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 116, 23, .42);
  box-shadow: 0 22px 60px rgba(16, 32, 51, .14);
}

.serviceCard img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.serviceCard div {
  padding: 18px;
}

.serviceCard h3,
.step h3,
.faqItem h3 {
  font-size: 17px;
  margin-bottom: 7px;
}

.serviceCard p,
.step p,
.testimonial p,
.faqItem p,
.check span {
  color: #5f6f82;
  font-size: 14px;
}

.split,
.faq {
  display: grid;
  gap: 44px;
}

.resultSlider {
  display: grid;
  gap: 16px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.resultViewport {
  position: relative;
  aspect-ratio: 2941 / 1440;
  min-height: 360px;
  max-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #dbe7ee;
  box-shadow: 0 22px 60px rgba(16, 32, 51, .14);
  animation: slideFade .38s ease;
}

.resultViewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sliderControls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.sliderButton {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #102033;
  cursor: pointer;
  box-shadow: none;
  padding: 0;
  display: grid;
  place-items: center;
}

.sliderButton svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: .2s ease;
}

.sliderButton:hover {
  color: #ff7417;
  background: transparent;
}

.sliderButton:hover svg {
  transform: scale(1.08);
}

.sliderDots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sliderDot,
.sliderDotActive {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #c3d6df;
  cursor: pointer;
}

.sliderDotActive {
  width: 28px;
  border-radius: 999px;
  background: #ff7417;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  padding: 24px;
  min-height: 210px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, .05);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff0df;
  color: #e35d07;
  font-weight: 800;
  margin-bottom: 22px;
}

.split {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.splitMedia {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(16, 32, 51, .14);
}

.splitMedia img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.checkList {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}

.check {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
}

.checkIcon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff0df;
  color: #e35d07;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.testimonial {
  padding: 24px;
  border-top: 4px solid #ffc857;
}

.testimonialSlider {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.testimonialSlider .testimonial {
  min-height: 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 22px 60px rgba(16, 32, 51, .1);
  animation: slideFade .38s ease;
}

@keyframes slideFade {
  from {
    opacity: .45;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stars {
  color: #ff7417;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 15px;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  font-size: 14px;
}

.ctaBand {
  background:
    linear-gradient(90deg, #0051A2, rgba(255, 116, 23, .72)),
    url("https://images.unsplash.com/photo-1617103996702-96ff29b1c467?auto=format&fit=crop&w=1600&q=84") center / cover;
  color: #fff;
  border-radius: 8px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.ctaBand p {
  max-width: 610px;
  color: #d9edf3;
  margin-top: 10px;
}

.faq {
  grid-template-columns: .82fr 1.18fr;
}

.faqList {
  display: grid;
  gap: 12px;
}

.faqItem {
  padding: 20px;
  border-left: 4px solid #ff7417;
}

.footer {
  position: relative;
  background: #0051A2;
  color: #b7d5df;
  padding: 0;
}

.footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 0;
}

.footerLinks {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-end;
}

.footerActions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-end;
}

.footerIconRow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footerNav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #d9edf3;
  font-size: 13px;
  font-weight: 800;
}

.footerNav a:hover {
  color: #ff7417;
}

.footerSocials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footerIconLink,
.footerIconMuted {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
}

.footerIconLink:hover {
  color: #ff7417;
}

.footerIconMuted {
  opacity: .85;
}

.footerGlyph {
  display: block;
  width: 32px;
  height: 32px;
  background: currentColor;
}

.instagramGlyph {
  mask: url("icons/instagram-icon.svg") center / contain no-repeat;
  -webkit-mask: url("icons/instagram-icon.svg") center / contain no-repeat;
}

.emailGlyph {
  mask: url("icons/email-icon.svg") center / contain no-repeat;
  -webkit-mask: url("icons/email-icon.svg") center / contain no-repeat;
}

.backToTop {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
}

.backToTop:hover {
  color: #ff7417;
}

.backToTop svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer .brand {
  width: 240px;
  margin: 0;
  justify-self: auto;
}

.footer p {
  max-width: 500px;
  font-size: 13px;
  margin-top: 10px;
}

.footerDeveloperBar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 4px 20px;
  background: #ffffff;
}

.copyright {
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.cookieBanner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 40;
  max-width: 860px;
  margin: 0 auto;
  display: none;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  background: rgba(16, 32, 51, .96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(16, 32, 51, .24);
  padding: 16px 18px;
}

.cookieBanner.isVisible {
  display: flex;
}

.cookieBanner p {
  color: #e8f2f5;
  font-size: 13px;
  margin: 0;
}

.cookieBanner button {
  border: 0;
  border-radius: 8px;
  background: #ff7417;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 11px 18px;
  white-space: nowrap;
}

.cookieBanner button:hover {
  background: #e35d07;
}

.whatsappFloat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25D366;
  box-shadow: 0 16px 34px rgba(249, 115, 22, .32);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsappFloat img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .siteHeader {
    z-index: 80;
    margin-bottom: 44px;
  }

  .nav {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .brand {
    width: 230px;
    margin: -30px 0 -48px;
  }

  .navRight {
    grid-column: 2;
    z-index: 130;
  }

  .navRight > a:not(.btn),
  .navRight > .navWhatsapp {
    display: none !important;
  }

  .menuToggle {
    display: grid;
  }

  .menuToggle.isOpen {
    background: #ff7417;
  }

  .menuToggle.isOpen span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menuToggle.isOpen span:nth-child(2) {
    opacity: 0;
  }

  .menuToggle.isOpen span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobileMenu {
    position: fixed;
    top: 0;
    right: -390px;
    z-index: 140;
    width: min(86vw, 360px);
    min-height: 100vh;
    padding: 88px 22px 28px;
    background: #fff;
    box-shadow: -24px 0 54px rgba(7, 63, 99, .22);
    display: flex;
    flex-direction: column;
    gap: 6px;
    visibility: hidden;
    transform: none;
    transition: transform .28s ease, visibility .28s ease;
    pointer-events: none;
  }

  .mobileMenu.isOpen {
    right: 0;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  .mobileMenuClose {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #ff7417;
    color: #fff;
    cursor: pointer;
  }

  .mobileMenuClose span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobileMenuClose span:first-child {
    transform: rotate(45deg);
  }

  .mobileMenuClose span:last-child {
    transform: rotate(-45deg);
  }

  .mobileMenu a {
    padding: 11px 12px;
    border-radius: 8px;
    color: #102033;
    font-size: 14px;
    font-weight: 800;
  }

  .mobileMenu a:hover {
    color: #ff7417;
    background: #fff9f2;
  }

  .mobileMenuWhatsapp {
    width: 100%;
    margin-top: 12px;
    color: #fff !important;
  }

  .mobileMenuWhatsapp:hover {
    color: #fff !important;
    background: #e35d07 !important;
  }

  .servicesGrid,
  .trustRow,
  .videoStrip,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .videoShowcase,
  .split,
  .faq {
    grid-template-columns: 1fr;
  }

  .sectionHead,
  .ctaBand,
  .footerInner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footerLinks {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footerNav,
  .footerActions {
    width: 100%;
    justify-content: flex-start;
  }

  .footerActions {
    align-items: flex-start;
  }
}

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

  .siteHeader {
    margin-top: 28px;
    margin-bottom: 34px;
    top: 18px;
  }

  .nav {
    min-height: 66px;
    grid-template-columns: auto 1fr;
  }

  .brand {
    width: 178px;
    margin: -24px 0 -40px;
  }

  .navLinks .btn {
    width: 48px;
    min-width: 48px;
    padding: 13px;
  }

  .navLinks .btn span {
    display: none;
  }

  .heroInner {
    min-height: 620px;
    padding: 54px 0 70px;
  }

  .heroCopy p {
    font-size: 16px;
  }

  .heroActions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footerLinks {
    width: 100%;
  }

  .footerDeveloperBar {
    gap: 7px;
    flex-direction: column;
  }

  .copyright {
    font-size: 10px;
    text-align: center;
  }

  .cookieBanner {
    align-items: stretch;
    flex-direction: column;
    left: 14px;
    right: 14px;
    bottom: 86px;
    padding: 14px;
  }

  .videoModal {
    padding: 18px;
  }

  .videoModalInner {
    width: min(100%, 420px);
  }

  .videoModalClose {
    top: 8px;
    right: 8px;
  }

  .trustRow,
  .servicesGrid,
  .videoStrip,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .resultViewport {
    aspect-ratio: 2941 / 1440;
    min-height: auto;
  }

  .splitMedia img {
    height: 360px;
  }

  .ctaBand {
    padding: 30px 22px;
  }

  .whatsappFloat {
    right: 22px;
    bottom: 18px;
  }
}
