:root {
  --navy-950: #03132c;
  --navy-900: #061b3a;
  --navy-800: #0b2e63;
  --navy-700: #124583;
  --cyan-500: #38bdf8;
  --cyan-300: #7ee9ff;
  --cyan-100: #dffaff;
  --cyan-soft: #a7f3ff;
  --white: #fff;
  --off-white: #f7fafc;
  --ice: #eef8fc;
  --gray-100: #eef1f5;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --text: #17304e;
  --whatsapp: #25d366;
  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: min(1180px, calc(100% - 40px));
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 30px rgba(6, 27, 58, .08);
  --shadow-md: 0 24px 70px rgba(6, 27, 58, .14);
  --shadow-cyan: 0 18px 50px rgba(56, 189, 248, .25);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  color: var(--text);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading,
body.menu-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--navy-800);
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #e9f1f6;
}

::-webkit-scrollbar-thumb {
  min-height: 50px;
  border: 3px solid #e9f1f6;
  border-radius: 20px;
  background: linear-gradient(var(--navy-800), var(--cyan-500));
}

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

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

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

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

button {
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.container {
  position: relative;
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.glass {
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 20px 50px rgba(2, 18, 42, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3rem, 5.1vw, 5.2rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--gray-600);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-700);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--cyan-soft);
}

.eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgba(56, 189, 248, .13), 0 0 22px var(--cyan-500);
}

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, var(--white) 10%, var(--cyan-soft) 48%, var(--cyan-500) 95%);
  background-clip: text;
  -webkit-background-clip: text;
}

.gradient-text-dark {
  color: transparent;
  background: linear-gradient(100deg, var(--navy-800), #1595c9);
  background-clip: text;
  -webkit-background-clip: text;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform .35s var(--ease);
}

.button:hover {
  transform: translateY(-4px) scale(1.015);
}

.button:hover svg {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(0) scale(.97);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), #0b65a0);
  box-shadow: 0 14px 35px rgba(9, 56, 112, .26);
}

.button-primary:hover {
  box-shadow: 0 20px 45px rgba(9, 56, 112, .38), 0 0 0 5px rgba(56, 189, 248, .09);
}

.button-shine::after {
  position: absolute;
  top: -70%;
  left: -45%;
  width: 26%;
  height: 250%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: rotate(24deg);
  animation: buttonShine 4.5s ease-in-out infinite;
  pointer-events: none;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(126, 233, 255, .45);
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

.button-outline {
  color: var(--navy-800);
  border-color: rgba(11, 46, 99, .18);
  background: var(--white);
}

.button-outline:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: .78rem;
}

.button-whatsapp {
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, #18b952, var(--whatsapp));
  box-shadow: 0 15px 35px rgba(37, 211, 102, .23);
}

.button-whatsapp:hover {
  box-shadow: 0 20px 45px rgba(37, 211, 102, .36);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading > p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 1.03rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > p {
  margin-inline: auto;
}

.heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.heading-row > div {
  max-width: 720px;
}

.heading-row > p {
  max-width: 390px;
  margin-bottom: 4px;
}

/* Preloader */
.preloader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 45%, rgba(56, 189, 248, .16), transparent 30%),
    linear-gradient(135deg, #020d20, var(--navy-900));
  transition: opacity .8s var(--ease), visibility .8s;
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.preloader-orbit {
  position: relative;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
}

.preloader-tooth {
  width: 62px;
  height: 62px;
  fill: rgba(255, 255, 255, .95);
  stroke: transparent;
  filter: drop-shadow(0 0 25px rgba(126, 233, 255, .45));
  animation: toothFloat 2.3s ease-in-out infinite;
}

.preloader-tooth .tooth-shine {
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 3;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(126, 233, 255, .3);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan-300);
  box-shadow: 0 0 16px var(--cyan-300);
}

.orbit-one {
  inset: 6px;
  animation: spin 4s linear infinite;
}

.orbit-two {
  inset: 18px;
  animation: spinReverse 3s linear infinite;
}

.preloader-brand {
  display: flex;
  margin-top: 18px;
  align-items: center;
  flex-direction: column;
  font-family: var(--font-display);
  letter-spacing: .18em;
}

.preloader-brand strong {
  font-size: 1.4rem;
}

.preloader-brand span {
  color: var(--cyan-300);
  font-size: .54rem;
  letter-spacing: .35em;
}

.preloader-line {
  width: 170px;
  height: 2px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.preloader-line span {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan-300), transparent);
  animation: loadingLine 1.3s ease-in-out infinite;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  color: var(--white);
  transition: height .35s var(--ease), background .35s, box-shadow .35s;
}

.site-header.scrolled {
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: rgba(3, 19, 44, .84);
  box-shadow: 0 15px 40px rgba(1, 10, 26, .15);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(126, 233, 255, .35);
  border-radius: 13px;
  color: var(--cyan-300);
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(56, 189, 248, .08));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .25), 0 8px 24px rgba(0, 0, 0, .15);
  place-items: center;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  fill: rgba(255, 255, 255, .06);
  stroke-width: 1.4;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.04rem;
  letter-spacing: .17em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--cyan-300);
  font-size: .49rem;
  font-weight: 700;
  letter-spacing: .24em;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 22px);
}

.main-navigation a {
  position: relative;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(.68rem, .72vw, .78rem);
  font-weight: 600;
  white-space: nowrap;
  transition: color .25s;
}

.main-navigation a::after {
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--cyan-300);
  box-shadow: 0 0 10px var(--cyan-500);
  transition: right .3s var(--ease), left .3s var(--ease);
}

.main-navigation a:hover,
.main-navigation a.active {
  color: var(--white);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  right: 0;
  left: 0;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 14, 34, .98) 0%, rgba(4, 25, 55, .96) 48%, rgba(6, 30, 64, .88) 100%),
    var(--navy-950);
}

#particles-canvas,
.tech-particles {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid,
.tech-grid-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(126, 233, 255, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 233, 255, .2) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 25%, #000 75%, transparent);
}

.hero-aurora {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-aurora-one {
  top: -25%;
  right: -8%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(56, 189, 248, .28), transparent 64%);
  animation: auroraPulse 7s ease-in-out infinite;
}

.hero-aurora-two {
  bottom: -40%;
  left: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 142, 255, .17), transparent 65%);
  animation: auroraPulse 9s ease-in-out -3s infinite;
}

.floating-ring {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(126, 233, 255, .18);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(56, 189, 248, .08);
}

.ring-one {
  top: 20%;
  left: 48%;
  width: 110px;
  height: 110px;
  animation: floatRotate 12s linear infinite;
}

.ring-two {
  right: 5%;
  bottom: 16%;
  width: 190px;
  height: 190px;
  border-style: dashed;
  animation: spin 24s linear infinite;
}

