* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk Variable', sans-serif;
  letter-spacing: 0;
}

h2 {
  max-width: 14ch;
  margin-bottom: 28px;
  font-size: 64px;
  font-weight: 560;
  line-height: 0.98;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--background);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  background: var(--header);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  width: min(100%, var(--container));
  height: 72px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 26px;
}

.brand-mark span {
  position: absolute;
  top: 5px;
  width: 21px;
  height: 15px;
  border: 2px solid var(--accent-strong);
  border-radius: 50%;
}

.brand-mark span:first-child {
  left: 0;
  transform: rotate(16deg);
}

.brand-mark span:last-child {
  right: 0;
  transform: rotate(-16deg);
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 24px;
  font-weight: 630;
}

.brand-name small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  gap: 10px;
  border: 1px solid var(--accent-strong);
  border-radius: 999px;
  background: var(--accent-strong);
  color: var(--button-text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 28px var(--shadow);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background-color 240ms ease, box-shadow 240ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-strong) 90%, var(--text));
  box-shadow: 0 16px 36px var(--shadow);
}

.button:active {
  transform: scale(0.98);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link:hover svg {
  transform: translate(3px, 2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(0, 1.05fr);
  min-height: 100dvh;
  padding-top: 72px;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(36px, 5vw, 92px) 52px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  margin-bottom: 26px;
  font-size: 56px;
  font-weight: 590;
  line-height: 0.94;
  white-space: nowrap;
}

.hero h1 span {
  display: block;
  color: var(--accent-strong);
}

.hero-intro {
  max-width: 43ch;
  margin-bottom: 30px;
  font-size: 17px;
}

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

.hero-visual {
  position: relative;
  min-height: calc(100dvh - 72px);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, color-mix(in srgb, var(--background) 18%, transparent), transparent 32%);
}

.aligner-line {
  position: absolute;
  z-index: 2;
  width: 230px;
  height: 92px;
  border: 1px solid rgba(235, 255, 248, 0.78);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(22, 104, 78, 0.16), 0 16px 45px rgba(25, 70, 56, 0.18);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.aligner-line-one {
  top: 16%;
  right: 8%;
  transform: rotate(-14deg);
}

.aligner-line-two {
  top: 20%;
  right: 4%;
  transform: rotate(-8deg) scale(0.86);
}

.hero-note {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(241, 249, 246, 0.82);
  color: #17211e;
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 18px 45px rgba(25, 54, 45, 0.16), inset 0 1px rgba(255, 255, 255, 0.8);
}

.hero-note svg {
  width: 28px;
  height: 28px;
  color: #1e6c55;
}

.hero-note span {
  display: grid;
  font-size: 10px;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 3px;
  font-size: 13px;
  text-transform: none;
}

.facts {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.facts-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.fact {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 20px 28px;
  border-left: 1px solid var(--border);
}

.fact:last-child {
  border-right: 1px solid var(--border);
}

.fact span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.fact strong {
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 15px;
  font-weight: 570;
}

.situations {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 10vw;
  padding-top: 160px;
  padding-bottom: 160px;
}

.situations-sticky {
  position: sticky;
  top: 132px;
  align-self: start;
}

.situations-sticky h2 {
  font-size: 56px;
}

.situations-sticky p {
  max-width: 43ch;
  font-size: 16px;
}

.situations-list {
  display: grid;
}

.situation-item {
  min-height: 290px;
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
}

.situation-item:first-child {
  border-top: 1px solid var(--border);
}

.situation-item > span {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--accent-strong);
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 13px;
  font-weight: 650;
}

.situation-item h3 {
  max-width: 15ch;
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 560;
  line-height: 1.04;
}

.situation-item p {
  max-width: 50ch;
  margin-bottom: 0;
}

.invisalign-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.65fr;
  grid-template-rows: minmax(260px, auto) minmax(230px, auto);
  gap: 14px;
  padding-top: 64px;
  padding-bottom: 160px;
}

.product-image-wrap {
  grid-row: 1 / 3;
  min-height: 600px;
  overflow: hidden;
  border-radius: 8px;
}

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

.product-copy,
.benefit {
  border-radius: 8px;
}

.product-copy {
  grid-column: 2 / 4;
  padding: 54px;
  background: var(--surface);
}

.product-copy h2 {
  max-width: 16ch;
  margin-bottom: 20px;
  font-size: 48px;
}

.product-copy p {
  max-width: 55ch;
  margin-bottom: 0;
}

.benefit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--border);
}

