@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Open+Sans:wght@400;600;700;800&display=swap");

:root {
  --teal: #51BCBE;
  --teal-dark: #377c87;
  --mint: #eaf6f4;
  --mint-strong: #d9f1ef;
  --ink: #4d4f55;
  --soft-ink: #6a6c72;
  --line: #cbe9e7;
  --white: #fff;
  --shadow: 0 18px 55px rgba(50, 124, 133, .15);
  --radius: 24px;
  --serif: "AlbraSansTrial regular", "AlbraSansTrial", "Marcellus", Georgia, "Times New Roman", serif;
  --sans: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 214px;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--mint-strong);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

main > section {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 0;
}

h1,
h2 {
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(40px, 6.1vw, 80px);
  overflow-wrap: break-word;
}

h2 {
  color: var(--teal);
  font-size: clamp(34px, 4.15vw, 60px);
  overflow-wrap: break-word;
}

h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}

p {
  margin: 0;
  text-align: justify;
  text-align-last: left;
}

.hero {
  position: relative;
  width: min(calc(100% - 40px), 1780px);
  max-width: none;
  min-height: min(780px, calc(100vh - 112px));
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #eaf6f4;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(42px, 7vw, 96px);
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.24) 72%, rgba(255,255,255,0) 100%);
}

.hero-copy {
  width: min(760px, 56%);
  min-width: 0;
}

.section-grid > *,
.contact > * {
  min-width: 0;
}

.hero-label {
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 560px;
  margin-top: 28px;
  color: var(--soft-ink);
  font-size: 21px;
  line-height: 1.5;
}

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

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.button.primary {
  background: #ABDDDE;
  color: var(--teal-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--teal-dark);
  background: var(--white);
}

.button.compact {
  min-height: 52px;
  margin-top: 28px;
}

.wide-image,
.portrait,
.contact figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.claim-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--teal);
}

.claim-item {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(234, 246, 244, .62);
  text-align: center;
}

.claim-item svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.claim-item span {
  font-size: clamp(17px, 1.7vw, 24px);
  font-style: italic;
  line-height: 1.22;
  letter-spacing: .03em;
}

.intro-three {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .95fr) minmax(260px, .72fr);
  gap: 46px;
  align-items: stretch;
}