.hero-layout {
  z-index: 3;
  display: grid;
  min-height: 860px;
  padding-top: 112px;
  padding-bottom: 70px;
  align-items: center;
  grid-template-columns: 1.06fr .94fr;
  gap: 50px;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.hero-eyebrow {
  margin-bottom: 22px;
  color: var(--cyan-soft);
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  text-wrap: balance;
}

.hero-description {
  max-width: 690px;
  margin-top: 25px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(.96rem, 1.15vw, 1.1rem);
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(126, 233, 255, .16);
  border-radius: 50px;
  color: rgba(255, 255, 255, .79);
  background: rgba(255, 255, 255, .055);
  font-size: .73rem;
  backdrop-filter: blur(8px);
}

.hero-badges svg {
  width: 14px;
  color: var(--cyan-300);
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-actions .button-primary {
  background: linear-gradient(135deg, #087bbd, var(--cyan-500));
  box-shadow: 0 16px 40px rgba(56, 189, 248, .28);
}

.hero-trust {
  display: flex;
  margin-top: 35px;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img,
.avatar-stack span {
  width: 37px;
  height: 37px;
  margin-left: -8px;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack span {
  display: grid;
  color: var(--navy-900);
  background: var(--cyan-300);
  font-size: .66rem;
  font-weight: 800;
  place-items: center;
}

.stars {
  display: flex;
  gap: 2px;
  color: #ffd166;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: currentColor;
}

.hero-trust p {
  margin-top: 4px;
  color: rgba(255, 255, 255, .6);
  font-size: .72rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 510px;
  margin-left: auto;
  perspective: 1200px;
}

.visual-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 190px 34px 190px 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(56, 189, 248, .03));
  box-shadow: 0 50px 100px rgba(0, 7, 20, .55), inset 0 1px rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
}

.visual-frame::before {
  position: absolute;
  z-index: -1;
  inset: -22px;
  border: 1px solid rgba(56, 189, 248, .17);
  border-radius: 200px 48px 200px 48px;
  content: "";
}

.visual-image-wrap {
  position: relative;
  height: 590px;
  overflow: hidden;
  border-radius: 180px 27px 180px 27px;
}

.visual-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(2, 18, 42, .55), transparent 50%), linear-gradient(135deg, rgba(56, 189, 248, .12), transparent);
}

.visual-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transition: transform 1.2s var(--ease);
}

.hero-visual:hover .visual-image-wrap img {
  transform: scale(1.04);
}

.image-light-sweep {
  position: absolute;
  z-index: 2;
  top: -20%;
  left: -60%;
  width: 30%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: rotate(20deg);
  animation: imageSweep 7s ease-in-out infinite;
}

.scan-interface {
  position: absolute;
  z-index: 3;
  inset: 13%;
  border: 1px solid rgba(126, 233, 255, .16);
  border-radius: 90px 15px 90px 15px;
  pointer-events: none;
}

.scan-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--cyan-300);
}

.top-left { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.top-right { top: -1px; right: -1px; border-top: 2px solid; border-right: 2px solid; }
.bottom-left { bottom: -1px; left: -1px; border-bottom: 2px solid; border-left: 2px solid; }
.bottom-right { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }

.scan-line {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-300), transparent);
  box-shadow: 0 0 13px var(--cyan-500);
  animation: scanLine 4s ease-in-out infinite;
}

.scan-interface small {
  position: absolute;
  right: 0;
  bottom: -29px;
  color: var(--cyan-300);
  font-size: .5rem;
  letter-spacing: .2em;
}

.floating-tooth {
  position: absolute;
  z-index: 6;
  top: -18px;
  right: -48px;
  width: 112px;
  filter: drop-shadow(0 20px 22px rgba(0, 13, 34, .45));
  animation: toothFloat 4.3s ease-in-out infinite;
}

.floating-tooth svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  stroke: none;
}

.tooth-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(56, 189, 248, .45);
  filter: blur(30px);
  animation: glowPulse 3s ease-in-out infinite;
}

.float-stat {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  color: var(--white);
  animation: cardFloat 5s ease-in-out infinite;
}

.stat-patients {
  bottom: 80px;
  left: -85px;
  padding: 14px 18px;
  border-radius: 16px;
  gap: 11px;
}

.stat-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: var(--cyan-300);
  background: rgba(56, 189, 248, .13);
  place-items: center;
}

.float-stat strong,
.float-stat small {
  display: block;
}

.float-stat strong {
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1.1;
}

.float-stat small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .62);
  font-size: .62rem;
}

.stat-years {
  top: 110px;
  left: -52px;
  padding: 13px 16px;
  border-radius: 15px;
  gap: 9px;
  animation-delay: -1.4s;
}

.stat-years strong {
  color: var(--cyan-300);
  font-size: 2rem;
}

.stat-years span {
  font-size: .62rem;
  line-height: 1.3;
}

.stat-team {
  right: -35px;
  bottom: 12px;
  padding: 12px 16px;
  border-radius: 15px;
  gap: 10px;
  animation-delay: -2.3s;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #51e38a;
  box-shadow: 0 0 0 5px rgba(81, 227, 138, .12), 0 0 15px #51e38a;
}

.scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: 27px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: rgba(255, 255, 255, .4);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 34px;
  margin-bottom: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.scroll-cue span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 70%;
  content: "";
  background: var(--cyan-300);
  animation: scrollCue 2s ease-in-out infinite;
}

/* Feature cards */
.feature-cards {
  background:
    radial-gradient(circle at 90% 10%, rgba(56, 189, 248, .09), transparent 25%),
    var(--off-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  perspective: 1200px;
}

.feature-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
}

.feature-card::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.feature-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .7s;
}

.feature-card:hover > img {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.feature-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 18, 44, .98) 5%, rgba(4, 33, 73, .55) 55%, rgba(56, 189, 248, .06));
  transition: background .5s;
}

.feature-card:hover .feature-overlay {
  background: linear-gradient(to top, rgba(2, 18, 44, .98) 8%, rgba(4, 45, 88, .62) 60%, rgba(56, 189, 248, .08));
}

.feature-number {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 27px;
  color: rgba(255, 255, 255, .45);
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .15em;
}

.feature-icon {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 25px;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 15px;
  color: var(--cyan-300);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  place-items: center;
  transition: transform .45s var(--ease), background .45s;
}

.feature-card:hover .feature-icon {
  color: var(--navy-900);
  background: var(--cyan-300);
  transform: translateZ(35px) rotate(-7deg) scale(1.08);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  left: 28px;
  color: var(--white);
  transform: translateZ(25px);
}

.feature-content > span {
  color: var(--cyan-300);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.feature-content h3 {
  margin-top: 7px;
  color: var(--white);
  font-size: 1.65rem;
}

.feature-content p {
  margin-top: 11px;
  color: rgba(255, 255, 255, .66);
  font-size: .86rem;
  line-height: 1.65;
}

.feature-content a,
.treatment-card a,
.insight-card a,
.text-link {
  display: inline-flex;
  margin-top: 19px;
  align-items: center;
  gap: 8px;
  color: var(--cyan-300);
  background: none;
  font-size: .76rem;
  font-weight: 700;
}

.feature-content a svg,
.treatment-card a svg,
.insight-card a svg,
.text-link svg {
  width: 17px;
  transition: transform .3s;
}

.feature-content a:hover svg,
.treatment-card a:hover svg,
.insight-card a:hover svg,
.text-link:hover svg {
  transform: translateX(6px);
}

/* About */
.about {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(238, 248, 252, .95)),
    var(--white);
}

.section-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.orb-cyan {
  top: 15%;
  right: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(56, 189, 248, .15);
  background: radial-gradient(circle, rgba(56, 189, 248, .1), transparent 65%);
}

.about-layout {
  display: grid;
  align-items: center;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
}

.about-gallery {
  position: relative;
  min-height: 620px;
}

.about-main-image,
.about-secondary-image {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-main-image {
  top: 0;
  left: 0;
  width: 80%;
  height: 500px;
}

.about-secondary-image {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 290px;
  border: 7px solid var(--white);
}

.image-reveal::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: var(--navy-800);
  transform-origin: right;
  transition: transform 1.1s var(--ease) .25s;
}

