@import url("https://cdn.jsdelivr.net/gh/lazywasabi/thai-web-fonts@main/fonts/LINESeedSansTH/LINESeedSansTH.css");

@font-face {
  font-family: "Prompt Local";
  src: url("assets/fonts/Prompt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt Local";
  src: url("assets/fonts/Prompt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt Local";
  src: url("assets/fonts/Prompt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt Local";
  src: url("assets/fonts/Prompt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt Local";
  src: url("assets/fonts/Prompt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0757df;
  --blue-deep: #0046bf;
  --sky: #eaf4ff;
  --line: #dfe8f4;
  --ink: #182033;
  --muted: #667085;
  --soft: #f6faff;
  --green: #08bd22;
  --star: #ffb703;
  --shadow: 0 18px 44px rgba(12, 52, 122, .12);
  --radius: 8px;
  --font-main: "LINE Seed Sans TH", "LINE Seed Sans", "Prompt Local", "Prompt", "Noto Sans Thai", "Sarabun", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell-width: 1200px;
  --section-x: 42px;
  --weight-strong: 700;
  --weight-medium: 700;
  --weight-regular: 400;
  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-main);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(12, 101, 226, .12), transparent 28rem),
    #fff;
  overflow-x: hidden;
}

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

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

.package-title {
  text-align: center;
  padding: 18px 14px 16px;
}

.package-title h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--blue);
  font-size: clamp(3.8rem, 11vw, 7.5rem);
  font-weight: var(--weight-strong);
  line-height: .88;
  letter-spacing: 0;
}

.package-title h1::after {
  content: "✦";
  position: absolute;
  right: -42px;
  top: 2px;
  color: #8db7ff;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.package-title p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(280px, 88vw);
  width: fit-content;
  margin: 12px auto 0;
  padding: 8px 34px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #0b64ee, #0647c9);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .08);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: var(--weight-strong);
  line-height: 1;
}

.site-shell,
.trust-shell,
.quick-shell {
  width: min(var(--shell-width), calc(100% - 32px));
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.site-header,
.trust-header {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 20px var(--section-x);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
}

.header-row {
  display: contents;
}

.nav-toggle,
.nav-backdrop,
.nav-appointment,
.mobile-cta-bar,
.footer-cta {
  display: none;
}

.package-title.demo-label {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 260px;
  height: 68px;
  background: url("assets/smile-dental-logo-clean.svg") left center / contain no-repeat;
}

.brand > * {
  display: none !important;
}

.brand strong {
  display: block;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: var(--weight-strong);
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #222;
  font-size: 1rem;
  line-height: 1.1;
}

.site-footer .brand {
  width: 240px;
  height: 62px;
}

.brand-large {
  width: 300px;
  height: 78px;
}

.tooth-mark {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  background: var(--blue);
  -webkit-mask: url("assets/tooth-logo.svg") center / contain no-repeat;
  mask: url("assets/tooth-logo.svg") center / contain no-repeat;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 4vw, 54px);
  font-size: 1.05rem;
  font-weight: var(--weight-medium);
  white-space: nowrap;
}

.wide-nav {
  gap: clamp(14px, 2vw, 24px);
  flex: 1 1 auto;
  justify-content: center;
  font-size: clamp(.76rem, 1.5vw, .88rem);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a.active {
  color: var(--blue);
}

.main-nav a.active::after,
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  transform: translateX(-50%);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: var(--weight-strong);
  box-shadow: 0 10px 20px rgba(0, 80, 210, .18);
}

.btn-primary {
  background: linear-gradient(180deg, #0965ee, #0648c7);
}

.btn-line {
  background: linear-gradient(180deg, #17d333, #03a91b);
}

.btn-outline {
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.btn-outline .icon.nav {
  background: var(--blue);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(7, 87, 223, .06);
}

.btn-line .icon.line {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: #fff;
  -webkit-mask-image: url("assets/icon-line-simple.svg");
  mask-image: url("assets/icon-line-simple.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.appointment {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 7px;
  font-size: .88rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: .84fr 1.16fr;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255, 255, 255, .82) 48%, transparent 100%);
}

.trust-hero {
  min-height: 480px;
  grid-template-columns: .82fr 1.18fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 70px 0 70px 78px;
}

.trust-hero .hero-copy {
  padding: 48px 0 42px 58px;
  width: 520px;
  max-width: 52vw;
}

.hero-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(4rem, 7.5vw, 6rem);
  font-weight: var(--weight-strong);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-line {
  display: block;
}

.hero-copy h2 .hero-line {
  white-space: nowrap;
}

.trust-hero .hero-copy h2 {
  font-size: clamp(3.5rem, 5.8vw, 5rem);
}

.hero-copy > p {
  margin: 24px 0 0;
  color: #252b36;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.55;
  font-weight: var(--weight-regular);
}

.trust-hero .hero-copy > p {
  font-size: 1.16rem;
  max-width: 440px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.trust-hero .cta-row {
  gap: 14px;
  margin-top: 22px;
}

.trust-hero .btn {
  min-height: 44px;
  padding-inline: 16px;
  font-size: .95rem;
}

.micro-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 46px !important;
  color: #6d737d !important;
  font-size: 1.13rem !important;
  font-weight: var(--weight-regular) !important;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 36%;
  z-index: 1;
}

.trust-hero .hero-photo {
  inset: 0 0 0 38%;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.86) 21%, rgba(255,255,255,.16) 48%, rgba(255,255,255,0) 72%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rating-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  font-size: 1.45rem;
  font-weight: var(--weight-strong);
}

.google-g {
  display: inline-block;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: url("assets/google-g-logo.svg") center / contain no-repeat;
}

.stars {
  color: var(--star);
  letter-spacing: 0;
}

.section,
.section.compact,
.section.tight {
  padding: 36px var(--section-x) 48px;
}

.section.compact {
  padding-top: 32px;
}

.section-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 34px;
  padding-bottom: 13px;
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: var(--weight-strong);
  text-align: center;
}

.service-grid {
  display: grid;
  gap: 30px;
}

.quick-services {
  grid-template-columns: repeat(3, 1fr);
}

.trust-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.trust-services .photo-service {
  flex: 0 1 calc(25% - 17px);
  min-width: 220px;
  max-width: 100%;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 63, 116, .06);
}

