


:root {

  --lcd-sky: #5bbcd6;
  --lcd-sky-dark: #1887a8;
  --lcd-sky-deep: #0c3a52;
  --lcd-sky-pale: #ddf3fb;
  --lcd-sky-xpale: #eaf8ff;
  --lcd-orange: #d4521a;
  --lcd-orange-dark: #a83e10;
  --lcd-orange-pale: #fdf0ea;
  --lcd-lime: #bccd00;
  --lcd-lime-dark: #8a9600;
  --lcd-lime-pale: #f4f7d9;


  --lcd-ink: #0c2235;
  --lcd-deep: #0a1b28;
  --lcd-text: #1c3a50;
  --lcd-text-soft: #4a6478;
  --lcd-surface: #ffffff;
  --lcd-surface-soft: #f6fbfd;
  --lcd-border: rgba(12, 34, 53, 0.09);
  --lcd-border-strong: rgba(12, 34, 53, 0.16);


  --lcd-shadow: 0 2px 8px rgba(12, 34, 53, 0.06), 0 16px 48px rgba(12, 34, 53, 0.09);
  --lcd-shadow-sm: 0 2px 8px rgba(12, 34, 53, 0.06), 0 4px 18px rgba(12, 34, 53, 0.06);
  --lcd-shadow-hover: 0 8px 24px rgba(12, 34, 53, 0.1), 0 24px 56px rgba(12, 34, 53, 0.14);


  --lcd-radius-xl: 28px;
  --lcd-radius-lg: 20px;
  --lcd-radius-md: 14px;
  --lcd-radius-sm: 8px;
  --lcd-radius-xs: 6px;


  --white: #ffffff;
  --slate-100: #f6fbfd;
  --slate-200: #dceef4;
  --slate-600: #4a6478;
  --slate-700: #335067;
  --slate-800: #18364d;
  --slate-900: #0c2235;
  --accent: var(--lcd-orange);
  --accent-soft: rgba(212, 82, 26, 0.12);
  --radius-lg: var(--lcd-radius-lg);
  --radius-md: var(--lcd-radius-md);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);


  --lcd-max-width: 1200px;
  --lcd-section-gap: 2.5rem;
}


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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--lcd-text);
  position: relative;
  min-height: 100vh;

  background-color: #f6fbfd;
  background-image:
    radial-gradient(ellipse 82% 64% at 88% 0%, rgba(91, 188, 214, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 70% 52% at 4% 92%, rgba(188, 205, 0, 0.1) 0%, transparent 62%),
    radial-gradient(ellipse 48% 38% at 50% 22%, rgba(212, 82, 26, 0.08) 0%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 251, 253, 0.98) 100%);
  background-attachment: fixed;

  padding-top: var(--topbar-h, 64px);
}

html {
  background-color: #f6fbfd;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.75) 0%, transparent 24%),
    radial-gradient(circle at 84% 28%, rgba(255, 255, 255, 0.5) 0%, transparent 18%),
    radial-gradient(circle at 68% 82%, rgba(91, 188, 214, 0.08) 0%, transparent 20%);
  opacity: 0.9;
}

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

a {
  color: var(--lcd-sky);
}

a:hover,
a:focus-visible {
  color: var(--lcd-orange);
}

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

button,
input,
select,
textarea,
a {
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(91, 188, 214, 0.5);
  outline-offset: 3px;
  border-radius: 4px;
}


h1,
h2,
h3,
h4 {

  font-family: "Nunito", system-ui, sans-serif;
  color: var(--lcd-deep);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.72;
}


.content-wrap {
  width: min(calc(100% - 2.5rem), var(--lcd-max-width));
  margin: 0 auto;
}


.hero-section,
.stats-bar,
.clinic-song-section,
.benefits-section,
.services-section,
.smile-gallery-section,
.testimonials-section,
.appointments-section,
.team-section,
.faq-section,
.contact-section {
  width: min(calc(100% - 2.5rem), var(--lcd-max-width));
  margin: var(--lcd-section-gap) auto 0;
}