.image-reveal.is-visible::after,
.reveal.is-visible .image-reveal::after {
  transform: scaleX(0);
}

.image-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.image-reveal:hover img {
  transform: scale(1.06);
}

.about-seal {
  position: absolute;
  z-index: 4;
  top: 57%;
  left: 2%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  color: var(--navy-800);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.about-seal > svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: var(--navy-700);
  stroke: none;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  animation: spin 16s linear infinite;
}

.about-seal > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--cyan-500);
  background: var(--ice);
  transform: translate(-50%, -50%);
  place-items: center;
}

.about-seal > span svg {
  width: 25px;
}

.experience-card {
  position: absolute;
  z-index: 5;
  top: 45px;
  right: -28px;
  display: flex;
  padding: 17px 19px;
  border-color: rgba(6, 27, 58, .08);
  border-radius: 16px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, .82);
  gap: 10px;
  animation: cardFloat 5s ease-in-out infinite;
}

.experience-card strong {
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}

.experience-card span {
  color: var(--gray-600);
  font-size: .63rem;
  line-height: 1.4;
}

.about-copy h2 {
  margin-top: 15px;
  font-size: clamp(2.2rem, 3.6vw, 3.65rem);
}

.about-copy .lead {
  margin-top: 25px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
}

.about-copy > p:not(.lead) {
  margin-top: 17px;
  font-size: .94rem;
}

.differentials {
  display: grid;
  margin: 31px 0 35px;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.differential {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
}

.differential > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--navy-700);
  background: linear-gradient(135deg, var(--cyan-100), #eaf7ff);
  place-items: center;
}

.differential svg {
  width: 17px;
}

/* Purpose */
.purpose {
  overflow: hidden;
  background: var(--navy-900);
}

.purpose::before {
  position: absolute;
  top: -250px;
  left: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(56, 189, 248, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(56, 189, 248, .025), 0 0 0 160px rgba(56, 189, 248, .02);
}

.purpose-lines {
  position: absolute;
  inset: 0;
  opacity: .2;
  background: repeating-linear-gradient(115deg, transparent 0 130px, rgba(126, 233, 255, .12) 131px, transparent 132px 240px);
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
}

.purpose-intro {
  display: grid;
  align-items: start;
  grid-template-columns: .37fr 1fr;
  gap: 50px;
}

.purpose-index {
  display: flex;
  margin-top: 13px;
  align-items: center;
  color: var(--cyan-300);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.purpose-index span {
  width: 55px;
  height: 1px;
  margin: 0 12px;
  background: rgba(126, 233, 255, .4);
}

.purpose-copy {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
}

.purpose-copy h2 {
  color: var(--white);
}

.purpose-copy h2 span {
  color: var(--cyan-300);
}

.purpose-copy p {
  margin-top: 7px;
  color: rgba(255, 255, 255, .58);
  font-size: .95rem;
}

.values-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
}

.value-card {
  position: relative;
  min-height: 235px;
  padding: 34px;
  overflow: hidden;
  background: var(--navy-900);
  transform-style: preserve-3d;
  transition: background .4s;
}

.value-card::before {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(126, 233, 255, .12);
  border-radius: 50%;
  content: "";
  transition: transform .5s, background .5s;
}

.value-card:hover {
  background: #0a2852;
}

.value-card:hover::before {
  background: rgba(56, 189, 248, .05);
  transform: scale(1.6);
}

.value-icon {
  display: inline-flex;
  color: var(--cyan-300);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.value-card h3 {
  margin-top: 37px;
  color: var(--white);
  font-size: 1.35rem;
}

.value-card p {
  max-width: 260px;
  margin-top: 11px;
  color: rgba(255, 255, 255, .48);
  font-size: .82rem;
}

/* Team */
.team {
  background:
    radial-gradient(circle at 50% 30%, rgba(56, 189, 248, .08), transparent 35%),
    #f5f9fc;
}

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

.doctor-card {
  overflow: hidden;
  border: 1px solid rgba(6, 27, 58, .07);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(6, 27, 58, .07);
  transform-style: preserve-3d;
  transition: box-shadow .4s var(--ease);
}

.doctor-card:hover {
  box-shadow: var(--shadow-md);
}

.doctor-photo {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: var(--ice);
}

.doctor-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(6, 27, 58, .42), transparent 45%);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.88);
  transition: transform .8s var(--ease), filter .5s;
}

.doctor-card:hover .doctor-photo img {
  filter: saturate(1);
  transform: scale(1.06);
}

.doctor-photo > span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  color: rgba(255, 255, 255, .8);
  background: rgba(6, 27, 58, .35);
  font-size: .52rem;
  backdrop-filter: blur(8px);
}

.doctor-info {
  padding: 24px 22px 25px;
  transform: translateZ(15px);
}

.doctor-info > small {
  color: var(--cyan-500);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.doctor-info h3 {
  margin-top: 6px;
  font-size: 1.2rem;
}

.doctor-info p {
  margin-top: 10px;
  font-size: .76rem;
  line-height: 1.6;
}

.text-link {
  color: var(--navy-700);
}

/* Technology */
.technology {
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 25% 55%, rgba(0, 176, 255, .14), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(56, 189, 248, .12), transparent 25%),
    linear-gradient(135deg, #020e23, var(--navy-900) 55%, #082952);
}

.technology::after {
  position: absolute;
  right: -200px;
  bottom: -400px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(56, 189, 248, .11);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(56, 189, 248, .02), 0 0 0 180px rgba(56, 189, 248, .015);
}

.technology-header {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: end;
  grid-template-columns: 1.4fr .6fr;
  gap: 70px;
}

.technology-header h2 {
  max-width: 780px;
  margin-top: 15px;
  color: var(--white);
}

.technology-header > p {
  color: rgba(255, 255, 255, .58);
}

.technology-layout {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 75px;
  align-items: center;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.tech-visual {
  position: relative;
  display: grid;
  min-height: 490px;
  place-items: center;
  perspective: 900px;
}

.tech-orbit {
  position: absolute;
  border: 1px solid rgba(126, 233, 255, .15);
  border-radius: 50%;
}

.tech-orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--cyan-300);
  box-shadow: 0 0 20px var(--cyan-300);
}

.orbit-a { width: 420px; height: 420px; animation: spin 14s linear infinite; }
.orbit-b { width: 330px; height: 330px; border-style: dashed; animation: spinReverse 20s linear infinite; }
.orbit-c { width: 250px; height: 250px; animation: spin 9s linear infinite; }

.digital-tooth {
  position: relative;
  width: 250px;
  filter: drop-shadow(0 0 30px rgba(56, 189, 248, .2));
  animation: toothFloat 5s ease-in-out infinite;
}

.digital-tooth svg {
  width: 100%;
  height: auto;
}

.scan-wave {
  position: absolute;
  top: 10%;
  right: -15%;
  left: -15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-300), transparent);
  box-shadow: 0 0 15px var(--cyan-500);
  animation: scanLine 3.5s ease-in-out infinite;
}

.tech-label {
  position: absolute;
  display: flex;
  padding: 9px 12px;
  align-items: center;
  border-radius: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: .6rem;
  gap: 7px;
  animation: cardFloat 4s ease-in-out infinite;
}

.tech-label svg {
  color: var(--cyan-300);
}

.tech-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #50ec94;
  box-shadow: 0 0 10px #50ec94;
}

.tech-label strong {
  color: var(--cyan-300);
}

.label-one { top: 17%; left: 0; }
.label-two { top: 25%; right: 0; animation-delay: -1.2s; }
.label-three { bottom: 16%; left: 4%; animation-delay: -2.3s; }