.icon-only {
  min-height: 250px;
  padding: 42px 30px 34px;
  text-align: center;
}

.service-card h3 {
  margin: 16px 0 10px;
  font-size: 1.22rem;
  font-weight: var(--weight-strong);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-icon,
.floating-icon,
.highlight-icon,
.icon,
.contact-icon {
  display: inline-block;
  background: var(--blue);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.service-icon,
.floating-icon::before,
.highlight-icon,
.value-icon {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-mask-image: none;
  mask-image: none;
}

.service-icon {
  width: 76px;
  height: 76px;
  aspect-ratio: 1 / 1;
}

.service-icon.tooth-clean,
.service-icon.sparkle-tooth {
  background-image: url("assets/icon-service-exam.svg");
}

.service-icon.filling {
  background-image: url("assets/icon-service-filling.svg");
}

.service-icon.scaling-icon {
  background-image: url("assets/icon-scaling-mark.svg");
}

.service-icon.implant {
  background-image: url("assets/icon-service-implant.svg");
}

.service-icon.braces {
  background-image: url("assets/icon-service-braces.svg");
}

.service-icon.whitening {
  background-image: url("assets/icon-service-whitening.svg");
}

.service-icon.extraction {
  background-image: url("assets/icon-service-extraction.svg");
}

.floating-icon::before {
  content: "";
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  aspect-ratio: 1 / 1;
}

.floating-icon.tooth-clean::before,
.floating-icon.sparkle-tooth::before {
  background-image: url("assets/icon-service-exam.svg");
}

.floating-icon.filling::before {
  background-image: url("assets/icon-service-filling.svg");
}

.floating-icon.implant::before {
  background-image: url("assets/icon-service-implant.svg");
}

.floating-icon.braces::before {
  background-image: url("assets/icon-service-braces.svg");
}

.floating-icon.whitening::before {
  background-image: url("assets/icon-service-whitening.svg");
}

.floating-icon.extraction::before {
  background-image: url("assets/icon-service-extraction.svg");
}

.floating-icon.scaling-icon::before {
  background-image: url("assets/icon-scaling-mark.svg");
}

.trust-highlights {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: calc(100% - 92px);
  margin: -2px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}

.trust-highlights article {
  min-height: 132px;
  padding: 24px 28px 20px;
  text-align: center;
}

.trust-highlights article + article {
  border-left: 1px solid var(--line);
}

.trust-highlights h3 {
  margin: 10px 0 6px;
  color: var(--blue);
  font-size: 1rem;
}

.trust-highlights p {
  margin: 0;
  color: #485467;
  font-size: .9rem;
  line-height: 1.45;
}

.highlight-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin-inline: auto;
}

.dentist { background-image: url("assets/icon-highlight-dentist.svg"); }
.tech { background-image: url("assets/icon-highlight-tech.svg"); }
.shield-blue { background-image: url("assets/icon-highlight-shield.svg"); }
.appointment-blue { background-image: url("assets/icon-highlight-calendar.svg"); }

.photo-service {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.photo-service-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.photo-service-media > img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
  background: var(--sky);
  border-radius: 8px 8px 0 0;
}

.photo-service h3,
.photo-service p {
  padding-inline: 16px;
}

.photo-service h3 {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  color: var(--blue);
  font-size: 1rem;
}

.photo-service p {
  padding-bottom: 18px;
  font-size: .84rem;
  line-height: 1.55;
}

.floating-icon {
  position: absolute;
  left: 14px;
  top: 0;
  margin-top: calc(78% - 56px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(23, 63, 116, .1);
  z-index: 3;
}

.value-band,
.faq-band {
  margin: 0 var(--section-x) 26px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(90deg, #f7fbff 0%, #fff 58%, #eef6ff 100%);
  border: 1px solid var(--line);
}

.value-band {
  padding: 22px 20px 22px;
}

.value-band .section-title {
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.value-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  align-items: stretch;
}

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

.value-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 130px;
  padding: 20px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  text-align: center;
}

.value-grid h3 {
  margin: 10px 0 6px;
  color: var(--blue);
  font-size: .96rem;
}

.value-grid p {
  margin: 0;
  color: #586374;
  font-size: .82rem;
  line-height: 1.5;
}

.value-icon {
  display: block;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask-image: none;
  mask-image: none;
}

.value-icon.heart {
  background-image: url("assets/icon-value-heart.svg?v=artboard");
}

.value-icon.chat {
  background-image: url("assets/icon-value-chat.svg?v=artboard");
}

.value-icon.location {
  background-image: url("assets/icon-value-location.svg?v=artboard");
}

.value-icon.time {
  background-image: url("assets/icon-value-time.svg?v=artboard");
}

.value-content > img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

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

.review-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(23, 63, 116, .05);
}

.review-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.review-card h3 {
  margin: 0;
  font-size: .95rem;
}

.review-card p {
  margin: 4px 0 0;
  color: #485467;
  font-size: .88rem;
  line-height: 1.55;
}

.review-card .stars {
  color: var(--star);
  font-size: 1rem;
}

.review-card small {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: .78rem;
}

.outline-button {
  display: flex;
  width: fit-content;
  min-width: 238px;
  justify-content: center;
  margin: 20px auto 0;
  padding: 8px 20px;
  border: 2px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  font-weight: var(--weight-strong);
}

.faq-band {
  display: grid;
  grid-template-columns: 1.55fr .45fr;
  align-items: end;
  padding: 18px 28px 0;
}

.faq-copy h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.5rem;
}