.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.97rem;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  flex-shrink: 0;
}

.button--primary {
  background: linear-gradient(135deg, var(--lcd-orange) 0%, #e8673a 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 82, 26, 0.25), 0 2px 6px rgba(212, 82, 26, 0.15);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 36px rgba(212, 82, 26, 0.35), 0 4px 10px rgba(212, 82, 26, 0.2);
  color: #fff;
}

.button--secondary {
  background: rgba(91, 188, 214, 0.12);
  color: var(--lcd-sky);
  border: 1.5px solid rgba(91, 188, 214, 0.32);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(91, 188, 214, 0.22);
  color: var(--lcd-sky);
}


.button--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1db954 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.22);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.32);
  color: #fff;
}


.button--chip {
  background: var(--lcd-surface);
  color: var(--lcd-text);
  border: 1.5px solid var(--lcd-border-strong);
  box-shadow: var(--lcd-shadow-sm);
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
  gap: 0.4rem;
}

.button--chip:hover,
.button--chip:focus-visible,
.button--chip.is-active {
  background: var(--lcd-sky-pale);
  color: var(--lcd-sky);
  border-color: rgba(91, 188, 214, 0.45);
}


.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lcd-sky-pale);
  color: var(--lcd-sky);
}

.icon-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon-badge--sm {
  width: 32px;
  height: 32px;
}

.icon-badge--sm svg {
  width: 14px;
  height: 14px;
}

.icon-badge--lg {
  width: 56px;
  height: 56px;
}

.icon-badge--lg svg {
  width: 26px;
  height: 26px;
}

.icon-badge--xl {
  width: 72px;
  height: 72px;
}

.icon-badge--xl svg {
  width: 34px;
  height: 34px;
}

.icon-badge--sky {
  background: var(--lcd-sky-pale);
  color: var(--lcd-sky);
}

.icon-badge--orange {
  background: var(--lcd-orange-pale);
  color: var(--lcd-orange);
}

.icon-badge--lime {
  background: var(--lcd-lime-pale);
  color: var(--lcd-lime);
}


.section-watermark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.085;
  color: var(--lcd-sky);
  z-index: 0;
}

.section-watermark svg {
  width: 100%;
  height: 100%;
}

.section-watermark--orange {
  color: var(--lcd-orange);
}

.section-watermark--lime {
  color: var(--lcd-lime);
}


.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--lcd-lime-pale);
  color: var(--lcd-lime);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-kicker svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.section-kicker--sky {
  background: var(--lcd-sky-pale);
  color: var(--lcd-sky);
}

.section-kicker--orange {
  background: var(--lcd-orange-pale);
  color: var(--lcd-orange);
}

.section-kicker--sky-inv {
  background: rgba(91, 188, 214, 0.18);
  color: var(--lcd-sky);
}


.section-kicker--dark-bg {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
}


.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}

.section-heading--centered {
  text-align: center;
  align-items: center;
}

.section-summary {
  color: var(--lcd-text-soft);
  max-width: 58ch;
  line-height: 1.72;
}


.hero-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.hero-followup {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}


.hero-copy {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%),
    radial-gradient(circle at top right, rgba(91, 188, 214, 0.18) 0%, transparent 34%),
    radial-gradient(circle at left center, rgba(188, 205, 0, 0.08) 0%, transparent 38%);
  border: 1px solid var(--lcd-border);
  border-radius: var(--lcd-radius-xl);
  box-shadow: var(--lcd-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.75rem 2.5rem 2.5rem;
  overflow: hidden;
}

.hero-copy > :not(.section-watermark) {
  max-width: 40rem;
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  margin: 0.5rem 0 1.1rem;
  font-weight: 900;
  line-height: 1.03;
}

.hero-copy h1 em {
  color: var(--lcd-sky);
  font-style: normal;
}