.tech-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  perspective: 1000px;
}

.tech-card {
  display: flex;
  min-height: 155px;
  padding: 25px;
  align-items: flex-start;
  border-color: rgba(126, 233, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  gap: 16px;
  transform-style: preserve-3d;
  transition: border-color .4s, background .4s, box-shadow .4s;
}

.tech-card:hover {
  border-color: rgba(126, 233, 255, .3);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 24px 50px rgba(0, 8, 25, .3), inset 0 1px rgba(255, 255, 255, .15);
}

.tech-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(126, 233, 255, .18);
  border-radius: 12px;
  color: var(--cyan-300);
  background: rgba(56, 189, 248, .09);
  place-items: center;
  transform: translateZ(20px);
}

.tech-card h3 {
  color: var(--white);
  font-size: 1rem;
}

.tech-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .48);
  font-size: .75rem;
  line-height: 1.55;
}

/* Treatments */
.treatments {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 50%, rgba(56, 189, 248, .09), transparent 25%),
    var(--off-white);
}

.treatments-carousel {
  overflow: hidden;
}

.treatment-track {
  display: flex;
  gap: 18px;
  transition: transform .65s var(--ease);
  will-change: transform;
}

.treatment-card {
  position: relative;
  min-width: calc((100% - 54px) / 4);
  min-height: 330px;
  padding: 29px 25px;
  overflow: hidden;
  border: 1px solid rgba(6, 27, 58, .07);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(6, 27, 58, .06);
  transform-style: preserve-3d;
  transition: border-color .4s, box-shadow .4s, background .4s;
}

.treatment-card::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(56, 189, 248, .16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 20px rgba(56, 189, 248, .025);
  transition: transform .5s;
}

.treatment-card:hover {
  border-color: rgba(56, 189, 248, .3);
  background: linear-gradient(145deg, #fff, #f2fbff);
  box-shadow: var(--shadow-md);
}

.treatment-card:hover::after {
  transform: scale(1.35);
}

.treatment-icon {
  display: grid;
  width: 55px;
  height: 55px;
  border-radius: 16px;
  color: var(--navy-700);
  background: linear-gradient(135deg, var(--cyan-100), #eef8ff);
  box-shadow: inset 0 1px var(--white);
  place-items: center;
  transform: translateZ(20px);
}

.treatment-icon svg {
  width: 27px;
}

.treatment-card > small {
  display: block;
  margin-top: 28px;
  color: var(--cyan-500);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.treatment-card h3 {
  margin-top: 5px;
  font-size: 1.2rem;
}

.treatment-card p {
  margin-top: 11px;
  font-size: .77rem;
  line-height: 1.6;
}

.treatment-card a {
  position: relative;
  z-index: 2;
  color: var(--navy-700);
}

.carousel-controls {
  display: flex;
  margin-top: 32px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(6, 27, 58, .1);
  border-radius: 50%;
  color: var(--navy-800);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  place-items: center;
  transition: color .3s, background .3s, transform .3s, box-shadow .3s;
}

.carousel-button:hover {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 28px rgba(11, 46, 99, .25);
  transform: translateY(-3px);
}

.carousel-button svg {
  width: 18px;
}

.carousel-button:first-child svg {
  transform: rotate(180deg);
}

.carousel-progress {
  width: 130px;
  height: 3px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--gray-200);
}

.carousel-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy-800), var(--cyan-500));
  transition: transform .5s var(--ease);
}

.metrics-panel {
  position: relative;
  display: grid;
  margin-top: 80px;
  padding: 46px 35px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(56, 189, 248, .2), transparent 30%),
    linear-gradient(130deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-md);
  grid-template-columns: repeat(4, 1fr);
}

.metrics-panel::before {
  position: absolute;
  top: -110px;
  left: 35%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(126, 233, 255, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(56, 189, 248, .02);
}

.metric {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid rgba(255, 255, 255, .11);
}

.metric strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.metric small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
}

/* Results */
.results {
  background: var(--white);
}

.result-filters {
  display: flex;
  margin-bottom: 38px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  padding: 10px 16px;
  border: 1px solid rgba(6, 27, 58, .09);
  border-radius: 50px;
  color: var(--gray-600);
  background: var(--off-white);
  font-size: .72rem;
  font-weight: 600;
  transition: color .3s, background .3s, box-shadow .3s, transform .3s;
}

.filter-button:hover {
  color: var(--navy-800);
  transform: translateY(-2px);
}

.filter-button.active {
  color: var(--white);
  border-color: var(--navy-800);
  background: var(--navy-800);
  box-shadow: 0 10px 25px rgba(11, 46, 99, .22);
}

.results-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  cursor: pointer;
  transition: opacity .4s, transform .5s var(--ease);
}

.result-card.is-hidden {
  display: none;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s;
}

.result-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(2, 18, 42, .85), transparent 65%);
  transition: background .5s;
}

.result-card:hover img {
  filter: saturate(1.1);
  transform: scale(1.08);
}

.result-card:hover::after {
  background: linear-gradient(to top, rgba(2, 18, 42, .92), rgba(6, 50, 90, .14));
}

.result-card-tall {
  grid-row: span 2;
}

.result-tag {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50px;
  color: var(--white);
  background: rgba(6, 27, 58, .28);
  font-size: .58rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.result-overlay {
  position: absolute;
  z-index: 3;
  right: 23px;
  bottom: 21px;
  left: 23px;
  transform: translateY(18px);
  transition: transform .5s var(--ease);
}

.result-card:hover .result-overlay {
  transform: translateY(0);
}

.result-overlay h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.result-overlay span {
  display: flex;
  margin-top: 10px;
  align-items: center;
  gap: 7px;
  color: var(--cyan-300);
  font-size: .68rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity .4s .08s;
}

.result-card:hover .result-overlay span {
  opacity: 1;
}

.results-disclaimer {
  margin-top: 20px;
  text-align: center;
  font-size: .66rem;
}

.modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  padding: 25px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .4s, visibility .4s;
  place-items: center;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 10, 25, .82);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(950px, 100%);
  max-height: calc(100vh - 50px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
  grid-template-columns: 1.25fr .75fr;
  transform: translateY(35px) scale(.95);
  transition: transform .5s var(--ease);
}

.modal.open .modal-dialog {
  transform: none;
}

.modal-image {
  min-height: 550px;
}

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

.modal-content {
  display: flex;
  padding: 50px 38px;
  justify-content: center;
  flex-direction: column;
}

.modal-content h3 {
  margin-top: 13px;
  font-size: 2rem;
}

.modal-content p {
  margin: 17px 0 28px;
  font-size: .88rem;
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy-900);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-sm);
  font-size: 1.5rem;
  line-height: 1;
  place-items: center;
  transition: transform .3s, background .3s;
}

.modal-close:hover {
  background: var(--cyan-100);
  transform: rotate(90deg);
}

/* Proof */
.proof {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(56, 189, 248, .14), transparent 30%),
    linear-gradient(130deg, var(--navy-950), var(--navy-800));
}

.proof::before {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(126, 233, 255, .13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(56, 189, 248, .02), 0 0 0 140px rgba(56, 189, 248, .015);
}

.proof-top {
  display: grid;
  align-items: center;
  grid-template-columns: .65fr 1.35fr;
  gap: 75px;
}

.proof-copy h2 {
  margin-top: 15px;
  color: var(--white);
}

.proof-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, .57);
}

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

