:root {
  --color-bg: #081017;
  --color-bg-secondary: #0e1923;
  --color-surface: #14232f;
  --color-primary: #1677ff;
  --color-primary-hover: #005fd6;
  --color-accent: #d95a3a;
  --color-text: #f5f7fa;
  --color-text-muted: #aab5bf;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-light-section: #f2f4f5;
  --color-dark-text: #101820;
  --container: 1240px;
  --pad-x: 40px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-media: 10px;
  --shadow-strong: 0 22px 70px rgba(0, 0, 0, 0.32);
  --font-heading: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-body: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(22, 119, 255, 0.85);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (var(--pad-x) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 16, 23, 0.96);
  border-bottom-color: var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  font-weight: 900;
  color: var(--color-text);
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 800;
  color: rgba(245, 247, 250, 0.9);
}

.site-nav a:not(.btn) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--color-accent);
  transition: transform 160ms ease;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(8, 16, 23, 0.58);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 13px 35px rgba(22, 119, 255, 0.28);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--secondary {
  background: rgba(245, 247, 250, 0.08);
  border-color: rgba(245, 247, 250, 0.38);
  color: #fff;
}

.btn--secondary:hover {
  background: rgba(245, 247, 250, 0.15);
}

.btn--dark {
  background: var(--color-dark-text);
  color: #fff;
}

.btn--full {
  width: 100%;
}

.btn--nav {
  min-height: 44px;
  padding: 11px 16px;
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 35%, rgba(22, 119, 255, 0.18), transparent 25%),
    linear-gradient(135deg, #081017 0%, #0e1923 52%, #14232f 100%);
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -3;
  object-fit: cover;
  opacity: 0.72;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 16, 23, 0.98) 0%, rgba(8, 16, 23, 0.83) 42%, rgba(8, 16, 23, 0.34) 74%, rgba(8, 16, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 16, 23, 0.4), rgba(8, 16, 23, 0.06) 45%, rgba(8, 16, 23, 0.66));
}

.hero::after,
.field-video__stage::after,
.service-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.12;
}

.hero__content {
  width: min(100% - (var(--pad-x) * 2), 820px);
  margin-inline: auto;
  padding: 150px 0 110px;
  justify-self: stretch;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--color-accent);
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow--dark {
  color: var(--color-accent);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.9rem, 5.8rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 3.3rem, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 1.75rem, 2rem);
}

p {
  margin: 0;
}

.hero__lead {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(245, 247, 250, 0.84);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__note {
  margin-top: 18px;
  color: rgba(245, 247, 250, 0.68);
  font-size: 0.95rem;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(245, 247, 250, 0.76);
  font-size: 0.85rem;
  font-weight: 800;
}

.scroll-cue__mark {
  width: 28px;
  height: 44px;
  border: 1px solid rgba(245, 247, 250, 0.44);
  border-radius: 18px;
  position: relative;
}

.scroll-cue__mark::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: var(--color-accent);
}

.service-strip {
  background: var(--color-bg-secondary);
  border-block: 1px solid var(--color-border);
}

.service-strip__track {
  min-height: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.service-strip__track span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 26px;
  color: rgba(245, 247, 250, 0.86);
  font-size: 0.96rem;
  font-weight: 900;
  white-space: nowrap;
  border-left: 1px solid var(--color-border);
}

.service-strip__track span:first-child {
  padding-left: 0;
  border-left: 0;
}

.section {
  padding: 112px 0;
}

.section--light {
  background: var(--color-light-section);
  color: var(--color-dark-text);
}

.section--dark {
  background:
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
  color: var(--color-text);
}

.section-head {
  margin-bottom: 46px;
}

.section-head > p,
.section-head--split > p {
  max-width: 600px;
  color: var(--color-text-muted);
}

.section--light .section-head > p,
.section--light .section-head--split > p {
  color: #51606b;
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: end;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.before-after {
  background: #fff;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.08);
}

.before-after--featured {
  grid-row: span 2;
}

.before-after__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}

.kicker {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
}

.compare {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-media);
  background: #0e1923;
  touch-action: pan-y;
}

.before-after--featured .compare {
  aspect-ratio: 16 / 10;
}

.compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.compare__image {
  position: absolute;
  inset: 0;
}

.compare__after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

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

.compare__label {
  position: absolute;
  top: 14px;
  min-width: 58px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(8, 16, 23, 0.76);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.compare__label--before {
  left: 14px;
}

.compare__label--after {
  right: 14px;
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(8, 16, 23, 0.15);
}

.compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 38%, #fff 38% 44%, transparent 44% 56%, #fff 56% 62%, transparent 62%),
    var(--color-primary);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.service-editorial {
  display: grid;
  gap: 28px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(0, 1.06fr);
  gap: 34px;
  align-items: stretch;
  padding: 24px 0 28px;
  border-top: 1px solid var(--color-border);
}

.service-row--reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
}

.service-row--text-only {
  grid-template-columns: 1fr;
}

.service-row--reverse .service-row__media {
  order: 2;
}

.service-row--reverse .service-row__content {
  order: 1;
}

.service-row__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius-media);
  background: var(--color-surface);
}

.service-row__media--placeholder {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  background:
    radial-gradient(circle at 72% 28%, rgba(22, 119, 255, 0.22), transparent 24%),
    linear-gradient(140deg, #101c26 0%, #152634 52%, #081017 100%);
}

.service-row__placeholder-label,
.service-row__placeholder-text {
  position: relative;
  z-index: 1;
}

.service-row__placeholder-label {
  color: rgba(245, 247, 250, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-row__placeholder-text {
  max-width: 280px;
  color: rgba(245, 247, 250, 0.92);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.02;
}

.service-row__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-row__media video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  background: #081017;
}

.service-row:hover .service-row__media img {
  transform: scale(1.02);
}

.service-row__content {
  display: grid;
  gap: 18px;
  align-self: center;
  max-width: 610px;
  padding: 18px 0;
}

.service-row--text-only .service-row__content {
  max-width: 760px;
}

.service-row__content .service-row__media {
  margin-top: 8px;
}

.service-row__number,
.process-step__number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
}

.service-row__content p {
  color: var(--color-text-muted);
  font-size: 1.04rem;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(16, 24, 32, 0.18);
}

.process-step {
  position: relative;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(16, 24, 32, 0.06);
}

.process-step h3 {
  line-height: 1.08;
}

.process-step p {
  margin-top: 15px;
  color: #53616d;
}

.videos-section .section-head p {
  color: var(--color-text-muted);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 24px;
}

.field-video {
  display: grid;
  gap: 12px;
}

.field-video--main {
  grid-row: span 2;
}

.field-video h3 {
  font-size: 1.2rem;
  line-height: 1.15;
}

.field-video__stage {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-media);
  background:
    radial-gradient(circle at 74% 28%, rgba(22, 119, 255, 0.22), transparent 24%),
    linear-gradient(140deg, #101c26 0%, #152634 52%, #081017 100%);
}

.field-video--main .field-video__stage {
  aspect-ratio: 16 / 10;
}

.field-video__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 14px;
  width: 100%;
  min-height: 100%;
  padding: 26px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 23, 0.16), rgba(8, 16, 23, 0.64)),
    transparent;
  color: rgba(245, 247, 250, 0.86);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.play-button {
  display: inline-grid;
  place-items: center;
  justify-self: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 16px 36px rgba(22, 119, 255, 0.28);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.field-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  background: var(--color-light-section);
  color: var(--color-dark-text);
  padding: 92px 0;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding-block: 44px;
  border-block: 2px solid rgba(16, 24, 32, 0.12);
}

.cta-band p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: #53616d;
}

.cta-band__actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 58px;
  align-items: start;
}

.contact-layout--simple {
  grid-template-columns: 1fr;
  gap: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 22px;
  color: #53616d;
}

.contact-phone {
  display: inline;
  color: var(--color-primary-hover);
  font-size: 1.2rem;
  font-weight: 900;
}