.benefit span {
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 25px;
  font-weight: 560;
}

.benefit p {
  max-width: 29ch;
  margin: 42px 0 0;
  font-size: 13px;
}

.benefit-planned {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.benefit-planned p {
  color: var(--accent-ink);
}

.process {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--surface);
}

.process-pin {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding-top: 104px;
  overflow: hidden;
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  align-items: end;
  gap: 80px;
}

.process-heading h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: 52px;
}

.process-progress {
  height: 2px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--border);
}

.process-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: left;
}

.process-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  margin-top: auto;
  padding: 72px var(--gutter) 54px;
}

.process-track::before,
.process-track::after {
  content: '';
  display: block;
  width: max(0px, calc((100vw - var(--container)) / 2));
  flex: 0 0 auto;
}

.process-step {
  display: flex;
  flex: 0 0 520px;
  flex-direction: column;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-raised);
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.process-step-top svg {
  width: 34px;
  height: 34px;
  color: var(--accent-strong);
}

.process-step-top span {
  color: var(--muted);
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 12px;
}

.process-step h3 {
  max-width: 13ch;
  margin: 82px 0 18px;
  font-size: 36px;
  font-weight: 560;
  line-height: 1.02;
}

.process-step p {
  max-width: 43ch;
  margin-bottom: 0;
  font-size: 14px;
}

.process-step .text-link {
  margin-top: 20px;
  color: var(--accent-strong);
}

.clinic {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 10vw;
  padding-top: 160px;
  padding-bottom: 160px;
}

.clinic-portrait {
  position: relative;
  max-width: 540px;
  overflow: hidden;
  border-radius: 8px;
}

.clinic-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.clinic-portrait img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.clinic-copy h2 {
  max-width: 13ch;
  font-size: 60px;
}

.clinic-copy > p:not(.eyebrow) {
  max-width: 58ch;
  font-size: 17px;
}

.doctor-signature {
  display: grid;
  gap: 4px;
  margin-top: 42px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.doctor-signature strong {
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.doctor-signature span {
  color: var(--muted);
  font-size: 12px;
}

.clinic-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.clinic-details > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.clinic-details svg {
  width: 24px;
  height: 24px;
  color: var(--accent-strong);
}

.clinic-details span {
  display: grid;
  color: var(--muted);
  font-size: 10px;
}

.clinic-details strong {
  margin-top: 4px;
  color: var(--text);
  font-size: 13px;
}

.everyday {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: auto 230px 250px;
  gap: 14px;
  padding-bottom: 160px;
}

.everyday-heading {
  grid-column: 1 / 4;
  padding-bottom: 44px;
}

.everyday-heading h2 {
  max-width: 15ch;
}

.daily-image {
  grid-row: 2 / 4;
  min-height: 494px;
  overflow: hidden;
  border-radius: 8px;
}

.daily-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.daily-cell {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-raised);
}

.daily-cell h3 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 570;
}

.daily-cell p {
  max-width: 34ch;
  margin-bottom: 0;
  font-size: 13px;
}

.daily-cell-accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.daily-cell-accent p {
  color: var(--accent-ink);
}

.daily-cell-wide {
  grid-column: 2 / 4;
  padding-right: 35%;
  background: var(--surface);
}