.proof-card {
  display: flex;
  min-height: 140px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 233, 255, .11);
  border-radius: 17px;
  background: rgba(255, 255, 255, .055);
  text-align: center;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: transform .4s var(--ease), background .4s, border-color .4s;
}

.proof-card:hover {
  border-color: rgba(126, 233, 255, .3);
  background: rgba(255, 255, 255, .1);
  transform: translateY(-7px);
}

.proof-card strong {
  color: var(--cyan-300);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.proof-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  color: var(--cyan-300);
}

.proof-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .62);
  font-size: .68rem;
}

.quality-seals {
  display: grid;
  margin-top: 70px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  grid-template-columns: repeat(4, 1fr);
}

.quality-seals > div {
  display: flex;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.quality-seals > div + div {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.quality-seals span {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  border: 1px solid rgba(126, 233, 255, .17);
  border-radius: 50%;
  color: var(--cyan-300);
  place-items: center;
}

.quality-seals p {
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
  line-height: 1.4;
}

.quality-seals strong {
  display: block;
  color: var(--white);
  font-size: .75rem;
}

/* Testimonials */
.testimonials {
  overflow: hidden;
  background: #f4f9fc;
}

.testimonial-orb {
  position: absolute;
  top: -300px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(56, 189, 248, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(56, 189, 248, .02);
}

.testimonial-nav {
  display: flex;
  margin-bottom: 5px;
  gap: 10px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform .7s var(--ease);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  min-width: calc((100% - 36px) / 3);
  min-height: 370px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(6, 27, 58, .07);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 15px 40px rgba(6, 27, 58, .06);
}

.testimonial-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(56, 189, 248, .12), transparent 70%);
}

.quote-mark {
  height: 55px;
  color: var(--cyan-500);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .8;
}

.testimonial-card .stars {
  margin-top: 8px;
}

.testimonial-card blockquote {
  min-height: 150px;
  margin-top: 20px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.patient {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 20px;
  padding-top: 20px;
  align-items: center;
  border-top: 1px solid var(--gray-100);
  gap: 12px;
}

.patient img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.patient strong,
.patient small {
  display: block;
}

.patient strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: .82rem;
}

.patient small {
  margin-top: 2px;
  color: var(--cyan-500);
  font-size: .59rem;
}

.testimonial-dots {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  gap: 8px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: rgba(11, 46, 99, .18);
  transition: width .35s, background .35s;
}

.testimonial-dots button.active {
  width: 30px;
  background: var(--cyan-500);
}

/* Appointment */
.appointment {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, .16), transparent 30%),
    linear-gradient(135deg, #03142f, #0a3a72);
}

.appointment::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 75px 75px;
  mask-image: radial-gradient(circle at 35% 50%, #000, transparent 65%);
}

.appointment-glow {
  position: absolute;
  top: 10%;
  left: 38%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(56, 189, 248, .13);
  filter: blur(80px);
  animation: auroraPulse 6s infinite;
}

.appointment-layout {
  display: grid;
  align-items: center;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.appointment-copy h2 {
  margin-top: 16px;
  color: var(--white);
}

.appointment-copy > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .62);
}

.appointment-benefits {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  gap: 11px;
}

.appointment-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .75);
  font-size: .79rem;
}

.appointment-benefits svg {
  width: 17px;
  color: var(--cyan-300);
}

.appointment-contact {
  display: flex;
  margin-top: 35px;
  align-items: center;
  gap: 13px;
}

.appointment-contact > span {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 0 0 7px rgba(37, 211, 102, .1);
  place-items: center;
}

.appointment-contact svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

.appointment-contact small,
.appointment-contact strong {
  display: block;
}

.appointment-contact small {
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
}

.appointment-contact strong {
  color: var(--white);
  font-family: var(--font-display);
}

.appointment-form {
  padding: 35px;
  border-color: rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .09);
}

.form-heading {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
}

.form-heading span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.form-heading small {
  padding: 5px 9px;
  border: 1px solid rgba(126, 233, 255, .17);
  border-radius: 20px;
  color: var(--cyan-300);
  font-size: .52rem;
}

.appointment-form label {
  display: flex;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
  font-weight: 600;
  flex-direction: column;
  gap: 7px;
}

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

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  outline: none;
  border-radius: 12px;
  color: var(--white);
  background: rgba(2, 18, 42, .38);
  font-size: .78rem;
  transition: border-color .3s, box-shadow .3s, background .3s;
}

.appointment-form input,
.appointment-form select {
  height: 49px;
  padding: 0 14px;
}

.appointment-form textarea {
  min-height: 85px;
  padding: 12px 14px;
  resize: vertical;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.appointment-form select option {
  color: var(--navy-900);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--cyan-500);
  background: rgba(2, 18, 42, .52);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .1);
}

.form-privacy {
  display: flex;
  margin-top: 11px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, .38);
  font-size: .57rem;
}

.form-privacy svg {
  width: 13px;
  color: var(--cyan-300);
}

/* FAQ */
.faq {
  background: var(--off-white);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 115px;
}

.faq-intro h2 {
  margin-top: 15px;
}

.faq-intro p {
  margin: 20px 0 30px;
}

.faq-list {
  border-top: 1px solid rgba(6, 27, 58, .1);
}

.faq-item {
  border-bottom: 1px solid rgba(6, 27, 58, .1);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 86px;
  padding: 20px 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-900);
  background: transparent;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  gap: 20px;
}

.faq-question i {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border: 1px solid rgba(11, 46, 99, .14);
  border-radius: 50%;
  transition: background .3s, transform .4s;
}

.faq-question i::before,
.faq-question i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--navy-800);
  transform: translate(-50%, -50%);
  transition: transform .35s;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-question i {
  background: var(--cyan-100);
  transform: rotate(180deg);
}

.faq-item.open .faq-question i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  padding: 0 55px 26px 8px;
  font-size: .83rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

/* Insights */
.insights {
  background:
    radial-gradient(circle at 50% 50%, rgba(56, 189, 248, .08), transparent 35%),
    var(--white);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 1200px;
}

.insight-card {
  position: relative;
  min-height: 345px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(6, 27, 58, .08);
  border-radius: var(--radius-md);
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: box-shadow .4s, border-color .4s;
}

.insight-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(56, 189, 248, .15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(56, 189, 248, .025);
}

.insight-card:hover {
  border-color: rgba(56, 189, 248, .3);
  box-shadow: var(--shadow-md);
}

.insight-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 10%, rgba(56, 189, 248, .25), transparent 35%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.insight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-top span {
  color: var(--cyan-500);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.insight-top svg {
  width: 30px;
  height: 30px;
  color: var(--cyan-500);
}

.insight-card h3 {
  margin-top: 55px;
  font-size: 1.45rem;
}

.insight-card.featured h3 {
  color: var(--white);
}

.insight-card p {
  margin-top: 15px;
  font-size: .81rem;
}

.insight-card.featured p {
  color: rgba(255, 255, 255, .55);
}

.insight-card a {
  position: absolute;
  z-index: 2;
  bottom: 29px;
  color: var(--navy-700);
}

.insight-card.featured a {
  color: var(--cyan-300);
}

/* Location */
.location {
  background: #f1f7fa;
}

.location-layout {
  display: grid;
  align-items: center;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
}

.location-info h2 {
  margin-top: 15px;
}

.location-info > p {
  margin-top: 20px;
}

.contact-list {
  margin: 30px 0 25px;
}

.contact-item {
  display: flex;
  padding: 16px 0;
  align-items: flex-start;
  border-bottom: 1px solid rgba(6, 27, 58, .09);
  gap: 15px;
}

.contact-item > span {
  margin-top: 2px;
  color: var(--cyan-500);
  font-size: .58rem;
  font-weight: 700;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  color: var(--gray-500);
  font-size: .59rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-item strong {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: .78rem;
  line-height: 1.55;
}

.location-tags {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.location-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-600);
  font-size: .68rem;
}

.location-tags svg {
  color: var(--cyan-500);
}

.map-card {
  position: relative;
  height: 620px;
  padding: 10px;
  border: 1px solid rgba(6, 27, 58, .08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
  filter: saturate(.7) contrast(1.05);
}

.map-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  padding: 14px 18px;
  align-items: center;
  border-color: rgba(6, 27, 58, .08);
  border-radius: 15px;
  background: rgba(255, 255, 255, .85);
  gap: 11px;
}

.map-pin {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--cyan-500);
  background: var(--navy-900);
  place-items: center;
}

