:root {
  color-scheme: light;
  --ink: #102a33;
  --ink-soft: #5f737b;
  --deep: #0f5963;
  --deep-2: #0b3f4d;
  --teal: #3199a1;
  --teal-bright: #76d4d8;
  --mint: #e2f5f7;
  --mint-soft: #f6fbfd;
  --cream: #f7fafc;
  --white: #fff;
  --line: #e4eef2;
  --shadow: 0 24px 70px rgba(15, 89, 99, .12);
  --shadow-small: 0 12px 32px rgba(15, 89, 99, .08);
  --radius: 28px;
  --page: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-weight: 750; letter-spacing: -.035em; line-height: 1.1; }
h1 { max-width: 790px; margin-bottom: 26px; font-size: clamp(3.1rem, 6vw, 5.8rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.3rem, 4vw, 4rem); }
h3 { font-size: 1.22rem; }
p { color: var(--ink-soft); }
.page-shell { width: min(calc(100% - 40px), var(--page)); margin-inline: auto; }
.section { padding-block: clamp(82px, 10vw, 144px); }
.section-tight { padding-block: 10px 82px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 2000; padding: 10px 16px;
  transform: translateY(-150%); border-radius: 10px; background: var(--deep); color: #fff;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #e8ab63; outline-offset: 3px; }

.demo-banner { background: var(--deep-2); color: #eaf7f3; font-size: .86rem; text-align: center; }
.demo-banner .page-shell { padding-block: 8px; }
.demo-banner span { margin-right: 6px; }
.site-header {
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(18px);
}
.header-inner { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand-mark {
  display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center;
  border-radius: 15px; background: var(--deep); color: #fff; font-size: .9rem; font-weight: 800;
  box-shadow: 0 8px 18px rgba(23, 63, 66, .18);
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; line-height: 1.2; letter-spacing: -.02em; }
.brand small { margin-top: 3px; color: var(--ink-soft); font-size: .73rem; line-height: 1.2; }
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.desktop-nav a { position: relative; color: var(--ink); font-size: .9rem; font-weight: 650; text-decoration: none; }
.desktop-nav a::after {
  position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: "";
  transform: scaleX(0); background: var(--teal); transition: transform .2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border: 1px solid var(--deep); border-radius: 999px; background: var(--deep);
  color: #fff; cursor: pointer; font-weight: 750; line-height: 1.2; text-align: center; text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 63, 66, .17); transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--deep-2); box-shadow: 0 14px 30px rgba(23, 63, 66, .23); }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .88rem; }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, .55); color: var(--ink); box-shadow: none; }
.button-secondary:hover { background: var(--white); box-shadow: var(--shadow-small); }
.button-light { border-color: #e6f6ef; background: #e6f6ef; color: var(--deep-2); box-shadow: none; }
.button-light:hover { background: #fff; }
.button-outline-light { border-color: rgba(255, 255, 255, .4); background: transparent; color: #fff; box-shadow: none; }
.button-outline-light:hover { background: rgba(255, 255, 255, .1); }
.menu-toggle {
  display: none; width: 48px; height: 48px; padding: 12px; border: 1px solid var(--line);
  border-radius: 14px; background: rgba(255, 255, 255, .7); cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--ink); }
.mobile-nav { padding: 8px 20px 22px; border-top: 1px solid var(--line); background: var(--cream); }
.mobile-nav a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 650; text-decoration: none; }
.mobile-nav .button { width: 100%; margin-top: 18px; }
.demo-owner-floating-cta {
  position: fixed; bottom: calc(24px + env(safe-area-inset-bottom)); left: 24px; z-index: 900;
  isolation: isolate; display: inline-flex; max-width: calc(100vw - 48px); min-height: 64px;
  align-items: center; gap: 11px; padding: 11px 20px 11px 14px;
  border: 1px solid rgba(255, 209, 102, .7); border-radius: 999px;
  background: linear-gradient(135deg, #b93808 0%, #c92f0b 44%, #a80f33 100%); color: #fff;
  cursor: pointer; font: inherit; line-height: 1.1; text-align: left;
  box-shadow: 0 16px 38px rgba(255, 77, 0, .48), 0 0 34px rgba(255, 122, 24, .58), inset 0 1px 0 rgba(255,255,255,.36);
  animation: demo-owner-flame-pulse 2.8s ease-in-out infinite;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.demo-owner-floating-cta.is-hero-suppressed {
  visibility: hidden; pointer-events: none; opacity: 0; transform: translateY(18px) scale(.96);
}
.demo-owner-floating-cta::before {
  position: absolute; z-index: -1; inset: -8px; content: ""; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,209,102,.75), rgba(255,77,0,.62), rgba(225,29,72,.48));
  filter: blur(16px); opacity: .62; animation: demo-owner-flame-halo 2.8s ease-in-out infinite;
}
.demo-owner-floating-cta__icon {
  display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center;
  border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: rgba(111,18,8,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25); font-size: 1.15rem;
}
.demo-owner-floating-cta__label,
.demo-owner-floating-cta__text { display: block; }
.demo-owner-floating-cta__label {
  margin-bottom: 4px; color: #fff4d2; font-size: .6rem; font-weight: 950;
  letter-spacing: .14em; text-shadow: 0 1px 2px rgba(67, 10, 0, .75); text-transform: uppercase;
}
.demo-owner-floating-cta__text {
  font-size: .9rem; font-weight: 900; text-shadow: 0 1px 3px rgba(67, 10, 0, .8); white-space: nowrap;
}
.demo-owner-floating-cta:hover {
  transform: translateY(-4px) scale(1.015); filter: saturate(1.08);
  box-shadow: 0 21px 46px rgba(255,77,0,.58), 0 0 46px rgba(255,122,24,.72), inset 0 1px 0 rgba(255,255,255,.4);
}
.demo-owner-floating-cta:focus-visible {
  outline: 3px solid #ffd166; outline-offset: 4px;
  box-shadow: 0 18px 42px rgba(255,77,0,.58), 0 0 0 8px rgba(255,209,102,.2), 0 0 44px rgba(255,122,24,.7);
}
@keyframes demo-owner-flame-pulse {
  0%, 100% { box-shadow: 0 16px 38px rgba(255,77,0,.44), 0 0 30px rgba(255,122,24,.5), inset 0 1px 0 rgba(255,255,255,.36); }
  50% { box-shadow: 0 19px 44px rgba(255,77,0,.58), 0 0 46px rgba(255,122,24,.72), inset 0 1px 0 rgba(255,255,255,.4); }
}
@keyframes demo-owner-flame-halo {
  0%, 100% { opacity: .5; transform: scale(.97); }
  50% { opacity: .82; transform: scale(1.04); }
}

.hero { padding-top: clamp(46px, 5.5vw, 72px); background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: clamp(48px, 7vw, 92px); align-items: center; }
.hero-grid > *, .ai-layout > *, .contact-grid > * { min-width: 0; }
.eyebrow {
  margin-bottom: 18px; color: var(--teal); font-size: .76rem; font-weight: 850;
  letter-spacing: .16em; line-height: 1.3; text-transform: uppercase;
}
.lead { max-width: 670px; margin-bottom: 32px; font-size: clamp(1.06rem, 1.5vw, 1.25rem); line-height: 1.75; }
.lead-small { font-size: clamp(1.12rem, 1.7vw, 1.35rem); line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 32px; color: var(--ink-soft); font-size: .9rem; font-weight: 650; }
.hero-proof i {
  display: inline-grid; width: 22px; height: 22px; margin-right: 6px; place-items: center;
  border-radius: 50%; background: var(--mint); color: var(--deep); font-style: normal;
}
.hero-visual {
  position: relative; min-height: 600px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 42px; background: #eaf5f7;
  box-shadow: var(--shadow);
}
.hero-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.hero-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(8,44,51,.02) 45%, rgba(8,44,51,.18) 100%); pointer-events: none; }
.visual-caption {
  position: absolute; top: 34px; left: 34px; z-index: 5; display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border: 1px solid rgba(255,255,255,.7); border-radius: 14px; background: rgba(255,255,255,.78); backdrop-filter: blur(8px);
}
.visual-caption small, .visual-caption strong, .float-card small, .float-card strong { display: block; line-height: 1.3; }
.visual-caption small, .float-card small { color: var(--ink-soft); font-size: .67rem; }
.visual-caption strong { font-size: .76rem; }
.caption-dot, .status-dot { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 0 5px rgba(114,180,173,.16); }
.float-card {
  position: absolute; z-index: 6; display: flex; align-items: center; gap: 11px; padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.75); border-radius: 17px; background: rgba(255,255,255,.91);
  box-shadow: 0 14px 34px rgba(23,63,66,.13); backdrop-filter: blur(10px);
}
.mini-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: var(--mint); color: var(--deep); font-weight: 800; }
.float-card strong { font-size: .8rem; }
.float-hours { right: 22px; bottom: 166px; }
.float-ai { bottom: 28px; left: 26px; }
.float-booking { right: 22px; bottom: 76px; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-card { min-height: 210px; padding: 27px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 10px 30px rgba(15,89,99,.05); }
.trust-card h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.trust-card p { margin: 0; font-size: .88rem; line-height: 1.6; }
.trust-card-accent { background: var(--deep); }
.trust-card-accent h3, .trust-card-accent p, .trust-card-accent .line-icon { color: #fff; }
.trust-card-accent p { opacity: .72; }
.line-icon { color: var(--teal); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px); }
.about-grid h2 { max-width: 560px; }
.helper-note { display: grid; grid-template-columns: auto 1fr; gap: 15px; margin-top: 30px; padding: 18px; border: 1px dashed rgba(79,145,141,.38); border-radius: 18px; background: var(--mint-soft); }
.helper-note span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: var(--mint); color: var(--deep); }
.helper-note p { margin: 0; font-size: .88rem; }
.helper-note strong { color: var(--ink); }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 76px; border-top: 1px solid var(--line); }
.value-row div { display: flex; gap: 18px; align-items: center; padding: 26px 28px 0 0; }
.value-row div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.value-row strong { color: var(--teal); font-size: .72rem; }
.value-row span { font-weight: 700; }
.clinic-gallery { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; margin-top: 56px; }
.clinic-gallery figure { position: relative; min-height: 430px; margin: 0; overflow: hidden; border-radius: 28px; background: #eaf4f6; box-shadow: var(--shadow-small); }
.clinic-gallery-side { min-height: 430px; }
.clinic-gallery img { width: 100%; height: 100%; object-fit: cover; }
.clinic-gallery-main img { object-position: center 55%; }
.clinic-gallery-side img { object-position: center 45%; }
.clinic-gallery figcaption {
  position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.72); border-radius: 17px; background: rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(10,54,62,.12); backdrop-filter: blur(12px);
}
.clinic-gallery figcaption span, .clinic-gallery figcaption strong { display: block; }
.clinic-gallery figcaption span { margin-bottom: 4px; color: var(--teal); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.clinic-gallery figcaption strong { font-size: .85rem; }

.surface-section { background: var(--mint-soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.section-heading > p { max-width: 470px; font-size: 1rem; }
.treatment-feature {
  display: grid; grid-template-columns: 260px 1fr; min-height: 220px; margin-bottom: 20px; overflow: hidden;
  border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-small);
}
.treatment-feature img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.treatment-feature div { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.treatment-feature span { margin-bottom: 10px; color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.treatment-feature strong { max-width: 620px; font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.45; }
.treatment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.treatment-card {
  min-height: 290px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.76);
  box-shadow: 0 0 0 rgba(23,63,66,0); transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.treatment-card:hover { transform: translateY(-5px); background: #fff; box-shadow: var(--shadow-small); }
.treatment-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; background: var(--mint); color: var(--deep); font-size: 1.35rem; font-weight: 700; }
.treatment-card h3 { min-height: 2.5em; margin: 26px 0 12px; }
.treatment-card p { min-height: 5.4em; margin-bottom: 20px; font-size: .88rem; }
.text-link { color: var(--deep); font-size: .86rem; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.text-link:hover { color: var(--teal); }
.text-link i { margin-left: 5px; font-style: normal; }

.process-section { background: var(--white); }
.centered { display: block; max-width: 660px; margin-inline: auto; text-align: center; }
.centered > p { margin-inline: auto; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin: 70px 0 0; padding: 0; list-style: none; }
.process-grid::before { position: absolute; top: 23px; right: 11%; left: 11%; height: 1px; content: ""; background: var(--line); }
.process-grid li { position: relative; text-align: center; }
.step-number {
  position: relative; z-index: 1; display: grid; width: 48px; height: 48px; margin: 0 auto 26px; place-items: center;
  border: 7px solid var(--white); border-radius: 50%; background: var(--deep); color: #fff; font-size: .78rem; font-weight: 800;
  box-sizing: content-box;
}
.process-grid h3 { margin-bottom: 10px; }
.process-grid p { max-width: 230px; margin: 0 auto; font-size: .88rem; }

.team-section { background: #f7fafc; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-small); }
.team-portrait {
  height: 330px; overflow: hidden; border-bottom: 1px solid var(--line); background: #eaf5f7;
}
.team-portrait img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 24%;
}
.portrait-placeholder {
  position: relative; display: grid; min-height: 330px; place-items: center; overflow: hidden;
  background: linear-gradient(145deg, #edf9fa, #bfe7e9); color: rgba(15,89,99,.88);
}
.portrait-placeholder::before, .portrait-placeholder::after { position: absolute; border-radius: 50%; content: ""; }
.portrait-placeholder::before { top: -70px; right: -50px; width: 210px; height: 210px; background: rgba(255,255,255,.26); }
.portrait-placeholder::after { bottom: -90px; left: -50px; width: 230px; height: 230px; background: rgba(255,255,255,.2); }
.tone-two { background: linear-gradient(145deg, #f1f8fb, #c9e4ed); }
.tone-three { background: linear-gradient(145deg, #e9f7fa, #b8dce5); }
.tone-four { background: linear-gradient(145deg, #f0f9fb, #c4e8e8); }
.tone-five { background: linear-gradient(145deg, #eaf7fa, #b9dfe7); }
.tone-six { background: linear-gradient(145deg, #eef8fb, #c0e1e8); }
.person-shape { position: absolute; top: 72px; width: 88px; height: 88px; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.43); }
.person-shape::after { position: absolute; top: 107px; left: -53px; width: 190px; height: 150px; content: ""; border: 2px solid rgba(255,255,255,.7); border-radius: 90px 90px 30px 30px; background: rgba(255,255,255,.36); }
.portrait-placeholder b { position: absolute; z-index: 2; top: 102px; font-size: 1.2rem; }
.portrait-placeholder small {
  position: absolute; bottom: 22px; z-index: 2; padding: 7px 12px; border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px; background: rgba(255,255,255,.56); font-size: .72rem; font-weight: 750; backdrop-filter: blur(8px);
}
.team-card-copy { padding: 25px; }
.team-card-copy h3 { margin-bottom: 6px; }
.team-card-copy .role { margin-bottom: 16px; color: var(--teal); font-size: .77rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.team-card-copy p:last-child { margin: 0; font-size: .88rem; }

.ai-section { background: var(--deep); }
.ai-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 120px); align-items: center; }
.ai-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #bfe4dc; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ai-kicker i { width: 9px; height: 9px; border-radius: 50%; background: #9be2d4; box-shadow: 0 0 0 6px rgba(155,226,212,.12); }
.ai-copy h2, .ai-copy p { color: #fff; }
.ai-copy p { max-width: 580px; margin-bottom: 30px; opacity: .72; font-size: 1.05rem; }
.ai-features { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.04); }
.ai-features div { min-height: 190px; padding: 26px; }
.ai-features div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
.ai-features div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
.ai-features span { color: #9be2d4; font-size: .7rem; font-weight: 800; }
.ai-features p { margin: 20px 0 0; color: rgba(255,255,255,.68); font-size: .88rem; }
.ai-features strong { display: block; margin-bottom: 6px; color: #fff; font-size: .98rem; }

.price-section { background: var(--white); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-grid article { min-height: 215px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); }
.price-grid span { color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-grid h3 { margin: 56px 0 9px; }
.price-grid p { margin: 0; color: var(--ink); font-weight: 750; }
.price-disclaimer { margin: 18px 0 0; font-size: .8rem; }

.contact-section { background: #f6fbfd; }
.contact-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(50px, 9vw, 110px); align-items: center; }
.contact-copy > p:not(.eyebrow) { max-width: 510px; }
.contact-list { margin: 36px 0; }
.contact-list div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-list div:last-child { border-bottom: 1px solid var(--line); }
.contact-list dt { color: var(--ink-soft); font-size: .82rem; font-weight: 700; }
.contact-list dd { margin: 0; color: var(--ink); font-weight: 700; }
.map-placeholder { position: relative; min-height: 570px; contain: paint; overflow: hidden; border: 10px solid #fff; border-radius: 34px; background: #e8f4f6; box-shadow: var(--shadow); }
.map-placeholder > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.map-placeholder::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 50%, rgba(8,44,51,.18)); }
.map-label { position: absolute; right: 22px; bottom: 22px; left: 22px; z-index: 2; padding: 20px; border: 1px solid rgba(255,255,255,.76); border-radius: 18px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); }
.map-label small, .map-label strong, .map-label span { display: block; }
.map-label small { color: var(--teal); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.map-label strong { margin: 7px 0; font-size: .82rem; }
.map-label span { color: var(--ink-soft); font-size: .77rem; }

.cta-section { background: #fff; }
.cta-card { padding: clamp(55px, 8vw, 95px) 24px; border-radius: 38px; background: linear-gradient(135deg, var(--deep), #245c5d); text-align: center; box-shadow: var(--shadow); }
.cta-card .eyebrow { color: #a9ddd3; }
.cta-card h2, .cta-card p { max-width: 790px; margin-right: auto; margin-left: auto; color: #fff; }
.cta-card p { max-width: 620px; opacity: .72; }
.centered-buttons { justify-content: center; margin-top: 30px; }

.site-footer { padding: 76px 0 24px; background: var(--deep-2); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .7fr; gap: 50px; padding-bottom: 60px; }
.footer-brand .brand-mark { background: #e2f1ed; color: var(--deep); }
.footer-brand strong { color: #fff; }
.footer-brand small { color: rgba(255,255,255,.55); }
.site-footer h2 { margin-bottom: 20px; color: #fff; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer p, .site-footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.65); font-size: .88rem; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .78rem; }
.footer-bottom strong { color: #bfe4dc; }

.demo-widget-button {
  position: fixed; right: 24px; bottom: calc(24px + env(safe-area-inset-bottom)); z-index: 900;
  display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%; background: linear-gradient(145deg, var(--deep), var(--deep-2)); color: #fff;
  cursor: pointer; box-shadow: 0 16px 36px rgba(11,63,77,.32), 0 0 0 8px rgba(49,153,161,.1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.demo-widget-button:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 20px 42px rgba(11,63,77,.4), 0 0 0 10px rgba(49,153,161,.13); }
.demo-widget-button:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 4px; }
.demo-widget-button > span:first-child { font-size: 1.5rem; line-height: 1; }
.demo-widget-button-label {
  position: absolute; right: 49px; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--deep); font-size: .68rem; font-weight: 850; box-shadow: var(--shadow-small);
}
.demo-widget-panel {
  position: fixed; right: 24px; bottom: calc(100px + env(safe-area-inset-bottom)); z-index: 950;
  display: flex; width: min(390px, calc(100vw - 48px)); max-height: min(540px, calc(100dvh - 124px));
  flex-direction: column; overflow: hidden; border: 1px solid rgba(15,89,99,.16); border-radius: 24px;
  background: #fff; box-shadow: 0 28px 80px rgba(11,63,77,.28); animation: demo-widget-in .22s ease both;
}
.demo-widget-panel[hidden] { display: none !important; }
.demo-widget-header {
  display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 16px; background: linear-gradient(135deg, var(--deep), var(--deep-2)); color: #fff;
}
.demo-widget-identity { display: flex; min-width: 0; align-items: center; gap: 11px; }
.demo-widget-avatar {
  display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center;
  border: 1px solid rgba(255,255,255,.26); border-radius: 50%; background: rgba(255,255,255,.12);
}
.demo-widget-identity strong, .demo-widget-identity small { display: block; }
.demo-widget-identity strong { margin-bottom: 3px; font-size: .96rem; }
.demo-widget-identity small { overflow: hidden; color: rgba(255,255,255,.7); font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }
.demo-widget-close {
  display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 0;
  border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font-size: 1.4rem;
}
.demo-widget-close:hover { background: rgba(255,255,255,.16); }
.demo-widget-close:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 2px; }
.demo-widget-messages {
  display: flex; min-height: 230px; flex: 1 1 auto; flex-direction: column; gap: 10px;
  overflow-y: auto; padding: 18px; background: #f6fbfd;
}
.demo-widget-message { max-width: 84%; padding: 11px 13px; border-radius: 17px; font-size: .86rem; line-height: 1.5; }
.demo-widget-message.bot { align-self: flex-start; border-bottom-left-radius: 5px; background: #fff; color: var(--ink); box-shadow: 0 7px 20px rgba(15,89,99,.08); }
.demo-widget-message.user { align-self: flex-end; border-bottom-right-radius: 5px; background: var(--deep); color: #fff; font-weight: 700; }
.demo-widget-quick-replies { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.demo-widget-quick-replies button {
  padding: 7px 11px; border: 1px solid rgba(15,89,99,.25); border-radius: 999px;
  background: #fff; color: var(--deep); cursor: pointer; font: inherit; font-size: .74rem; font-weight: 800;
}
.demo-widget-quick-replies button:hover { border-color: var(--teal); background: var(--mint-soft); }
.demo-widget-quick-replies button:focus-visible { outline: 3px solid rgba(49,153,161,.3); outline-offset: 2px; }
.demo-widget-form {
  display: grid; grid-template-columns: minmax(0, 1fr) 44px; gap: 8px; padding: 12px;
  border-top: 1px solid var(--line); background: #fff;
}
.demo-widget-form input {
  min-width: 0; height: 44px; padding: 0 13px; border: 1px solid var(--line);
  border-radius: 13px; background: #f7fafc; color: var(--ink); font: inherit; outline: none;
}
.demo-widget-form input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(49,153,161,.12); }
.demo-widget-form button {
  display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 13px;
  background: var(--deep); color: #fff; cursor: pointer; font-size: 1.2rem; font-weight: 800;
}
.demo-widget-form button:hover { background: var(--deep-2); }
.demo-widget-form button:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 2px; }
@keyframes demo-widget-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-overlay { position: fixed; inset: 0; z-index: 1200; display: none; place-items: center; padding: 20px; background: rgba(11,35,37,.68); backdrop-filter: blur(8px); }
.modal-overlay.is-open { display: grid; }
.booking-modal { position: relative; width: min(680px, 100%); max-height: min(92dvh, 820px); overflow: hidden; border-radius: 30px; background: #fff; box-shadow: 0 40px 100px rgba(0,0,0,.3); }
.modal-content { max-height: min(92dvh, 820px); overflow-y: auto; padding: 44px; }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 3; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: var(--mint-soft); color: var(--ink); cursor: pointer; font-size: 1.5rem; line-height: 1; }
.modal-content h2 { margin-bottom: 12px; font-size: clamp(2.2rem, 5vw, 3.2rem); }
#booking-subtitle { margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .8rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-width: 0; border: 1px solid var(--line); border-radius: 13px; background: #f7fafc; color: var(--ink); outline: none; }
.field input, .field select { min-height: 48px; padding: 11px 13px; }
.field textarea { padding: 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(79,145,141,.13); }
.form-note { margin: 17px 0; font-size: .77rem; }
.submit-button { border: 0; }
.booking-success { min-height: 360px; padding: 38px 0 10px; text-align: center; }
.booking-success > span { display: grid; width: 68px; height: 68px; margin: 0 auto 24px; place-items: center; border-radius: 50%; background: var(--mint); color: var(--deep); font-size: 1.6rem; font-weight: 800; }
.booking-success h3 { margin-bottom: 12px; font-size: 2rem; }
.booking-success p { max-width: 450px; margin: 0 auto 28px; }

.demo-owner-overlay {
  position: fixed; inset: 0; z-index: 1300; display: none; place-items: center; padding: 20px;
  background: rgba(38, 8, 13, .7); backdrop-filter: blur(8px);
}
.demo-owner-overlay.is-open { display: grid; }
.demo-owner-modal {
  position: relative; width: min(590px, 100%); max-height: min(92dvh, 760px); overflow: hidden;
  border: 1px solid rgba(201,24,45,.2); border-radius: 30px; background: #fff;
  box-shadow: 0 40px 110px rgba(65, 0, 11, .4);
}
.demo-owner-modal::before { display: block; height: 7px; content: ""; background: linear-gradient(90deg, #f04a56, #c9182d, #941126); }
.demo-owner-content { max-height: calc(min(92dvh, 760px) - 7px); overflow-y: auto; padding: 42px; }
.demo-owner-close {
  position: absolute; top: 19px; right: 16px; z-index: 3; display: grid; width: 42px; height: 42px;
  place-items: center; border: 1px solid rgba(201,24,45,.1); border-radius: 50%; background: #fff1f2;
  color: #821225; cursor: pointer; font-size: 1.5rem; line-height: 1;
}
.demo-owner-brand {
  display: inline-flex; margin-bottom: 18px; padding: 7px 11px; border-radius: 999px; background: #fff0f1;
  color: #b51228; font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}
.demo-owner-content h2 { max-width: 470px; margin-bottom: 12px; font-size: clamp(2.15rem, 5vw, 3.15rem); }
#demoOwnerSubtitle { max-width: 510px; margin-bottom: 28px; }
#demoOwnerForm { display: grid; gap: 17px; }
.demo-owner-honeypot {
  position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden;
}
.demo-owner-field { display: grid; gap: 7px; }
.demo-owner-field label { color: var(--ink); font-size: .8rem; font-weight: 750; }
.demo-owner-field input {
  width: 100%; min-height: 50px; min-width: 0; padding: 11px 13px; border: 1px solid #e7dfe1;
  border-radius: 13px; background: #fffafb; color: var(--ink); outline: none;
}
.demo-owner-field input:focus { border-color: #d4263b; box-shadow: 0 0 0 4px rgba(212,38,59,.12); }
.demo-owner-note { margin: 0; color: #7d676c; font-size: .77rem; }
.demo-owner-error {
  margin: 0; padding: 11px 13px; border: 1px solid #f1a8b2; border-radius: 12px;
  background: #fff1f2; color: #821225; font-size: .82rem; font-weight: 700;
}
.demo-owner-submit, .demo-owner-secondary {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; justify-self: start;
  padding: 12px 22px; border: 1px solid #b51228; border-radius: 999px; background: linear-gradient(135deg, #e63a49, #b51228);
  color: #fff; cursor: pointer; font: inherit; font-weight: 800; box-shadow: 0 10px 24px rgba(181,18,40,.24);
}
.demo-owner-submit:disabled { cursor: wait; opacity: .72; }
.demo-owner-submit:hover, .demo-owner-secondary:hover { background: linear-gradient(135deg, #d72d3d, #990d20); }
.demo-owner-success { min-height: 350px; padding: 48px 0 18px; text-align: center; }
.demo-owner-success > span {
  display: grid; width: 68px; height: 68px; margin: 0 auto 24px; place-items: center;
  border-radius: 50%; background: #fff0f1; color: #b51228; font-size: 1.6rem; font-weight: 900;
}
.demo-owner-success h3 { margin-bottom: 12px; font-size: 2rem; }
.demo-owner-success p { max-width: 420px; margin: 0 auto 28px; }
.demo-owner-secondary { justify-self: auto; background: #fff; color: #a30e22; box-shadow: none; }
.demo-owner-secondary:hover { background: #fff0f1; color: #820b1b; }
[hidden] { display: none !important; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { width: min(100%, 660px); margin-inline: auto; }
  .trust-grid, .treatment-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-layout, .contact-grid { grid-template-columns: 1fr; }
  .ai-copy { max-width: 680px; }
  .map-placeholder { min-height: 500px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 84px; }
  .page-shell { width: min(calc(100% - 28px), var(--page)); }
  .section { padding-block: 76px; }
  .section-tight { padding-bottom: 68px; }
  .demo-banner { font-size: .72rem; line-height: 1.45; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 13px; }
  .brand strong { font-size: .88rem; }
  .brand small { font-size: .66rem; }
  .hero { padding-top: 38px; }
  .hero-grid { gap: 44px; }
  h1 { overflow-wrap: anywhere; font-size: clamp(2.45rem, 10.4vw, 4.5rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.1rem); }
  .button-row .button { width: 100%; }
  .hero-proof { display: grid; }
  .hero-visual { min-height: 500px; border-radius: 28px; }
  .visual-caption { top: 16px; left: 16px; }
  .float-hours { right: 12px; bottom: 145px; }
  .float-ai { bottom: 16px; left: 14px; }
  .float-booking { display: none; }
  .trust-grid, .treatment-grid, .team-grid, .price-grid, .ai-features { grid-template-columns: 1fr; }
  .trust-card { min-height: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 22px; }
  .value-row { grid-template-columns: 1fr; margin-top: 50px; }
  .value-row div, .value-row div + div { padding: 18px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .clinic-gallery { grid-template-columns: 1fr; margin-top: 42px; }
  .clinic-gallery figure, .clinic-gallery-side { min-height: 360px; }
  .treatment-feature { grid-template-columns: 1fr; }
  .treatment-feature img { height: 240px; }
  .section-heading { display: block; margin-bottom: 38px; }
  .section-heading > p { margin-top: 18px; }
  .treatment-card { min-height: auto; }
  .treatment-card h3, .treatment-card p { min-height: auto; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
  .process-grid::before { top: 0; bottom: 0; left: 23px; width: 1px; height: auto; }
  .process-grid li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; text-align: left; }
  .step-number { margin: 0; border-width: 5px; }
  .process-grid p { max-width: none; margin: 0; }
  .portrait-placeholder { min-height: 360px; }
  .team-portrait { height: 360px; }
  .ai-features div { min-height: auto; }
  .ai-features div:nth-child(odd) { border-right: 0; }
  .ai-features div:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .contact-list div { grid-template-columns: 1fr; gap: 3px; }
  .map-placeholder { min-height: 430px; border-width: 7px; }
  .cta-card { border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .modal-overlay { align-items: end; padding: 8px; }
  .booking-modal { max-height: calc(100dvh - 16px); border-radius: 24px; }
  .modal-content { max-height: calc(100dvh - 16px); padding: 54px 20px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .submit-button { width: 100%; }
  .demo-widget-button { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); width: 58px; height: 58px; }
  .demo-widget-button-label { display: none; }
  .demo-widget-panel {
    right: 12px; bottom: calc(86px + env(safe-area-inset-bottom)); left: 12px; width: auto;
    max-height: calc(100dvh - 104px); border-radius: 21px;
  }
  .demo-widget-messages { min-height: 210px; }
  .demo-owner-floating-cta {
    bottom: calc(16px + env(safe-area-inset-bottom)); left: 16px; max-width: calc(100vw - 32px);
    min-height: 58px; gap: 9px; padding: 9px 16px 9px 10px;
  }
  .demo-owner-floating-cta__icon { width: 36px; height: 36px; }
  .demo-owner-floating-cta__text { font-size: .82rem; white-space: normal; }
  .demo-owner-overlay { align-items: end; padding: 8px; }
  .demo-owner-modal { max-height: calc(100dvh - 16px); border-radius: 24px; }
  .demo-owner-content { max-height: calc(100dvh - 23px); padding: 56px 20px 24px; }
  .demo-owner-submit, .demo-owner-secondary { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .demo-owner-floating-cta, .demo-owner-floating-cta::before { animation: none; }
  .demo-widget-panel { animation: none; }
}