.hero-lead {
  position: relative;
  z-index: 1;
  color: var(--lcd-text-soft);
  font-size: 1.07rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 50ch;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  max-width: none;
}

.eyebrow {
  position: relative;
  z-index: 1;
}

.eyebrow svg {
  width: 13px;
  height: 13px;
}


.hero-video-wrap {
  position: relative;
  background:
    linear-gradient(145deg, rgba(245, 251, 255, 0.98) 0%, rgba(223, 242, 249, 0.94) 100%),
    linear-gradient(135deg, rgba(91, 188, 214, 0.12) 0%, rgba(188, 205, 0, 0.08) 100%);
  border: 1px solid rgba(91, 188, 214, 0.22);
  border-radius: var(--lcd-radius-xl);
  box-shadow: var(--lcd-shadow);
  overflow: hidden;
  padding: 0;
}

.hero-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;

  object-fit: contain;
  background: linear-gradient(180deg, rgba(233, 245, 250, 0.96) 0%, rgba(217, 236, 243, 0.92) 100%);
  border-radius: calc(var(--lcd-radius-xl) - 1px);
  display: block;
}


.video-unmute-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.video-unmute-btn:hover,
.video-unmute-btn:focus-visible {
  background: rgba(91, 188, 214, 0.55);
  border-color: rgba(91, 188, 214, 0.7);
  transform: translateY(-2px);
}

.video-unmute-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


.video-unmute-btn .icon-unmuted,
.video-unmute-btn .btn-unmuted-text {
  display: none;
}

.video-unmute-btn.is-unmuted .icon-muted,
.video-unmute-btn.is-unmuted .btn-muted-text {
  display: none;
}

.video-unmute-btn.is-unmuted .icon-unmuted,
.video-unmute-btn.is-unmuted .btn-unmuted-text {
  display: inline-flex;
  align-items: center;
}


.video-brand-dots {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.65rem;
}

.bdot {
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(10, 27, 40, 0.22);
}

.bdot--sky {
  background: var(--lcd-sky);
}

.bdot--lime {
  background: var(--lcd-lime);
}

.bdot--orange {
  background: var(--lcd-orange);
}


.stats-bar {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--lcd-border);
  border-radius: var(--lcd-radius-lg);
  box-shadow: var(--lcd-shadow-sm);
  overflow: hidden;
}

.hero-followup .stats-bar {
  width: 100%;
  margin: 0;
  align-self: stretch;
}

.stats-bar-inner {
  display: grid;

  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  height: 100%;
}

.stat-item {
  display: contents;
}

.stat-item > .stat-number,
.stat-item > .stat-label {
  min-height: 100%;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--lcd-border);
}

.stat-item:last-child > .stat-number,
.stat-item:last-child > .stat-label {
  border-bottom: none;
}

.stat-number {
  align-self: stretch;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
  color: var(--lcd-sky);
  line-height: 1;
  letter-spacing: -0.03em;
  min-width: 5.6rem;
  padding-inline: 1.5rem 1.15rem;
  white-space: nowrap;
}

.stat-number--orange {
  color: var(--lcd-orange);
}

.stat-number--lime {
  color: var(--lcd-lime);
}

.stat-label {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.98rem;
  color: var(--lcd-text);
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  padding-inline: 0 1.4rem;
}


.clinic-song-section {
  background: linear-gradient(140deg, var(--lcd-deep) 0%, var(--lcd-sky-deep) 55%, var(--lcd-deep) 100%);
  border-radius: var(--lcd-radius-xl);
  box-shadow: 0 24px 64px rgba(10, 27, 40, 0.22);
  overflow: hidden;
  padding: 3.5rem 3rem;
  position: relative;
}


.clinic-song-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 70% 80% at 15% 50%, rgba(91, 188, 214, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.clinic-song-inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.clinic-song-copy {
  flex: 1 1 0;
  min-width: 0;
}

.clinic-song-copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0.5rem 0 1rem;
  font-weight: 900;
}

.clinic-song-copy p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 42ch;
}