.faq-list {
  padding-bottom: 18px;
}

details {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.7);
}

summary {
  cursor: pointer;
  padding: 9px 10px;
  list-style: none;
  font-weight: var(--weight-strong);
  font-size: .95rem;
}

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

summary::after {
  content: "⌄";
  float: right;
}

details[open] summary::after {
  content: "⌃";
}

details p {
  margin: 0;
  padding: 0 10px 12px;
  color: #586374;
  font-size: .88rem;
  line-height: 1.55;
}

.faq-band > img {
  align-self: end;
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  max-height: 260px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
  background: #eaf4ff;
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.5);
  justify-self: center;
}

.contact-layout {
  display: grid;
  gap: 34px;
  align-items: center;
}

.quick-contact {
  grid-template-columns: 1fr 1.35fr;
}

.trust-contact-layout {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item,
.contact-list p {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  margin: 0;
  color: #353c48;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-item {
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  background: rgba(7, 87, 223, .06);
}

.contact-item-static {
  cursor: default;
}

.contact-icon,
.icon {
  width: 28px;
  height: 28px;
}

.contact-icon.pin,
.contact-icon.clock {
  background: var(--blue);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.contact-icon.pin {
  -webkit-mask-image: url("assets/icon-pin.svg");
  mask-image: url("assets/icon-pin.svg");
}

.contact-icon.clock {
  -webkit-mask-image: url("assets/icon-clock.svg");
  mask-image: url("assets/icon-clock.svg");
}

.contact-icon.call,
.phone {
  background: var(--blue);
  -webkit-mask-image: url("assets/icon-phone.svg");
  mask-image: url("assets/icon-phone.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.btn-primary .icon.phone {
  background: #fff;
}

.contact-icon.line {
  background: #06c755;
  -webkit-mask-image: url("assets/icon-line-simple.svg");
  mask-image: url("assets/icon-line-simple.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.shield { -webkit-mask-image: url("assets/icon-shield.svg"); mask-image: url("assets/icon-shield.svg"); background: #6d737d; }
.nav { -webkit-mask-image: url("assets/icon-nav.svg"); mask-image: url("assets/icon-nav.svg"); background: #fff; }
.calendar { -webkit-mask-image: url("assets/icon-calendar.svg"); mask-image: url("assets/icon-calendar.svg"); background: #fff; }

.map-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  border-radius: 12px;
  background: var(--sky);
  box-shadow: 0 12px 28px rgba(23, 63, 116, .08);
}

.map-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.compact-map,
.compact-map img {
  min-height: 190px;
}

.compact-map img {
  object-position: 50% 43%;
}

.map-button {
  position: absolute;
  right: 11%;
  bottom: 18%;
  min-height: 60px;
  padding-inline: 30px;
  font-size: 1.18rem;
}

.storefront {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 var(--section-x) 34px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--section-x);
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.site-footer p {
  margin: 0;
  color: #7b8490;
  font-size: 1rem;
}

.trust-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  align-items: start;
}

.footer-mobile-actions {
  display: none;
}

.footer-panel summary {
  list-style: none;
  cursor: default;
  pointer-events: none;
}

.footer-panel summary::-webkit-details-marker {
  display: none;
}

.footer-panel summary::marker {
  content: "";
}

.contact-panel summary {
  list-style: none;
  cursor: default;
  pointer-events: none;
}

.contact-panel summary::-webkit-details-marker {
  display: none;
}

.contact-panel summary::marker {
  content: "";
}

.contact-panel summary {
  position: relative;
  width: fit-content;
  margin: 0 auto 34px;
  padding-bottom: 13px;
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: var(--weight-strong);
  text-align: center;
}

.contact-panel summary::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  transform: translateX(-50%);
}

.trust-footer h3,
.footer-panel summary {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: var(--weight-strong);
}

.trust-footer p,
.footer-links {
  line-height: 1.6;
  font-size: .9rem;
}

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

.footer-links a {
  color: #586374;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-services {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #586374;
}

.copyright {
  margin: 0;
  padding: 8px;
  color: #fff;
  background: var(--blue);
  text-align: center;
  font-size: .82rem;
}

.selector-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.package-select {
  width: min(860px, calc(100% - 32px));
}

.brand-large {
  justify-content: center;
  margin-bottom: 24px;
}

.select-panel {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.select-panel h1 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--ink);
}

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

.package-card {
  display: grid;
  gap: 10px;
  padding: 30px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.package-card.featured {
  border-color: rgba(7, 87, 223, .4);
  background: var(--soft);
}

.package-card span {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: var(--weight-strong);
}

.package-card strong {
  font-size: 2rem;
}

.package-card small {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .site-header,
  .trust-header {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 26px;
  }

  .main-nav,
  .wide-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    gap: 22px;
  }

  .trust-header .nav-panel {
    order: 3;
    width: 100%;
  }

  .trust-header .header-row {
    order: 1;
    width: 100%;
    justify-content: space-between;
  }

  .appointment-desktop {
    order: 4;
    width: 100%;
  }

  .trust-services .photo-service {
    flex: 0 1 calc(33.333% - 15px);
    min-width: 200px;
  }

  .value-content,
  .quick-contact,
  .trust-contact-layout,
  .faq-band {
    grid-template-columns: 1fr;
  }

  .faq-band {
    align-items: center;
    text-align: left;
  }

  .faq-band > img {
    width: min(220px, 72%);
    margin: 0 auto 12px;
  }

  .value-grid,
  .trust-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-highlights article + article {
    border-left: 0;
  }
}

@media (min-width: 761px) {
  .trust-header .nav-panel {
    display: contents;
  }

  .hero-photo {
    grid-column: 1 / -1;
    grid-row: 1;
    position: absolute;
    inset: 0 0 0 36%;
    width: auto;
    height: auto;
    aspect-ratio: auto;
    background: transparent;
  }

  .trust-hero .hero-photo {
    inset: 0 0 0 38%;
  }

  .hero-photo::before {
    display: block;
  }

  .hero-photo img {
    object-fit: cover;
    object-position: center;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    position: relative;
    z-index: 2;
    width: min(520px, 52vw);
    max-width: 52vw;
    padding: 70px 24px 70px 78px;
    box-sizing: border-box;
    background: none;
  }

  .trust-hero .hero-visual {
    width: 520px;
    padding: 48px 24px 48px 58px;
  }

  .hero-overlay {
    position: static;
    padding: 0;
    background: none;
    width: auto;
    max-width: none;
  }

  .hero-overlay h2 {
    margin: 0;
    color: var(--blue);
    font-size: clamp(4rem, 7.5vw, 6rem);
    line-height: 1.08;
  }

  .trust-hero .hero-overlay h2 {
    font-size: clamp(3.5rem, 5.8vw, 5rem);
  }

  .hero-overlay h2 .hero-line {
    white-space: nowrap;
  }

  .hero-overlay > p {
    margin: 24px 0 0;
    color: #252b36;
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
    line-height: 1.55;
  }

  .trust-hero .hero-overlay > p {
    font-size: 1.16rem;
    max-width: 440px;
  }

  .hero-actions {
    position: static;
    padding: 0;
    width: auto;
    max-width: none;
    background: transparent;
  }

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

  .trust-hero .hero-actions .cta-row {
    margin-top: 22px;
  }

  .hero-actions .micro-trust {
    margin-top: 26px !important;
  }

  .trust-hero .hero-actions .rating-strip {
    margin-top: 20px;
  }
}

@media (max-width: 760px) {
  body.nav-open {
    overflow: hidden;
  }

  body.has-mobile-cta {
    padding-bottom: 76px;
  }

  .package-title {
    overflow: hidden;
    padding: 10px 14px 8px;
  }

  .package-title h1 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
    line-height: 1;
  }

  .package-title h1::after {
    right: -18px;
    top: -2px;
    font-size: 1rem;
  }

  .package-title p {
    min-width: 0;
    margin-top: 8px;
    padding: 6px 18px 7px;
    font-size: clamp(1rem, 4.5vw, 1.35rem);
  }

  .site-shell,
  .trust-shell,
  .quick-shell {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    margin-bottom: 18px;
    overflow: visible;
  }

  .site-header,
  .trust-header {
    position: relative;
    z-index: 40;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    min-height: auto;
    padding: 12px 14px;
  }

  .trust-header.is-scrolled {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(12, 52, 122, .08);
  }

  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .brand {
    width: min(190px, 48vw);
    height: 52px;
  }

  .site-footer .brand {
    width: min(190px, 62vw);
    height: 52px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: .82rem;
  }

  .tooth-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
  }

  .nav-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    border-radius: 99px;
    background: var(--blue);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .trust-header .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 35;
    padding: 72px 18px 24px;
    background: rgba(255, 255, 255, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    overflow-y: auto;
  }

  body.nav-open .trust-header .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .trust-header .wide-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    overflow: visible;
    font-size: 1rem;
  }

  .trust-header .wide-nav a {
    min-height: 48px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
  }

  .trust-header .wide-nav a.active::after {
    display: none;
  }

  .nav-appointment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    margin-top: 16px;
    padding: 12px 16px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    font-weight: var(--weight-strong);
  }

  .nav-appointment .icon.calendar {
    background: #fff;
  }

  .appointment-desktop {
    display: none;
  }

  .main-nav:not(.wide-nav) {
    justify-content: flex-start;
    font-size: .9rem;
    gap: 18px;
    width: 100%;
    order: 3;
    padding-top: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav:not(.wide-nav)::-webkit-scrollbar {
    display: none;
  }

  .main-nav:not(.wide-nav) a {
    min-height: 44px;
    padding: 10px 0;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 34;
    border: 0;
    padding: 0;
    background: rgba(15, 32, 51, .35);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open .trust-header,
  body.nav-open .trust-header.is-scrolled {
    z-index: 102;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.nav-open .nav-backdrop {
    z-index: 100;
  }

  body.nav-open .trust-header .nav-panel {
    z-index: 101;
    min-height: 100dvh;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  body.nav-open .mobile-cta-bar {
    visibility: hidden;
    pointer-events: none;
  }

  .hero,
  .trust-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: auto;
    overflow: hidden;
    background: #fff;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 100%;
    padding: 0 16px 22px;
    background: #fff;
  }

  .hero-photo,
  .trust-hero .hero-photo {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #eef3fb;
  }

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

  .hero-photo::before {
    display: none;
  }

  .hero-overlay {
    position: static;
    padding: 18px 0 0;
    background: none;
  }

  .hero-overlay h2 {
    margin: 0;
    color: var(--blue);
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 1.1;
    max-width: 100%;
  }

  .hero-overlay > p {
    margin: 10px 0 0;
    color: #252b36;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .hero-overlay .hero-line {
    white-space: nowrap;
  }

  .hero-actions {
    flex: 0 0 auto;
    padding: 0;
    background: transparent;
  }

  .hero-actions .cta-row {
    margin-top: 16px;
  }

  .hero-actions .micro-trust {
    margin-top: 14px !important;
  }

  .hero-actions .rating-strip {
    margin-top: 12px;
  }

  .rating-strip {
    gap: 10px;
    margin-top: 16px;
    font-size: 1.05rem;
  }

  .google-g {
    width: 30px;
    height: 30px;
  }

  .cta-row,
  .trust-hero .cta-row {
    gap: 12px;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 14px;
    font-size: .95rem;
  }

  .micro-trust {
    margin-top: 26px !important;
    font-size: 1rem !important;
  }

  .section,
  .section.tight,
  .section.compact {
    padding: 28px 16px 34px;
  }

  .section-title {
    margin-bottom: 22px;
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  }

  .value-band .section-title {
    font-size: clamp(1.2rem, 4.8vw, 1.55rem);
    padding-inline: 6px;
  }

  .quick-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .quick-services .service-card h3 {
    font-size: .95rem;
  }

  .quick-services .service-card p {
    font-size: .78rem;
    line-height: 1.45;
  }

  .quick-services .service-icon {
    width: 58px;
    height: 58px;
  }

  .review-grid,
  .select-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 16px 24px;
  }

  .trust-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-services .photo-service {
    flex: none;
    min-width: 0;
  }

  .photo-service h3 {
    font-size: .95rem;
  }

  .photo-service p {
    font-size: .82rem;
    line-height: 1.45;
  }

  .icon-only {
    min-height: auto;
    padding: 24px 16px;
  }

  .trust-highlights {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .trust-highlights article {
    min-height: auto;
    padding: 20px 16px;
  }

  .trust-highlights .highlight-icon {
    width: 58px;
    height: 58px;
  }

  .trust-highlights h3 {
    margin-top: 12px;
  }

  .value-band,
  .faq-band {
    margin-inline: 10px;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .value-grid article {
    padding: 16px 10px;
  }

  .value-grid h3 {
    font-size: .92rem;
  }

  .value-grid p {
    font-size: .82rem;
  }

  .value-icon {
    width: 56px;
    height: 56px;
  }

  .value-content > img {
    display: block;
    max-height: 220px;
    object-fit: cover;
  }

  .review-card {
    grid-template-columns: 52px 1fr;
    padding: 16px;
  }

  .contact-item,
  .contact-list p {
    font-size: .95rem;
    padding: 10px 8px;
  }

  .compact-map,
  .compact-map img,
  .storefront {
    min-height: 220px;
    height: 220px;
  }

  .map-button {
    right: 16px;
    bottom: 16px;
    width: auto;
    min-height: 50px;
  }

  summary {
    min-height: 48px;
    padding: 14px 10px;
    font-size: .92rem;
  }

  .site-footer,
  .trust-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 16px 10px;
    text-align: left;
  }

  .trust-footer .footer-intro {
    text-align: center;
  }

  .trust-footer .footer-tagline {
    display: none;
  }

  .footer-mobile-actions {
    display: grid;
    gap: 10px;
    margin: 16px 0 4px;
  }

  .footer-mobile-actions .btn {
    width: 100%;
    min-height: 48px;
    margin: 0;
    font-size: .92rem;
  }

  .footer-mobile-actions .btn-outline .icon.nav {
    background: var(--blue);
  }

  .trust-footer .footer-panel {
    border-top: 1px solid var(--line);
  }

  .trust-footer .footer-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin: 0;
    padding: 12px 0;
    pointer-events: auto;
    cursor: pointer;
    font-size: .95rem;
  }

  .trust-footer .footer-panel summary::after {
    flex-shrink: 0;
    margin-left: 12px;
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: var(--weight-strong);
    line-height: 1;
    content: "+";
  }

  .trust-footer .footer-panel[open] summary::after {
    content: "−";
  }

  .trust-footer .footer-panel > :not(summary) {
    padding-bottom: 14px;
  }

  .footer-cta--desktop {
    display: none;
  }

  .contact-section.section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .contact-panel {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
  }

  .contact-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 14px 0;
    pointer-events: auto;
    cursor: pointer;
    font-size: clamp(1.2rem, 5vw, 1.55rem);
    text-align: left;
  }

  .contact-panel summary::after {
    position: static;
    flex-shrink: 0;
    width: auto;
    height: auto;
    margin-left: 12px;
    border-radius: 0;
    background: none;
    transform: none;
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: var(--weight-strong);
    line-height: 1;
    content: "+";
  }

  .contact-panel[open] summary::after {
    content: "−";
  }

  .contact-panel > :not(summary) {
    padding-bottom: 14px;
  }

  .footer-cta {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }

  .footer-cta .btn {
    flex: 1;
    width: auto;
    min-height: 44px;
    padding-inline: 12px;
    font-size: .88rem;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    box-shadow: 0 -8px 24px rgba(12, 52, 122, .08);
  }

  .mobile-cta-bar .btn {
    width: auto;
    min-height: 46px;
    margin: 0;
    padding-inline: 10px;
    font-size: .88rem;
  }

  .trust-page .trust-hero .hero-photo img {
    transform: none !important;
  }
}

