:root {
  --green: #3baa5d;
  --green-2: #3cab5f;
  --green-dark: #1f6f43;
  --green-soft: #eaf7ef;
  --ink: #25322b;
  --muted: #637168;
  --line: #dfe8e1;
  --paper: #ffffff;
  --chalk: #fbfcfa;
  --mist: #f3f7f4;
  --warm: #ffe8a6;
  --peach: #fff1e4;
  --sky: #e9f3f7;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(37, 50, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--chalk);
  font-family: "Inter", "Nunito Sans", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(59, 170, 93, 0.28);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(16px, 5vw, 56px);
  background: rgba(251, 252, 250, 0.88);
  border-bottom: 1px solid rgba(223, 232, 225, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 116px;
  height: 46px;
  overflow: hidden;
  border-radius: 999px;
}

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

.site-nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(37, 50, 43, 0.07);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--ink);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active:not(.nav-cta) {
  color: var(--green-dark);
  background: var(--green-soft);
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.is-active {
  color: var(--paper);
  background: var(--green-dark);
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(12, 32, 22, 0.42), rgba(12, 32, 22, 0));
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .brand {
  background: rgba(255, 255, 255, 0.92);
}

.home-page .site-nav {
  background: rgba(12, 32, 22, 0.32);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.home-page .site-nav a {
  color: var(--paper);
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible,
.home-page .site-nav a.is-active:not(.nav-cta) {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.14);
}

.home-page .site-nav .nav-cta {
  color: var(--green-dark);
  background: var(--warm);
}

.home-page .site-nav .nav-cta:hover,
.home-page .site-nav .nav-cta:focus-visible,
.home-page .site-nav .nav-cta.is-active {
  color: var(--green-dark);
  background: #f4ff94;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-dark);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(16px, 5vw, 56px);
}

.section__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section__heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section__heading--row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(20px, 5vw, 68px);
  align-items: end;
  max-width: none;
}

.eyebrow,
.card-kicker,
.breadcrumb-link {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
}

.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 18px;
  text-decoration-color: var(--green);
  text-underline-offset: 5px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Nunito Sans", "Inter", sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
h2 {
  font-weight: 900;
}

p {
  margin-top: 0;
}

.section h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2rem, 4.8vw, 4.35rem);
}

.section__heading p:not(.eyebrow),
.intro__grid > p,
.feature__content p,
.intent-block__heading p,
.seo-copy p,
.service-hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  color: var(--paper);
  background: var(--green);
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.button--soft {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: var(--line);
}

.button--soft:hover,
.button--soft:focus-visible {
  color: var(--paper);
  border-color: var(--green-dark);
}

.button--light {
  color: var(--green-dark);
  background: var(--paper);
}

.button--outline {
  color: var(--green-dark);
  background: transparent;
  border-color: var(--green);
}

.button--outline-light {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  color: var(--green-dark);
  background: var(--paper);
  border-color: var(--paper);
}

.button--small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
  text-decoration-color: var(--green);
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--ink);
}

.hero__actions,
.section__actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.campaign-hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: calc(100svh - 84px);
  padding: clamp(30px, 4vw, 58px) clamp(16px, 5vw, 56px) clamp(36px, 5vw, 66px);
  background: linear-gradient(120deg, var(--chalk) 0%, var(--paper) 56%, var(--green-soft) 100%);
}

.campaign-hero--smile {
  min-height: calc(100svh - 76px);
  background: linear-gradient(115deg, #ffffff 0%, #fbfcfa 48%, #eaf7ef 100%);
}

.campaign-hero--fullscreen {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: clamp(108px, 14vh, 176px) clamp(20px, 6vw, 84px) clamp(54px, 8vh, 96px);
  overflow: hidden;
  color: var(--paper);
  background: var(--green-dark);
}

.campaign-hero__background,
.campaign-hero__overlay {
  position: absolute;
  inset: 0;
}

.campaign-hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-hero__overlay {
  background:
    linear-gradient(90deg, rgba(9, 27, 20, 0.78) 0%, rgba(9, 27, 20, 0.44) 43%, rgba(9, 27, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(9, 27, 20, 0.5) 0%, rgba(9, 27, 20, 0.06) 42%, rgba(9, 27, 20, 0.36) 100%);
}

.campaign-hero__copy {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(760px, 100%);
}

.campaign-hero--fullscreen .campaign-hero__copy {
  justify-self: auto;
  width: min(760px, 100%);
}

.campaign-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(3rem, 5.15vw, 5.9rem);
  line-height: 0.96;
  text-wrap: balance;
}

.campaign-hero--fullscreen h1 {
  color: var(--paper);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(3.15rem, 6.8vw, 7.9rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
}

.campaign-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.26rem);
}