.benefits-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 100%),
    radial-gradient(circle at top left, rgba(91, 188, 214, 0.11) 0%, transparent 28%),
    radial-gradient(circle at right bottom, rgba(188, 205, 0, 0.09) 0%, transparent 28%);
  border: 1px solid var(--lcd-border);
  border-radius: var(--lcd-radius-xl);
  box-shadow: var(--lcd-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.75rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  border-radius: var(--lcd-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(246, 251, 253, 0.7) 100%),
    radial-gradient(circle at top right, rgba(91, 188, 214, 0.12) 0%, transparent 32%);
  border: 1px solid rgba(91, 188, 214, 0.12);
  gap: 0.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lcd-shadow-hover);
}

.benefit-card h3 {
  font-size: 1.02rem;
  margin: 0.6rem 0 0.4rem;
  font-weight: 800;
  color: var(--lcd-deep);
}

.benefit-card p {
  color: var(--lcd-text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}


.services-section {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--lcd-border);
  border-radius: var(--lcd-radius-xl);
  box-shadow: var(--lcd-shadow);
  padding: 2.75rem;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--lcd-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(246, 251, 253, 0.72) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.48) 0%, transparent 28%),
    radial-gradient(circle at left bottom, rgba(91, 188, 214, 0.1) 0%, transparent 36%);
  border: 1px solid var(--lcd-border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lcd-shadow-hover);
}

.service-card h3 {
  font-size: 1.02rem;
  margin: 0.75rem 0 0.5rem;
  font-weight: 800;
  color: var(--lcd-deep);
}

.service-card p {
  color: var(--lcd-text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}


.service-card--col-sky {
  border-top: 4px solid var(--lcd-sky);
}

.service-card--col-orange {
  border-top: 4px solid var(--lcd-orange);
}

.service-card--col-lime {
  border-top: 4px solid var(--lcd-lime);
}


.service-card--highlight {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-card--highlight h3 {
  margin-top: 0;
}


.placeholder-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.62) 100%),
    radial-gradient(circle at top right, rgba(91, 188, 214, 0.12) 0%, transparent 30%);
  border: 2px dashed rgba(91, 188, 214, 0.35);
  border-radius: var(--lcd-radius-xl);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 2.75rem;
}

.placeholder-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.placeholder-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.placeholder-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(212, 82, 26, 0.1);
  border: 1px solid rgba(212, 82, 26, 0.25);
  color: var(--lcd-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Nunito", system-ui, sans-serif;
}

.placeholder-note {
  color: var(--lcd-text-soft);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: 1.75rem;
  max-width: 70ch;
}

.placeholder-grid {
  display: grid;
  gap: 1rem;
}

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

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

.placeholder-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}


.placeholder-slot {
  background: var(--lcd-surface-soft);
  border: 1.5px dashed var(--lcd-border-strong);
  border-radius: var(--lcd-radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  min-height: 160px;
  justify-content: center;
}

.placeholder-slot--tall {
  min-height: 220px;
}

.placeholder-slot__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lcd-sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lcd-sky);
}

.placeholder-slot__icon svg {
  width: 24px;
  height: 24px;
}

.placeholder-slot__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lcd-text);
  font-family: "Nunito", system-ui, sans-serif;
}

.placeholder-slot__hint {
  font-size: 0.8rem;
  color: rgba(74, 100, 120, 0.7);
  line-height: 1.5;
  max-width: 22ch;
}