.indications {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 11vw;
  padding-top: 40px;
  padding-bottom: 160px;
}

.indications-copy h2 {
  font-size: 54px;
}

.indications-copy p {
  max-width: 34ch;
}

.indication-rail {
  display: grid;
}

.indication-rail article {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 36px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.indication-rail article:first-child {
  border-top: 1px solid var(--border);
}

.indication-rail span {
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 18px;
  font-weight: 590;
}

.indication-rail p {
  max-width: 45ch;
  margin-bottom: 0;
  font-size: 14px;
}

.faq {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 10vw;
  padding-top: 128px;
  padding-bottom: 160px;
  border-top: 1px solid var(--border);
}

.faq-heading {
  position: sticky;
  top: 132px;
  align-self: start;
}

.faq-heading h2 {
  font-size: 56px;
}

.faq-heading p {
  max-width: 40ch;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details:first-child {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 19px;
  font-weight: 570;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--accent-strong);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 65ch;
  margin: -4px 52px 28px 0;
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: var(--contact-bg);
  color: var(--contact-text);
}

.contact-main {
  grid-row: 1 / 3;
  min-height: 560px;
  padding: 84px;
  border-right: 1px solid color-mix(in srgb, var(--contact-text) 18%, transparent);
}

.contact-main h2 {
  max-width: 9ch;
  margin-bottom: 28px;
  font-size: 72px;
  color: var(--contact-text);
}

.contact-main p {
  max-width: 48ch;
  margin-bottom: 38px;
  color: color-mix(in srgb, var(--contact-text) 72%, transparent);
}

.button-light {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button-light:hover {
  background: color-mix(in srgb, var(--accent) 88%, white);
}

.contact-address,
.contact-hours {
  display: flex;
  gap: 20px;
  min-height: 280px;
  padding: 54px;
}

.contact-address {
  border-bottom: 1px solid color-mix(in srgb, var(--contact-text) 18%, transparent);
}

.contact-address > svg,
.contact-hours > svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.contact-address span,
.contact-hours span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: 'Space Grotesk Variable', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.contact-address address,
.contact-hours p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--contact-text) 78%, transparent);
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.text-link-light {
  margin-top: 22px;
  color: var(--contact-text);
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 44ch;
  margin: 22px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 16px 24px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links svg {
  width: 16px;
  height: 16px;
}

.footer-legal {
  display: flex;
  grid-column: 1 / 3;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-legal p {
  margin-bottom: 0;
  font-size: 10px;
}

.mobile-whatsapp {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .hero-note {
    background: rgba(21, 32, 28, 0.86);
    color: #edf7f3;
    border-color: rgba(255, 255, 255, 0.16);
  }

  .hero-note svg {
    color: var(--accent);
  }
}

@media (max-width: 1180px) {
  :root {
    --gutter: 32px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.1fr);
  }

  .hero h1 {
    font-size: 42px;
  }

  .situations,
  .faq {
    gap: 7vw;
  }

  .clinic {
    gap: 7vw;
  }

  .clinic-copy h2,
  h2 {
    font-size: 52px;
  }

  .contact-main {
    padding: 64px;
  }
}

@media (max-width: 899px) {
  :root {
    --gutter: 20px;
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 76px;
  }

  h2,
  .clinic-copy h2,
  .situations-sticky h2,
  .faq-heading h2,
  .indications-copy h2 {
    font-size: 42px;
    line-height: 1;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    height: 64px;
  }

  .desktop-nav,
  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: 8px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--text);
  }

  .menu-toggle svg {
    width: 24px;
    height: 24px;
  }

  .menu-toggle svg[hidden] {
    display: none;
  }

  .mobile-menu {
    display: grid;
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    max-height: calc(100dvh - 64px);
    padding: 24px var(--gutter) 28px;
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
    background: var(--background);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 240ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1), visibility 240ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
    margin-bottom: 22px;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border-bottom: 1px solid var(--border);
    font-family: 'Space Grotesk Variable', sans-serif;
    font-size: 21px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }

  .hero-copy {
    order: 2;
    padding: 42px var(--gutter) 54px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 50px;
    white-space: normal;
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-visual {
    order: 1;
    min-height: 0;
    height: 45dvh;
    max-height: 470px;
  }

  .hero-image {
    height: 100%;
    object-position: 66% center;
  }

  .aligner-line {
    display: none;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
    min-width: 205px;
    padding: 12px 14px;
  }

  .facts {
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .facts-track {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    width: max-content;
    padding-inline: 0;
  }

  .fact {
    min-height: 96px;
  }

  .situations,
  .clinic,
  .indications,
  .faq {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .situations {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .situations-sticky,
  .faq-heading {
    position: static;
  }

  .situation-item {
    min-height: 0;
  }

  .invisalign-section {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding-top: 0;
    padding-bottom: 104px;
  }

  .product-image-wrap {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 430px;
  }

  .product-copy {
    grid-column: 1 / 3;
    padding: 38px;
  }

  .product-copy h2 {
    font-size: 40px;
  }

  .benefit-planned {
    grid-column: 1 / 3;
  }

  .process {
    min-height: auto;
  }

  .process-pin {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 40px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-heading h2 {
    font-size: 42px;
  }

  .process-track {
    width: 100%;
    margin-top: 0;
    padding: 56px var(--gutter) 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .process-track::-webkit-scrollbar {
    display: none;
  }

  .process-track::before,
  .process-track::after {
    display: none;
  }

  .process-step {
    flex-basis: min(82vw, 430px);
    min-height: 360px;
    scroll-snap-align: start;
  }

  .clinic {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .clinic-portrait {
    width: min(100%, 520px);
    max-width: none;
  }

  .clinic-copy {
    max-width: 670px;
  }

  .everyday {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding-bottom: 104px;
  }

  .everyday-heading {
    grid-column: 1 / 3;
  }

  .daily-image {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 430px;
  }

  .daily-cell-wide {
    grid-column: 1 / 3;
    padding-right: 32px;
  }

  .indications {
    padding-bottom: 104px;
  }

  .faq {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .contact {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: calc(100% - 2 * var(--gutter));
    margin-inline: var(--gutter);
  }

  .contact-main {
    grid-row: auto;
    min-height: 0;
    padding: 58px 38px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--contact-text) 18%, transparent);
  }

  .contact-main h2 {
    font-size: 54px;
  }

  .contact-address,
  .contact-hours {
    min-height: 0;
    padding: 38px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-legal {
    grid-column: auto;
    flex-direction: column;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    gap: 10px;
    border: 1px solid var(--accent-strong);
    border-radius: 999px;
    background: var(--accent-strong);
    color: var(--button-text);
    font-size: 14px;
    font-weight: 750;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    box-shadow: 0 12px 32px rgba(10, 30, 23, 0.26);
  }

  .mobile-whatsapp svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 560px) {
  .brand-name small {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 43px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .invisalign-section,
  .everyday {
    grid-template-columns: 1fr;
  }

  .product-image-wrap,
  .product-copy,
  .benefit-planned,
  .everyday-heading,
  .daily-image,
  .daily-cell-wide {
    grid-column: auto;
  }

  .product-image-wrap,
  .daily-image {
    min-height: 330px;
  }

  .product-copy {
    padding: 30px;
  }

  .product-copy h2 {
    font-size: 34px;
  }

  .benefit {
    min-height: 190px;
  }

  .clinic-details {
    grid-template-columns: 1fr;
  }

  .daily-cell {
    min-height: 210px;
  }

  .indication-rail article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .contact-main h2 {
    font-size: 45px;
  }

  .contact-main,
  .contact-address,
  .contact-hours {
    padding: 34px 26px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .hero-note {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: var(--background);
  }
}