@media (max-width: 600px) {
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article {
    padding: 18px 14px;
  }

  .value-grid h3 {
    font-size: .98rem;
  }

  .value-grid p {
    font-size: .86rem;
  }

}

/* Trust Page — premium motion */
.trust-page .trust-shell {
  overflow-x: clip;
  overflow-y: visible;
}

@media (max-width: 760px) {
  .trust-page .trust-shell {
    overflow-x: visible;
  }
}

.trust-page .trust-header {
  transition:
    background 0.5s var(--ease-luxe),
    box-shadow 0.5s var(--ease-luxe),
    backdrop-filter 0.5s var(--ease-luxe);
}

@media (min-width: 761px) {
  .trust-page .trust-header {
    z-index: 30;
  }

  .trust-page .trust-header.is-scrolled {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 36px rgba(12, 52, 122, .09);
  }
}

.trust-page .wide-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 0.45s var(--ease-luxe);
}

.trust-page .wide-nav a:hover::before,
.trust-page .wide-nav a.active::before {
  width: calc(100% - 6px);
}

.trust-page .wide-nav a.active::after {
  display: none;
}

.trust-page .appointment {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.trust-page .appointment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .34) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.85s var(--ease-luxe);
  pointer-events: none;
}

.trust-page .appointment:hover::after {
  transform: translateX(130%);
}