.before-after-slot {
  background: var(--lcd-surface-soft);
  border: 1.5px dashed var(--lcd-border-strong);
  border-radius: var(--lcd-radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
}

.before-after-half {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}

.before-after-half--before {
  background: rgba(74, 100, 120, 0.05);
  border-right: 1px dashed var(--lcd-border-strong);
  color: var(--lcd-text-soft);
}

.before-after-half--after {
  background: rgba(91, 188, 214, 0.06);
  color: var(--lcd-sky);
}


.testimonial-slot {
  background: var(--lcd-surface);
  border: 1.5px dashed var(--lcd-border-strong);
  border-radius: var(--lcd-radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.testimonial-slot__stars {
  color: var(--lcd-lime);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-slot__quote {
  color: var(--lcd-text-soft);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-slot__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-slot__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lcd-sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lcd-sky);
  flex-shrink: 0;
  border: 2px dashed rgba(91, 188, 214, 0.35);
}

.testimonial-slot__avatar svg {
  width: 18px;
  height: 18px;
}

.testimonial-slot__name {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--lcd-deep);
  font-family: "Nunito", sans-serif;
}

.testimonial-slot__meta {
  font-size: 0.78rem;
  color: var(--lcd-text-soft);
}


.team-slot {
  background: var(--lcd-surface);
  border: 1.5px dashed var(--lcd-border-strong);
  border-radius: var(--lcd-radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.team-slot__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lcd-sky-pale), var(--lcd-sky-xpale));
  border: 3px dashed rgba(91, 188, 214, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lcd-sky);
}

.team-slot__photo svg {
  width: 38px;
  height: 38px;
}

.team-slot__name {
  font-weight: 900;
  font-size: 1.02rem;
  color: var(--lcd-deep);
  font-family: "Nunito", sans-serif;
  margin-top: 0.25rem;
}

.team-slot__role {
  font-size: 0.85rem;
  color: var(--lcd-sky);
  font-weight: 600;
}

.team-slot__specialty {
  font-size: 0.8rem;
  color: var(--lcd-text-soft);
  font-style: italic;
}

.team-slot__bio {
  font-size: 0.83rem;
  color: var(--lcd-text-soft);
  line-height: 1.6;
  max-width: 28ch;
}


.faq-slot {
  border: 1.5px dashed var(--lcd-border-strong);
  border-radius: var(--lcd-radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--lcd-surface);
}

.faq-slot__q {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--lcd-deep);
  font-family: "Nunito", sans-serif;
  flex: 1;
}

.faq-slot__icon {
  color: var(--lcd-sky);
  flex-shrink: 0;
}

.faq-slot__icon svg {
  width: 18px;
  height: 18px;
}


.appointments-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}

.appointments-copy-block {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--lcd-border);
  border-radius: var(--lcd-radius-xl);
  box-shadow: var(--lcd-shadow);
  padding: 2.5rem;
}

.appointments-copy-block h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0.5rem 0 0.75rem;
}

.appointments-copy-block > p {
  color: var(--lcd-text-soft);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}


.service-preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}


.appointments-form {
  display: grid;
  gap: 1.25rem;
}

.contact-interest-form .va-interest-form__label {
  color: var(--lcd-deep);
  font-weight: 700;
  font-size: 0.88rem;
}

.contact-interest-form .va-interest-form__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: stretch;
}

.contact-interest-form .va-interest-form__input {
  max-width: 100%;
}

.contact-interest-form .va-interest-form__button {
  margin-top: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  color: var(--lcd-deep);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.field-group label svg {
  width: 13px;
  height: 13px;
  color: var(--lcd-sky);
  flex-shrink: 0;
}


.field-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field-prefix-icon {
  position: absolute;
  left: 1rem;
  color: var(--lcd-sky);
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
}

.field-prefix-icon svg {
  width: 16px;
  height: 16px;
}

.field-input-wrap input,
.field-input-wrap select {
  padding-left: 2.75rem;
}


input,
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--lcd-border-strong);
  border-radius: var(--lcd-radius-md);
  background: var(--lcd-surface);
  color: var(--lcd-text);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  appearance: none;
  -webkit-appearance: none;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(91, 188, 214, 0.55);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lcd-sky);
  box-shadow: 0 0 0 3px rgba(91, 188, 214, 0.18);
  outline: none;
}


select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231887a8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