.campaign-hero--fullscreen .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.campaign-hero--fullscreen p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  text-wrap: balance;
}

.button--hero {
  color: var(--green-dark);
  background: #f4ff94;
}

.button--hero:hover,
.button--hero:focus-visible {
  color: var(--green-dark);
  background: var(--warm);
}

.button--glass {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(16px);
}

.button--glass:hover,
.button--glass:focus-visible {
  color: var(--green-dark);
  background: var(--paper);
}

.hero-bottom-note {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: clamp(18px, 4vh, 38px);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: min(620px, calc(100% - 40px));
}

.hero-bottom-note span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.campaign-hero__visual {
  position: relative;
  min-height: min(600px, 66svh);
}

.campaign-hero__visual > img,
.campaign-hero__visual > video {
  width: 100%;
  height: min(600px, 66svh);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.campaign-hero__visual > video {
  background: var(--ink);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-trust li {
  min-height: 74px;
  padding: 14px;
  color: var(--green-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
}

.confidence-stack {
  background: var(--paper);
}

.confidence-stack__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
}

.confidence-stack__copy {
  max-width: 360px;
}

.confidence-stack h2 {
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
  font-weight: 300;
  line-height: 1.04;
}

.confidence-stack__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
}

.confidence-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.confidence-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
}

.confidence-card--tall {
  min-height: 320px;
}

.confidence-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.confidence-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(9, 27, 20, 0.72) 0%, rgba(9, 27, 20, 0.08) 72%);
}

.confidence-card--color {
  background:
    linear-gradient(135deg, rgba(31, 111, 67, 0.48), rgba(31, 111, 67, 0.88)),
    url("../img/reference/aalto-treatment-preview.png") center / cover;
}

.confidence-card--blur {
  background:
    linear-gradient(0deg, rgba(9, 27, 20, 0.64), rgba(9, 27, 20, 0.24)),
    url("../img/reference/aalto-manufacturing.jpg") center / cover;
}

.confidence-card > div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.confidence-card span,
.confidence-card strong {
  display: block;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(9, 27, 20, 0.3);
}

.confidence-card span {
  max-width: 230px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.confidence-card strong {
  margin-top: 4px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 0.96;
}

.hero-scan-card,
.hero-progress-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(37, 50, 43, 0.16);
  backdrop-filter: blur(14px);
}

.hero-scan-card {
  left: clamp(14px, 4vw, 34px);
  bottom: clamp(14px, 4vw, 34px);
  width: min(290px, calc(100% - 28px));
  padding: 18px;
}

.hero-scan-card__label,
.hero-progress-card span,
.result-card span {
  color: var(--green-dark);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-scan-card strong,
.hero-progress-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
}

.hero-scan-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.scan-line {
  position: relative;
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  background: var(--green-soft);
  border-radius: 999px;
}

.scan-line::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 72%;
  content: "";
  background: var(--green);
  border-radius: inherit;
}

.hero-progress-card {
  top: clamp(14px, 4vw, 34px);
  right: clamp(14px, 4vw, 34px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  width: min(230px, calc(100% - 28px));
  padding: 16px;
}

.hero-progress-card span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero-progress-card strong {
  align-self: center;
  margin: 0;
  font-size: 0.98rem;
}

.hero-poster-card {
  position: absolute;
  left: clamp(14px, 4vw, 34px);
  bottom: clamp(14px, 4vw, 34px);
  display: grid;
  gap: 8px;
  width: min(290px, calc(100% - 28px));
  padding: 18px;
  color: var(--paper);
  background: rgba(31, 111, 67, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-poster-card span {
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
}

.hero-poster-card strong {
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
}

.smile-path {
  background: var(--paper);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stage-card {
  min-height: 260px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stage-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.stage-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
}

.stage-card p {
  margin: 0;
  color: var(--muted);
}

.media-intake {
  background: var(--sky);
}

.media-intake__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.78fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
}

.media-intake__copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.upload-preview {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 30px);
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.upload-preview__drop {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(rgba(31, 111, 67, 0.2), rgba(31, 111, 67, 0.72)),
    url("../img/reference/aalto-care-personal.png") center / cover;
  border: 1px dashed rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
}

.upload-preview__drop span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--green-dark);
  background: var(--paper);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.upload-preview__drop strong {
  margin-top: 18px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1;
}

.upload-preview__drop p,
.upload-preview__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.upload-preview__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.upload-preview__note span {
  color: var(--warm);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.scan-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.scan-mini-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--green-dark);
  background: var(--paper);
  border: 1px solid rgba(31, 111, 67, 0.18);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.technology-flow {
  background: var(--paper);
}

.technology-flow__grid,
.treatment-path__grid,
.smile-scan-overview__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.technology-flow__media,
.treatment-path__media,
.booking-hero-media {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.technology-flow__media video,
.treatment-path__media video,
.booking-hero-media video {
  width: 100%;
  height: min(600px, 66svh);
  object-fit: cover;
}

.scan-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.scan-status-grid div {
  min-height: 110px;
  padding: 16px;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scan-status-grid strong,
.scan-status-grid span {
  display: block;
}

.scan-status-grid strong {
  color: var(--green-dark);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.scan-status-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.offer-posters {
  background: var(--paper);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.poster-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
}

.poster-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.poster-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(20, 49, 34, 0.82) 0%, rgba(20, 49, 34, 0.2) 60%, rgba(20, 49, 34, 0) 100%);
}

.poster-card:hover img {
  transform: scale(1.035);
}

.poster-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px;
}

.poster-card__content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--green-dark);
  background: var(--paper);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
}