.map-overlay-card strong,
.map-overlay-card small {
  display: block;
}

.map-overlay-card strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: .78rem;
}

.map-overlay-card small {
  color: var(--gray-500);
  font-size: .58rem;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: linear-gradient(rgba(126,233,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(126,233,255,.14) 1px, transparent 1px);
  background-size: 75px 75px;
  mask-image: linear-gradient(to bottom, transparent, #000);
}

.footer-glow {
  position: absolute;
  top: -200px;
  left: 5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(56, 189, 248, .1);
  filter: blur(110px);
}

.footer-main {
  position: relative;
  display: grid;
  padding: 80px 0 60px;
  grid-template-columns: 1.5fr 1.15fr .8fr .8fr .7fr;
  gap: 45px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .47);
  font-size: .76rem;
}

.social-links {
  display: flex;
  margin-top: 25px;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .04);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  place-items: center;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.social-links a:hover {
  color: var(--navy-900);
  border-color: var(--cyan-300);
  background: var(--cyan-300);
  transform: translateY(-4px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: .9rem;
  letter-spacing: 0;
}

.footer-column a,
.footer-column > span {
  color: rgba(255, 255, 255, .48);
  font-size: .68rem;
  transition: color .25s, transform .25s;
}

.footer-column a:hover {
  color: var(--cyan-300);
  transform: translateX(3px);
}

.footer-seals > div {
  display: flex;
  padding: 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: .59rem;
  line-height: 1.3;
  gap: 8px;
}

.footer-seals svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--cyan-300);
}

.footer-bottom {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, .35);
  font-size: .61rem;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

/* Floating elements */
.whatsapp-widget {
  position: fixed;
  z-index: 1500;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.whatsapp-float {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 14px 35px rgba(21, 119, 58, .35);
  place-items: center;
  transition: transform .3s, box-shadow .3s;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 45px rgba(21, 119, 58, .45);
  transform: translateY(-4px) scale(1.05);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: none;
}

.whatsapp-pulse {
  position: absolute;
  z-index: -1;
  inset: -5px;
  border: 1px solid var(--whatsapp);
  border-radius: 50%;
  animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-bubble {
  position: relative;
  width: 250px;
  margin-bottom: 13px;
  padding: 16px 35px 16px 17px;
  border: 1px solid rgba(6, 27, 58, .08);
  border-radius: 15px 15px 3px 15px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform-origin: bottom right;
  animation: bubbleIn .65s var(--ease) 3.2s both;
}

.whatsapp-bubble::after {
  position: absolute;
  right: 16px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--white);
  transform: rotate(45deg);
}

.whatsapp-bubble strong,
.whatsapp-bubble span {
  display: block;
}

.whatsapp-bubble strong {
  color: var(--navy-900);
  font-size: .74rem;
}

.whatsapp-bubble span {
  margin-top: 3px;
  color: var(--gray-500);
  font-size: .62rem;
  line-height: 1.45;
}

.whatsapp-bubble button {
  position: absolute;
  top: 7px;
  right: 8px;
  color: var(--gray-500);
  background: transparent;
  font-size: 1rem;
}

.whatsapp-bubble.closed {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 1400;
  right: 31px;
  bottom: 100px;
  display: grid;
  width: 45px;
  height: 45px;
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 27, 58, .78);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  backdrop-filter: blur(10px);
  place-items: center;
  transform: translateY(15px);
  transition: opacity .3s, visibility .3s, transform .3s;
}

.back-to-top.visible {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.back-to-top svg {
  transform: rotate(-90deg);
}

/* Dental chatbot */
.dental-chat-widget {
  position: fixed;
  z-index: 1600;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  pointer-events: none;
}

.dental-chat-toggle,
.dental-chat-window {
  pointer-events: auto;
}

.dental-chat-toggle {
  position: relative;
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 15px;
  border: 1px solid rgba(126, 233, 255, .35);
  border-radius: 999px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(126, 233, 255, .28), transparent 34%),
    linear-gradient(135deg, var(--navy-800), #0875ad);
  box-shadow: 0 18px 45px rgba(6, 27, 58, .25), 0 0 0 8px rgba(56, 189, 248, .08);
  font-size: .86rem;
  font-weight: 800;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), opacity .3s;
}

.dental-chat-toggle:hover {
  box-shadow: 0 22px 55px rgba(6, 27, 58, .34), 0 0 0 10px rgba(56, 189, 248, .11);
  transform: translateY(-4px);
}

.dental-chat-toggle svg {
  width: 28px;
  height: 28px;
  fill: rgba(255, 255, 255, .08);
  stroke: var(--cyan-soft);
}

.dental-chat-status {
  position: absolute;
  top: 6px;
  left: 45px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #37e889;
  box-shadow: 0 0 14px rgba(55, 232, 137, .75);
}

.dental-chat-window {
  position: absolute;
  right: 0;
  bottom: 86px;
  display: grid;
  width: min(410px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 120px));
  overflow: hidden;
  visibility: hidden;
  border: 1px solid rgba(6, 27, 58, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 80px rgba(6, 27, 58, .24);
  opacity: 0;
  grid-template-rows: auto minmax(220px, 1fr) auto auto auto auto;
  transform: translateY(20px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .34s var(--ease), visibility .34s, transform .34s var(--ease);
  backdrop-filter: blur(18px);
}

.dental-chat-widget.open .dental-chat-window {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.dental-chat-widget.open .dental-chat-toggle {
  opacity: .92;
}

.dental-chat-header {
  display: grid;
  padding: 18px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0, rgba(56, 189, 248, .35), transparent 38%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  grid-template-columns: auto 1fr auto auto;
  gap: 11px;
}

.dental-chat-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(126, 233, 255, .3);
  border-radius: 14px;
  color: var(--cyan-300);
  background: rgba(255, 255, 255, .1);
  place-items: center;
}

.dental-chat-avatar svg {
  width: 22px;
  height: 22px;
}

.dental-chat-header strong,
.dental-chat-header span {
  display: block;
}

.dental-chat-header strong {
  font-family: var(--font-display);
  font-size: .96rem;
  line-height: 1.1;
}

.dental-chat-header span {
  display: flex;
  margin-top: 4px;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .64);
  font-size: .68rem;
}

.dental-chat-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37e889;
  box-shadow: 0 0 12px #37e889;
}

.dental-chat-icon-button {
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  font-size: .68rem;
  font-weight: 700;
  transition: color .25s, background .25s, transform .25s;
}

.dental-chat-close {
  width: 34px;
  min-width: 34px;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
}