.intro-three h2 {
  max-width: 9.8ch;
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.intro p,
.confidence p,
.visit p,
.method p,
.contact p {
  margin-top: 24px;
  color: var(--soft-ink);
  font-size: 19px;
}

.soft-panel {
  padding: 42px;
  border-radius: var(--radius);
  background: var(--mint);
}

.intro-three .soft-panel {
  height: 100%;
}

.intro-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  height: 100%;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medical-device {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, .82fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.medical-device-copy {
  max-width: 660px;
}

.medical-device .eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.medical-device h2 {
  max-width: 640px;
  font-size: clamp(34px, 4vw, 58px);
}

.medical-device p {
  margin-top: 24px;
  color: var(--soft-ink);
  font-size: 19px;
}

.medical-device-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(81, 188, 190, .18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f6fbfa 0%, var(--mint) 100%);
  box-shadow: var(--shadow);
}

.medical-device-visual img {
  width: min(100%, 720px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(50, 124, 133, .16));
}

.wide-image {
  aspect-ratio: 1.45 / 1;
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confidence {
  align-items: stretch;
  grid-template-columns: minmax(0, .9fr) minmax(0, .9fr);
  gap: 170px;
}

.confidence-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.confidence-copy h2 {
  max-width: 520px;
  font-size: clamp(29px, 3vw, 46px);
}

.metrics {
  display: grid;
  gap: 8px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.metrics li::before {
  content: "•";
  margin-right: 10px;
  color: var(--teal);
}

.brands {
  width: 100%;
  max-width: none;
  padding: 70px 0;
  overflow: hidden;
  background: var(--mint);
}

.brands h2 {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 42px;
  text-align: center;
}

.ticker {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 76px;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-track img {
  width: 220px;
  mix-blend-mode: multiply;
  opacity: .82;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.reviews h2,
.before-after h2,
.faq h2 {
  text-align: center;
}

.faq h2 {
  font-size: clamp(38px, 4.35vw, 64px);
}

.review-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.review-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-head {
  display: grid;
  grid-template-columns: 54px 1fr 26px;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.review-head strong {
  display: block;
  color: #77a5f9;
  font-size: 20px;
  line-height: 1.1;
}

.review-head span {
  color: #fbbc04;
}

.review-head b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #4285f4;
  font-weight: 900;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}

.avatar.blue { background: #118bd4; }
.avatar.photo { background: #a88d78; }
.avatar.purple { background: #7248bd; }

.review-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.google-link {
  display: block;
  margin-top: 28px;
  color: var(--teal);
  font-weight: 700;
  text-align: center;
}

.visit {
  align-items: center;
}

.video-box {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: #eef6f4;
  box-shadow: var(--shadow);
}

.video-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p {
  margin-top: 24px;
  color: var(--soft-ink);
  font-size: 19px;
}

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

.compare-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #f4f8f7;
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f4f8f7;
}

.compare-img.after {
  clip-path: inset(0 0 0 var(--position));
}

.compare input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 4px;
  transform: translateX(-50%);
  background: var(--teal);
}

.handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  z-index: 4;
  width: 68px;
  height: 68px;
  border: 7px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(85, 196, 198, .82);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.compare-label {
  position: absolute;
  top: 22px;
  z-index: 4;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--teal-dark);
  font-weight: 800;
}

.before-label { left: 22px; }
.after-label { right: 22px; }

.compare-card strong {
  display: block;
  padding: 16px 22px 18px;
  color: var(--teal-dark);
  font-size: 22px;
}

.case-dots {
  display: none;
}

.method .portrait {
  max-height: 680px;
}

.method h3 {
  margin-top: 34px;
  margin-bottom: 26px;
}

.method h3 + p {
  margin-top: 0;
}

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

.highlight {
  padding-left: 20px;
  border-left: 4px solid var(--teal);
  color: var(--teal-dark) !important;
  font-weight: 800;
}

.faq {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 10px 30px 0;
  cursor: pointer;
  color: #111;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.18;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform .28s ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  margin: 0 0 28px;
  color: var(--soft-ink);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height .72s cubic-bezier(.22, 1, .36, 1), opacity .42s ease, transform .48s ease;
}

details[open] p {
  opacity: 1;
  max-height: var(--faq-height, 260px);
  transform: translateY(0);
}

.contact {
  display: grid;
  grid-template-columns: minmax(310px, .75fr) minmax(0, 1.25fr);
  gap: 70px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 40px;
  padding: 76px max(20px, calc((100vw - 1180px) / 2));
  background: var(--mint);
}

.contact figure {
  align-self: stretch;
  min-height: 620px;
}

.contact figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form h2 {
  margin-bottom: 8px;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--teal);
  font-size: 16px;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--teal);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 170px;
  padding: 16px;
  border: 2px solid var(--teal);
  resize: vertical;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
}

.privacy input {
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #24d364;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.whatsapp span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.thank-you {
  display: grid;
  place-items: center;
  min-height: 100vh;
  max-width: 760px;
  padding: 72px 24px;
  text-align: center;
}

.thank-you img {
  width: min(240px, 72vw);
  margin-bottom: 34px;
}

.thank-you h1 {
  max-width: 10ch;
  margin-inline: auto;
}

.thank-you p {
  max-width: 42ch;
  margin: 26px auto 34px;
  color: var(--soft-ink);
  font-size: 19px;
  text-align: center;
  text-align-last: center;
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    width: 100%;
    max-width: 620px;
    padding: 24px 14px 10px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    margin: 0 auto;
    transform: scale(.86);
  }

  main > section {
    width: 100%;
    max-width: 620px;
    padding: 52px 24px;
    overflow: hidden;
  }

  h1 {
    font-size: clamp(24px, 6.35vw, 30px);
    line-height: 1.08;
    max-width: min(10.5ch, calc(100vw - 82px));
    margin-inline: auto;
    text-align: center;
  }

  h2 {
    font-size: clamp(22px, 5vw, 26px);
    line-height: 1.12;
    max-width: min(12.5ch, calc(100vw - 82px));
    margin-inline: auto;
    text-align: center;
  }

  .section-grid,
  .contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    width: calc(100% - 28px);
    min-height: 620px;
    padding: 0;
    border-radius: 22px;
  }

  .hero-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 28px 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.75) 46%, rgba(255,255,255,.96) 100%);
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 78px);
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy h1 {
    width: min(260px, 100%);
    max-width: min(260px, 100%);
  }

  .hero-copy .hero-label,
  .hero-copy .hero-text {
    width: min(270px, 100%);
    max-width: min(270px, 100%);
  }

  .hero-copy .hero-actions {
    max-width: min(300px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-label,
  .hero-text,
  .claim-bar span {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-label {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .13em;
  }

  p,
  .soft-panel,
  .soft-panel p,
  .intro p,
  .confidence p,
  .visit p,
  .method p,
  .section-heading p,
  .contact p {
    width: 100%;
    max-width: min(31ch, calc(100vw - 82px));
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-align-last: left;
    overflow-wrap: break-word;
  }

  .intro-three h2,
  .intro h2 {
    max-width: min(12ch, calc(100vw - 82px));
    overflow-wrap: break-word;
  }

  .confidence-copy h2,
  .brands h2,
  .reviews h2,
  .before-after h2,
  .faq h2,
  .contact h2 {
    max-width: min(12.5ch, calc(100vw - 82px));
    overflow-wrap: break-word;
  }

  .hero-text {
    max-width: min(29ch, 100%);
  }

  .hero-actions,
  .visit .button,
  .soft-panel .button,
  .method .button,
  .contact-form .button {
    justify-content: center;
  }

  .visit > div,
  .method > div {
    text-align: center;
  }

  .visit .button,
  .method .button {
    display: flex;
    width: fit-content;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .button {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .faq h2 {
    max-width: min(16ch, calc(100vw - 72px));
    font-size: clamp(26px, 6.4vw, 32px);
  }

  .brands h2,
  .reviews h2,
  .method h2 {
    max-width: min(16ch, calc(100vw - 64px));
    font-size: clamp(28px, 7.2vw, 36px);
    line-height: 1.08;
  }

  .hero-text,
  .intro p,
  .confidence p,
  .visit p,
  .method p,
  .section-heading p,
  .contact p {
    font-size: 17px;
  }

  .claim-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: none;
    padding: 26px 20px;
    text-align: center;
    line-height: 1.35;
  }

  .claim-item {
    padding: 20px;
  }

  .claim-item span {
    display: block;
    max-width: 19ch;
    margin-inline: auto;
    white-space: normal;
  }

  .intro-three {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .medical-device {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .medical-device-copy {
    max-width: none;
    text-align: center;
  }

  .medical-device .eyebrow {
    max-width: min(27ch, calc(100vw - 82px));
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    line-height: 1.35;
  }

  .medical-device h2 {
    max-width: min(13ch, calc(100vw - 82px));
  }

  .medical-device-visual {
    min-height: 0;
    padding: 20px;
  }

  .medical-device-visual img {
    width: min(100%, 460px);
  }

  .intro-photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.22 / 1;
  }

  .soft-panel {
    padding: 28px;
    width: 100%;
  }

  .soft-panel h3,
  .method h3 {
    text-align: center;
  }

  .method h3 {
    margin-top: 28px;
    margin-bottom: 22px;
  }

  .metrics {
    width: fit-content;
    max-width: min(34ch, calc(100vw - 64px));
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .highlight {
    text-align: justify !important;
    text-align-last: left;
  }

  summary,
  .contact-form,
  label,
  .privacy {
    text-align: left;
  }

  details p,
  .contact-form p {
    text-align: justify;
    text-align-last: left;
  }

  summary {
    padding: 22px 8px 22px 0;
    font-size: clamp(16px, 4.1vw, 19px);
    line-height: 1.25;
  }

  summary::after {
    width: 12px;
    height: 12px;
    margin-right: 3px;
    border-width: 3px;
  }

  .review-carousel {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding: 4px 0 18px;
  }

  .review-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .case-track {
    display: flex;
    overflow: hidden;
    align-items: stretch;
  }

  .compare-card {
    display: none;
    flex: 0 0 100%;
    width: 100%;
  }

  .compare-card.is-active {
    display: block;
  }

  .compare {
    aspect-ratio: 1 / 1.12;
  }

  .case-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .case-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b7dddd;
    cursor: pointer;
  }

  .case-dots button.is-active {
    background: var(--teal);
    transform: scale(1.2);
  }

  .contact {
    width: 100%;
    padding: 54px 20px 96px;
  }

  .contact figure {
    min-height: 520px;
  }

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

  .whatsapp {
    left: 20px;
    right: 20px;
    justify-content: center;
    padding: 0 18px;
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .hero-actions .button {
    width: 100%;
  }

  .compare-label {
    top: 14px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .before-label { left: 14px; }
  .after-label { right: 14px; }

  .handle {
    width: 58px;
    height: 58px;
  }

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