input[type="datetime-local"] {
  cursor: pointer;

  padding-right: 0.75rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.appointments-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.appointments-helper {
  color: var(--lcd-text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.appointments-status {
  min-height: 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.appointments-status--pending {
  color: var(--lcd-sky);
}

.appointments-status--success {
  color: #1f7a00;
}

.appointments-status--warning {
  color: var(--lcd-orange);
}

.appointments-status--error {
  color: #c22a2a;
}

.contact-interest-form .va-interest-form__status--processing {
  color: var(--lcd-sky);
}

.contact-interest-form .va-interest-form__status--success {
  color: #1f7a00;
}

.contact-interest-form .va-interest-form__status--error {
  color: #c22a2a;
}


.appointments-panel {
  background:
    linear-gradient(160deg, rgba(221, 243, 251, 0.9) 0%, rgba(228, 246, 253, 0.78) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.52) 0%, transparent 34%),
    radial-gradient(circle at left bottom, rgba(188, 205, 0, 0.12) 0%, transparent 40%);
  border: 1.5px solid rgba(91, 188, 214, 0.28);
  border-radius: var(--lcd-radius-xl);
  box-shadow: var(--lcd-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.25rem;
  color: var(--lcd-text);
}

.appointments-panel h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  color: var(--lcd-deep);
  margin: 0.5rem 0 0.75rem;
}

.appointments-panel > p {
  color: var(--lcd-text-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.info-list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--lcd-text);
  line-height: 1.55;
  font-size: 0.95rem;
}

.appointments-contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.62) 100%),
    radial-gradient(circle at top right, rgba(91, 188, 214, 0.12) 0%, transparent 32%);
  border: 1px solid rgba(91, 188, 214, 0.25);
  border-radius: var(--lcd-radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.25rem;
  margin-top: 1rem;
}

.appointments-contact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.appointments-contact-header h3 {
  color: var(--lcd-deep);
  font-size: 1rem;
  margin: 0;
}

.appointments-contact-card > p {
  color: var(--lcd-text-soft);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.contact-list--compact {
  margin-top: 0.75rem;
}


.contact-section {
  margin-bottom: 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.25rem;
}


.contact-card--location {
  flex: 999 1 42rem;
}

.contact-card--connect {
  flex: 1 1 24rem;
  max-width: 30rem;
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 100%),
    radial-gradient(circle at top right, rgba(91, 188, 214, 0.12) 0%, transparent 30%),
    radial-gradient(circle at left bottom, rgba(212, 82, 26, 0.08) 0%, transparent 36%);
  border: 1px solid var(--lcd-border);
  border-radius: var(--lcd-radius-xl);
  box-shadow: var(--lcd-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.25rem;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.contact-card-header h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--lcd-deep);
}

.contact-card p {
  color: var(--lcd-text-soft);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.contact-support-copy {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--lcd-text-soft);
  font-size: 0.93rem;
  line-height: 1.45;
}

.contact-list a {
  color: var(--lcd-sky);
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--lcd-orange);
  text-decoration: underline;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-map-link {
  display: block;
  width: min(100%, 850px);
  margin-top: 1.25rem;
  border-radius: var(--lcd-radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 120, 180, 0.1);
  transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-map-link:hover,
.contact-map-link:focus-visible {
  opacity: 0.96;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 120, 180, 0.18);
  outline: 2px solid var(--lcd-sky);
  outline-offset: 2px;
}

.contact-map-img {
  display: block;
  width: 100%;
  max-width: 850px;
  height: auto;
}


.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 100%),
    radial-gradient(circle at top left, rgba(91, 188, 214, 0.12) 0%, transparent 28%),
    radial-gradient(circle at right bottom, rgba(188, 205, 0, 0.08) 0%, transparent 30%);
  border: 1px solid var(--lcd-border);
  border-radius: var(--lcd-radius-xl);
  box-shadow: var(--lcd-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin: 2.5rem auto 2.5rem;
  width: min(calc(100% - 2.5rem), var(--lcd-max-width));
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-logo {
  width: min(210px, 50vw);
  height: auto;
}

.footer-brand p {
  color: var(--lcd-text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 38ch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.footer-links nav a {
  color: var(--lcd-text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--lcd-radius-sm);
}

.footer-links nav a:hover,
.footer-links nav a:focus-visible {
  color: var(--lcd-sky);
  background: var(--lcd-sky-pale);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lcd-surface-soft);
  border: 1px solid var(--lcd-border-strong);
  color: var(--lcd-text-soft);
  text-decoration: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  color: #fff;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link--sky:hover,
.footer-social-link--sky:focus-visible {
  background: var(--lcd-sky-dark);
  border-color: var(--lcd-sky-dark);
}

.footer-social-link--orange:hover,
.footer-social-link--orange:focus-visible {
  background: var(--lcd-orange);
  border-color: var(--lcd-orange);
}

.footer-legal {
  padding: 1.1rem 2.5rem;
  border-top: 1px solid var(--lcd-border);
  text-align: center;
}

.footer-legal small {
  color: var(--lcd-text-soft);
  font-size: 0.83rem;
}


.powered-by-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.powered-by-link:hover,
.powered-by-link:focus-visible {
  text-decoration: underline;
}


.message-catalog {
  display: none;
}


@media (max-width: 1024px) {
  .hero-followup {
    grid-template-columns: 1fr;
  }

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

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

  .service-card--highlight {
    grid-column: span 2;
  }

  .appointments-section {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-card--connect {
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-items: flex-start;
  }

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

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

  .placeholder-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .clinic-song-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}


@media (max-width: 720px) {
  :root {
    --lcd-section-gap: 1.5rem;
  }

  .hero-section,
  .clinic-song-section,
  .benefits-section,
  .services-section,
  .smile-gallery-section,
  .testimonials-section,
  .appointments-section,
  .team-section,
  .faq-section,
  .contact-section,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--lcd-max-width));
    margin-top: 1.25rem;
  }

  .hero-copy,
  .hero-video-wrap,
  .benefits-section,
  .services-section,
  .appointments-copy-block,
  .appointments-panel,
  .contact-card,
  .placeholder-section,
  .clinic-song-section {
    padding: 1.75rem 1.5rem;
    border-radius: var(--lcd-radius-lg);
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

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

  .service-card--highlight {
    grid-column: auto;
    grid-template-columns: auto 1fr;
  }

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

  .contact-interest-form .va-interest-form__controls {
    grid-template-columns: 1fr;
  }

  .service-preset-row {
    flex-direction: column;
  }

  .service-preset-row .button--chip {
    width: 100%;
    box-sizing: border-box;
  }

  .stats-bar-inner {
    grid-template-columns: max-content minmax(0, 1fr);
  }

  .stat-item > .stat-number,
  .stat-item > .stat-label {
    padding-block: 1.25rem;
  }

  .stat-number {
    min-width: 5rem;
    padding-inline: 1.25rem 0.9rem;
  }

  .stat-label {
    padding-inline: 0 1.25rem;
  }

  .placeholder-grid--2 {
    grid-template-columns: 1fr;
  }

  .placeholder-grid--3 {
    grid-template-columns: 1fr;
  }

  .placeholder-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    padding: 1.5rem;
  }

  .footer-legal {
    padding: 0.85rem 1.5rem;
  }

  .section-watermark {
    width: 100px;
    height: 100px;
    top: 1rem;
    right: 1rem;
  }

  .video-unmute-btn {
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
  }

  .hero-video-wrap {
    padding: 0;
  }

  .bdot {
    width: 38px;
    border-width: 4px;
  }

  .contact-cta-row {
    flex-direction: column;
  }

  .contact-cta-row .button {
    width: 100%;
    box-sizing: border-box;
  }
}




.before-after-icon {
  width: 28px;
  height: 28px;
  opacity: 0.35;
}


.contact-cta-row--sm {
  margin-top: 0.75rem;
}


.section-kicker--flush {
  margin-bottom: 0;
}