.dental-chat-icon-button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.dental-chat-messages {
  display: flex;
  min-height: 0;
  padding: 18px 16px 10px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 20% 0, rgba(56, 189, 248, .08), transparent 32%),
    linear-gradient(#f8fbfd, #fff);
  flex-direction: column;
  gap: 12px;
}

.dental-chat-message {
  display: flex;
  max-width: 88%;
  flex-direction: column;
  gap: 8px;
}

.dental-chat-message.bot {
  align-self: flex-start;
}

.dental-chat-message.user {
  align-self: flex-end;
}

.dental-chat-bubble {
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(6, 27, 58, .06);
  font-size: .82rem;
  line-height: 1.55;
}

.dental-chat-message.bot .dental-chat-bubble {
  border: 1px solid rgba(6, 27, 58, .08);
  color: var(--text);
  background: var(--white);
  border-bottom-left-radius: 5px;
}

.dental-chat-message.user .dental-chat-bubble {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), #0b73a9);
  border-bottom-right-radius: 5px;
}

.dental-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.dental-chat-actions a,
.dental-chat-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #18b952, var(--whatsapp));
  font-size: .72rem;
  font-weight: 800;
  transition: transform .25s, box-shadow .25s;
}

.dental-chat-actions a {
  padding: 9px 12px;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .2);
}

.dental-chat-actions a:hover,
.dental-chat-whatsapp:hover {
  box-shadow: 0 14px 26px rgba(37, 211, 102, .28);
  transform: translateY(-2px);
}

.dental-chat-typing {
  display: none;
  padding: 0 16px 10px;
  align-items: center;
  gap: 5px;
  color: var(--gray-500);
  background: var(--white);
  font-size: .68rem;
}

.dental-chat-typing.visible {
  display: flex;
}

.dental-chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-500);
  animation: typingDot 1s ease-in-out infinite;
}

.dental-chat-typing span:nth-child(2) {
  animation-delay: .12s;
}

.dental-chat-typing span:nth-child(3) {
  animation-delay: .24s;
}

.dental-chat-suggestions {
  display: flex;
  padding: 10px 16px 6px;
  overflow-x: auto;
  background: var(--white);
  gap: 7px;
  scrollbar-width: none;
}

.dental-chat-suggestions::-webkit-scrollbar {
  display: none;
}

.dental-chat-suggestions button {
  flex: 0 0 auto;
  padding: 9px 11px;
  border: 1px solid rgba(11, 46, 99, .11);
  border-radius: 999px;
  color: var(--navy-800);
  background: #f2f8fb;
  font-size: .68rem;
  font-weight: 700;
  transition: color .25s, background .25s, transform .25s;
}

.dental-chat-suggestions button:hover {
  color: var(--white);
  background: var(--navy-800);
  transform: translateY(-2px);
}

.dental-chat-whatsapp {
  min-height: 42px;
  margin: 9px 16px 0;
}

.dental-chat-whatsapp svg {
  width: 16px;
  height: 16px;
}

.dental-chat-form {
  display: grid;
  padding: 12px 16px 8px;
  align-items: end;
  background: var(--white);
  grid-template-columns: 1fr 44px;
  gap: 9px;
}

.dental-chat-form textarea {
  width: 100%;
  max-height: 110px;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid rgba(11, 46, 99, .12);
  outline: none;
  border-radius: 14px;
  color: var(--text);
  background: var(--off-white);
  font-size: .82rem;
  line-height: 1.35;
  resize: none;
  transition: border-color .25s, box-shadow .25s;
}

.dental-chat-form textarea:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .12);
}

.dental-chat-form button {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--cyan-500));
  place-items: center;
  transition: transform .25s, box-shadow .25s;
}

.dental-chat-form button:hover {
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}

.dental-chat-form button svg {
  width: 19px;
  height: 19px;
}

.dental-chat-privacy {
  padding: 0 16px 14px;
  color: var(--gray-500);
  background: var(--white);
  font-size: .61rem;
  line-height: 1.35;
}

@keyframes typingDot {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

/* Reveal and tilt */
.reveal {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s;
  will-change: opacity, transform;
}

.reveal[data-reveal="up"] {
  transform: translateY(42px);
}

.reveal[data-reveal="left"] {
  transform: translateX(-55px);
}

.reveal[data-reveal="right"] {
  transform: translateX(55px);
}

.reveal[data-reveal="scale"] {
  filter: blur(5px);
  transform: scale(.92);
}

.reveal.is-visible {
  filter: none;
  opacity: 1;
  transform: none;
}

.tilt-card {
  will-change: transform;
  transition: transform .18s ease-out;
}

.click-ripple {
  position: absolute;
  z-index: -1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  pointer-events: none;
  animation: clickRipple .55s ease-out forwards;
}

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, .55);
  outline-offset: 4px;
}

/* Keyframes */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes toothFloat { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes auroraPulse { 0%, 100% { opacity: .65; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes glowPulse { 0%, 100% { opacity: .45; transform: scale(.8); } 50% { opacity: .8; transform: scale(1.15); } }
@keyframes floatRotate { 0%, 100% { transform: translateY(0) rotateX(65deg) rotateZ(0); } 50% { transform: translateY(-15px) rotateX(65deg) rotateZ(180deg); } }
@keyframes scanLine { 0%, 100% { top: 8%; opacity: .3; } 50% { top: 88%; opacity: 1; } }
@keyframes imageSweep { 0%, 25% { left: -60%; } 55%, 100% { left: 140%; } }
@keyframes loadingLine { 0% { transform: translateX(-110%); } 100% { transform: translateX(280%); } }
@keyframes scrollCue { 0% { transform: translateY(-100%); } 100% { transform: translateY(280%); } }
@keyframes buttonShine { 0%, 58% { left: -45%; } 85%, 100% { left: 130%; } }
@keyframes whatsappPulse { 0% { opacity: .7; transform: scale(1); } 100% { opacity: 0; transform: scale(1.55); } }
@keyframes bubbleIn { from { opacity: 0; transform: scale(.7) translateY(15px); } to { opacity: 1; transform: none; } }
@keyframes clickRipple { to { opacity: 0; transform: scale(15); } }

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --container: min(1060px, calc(100% - 36px));
  }

  .main-navigation {
    gap: 11px;
  }

  .main-navigation a {
    font-size: .64rem;
  }

  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr .82fr;
    gap: 30px;
  }

  .visual-image-wrap {
    height: 540px;
  }

  .floating-tooth {
    right: -15px;
  }

  .stat-patients {
    left: -35px;
  }

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

  .doctor-photo {
    height: 440px;
  }

  .treatment-card {
    min-width: calc((100% - 36px) / 3);
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 25px;
  }
}