@keyframes trustFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes trustPhotoIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes trustFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.75;
  }

  50% {
    transform: translate3d(0, -6px, 0) rotate(8deg);
    opacity: 1;
  }
}

@keyframes trustHighlightIn {
  from {
    opacity: 0;
    transform: translate3d(0, 48px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes trustStarPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.trust-page .trust-hero .hero-overlay h2 {
  animation: trustFadeUp 1.15s var(--ease-luxe) 0.12s both;
}

.trust-page .trust-hero .hero-overlay > p {
  animation: trustFadeUp 1.05s var(--ease-luxe) 0.28s both;
}

.trust-page .trust-hero .cta-row {
  animation: trustFadeUp 1s var(--ease-luxe) 0.44s both;
}

.trust-page .trust-hero .rating-strip {
  animation: trustFadeUp 1s var(--ease-luxe) 0.58s both;
}

.trust-page .trust-hero .hero-photo img {
  animation: trustPhotoIn 1.6s var(--ease-luxe) 0.2s both;
  will-change: transform;
}

.trust-page .trust-hero .rating-strip .stars {
  animation: trustStarPulse 3.2s ease-in-out 1.2s infinite;
}

.trust-page .trust-highlights {
  animation: trustHighlightIn 1s var(--ease-luxe) 0.72s both;
}

.trust-page .trust-highlights article {
  transition: transform 0.55s var(--ease-luxe), background 0.55s var(--ease-luxe);
}

.trust-page .trust-highlights article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 1);
}

.trust-page .reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.95s var(--ease-luxe),
    transform 0.95s var(--ease-luxe);
  transition-delay: var(--reveal-delay, 0s);
}