.poster-card h3 {
  max-width: 260px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 900;
}

.poster-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.poster-card .text-link {
  color: var(--paper);
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.decision-strip {
  color: var(--paper);
  background: var(--green-dark);
}

.decision-strip h2,
.decision-strip .eyebrow {
  color: var(--paper);
}

.decision-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.decision-list {
  display: grid;
  gap: 10px;
}

.decision-list a {
  padding: 18px 20px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.decision-list a:hover {
  background: var(--warm);
  transform: translateX(4px);
}

.proof-band {
  color: var(--paper);
  background: var(--green-dark);
}

.proof-band .eyebrow,
.proof-band h2 {
  color: var(--paper);
}

.proof-band p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.proof-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-metrics div {
  min-height: 160px;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
}

.proof-metrics strong {
  display: block;
  color: var(--green-dark);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.proof-metrics span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.comparison {
  background: var(--peach);
}

.comparison__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.comparison__grid p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.comparison-table {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr 1fr;
  min-height: 64px;
  border-top: 1px solid var(--line);
}

.comparison-table [role="row"]:first-child {
  min-height: 58px;
  color: var(--paper);
  background: var(--green-dark);
  border-top: 0;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.comparison-table span {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-left: 1px solid var(--line);
}

.comparison-table span:first-child {
  border-left: 0;
  font-weight: 900;
}

.comparison-table [role="row"]:first-child span {
  border-left-color: rgba(255, 255, 255, 0.16);
}

.intro {
  background: var(--peach);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.services {
  background: var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.directory-card,
.step,
.faq details,
.mini-service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card--editorial {
  overflow: hidden;
}

.service-card--editorial img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.service-card--editorial > div {
  padding: 22px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 900;
}

.service-card p,
.directory-card p,
.step p {
  color: var(--muted);
}

.local-feature {
  background: var(--paper);
}

.local-feature__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.local-card {
  display: grid;
  place-items: center;
  min-height: 510px;
  padding: 32px;
  color: var(--paper);
  text-align: center;
  background: var(--green);
  border-radius: var(--radius);
}

.local-card p {
  align-self: start;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
}

.local-card img {
  width: min(470px, 92%);
  border-radius: var(--radius);
}

.local-card strong {
  align-self: end;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.contact-pills a,
.keyword-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.local-keywords {
  background: var(--chalk);
}

.home-faq {
  background: var(--paper);
}

.smile-results {
  background: var(--paper);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.result-card {
  overflow: hidden;
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.result-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.result-card div {
  padding: 22px;
}

.result-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
}

.result-card p {
  margin: 0;
  color: var(--muted);
}

.faq--general {
  max-width: 880px;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.keyword-cloud a {
  color: var(--muted);
  background: var(--paper);
  font-size: 0.9rem;
}

.page-hero,
.service-hero {
  padding: clamp(28px, 4.2vw, 68px) clamp(16px, 5vw, 56px) clamp(52px, 7vw, 94px);
}

.page-hero--editorial,
.service-hero--editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--paper);
}

.page-hero--editorial {
  grid-template-columns: minmax(0, 620px) minmax(320px, 560px);
  justify-content: center;
}

.page-hero--booking {
  background:
    linear-gradient(120deg, var(--paper), var(--green-soft)),
    var(--paper);
}

.page-hero--booking-media {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
}

.page-hero--booking .page-hero__content {
  justify-self: auto;
  width: min(780px, 100%);
  margin: 0;
}

.page-hero--booking h1 {
  font-size: clamp(2.65rem, 6vw, 5.65rem);
}

.page-hero__content {
  justify-self: end;
  width: min(690px, 100%);
}

.page-hero h1,
.service-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5.05vw, 5.25rem);
  line-height: 0.98;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.page-hero__content > p:not(.eyebrow),
.service-hero__content > p:not(.eyebrow) {
  margin-top: clamp(18px, 2.6vw, 28px);
}

.page-hero > img {
  width: 100%;
  height: min(560px, 66svh);
  object-fit: cover;
  border-radius: var(--radius);
}

.booking-hero-media video {
  height: min(560px, 62svh);
}

.booking-hero-media__note {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  color: var(--paper);
  background: rgba(31, 111, 67, 0.9);
  border-radius: var(--radius);
}

.booking-hero-media__note span,
.booking-hero-media__note strong {
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.service-intents {
  background: var(--chalk);
}

.intent-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 60px);
  padding: clamp(26px, 5vw, 46px) 0;
  border-top: 1px solid var(--line);
}

.intent-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.intent-block__heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.intent-block h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.4rem);
}

.intent-cards {
  display: grid;
  gap: 14px;
}

.directory-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
}

.directory-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.directory-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 4vw, 34px);
}