@media (max-width: 980px) {
  body {
    font-size: 17px;
  }

  .section {
    padding: 100px 0;
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: #03132c;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    flex-direction: column;
    gap: 5px;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform .35s, opacity .3s;
  }

  .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-navigation {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    padding: 110px 30px 45px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    background:
      radial-gradient(circle at 80% 20%, rgba(56, 189, 248, .18), transparent 30%),
      #03132c;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    gap: 0;
    transition: opacity .4s, visibility .4s;
  }

  .main-navigation.open {
    visibility: visible;
    background: #03132c;
    opacity: 1;
  }

  .main-navigation a {
    width: min(400px, 100%);
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-align: center;
    transform: translateY(15px);
    transition: transform .4s var(--ease), opacity .4s;
  }

  .main-navigation.open a {
    opacity: 1;
    transform: none;
  }

  .main-navigation a::after {
    display: none;
  }

  .hero-description,
  .section-heading > p,
  .about-copy .lead,
  .technology-header > p,
  .appointment-copy > p,
  .faq-intro p {
    font-size: 1.04rem;
  }

  .tech-card h3,
  .doctor-info h3,
  .treatment-card h3 {
    font-size: 1.28rem;
  }

  .tech-card p,
  .doctor-info p,
  .treatment-card p,
  .value-card p,
  .feature-content p {
    font-size: 1rem;
  }

  .tech-card {
    min-height: 175px;
    padding: 28px;
  }

  .treatment-card {
    min-height: 355px;
  }

  .whatsapp-widget {
    right: 20px;
    bottom: 20px;
  }

  .whatsapp-float {
    width: 72px;
    height: 72px;
    border-width: 4px;
  }

  .whatsapp-float svg {
    width: 35px;
    height: 35px;
  }

  .whatsapp-bubble {
    width: 280px;
    padding: 19px 38px 19px 20px;
  }

  .whatsapp-bubble strong {
    font-size: .86rem;
  }

  .whatsapp-bubble span {
    font-size: .72rem;
  }

  .dental-chat-widget {
    right: 18px;
    bottom: 18px;
  }

  .dental-chat-window {
    width: min(410px, calc(100vw - 30px));
    max-height: min(700px, calc(100dvh - 105px));
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 150px;
    padding-bottom: 110px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    max-width: 650px;
    margin-top: 50px;
    margin-inline: auto;
  }

  .visual-image-wrap {
    height: 650px;
  }

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

  .feature-card:last-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .about-gallery {
    width: min(650px, 100%);
  }

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

  .purpose-copy {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .technology-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .technology-header > p {
    max-width: 650px;
  }

  .technology-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .tech-visual {
    width: min(600px, 100%);
    margin-inline: auto;
  }

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

  .proof-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .quality-seals {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }

  .quality-seals > div:nth-child(3) {
    border-left: 0;
  }

  .testimonial-card {
    min-width: calc((100% - 18px) / 2);
  }

  .appointment-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
    max-width: 700px;
  }

  .location-layout {
    grid-template-columns: 1fr;
  }

  .location-info {
    max-width: 700px;
  }

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

  .footer-seals {
    grid-column: 2 / -1;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  :root {
    --container: calc(100% - 30px);
    --radius-lg: 25px;
  }

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

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 11.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .hero-layout {
    padding-top: 125px;
    padding-bottom: 90px;
  }

  .hero-description {
    font-size: .94rem;
  }

  .hero-badges {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .visual-frame {
    border-radius: 130px 25px 130px 25px;
  }

  .visual-frame::before {
    border-radius: 140px 35px 140px 35px;
  }

  .visual-image-wrap {
    height: 540px;
    border-radius: 120px 19px 120px 19px;
  }

  .floating-tooth {
    top: -35px;
    right: -4px;
    width: 88px;
  }

  .stat-years {
    top: 70px;
    left: -7px;
  }

  .stat-patients {
    bottom: 70px;
    left: -6px;
  }

  .stat-team {
    right: -4px;
  }

  .feature-grid,
  .team-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:last-child {
    min-height: 480px;
    grid-column: auto;
  }

  .about-gallery {
    min-height: 500px;
  }

  .about-main-image {
    width: 86%;
    height: 410px;
  }

  .about-secondary-image {
    width: 55%;
    height: 230px;
  }

  .about-seal {
    top: 57%;
    width: 105px;
    height: 105px;
  }

  .experience-card {
    top: 25px;
    right: 0;
  }

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

  .values-grid,
  .tech-cards {
    grid-template-columns: 1fr;
  }

  .doctor-photo {
    height: 470px;
  }

  .tech-visual {
    min-height: 420px;
    transform: scale(.88);
  }

  .treatment-card {
    min-width: calc((100% - 18px) / 2);
  }

  .metrics-panel {
    padding: 30px 22px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }

  .metric:nth-child(3) {
    border-left: 0;
  }

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

  .result-card,
  .result-card-tall {
    min-height: 410px;
    grid-row: auto;
  }

  .modal-dialog {
    overflow-y: auto;
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 330px;
  }

  .modal-content {
    padding: 32px 25px;
  }

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

  .quality-seals {
    grid-template-columns: 1fr;
  }

  .quality-seals > div,
  .quality-seals > div:nth-child(3) {
    justify-content: flex-start;
    border-left: 0;
  }

  .testimonial-card {
    min-width: 100%;
  }

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

  .insight-card {
    min-height: 320px;
  }

  .map-card {
    height: 500px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-seals {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 25px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .whatsapp-widget {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-float {
    width: 68px;
    height: 68px;
  }

  .back-to-top {
    right: 21px;
    bottom: 84px;
  }

  .dental-chat-widget {
    right: 15px;
    bottom: 15px;
  }

  .dental-chat-toggle {
    min-height: 58px;
    padding-right: 15px;
    font-size: .78rem;
  }

  .dental-chat-window {
    right: 0;
    bottom: 76px;
    width: calc(100vw - 30px);
    max-height: calc(100dvh - 96px);
    border-radius: 22px;
  }

  .dental-chat-header {
    padding: 14px;
    grid-template-columns: auto 1fr auto auto;
  }

  .dental-chat-icon-button {
    height: 32px;
    min-width: 34px;
    padding-inline: 8px;
  }

  .dental-chat-messages {
    padding: 14px 12px 8px;
  }

  .dental-chat-message {
    max-width: 94%;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-image-wrap {
    height: 440px;
  }

  .float-stat {
    transform: scale(.88);
  }

  .stat-years {
    left: -13px;
  }

  .stat-patients {
    left: -15px;
  }

  .stat-team {
    right: -18px;
  }

  .about-gallery {
    min-height: 430px;
  }

  .about-main-image {
    height: 350px;
  }

  .about-secondary-image {
    height: 190px;
  }

  .experience-card {
    transform: scale(.85);
    transform-origin: top right;
  }

  .doctor-photo {
    height: 390px;
  }

  .tech-visual {
    min-height: 340px;
    margin-block: -40px;
    transform: scale(.7);
  }

  .tech-card {
    min-height: 140px;
  }

  .treatment-card {
    min-width: 100%;
  }

  .metrics-panel {
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 17px;
  }

  .metric + .metric,
  .metric:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
  }

  .result-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .appointment-form {
    padding: 25px 18px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .faq-question {
    font-size: .9rem;
  }

  .map-card {
    height: 430px;
  }

  .map-overlay-card {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

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

  .footer-brand,
  .footer-seals {
    grid-column: auto;
  }

  .footer-seals {
    flex-direction: column;
  }

  .whatsapp-bubble {
    width: min(260px, calc(100vw - 30px));
  }

  .dental-chat-toggle > span:last-child {
    display: none;
  }

  .dental-chat-toggle {
    width: 62px;
    height: 62px;
    min-height: 62px;
    justify-content: center;
    padding: 0;
  }

  .dental-chat-toggle svg {
    width: 30px;
    height: 30px;
  }

  .dental-chat-status {
    top: 5px;
    left: 42px;
  }

  .dental-chat-window {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 90px);
  }

  .dental-chat-header strong {
    font-size: .86rem;
  }

  .dental-chat-header span {
    font-size: .6rem;
  }

  .dental-chat-clear {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    filter: none;
    opacity: 1;
    transform: none;
  }

  #particles-canvas,
  .tech-particles {
    display: none;
  }

  .dental-chat-typing span {
    animation: none;
  }
}