.trust-page .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.trust-page .section-title::after {
  width: 0;
  transition: width 0.8s var(--ease-luxe) 0.15s;
}

.trust-page .section-title.is-visible::after {
  width: 42px;
}

.trust-page .trust-services .photo-service {
  transition:
    transform 0.6s var(--ease-luxe),
    box-shadow 0.6s var(--ease-luxe);
}

.trust-page .trust-services .photo-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 52px rgba(23, 63, 116, .14);
}

.trust-page .photo-service-media > img {
  transition: transform 0.9s var(--ease-luxe);
}

.trust-page .photo-service:hover .photo-service-media > img {
  transform: scale(1.07);
}

.trust-page .review-card {
  transition:
    transform 0.55s var(--ease-luxe),
    box-shadow 0.55s var(--ease-luxe),
    border-color 0.55s var(--ease-luxe);
}

.trust-page .review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 87, 223, .22);
  box-shadow: 0 18px 40px rgba(23, 63, 116, .1);
}

.trust-page .value-grid article {
  transition: transform 0.5s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe);
}

.trust-page .value-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(23, 63, 116, .08);
}

.trust-page .value-content > img {
  transition: transform 1.1s var(--ease-luxe);
}

.trust-page .value-content > img.is-visible {
  animation: trustPhotoIn 1.2s var(--ease-luxe) both;
}

.trust-page .gallery-strip img {
  transition: transform 0.75s var(--ease-luxe), filter 0.75s var(--ease-luxe);
}

.trust-page .gallery-strip img:hover {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.trust-page details {
  transition: background 0.35s var(--ease-luxe);
}

.trust-page details[open] {
  background: rgba(255, 255, 255, .92);
}

.trust-page details[open] p {
  animation: trustFadeUp 0.45s var(--ease-luxe) both;
}

.trust-page .btn {
  transition: transform 0.35s var(--ease-luxe), box-shadow 0.35s var(--ease-luxe);
}

.trust-page .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 80, 210, .22);
}

.trust-page .outline-button {
  transition:
    transform 0.4s var(--ease-luxe),
    background 0.4s var(--ease-luxe),
    color 0.4s var(--ease-luxe);
}

.trust-page .outline-button:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: #fff;
}

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

  .trust-page .reveal {
    opacity: 1;
    transform: none;
  }

  .trust-page .section-title::after {
    width: 42px;
  }
}