.directory-card h2,
.directory-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 900;
}

.seo-copy {
  background: var(--sky);
}

.seo-copy__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 70px);
}

.seo-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

.smile-scan-overview {
  background: var(--sky);
}

.scan-guide-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scan-guide-cards article {
  min-height: 164px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scan-guide-cards span,
.compact-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.scan-guide-cards h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.scan-guide-cards p,
.smile-scan-overview p,
.treatment-path p,
.service-scan-panel p,
.service-help-band p,
.final-cta p {
  color: var(--muted);
}

.services-path {
  background: var(--paper);
}

.service-hero--editorial {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 232, 166, 0.34), transparent 30%),
    var(--paper);
}

.service-hero__content {
  justify-self: end;
  width: min(780px, 100%);
}

.service-hero__media {
  position: relative;
  margin: 0;
}

.service-hero__media img {
  width: 100%;
  height: min(610px, 72svh);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-hero__media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: var(--paper);
  background: rgba(31, 111, 67, 0.86);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-benefit-band {
  color: var(--paper);
  background: var(--green-dark);
}

.service-benefit-band h2,
.service-benefit-band .eyebrow {
  color: var(--paper);
}

.benefit-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-cards li {
  min-height: 118px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  font-weight: 700;
}

.treatment-path {
  background: var(--mist);
}

.treatment-path__media video {
  height: min(620px, 68svh);
}

.compact-steps {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.compact-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compact-steps span {
  width: 34px;
  height: 34px;
  margin: 0;
  background: var(--green);
}

.compact-steps h3 {
  margin-bottom: 4px;
  font-size: 1.06rem;
  font-weight: 900;
}

.compact-steps p {
  margin: 0;
  font-size: 0.94rem;
}

.detail-layout {
  background: var(--paper);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(286px, 350px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.detail-main {
  display: grid;
  gap: clamp(48px, 7vw, 78px);
}

.detail-main h2,
.visual-pair h2,
.faq h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
}

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

.steps--timeline .step {
  padding: 22px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.visual-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 34px);
  align-items: start;
  padding: clamp(20px, 4vw, 34px);
  background: var(--mist);
  border-radius: var(--radius);
}

.visual-pair__copy {
  max-width: 780px;
}

.visual-pair h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
  text-wrap: balance;
}

.visual-pair p,
.faq p {
  color: var(--muted);
}

.visual-pair__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.visual-pair figure {
  margin: 0;
}

.visual-pair img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-scan-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.78fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  background: var(--sky);
  border-radius: var(--radius);
}

.scan-guide-cards--compact {
  grid-template-columns: 1fr;
}

.scan-guide-cards--compact article {
  min-height: 0;
}

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

.faq details {
  padding: 18px 20px;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.sticky-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 15px;
  padding: 24px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
}

.sticky-panel .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.sticky-panel h2 {
  font-size: 1.65rem;
  font-weight: 900;
}

.sticky-panel p,
.sticky-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.sticky-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.sticky-panel dt {
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-weight: 900;
}