.site-footer {
  background: #060c12;
  color: rgba(245, 247, 250, 0.76);
  padding: 54px 0 112px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-phone {
  display: inline-flex;
  margin-top: 12px;
  color: #fff;
  font-weight: 900;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
  color: rgba(245, 247, 250, 0.9);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  color: rgba(245, 247, 250, 0.54);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 17px;
  border-radius: var(--radius-sm);
  background: #1f9e56;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 91;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  max-height: 64px;
  border: 1px solid rgba(167, 193, 221, 0.16);
  border-radius: var(--radius-md);
  background: rgba(12, 25, 39, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
}

.mobile-cta a:first-child {
  background: rgba(22, 119, 255, 0.14);
  border-color: rgba(73, 146, 255, 0.22);
}

.mobile-cta a:last-child {
  background: rgba(31, 158, 86, 0.15);
  border-color: rgba(79, 191, 127, 0.22);
}

.mobile-cta__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.mobile-cta__icon svg {
  width: 100%;
  height: 100%;
}

.mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
  }

  .btn--nav {
    display: none;
  }
}

@media (max-width: 920px) {
  :root {
    --pad-x: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: var(--pad-x);
    right: var(--pad-x);
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #081017;
    box-shadow: var(--shadow-strong);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a:not(.btn) {
    padding: 8px 8px;
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .site-nav .btn--nav {
    display: inline-flex;
    margin-top: 8px;
  }

  .hero {
    min-height: 85svh;
  }

  .hero__content {
    padding: 132px 0 100px;
  }

  h1 {
    font-size: clamp(2.6rem, 3.35rem, 3.85rem);
  }

  h2 {
    font-size: clamp(2rem, 2.45rem, 3rem);
  }

  .section {
    padding: 82px 0;
  }

  .section-head--split,
  .results-grid,
  .video-grid,
  .contact-layout,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .before-after--featured {
    grid-row: auto;
  }

  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-row--reverse .service-row__media,
  .service-row--reverse .service-row__content {
    order: initial;
  }

  .service-row__media,
  .service-row__media img {
    min-height: 260px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    top: 18px;
    bottom: 18px;
    left: 34px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-step {
    padding-left: 66px;
  }

  .process-step__number {
    position: absolute;
    left: 24px;
    top: 30px;
  }

  .field-video--main {
    grid-row: auto;
  }

  .field-video--main .field-video__stage {
    aspect-ratio: 9 / 12;
  }

  .cta-band__actions {
    min-width: 0;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    justify-content: stretch;
  }

  .footer-nav {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  :root {
    --pad-x: 18px;
  }

  body {
    padding-bottom: 76px;
  }

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

  .brand__logo {
    width: 38px;
    height: 38px;
  }

  .brand__text {
    font-size: 0.88rem;
  }

  .site-nav {
    left: 10px;
    right: 10px;
  }

  .hero__content {
    width: min(100% - 36px, 820px);
    padding: 116px 0 96px;
  }

  h1 {
    font-size: clamp(2.42rem, 2.72rem, 3.1rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.86rem, 2.08rem, 2.3rem);
    line-height: 1.05;
  }

  h3 {
    font-size: clamp(1.28rem, 1.42rem, 1.58rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .scroll-cue {
    left: 18px;
    transform: none;
  }

  .scroll-cue__mark {
    display: none;
  }

  .service-strip__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    min-height: auto;
  }

  .service-strip__track span {
    display: flex;
    justify-content: center;
    min-height: 56px;
    padding: 10px 14px;
    white-space: normal;
    text-wrap: balance;
    text-align: center;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .compare,
  .before-after--featured .compare {
    aspect-ratio: 4 / 3.25;
  }

  .compare__handle::after {
    width: 36px;
    height: 36px;
  }

  .before-after {
    padding: 12px;
  }

  .service-row__media,
  .service-row__media img {
    min-height: 230px;
  }

  .process-step {
    padding: 26px 20px 26px 60px;
  }

  .process-step__number {
    left: 20px;
    top: 28px;
  }

  .field-video__stage,
  .field-video--main .field-video__stage {
    aspect-ratio: 9 / 13.5;
  }

  .cta-band {
    padding: 68px 0;
  }

  .cta-band__inner {
    padding-block: 34px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 104px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.32rem;
  }

  .brand__text {
    max-width: 150px;
    white-space: normal;
    line-height: 1.05;
  }
}

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

  .hero__video {
    display: none;
  }

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