.related-services {
  background: var(--green-soft);
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-service {
  overflow: hidden;
  color: var(--ink);
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
}

.mini-service img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.mini-service span {
  display: block;
  padding: 16px;
}

.service-help-band,
.final-cta {
  color: var(--paper);
  background: var(--green-dark);
}

.service-help-band .eyebrow,
.service-help-band h2,
.final-cta .eyebrow,
.final-cta h2 {
  color: var(--paper);
}

.service-help-band p,
.final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.service-help-band__inner,
.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.service-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 56px clamp(16px, 5vw, 56px) 28px;
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 232, 166, 0.13), transparent 28%),
    var(--green-dark);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.site-footer img {
  width: 124px;
  height: 50px;
  object-fit: cover;
  border-radius: 999px;
}

.site-footer p {
  margin: 9px 0 0;
}

.site-footer a {
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 4px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 1.08rem;
  font-weight: 900;
}

.site-footer address {
  font-style: normal;
}

.footer-brand p {
  max-width: 340px;
}

.footer-brand p:first-of-type {
  font-family: "Nunito Sans", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-actions {
  margin-top: 18px;
}

.footer-local {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), 100%);
  padding-top: 28px;
  margin: 38px auto 0;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__bottom nav {
  display: flex;
  gap: 16px;
}

[data-animate] {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .poster-grid,
  .service-grid,
  .stage-grid,
  .result-grid,
  .scan-guide-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust,
  .proof-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .campaign-hero__copy {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    grid-template-columns: 1fr;
    justify-self: stretch;
    padding: 10px;
    border-radius: var(--radius);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    border-radius: var(--radius);
  }

  .campaign-hero,
  .confidence-stack__grid,
  .page-hero--booking-media,
  .page-hero--editorial,
  .service-hero--editorial,
  .decision-strip__inner,
  .proof-band__inner,
  .comparison__grid,
  .technology-flow__grid,
  .treatment-path__grid,
  .smile-scan-overview__grid,
  .service-scan-panel,
  .media-intake__grid,
  .intro__grid,
  .local-feature__grid,
  .intent-block,
  .seo-copy__grid,
  .benefit-band__grid,
  .detail-grid,
  .service-help-band__inner,
  .final-cta__inner,
  .visual-pair,
  .section__heading--row {
    grid-template-columns: 1fr;
  }

  .campaign-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .campaign-hero--fullscreen {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 100svh;
    padding-top: 104px;
  }

  .campaign-hero__copy,
  .page-hero__content,
  .service-hero__content {
    justify-self: start;
    width: 100%;
  }

  .campaign-hero__visual,
  .campaign-hero__visual > img,
  .campaign-hero__visual > video,
  .technology-flow__media video,
  .treatment-path__media video,
  .booking-hero-media video,
  .service-hero__media img {
    min-height: 0;
    height: auto;
  }

  .campaign-hero__visual > img,
  .campaign-hero__visual > video {
    aspect-ratio: 1 / 1.08;
  }

  .page-hero > img {
    height: auto;
    aspect-ratio: 1.05 / 1;
  }

  .intent-block__heading,
  .sticky-panel {
    position: static;
  }

  .service-help-actions {
    justify-content: flex-start;
  }

  .directory-card {
    grid-template-columns: minmax(126px, 0.38fr) minmax(0, 1fr);
  }

  .directory-card img {
    min-height: 100%;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 104px;
    height: 42px;
  }

  .campaign-hero h1,
  .page-hero h1,
  .service-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.25rem);
  }

  .service-hero h1 {
    font-size: clamp(2.35rem, 10.7vw, 3.25rem);
  }

  .campaign-hero p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero__actions,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

    .poster-grid,
    .service-grid,
    .stage-grid,
    .result-grid,
    .confidence-mosaic,
    .hero-trust,
    .proof-metrics,
    .scan-status-grid,
    .scan-guide-cards,
    .steps,
    .benefit-cards,
    .visual-pair__grid,
  .mini-service-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .poster-card {
    min-height: 390px;
  }

  .campaign-hero--fullscreen h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-bottom-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    justify-content: flex-start;
    max-width: 100%;
  }

  .confidence-card,
  .confidence-card--tall {
    min-height: 260px;
  }

  .stage-card,
  .proof-metrics div {
    min-height: 0;
  }

  .upload-preview__drop {
    min-height: 240px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table [role="row"] {
    min-width: 560px;
  }

  .decision-list a {
    padding: 16px;
  }

  .local-card {
    min-height: 420px;
  }

  .directory-card {
    grid-template-columns: 1fr;
  }

  .directory-card img {
    min-height: 0;
    aspect-ratio: 1.55 / 1;
  }

  .visual-pair {
    padding: 16px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;
  }
}

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