:root {
  --color-teal-400: #a8e6df;
  --color-teal-500: #81d8d0;
  --color-teal-600: #5fc4bc;
  --color-teal-700: #20b2aa;
  --color-cyan-500: #48cae4;
  --color-gold-400: #ffe55c;
  --color-gold-500: #ffd700;
  --color-gold-600: #ffa500;
  --color-text-900: #1f2937;
  --color-text-700: #475569;
  --color-text-500: #64748b;
  --color-white: #ffffff;
  --glass-10: rgba(255, 255, 255, .10);
  --glass-16: rgba(255, 255, 255, .16);
  --glass-22: rgba(255, 255, 255, .22);
  --glass-32: rgba(255, 255, 255, .32);
  --glass-72: rgba(255, 255, 255, .72);
  --gradient-hero: linear-gradient(135deg, #40E0D0 0%, #20B2AA 45%, #48CAE4 100%);
  --gradient-teal-soft: linear-gradient(135deg, #40E0D0 0%, #48CAE4 50%, #00CED1 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 55%, #FF8C00 100%);
  --font-primary: Inter, Arial, sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-30: 120px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, .08);
  --shadow-card: 0 20px 60px rgba(15, 23, 42, .08);
  --shadow-card-strong: 0 28px 80px rgba(15, 23, 42, .12);
  --shadow-glow-teal: 0 0 40px rgba(64, 224, 208, .18);
  --shadow-glow-gold: 0 0 40px rgba(255, 215, 0, .18);
  --ease-main: ease;
  --ease-luxury: cubic-bezier(.22, 1, .36, 1);
  --dur-fast: 200ms;
  --dur-base: 300ms;
  --dur-soft: 500ms;
  --dur-reveal: 700ms;
  --container-max: 1280px;
  --container-pad-desktop: 24px;
  --container-pad-tablet: 20px;
  --container-pad-mobile: 16px;
  --ring-teal: 0 0 0 3px rgba(64, 224, 208, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-text-900);
  background: linear-gradient(180deg, #ffffff 0%, #f5fdfc 45%, #eefcff 100%);
}

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

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

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

.container {
  width: min(calc(100% - (var(--container-pad-desktop) * 2)), var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-30);
}

.alt-bg {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(12px);
}

.narrow-page {
  width: min(900px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(129, 216, 208, .12);
  color: var(--color-teal-700);
  border: 1px solid rgba(129, 216, 208, .2);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: clamp(22px, 2.8vw, 30px);
}

.lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text-700);
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

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

.brand {
  font-weight: 900;
  font-size: 24px;
  color: var(--color-text-900);
  letter-spacing: -.04em;
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--color-text-700);
  font-weight: 600;
  transition: color var(--dur-base) var(--ease-luxury), transform var(--dur-base) var(--ease-luxury);
}

.main-nav a:hover {
  color: var(--color-teal-700);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  gap: 8px;
}

.lang-btn,
.tab,
.btn,
.faq-question {
  cursor: pointer;
}

.lang-btn,
.tab {
  border: 1px solid rgba(129, 216, 208, .18);
  background: rgba(255, 255, 255, .9);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  transition: all var(--dur-base) var(--ease-luxury);
}

.lang-btn:hover,
.tab:hover {
  border-color: rgba(129, 216, 208, .42);
  box-shadow: var(--shadow-glow-teal);
}

.tab.is-active {
  background: var(--gradient-hero);
  color: white;
  border-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--gradient-hero);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: var(--shadow-soft), var(--shadow-glow-teal);
  transition: transform var(--dur-base) var(--ease-luxury), box-shadow var(--dur-base) var(--ease-luxury), background var(--dur-base) var(--ease-luxury), border-color var(--dur-base) var(--ease-luxury);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-card-strong), 0 0 56px rgba(64, 224, 208, .24);
}

.btn:active {
  transform: translateY(0) scale(.99);
}

.btn-ghost {
  background: rgba(255, 255, 255, .82);
  color: var(--color-text-900);
  border: 1px solid rgba(129, 216, 208, .2);
  box-shadow: none;
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.btn-primary-lg {
  min-height: 56px;
  padding: 0 28px;
}

.btn-secondary-md {
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .16);
  color: white;
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.btn-secondary-md:hover {
  box-shadow: var(--shadow-glow-teal);
}

.btn-gold-md {
  background: var(--gradient-gold);
  color: #6b4d00;
  box-shadow: var(--shadow-soft), var(--shadow-glow-gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero-actions,
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: rgba(255, 255, 255, .72);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  min-width: 120px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, .66);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.card-glass,
.glass-card,
.info-card,
.doctor-card,
.review-card,
.doctor-detail-card,
.profile-panel,
.doctor-surface,
.lux-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84));
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.glass-card,
.card-glass {
  padding: 28px;
}

.service-card,
.doctor-card,
.review-card,
.info-card {
  transition: transform var(--dur-base) var(--ease-luxury), box-shadow var(--dur-base) var(--ease-luxury), border-color var(--dur-base) var(--ease-luxury);
}

.service-card:hover,
.doctor-card:hover,
.review-card:hover,
.info-card:hover,
.lux-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-strong), var(--shadow-glow-teal);
}

.service-card {
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .92);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  max-width: 380px;
}

.booking-form,
.auth-form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(129, 216, 208, .22);
  padding: 0 16px;
  background: rgba(255, 255, 255, .92);
  transition: border-color var(--dur-base) var(--ease-luxury), box-shadow var(--dur-base) var(--ease-luxury), background-color var(--dur-base) var(--ease-luxury), transform var(--dur-base) var(--ease-luxury);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-teal-500);
  box-shadow: var(--ring-teal);
}

textarea {
  min-height: 120px;
  padding: 14px 16px;
}

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

.info-card,
.doctor-card,
.review-card {
  padding: 24px;
}

.doctor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-hero);
  color: white;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: var(--shadow-glow-teal);
}

.doctor-avatar.large {
  width: 72px;
  height: 72px;
  font-size: 24px;
}

.doctor-hero {
  display: flex;
  gap: 18px;
  align-items: center;
}

.section-head {
  margin-bottom: 32px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, .72);
  border-radius: 20px;
  border: 1px solid rgba(129, 216, 208, .14);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  border: none;
  background: transparent;
  font-weight: 700;
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--color-text-700);
}

.site-footer {
  padding: 56px 0 64px;
  background: #0f172a;
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}

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

.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 24px));
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .94));
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, .35);
  border: 1px solid rgba(255, 255, 255, .82);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
}

.modal-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.form-message {
  min-height: 20px;
  color: var(--color-teal-700);
}

.profile-section {
  margin-top: 22px;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

.animate-sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin 14s linear infinite;
}

.hover-lift {
  transition: transform .3s ease, box-shadow .3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-strong);
}

body[data-page="home"] section {
  position: relative;
}

body[data-page="home"] section+section {
  margin-top: -1px;
}

#doctorPage .sticky {
  top: 110px;
}

#doctorProfileCard,
#doctorSchedule,
#doctorPortfolio,
#doctorPage .max-w-6xl.mx-auto.bg-white,
#profileContent>div,
#profileContent .bg-white {
  box-shadow: var(--shadow-card);
}

#doctorProfileCard:hover,
#doctorSchedule:hover,
#doctorPortfolio:hover,
#profileContent .bg-white:hover {
  box-shadow: var(--shadow-card-strong);
}

.polish-card {
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease-luxury), box-shadow .45s var(--ease-luxury), border-color .45s var(--ease-luxury);
}

.polish-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, 0) 38%, rgba(64, 224, 208, .12) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease-luxury);
}

.polish-card:hover::before {
  opacity: 1;
}

.polish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-strong);
}

.doctor-metric-chip,
.profile-metric-chip {
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px) scale(.985);
  filter: blur(3px);
  transition: opacity .9s var(--ease-luxury), transform .9s var(--ease-luxury), filter .9s var(--ease-luxury);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease-luxury), transform .75s var(--ease-luxury);
}

.reveal-stagger.revealed>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed>*:nth-child(2) {
  transition-delay: .06s
}

.reveal-stagger.revealed>*:nth-child(3) {
  transition-delay: .12s
}

.reveal-stagger.revealed>*:nth-child(4) {
  transition-delay: .18s
}

.reveal-stagger.revealed>*:nth-child(5) {
  transition-delay: .24s
}

.reveal-stagger.revealed>*:nth-child(6) {
  transition-delay: .30s
}

.glow-border {
  position: relative;
  isolation: isolate;
}

.glow-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(64, 224, 208, .3), rgba(255, 215, 0, .18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .42;
  pointer-events: none;
}

.home-hover-card,
.doctor-review-card,
.profile-appointment-card {
  transition: transform .35s var(--ease-luxury), box-shadow .35s var(--ease-luxury), border-color .35s var(--ease-luxury), background-color .35s var(--ease-luxury);
}

.home-hover-card:hover,
.doctor-review-card:hover,
.profile-appointment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-strong);
}

.home-hover-card:hover {
  border-color: rgba(64, 224, 208, .28);
}

.home-frost {
  background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .58));
  backdrop-filter: blur(18px);
}

.soft-glow {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .22), 0 22px 80px rgba(64, 224, 208, .18);
}

.focus-luxury:focus,
.focus-luxury:focus-visible {
  outline: none;
  box-shadow: var(--ring-teal);
  border-color: rgba(64, 224, 208, .55) !important;
}

#profileContent h1,
#doctorProfileCard h1 {
  letter-spacing: -.03em;
}

#profileContent .stat-card {
  border: 1px solid rgba(255, 255, 255, .7);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .9));
}

#profileContent .status-pill,
#doctorPage .status-pill {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

#profileContent .profile-appointment-card:nth-child(odd) {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 250, 251, .85));
}

#profileContent .profile-appointment-card:nth-child(even) {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(240, 253, 250, .35));
}

#doctorBookingMount button,
#doctorPage button,
#profileContent button {
  transition: all .32s var(--ease-luxury);
}

#doctorBookingMount button:hover,
#doctorPage button:hover,
#profileContent button:hover {
  transform: translateY(-1px);
}

#doctorBookingMount button:active,
#doctorPage button:active,
#profileContent button:active {
  transform: translateY(0) scale(.99);
}

#doctorBookingMount input,
#doctorBookingMount textarea,
#doctorReviewForm input,
#doctorReviewForm textarea {
  transition: border-color .28s var(--ease-luxury), box-shadow .28s var(--ease-luxury), background-color .28s var(--ease-luxury), transform .28s var(--ease-luxury);
}

#doctorBookingMount input:focus,
#doctorBookingMount textarea:focus,
#doctorReviewForm input:focus,
#doctorReviewForm textarea:focus {
  box-shadow: var(--ring-teal);
}

.section-shell {
  position: relative;
  isolation: isolate;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: auto 8% -18% 8%;
  height: 180px;
  background: radial-gradient(circle, rgba(64, 224, 208, .12), transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

.lux-card {
  box-shadow: 0 24px 80px rgba(15, 23, 42, .08);
}

.lux-card:hover {
  box-shadow: 0 32px 90px rgba(15, 23, 42, .12), var(--shadow-glow-teal);
}

.hover-raise-soft {
  transition: transform .45s var(--ease-luxury), box-shadow .45s var(--ease-luxury), border-color .45s var(--ease-luxury), background-color .45s var(--ease-luxury);
}

.hover-raise-soft:hover {
  transform: translateY(-6px);
}

.glass-teal {
  background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .12));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .3);
}

.home-section-title {
  letter-spacing: -.04em;
}

.home-accent-line {
  width: 7rem;
  height: .32rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(64, 224, 208, .2), rgba(64, 224, 208, .9), rgba(72, 202, 228, .3));
}

.home-team-card img,
.gallery-polish-card img {
  will-change: transform;
  transition: transform .7s var(--ease-luxury);
}

.home-team-card:hover img,
.gallery-polish-card:hover img {
  transform: scale(1.08);
}

.home-team-card .doctor-name,
.service-polish-card .service-name,
.gallery-polish-card .gallery-title {
  transition: color .3s ease, transform .4s var(--ease-luxury), background-position .4s var(--ease-luxury);
}

.home-team-card:hover .doctor-name,
.service-polish-card:hover .service-name,
.gallery-polish-card:hover .gallery-title {
  color: #20B2AA;
}

.review-shell {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .92));
  border: 1px solid rgba(255, 255, 255, .8);
}

.review-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(64, 224, 208, .08), transparent 32%, rgba(255, 215, 0, .06) 100%);
  pointer-events: none;
}

.contact-polish-form input,
.contact-polish-form textarea {
  transition: border-color .28s var(--ease-luxury), box-shadow .28s var(--ease-luxury), transform .28s var(--ease-luxury), background-color .28s var(--ease-luxury);
}

.contact-polish-form input:focus,
.contact-polish-form textarea:focus {
  transform: translateY(-1px);
  box-shadow: var(--ring-teal);
}

.profile-panel .muted {
  color: #64748b;
}

.doctor-review-card {
  position: relative;
  overflow: hidden;
}

.doctor-review-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(64, 224, 208, .14), transparent 70%);
  pointer-events: none;
}

.team-filter-btn,
.service-category-btn,
.gallery-filter-btn,
.implant-tab-btn {
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
  transition: all var(--dur-base) var(--ease-luxury);
  border-radius: var(--radius-pill);
}

.team-filter-btn:hover,
.service-category-btn:hover,
.gallery-filter-btn:hover,
.implant-tab-btn:hover {
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.profile-appointment-card {
  position: relative;
  overflow: hidden;
}

.profile-appointment-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(64, 224, 208, .12), transparent 65%);
  pointer-events: none;
}

.nav-shell,
.doctor-sticky-card,
.contact-card,
.profile-stat-card,
.schedule-item,
.portfolio-card,
.gallery-card,
.review-card-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .9));
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.doctor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.doctor-sticky {
  position: sticky;
  top: 110px;
}

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

.profile-stat-card {
  min-height: 120px;
  padding: 20px;
}

.review-card-shell {
  padding: 24px;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .3;
  pointer-events: none;
}

.glow-orb--teal {
  background: rgba(64, 224, 208, .55);
}

.glow-orb--gold {
  background: rgba(255, 215, 0, .34);
}

.status-pill,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.chip--teal {
  background: rgba(129, 216, 208, .16);
  color: #13877f;
}

.chip--gold {
  background: rgba(255, 215, 0, .16);
  color: #a67800;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: .25;
    transform: scale(1)
  }

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .section {
    padding-block: var(--space-24);
  }

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

  #doctorPage .sticky,
  .doctor-sticky {
    position: static !important;
  }
}

@media (max-width: 960px) {

  .hero-grid,
  .cards-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .container {
    width: min(calc(100% - (var(--container-pad-tablet) * 2)), var(--container-max));
  }
}

@media (max-width: 767px) {
  .section {
    padding-block: var(--space-16);
  }

  .container {
    width: min(calc(100% - (var(--container-pad-mobile) * 2)), var(--container-max));
  }

  .btn-primary-lg {
    min-height: 52px;
    padding: 0 24px;
  }

  .profile-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hover-raise-soft:hover,
  .polish-card:hover,
  .btn:hover {
    transform: none;
  }
}

/* Header / Navigation 1:1 pass */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 80px;
  transition: background var(--dur-base) var(--ease-luxury), box-shadow var(--dur-base) var(--ease-luxury), backdrop-filter var(--dur-base) var(--ease-luxury);
}

.site-nav--home {
  background: transparent;
  box-shadow: none;
}

.site-nav--solid,
.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.site-nav__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-nav__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.site-nav__brand-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #374151;
  transition: color var(--dur-base) var(--ease-luxury);
}

.site-nav__brand-text.is-on-hero {
  color: rgba(255, 255, 255, 0.98);
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.site-nav__link {
  font-weight: 500;
  color: #374151;
  transition: color var(--dur-base) var(--ease-luxury);
  white-space: nowrap;
}

.site-nav__link.is-on-hero {
  color: rgba(255, 255, 255, 0.95);
}

.site-nav__link:hover {
  color: #14b8a6;
}

.site-nav__link.is-on-hero:hover {
  color: #99f6e4;
}

.site-nav__actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.site-nav__account-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1;
  min-height: 48px;
  transition: transform var(--dur-base) var(--ease-luxury), box-shadow var(--dur-base) var(--ease-luxury), background var(--dur-base) var(--ease-luxury), color var(--dur-base) var(--ease-luxury);
}

.site-nav__account-btn:hover {
  transform: translateY(-1px);
}

.site-nav__account-btn--hero-login {
  background: #fff;
  color: #14b8a6;
}

.site-nav__account-btn--hero-login:hover {
  background: #f0fdfa;
}

.site-nav__account-btn--login,
.site-nav__account-btn--profile {
  background: linear-gradient(135deg, #40E0D0, #48CAE4);
  color: #fff;
  box-shadow: 0 10px 24px rgba(64, 224, 208, 0.18);
}

.site-nav__account-btn--login:hover,
.site-nav__account-btn--profile:hover {
  box-shadow: 0 16px 32px rgba(64, 224, 208, 0.26);
}

.site-nav__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #374151;
}

.site-nav__mobile-toggle i {
  font-size: 24px;
  transition: color var(--dur-base) var(--ease-luxury);
}

.site-nav__mobile-toggle i.is-on-hero {
  color: rgba(255, 255, 255, 0.95);
}

.site-nav__mobile-menu {
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 16px 0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.site-nav__mobile-link {
  display: block;
  padding: 12px 16px;
  color: #374151;
  font-weight: 500;
  transition: background var(--dur-base) var(--ease-luxury), color var(--dur-base) var(--ease-luxury);
}

.site-nav__mobile-link:hover {
  background: #f0fdfa;
  color: #14b8a6;
}

.site-nav__mobile-actions {
  padding: 12px 16px 0;
}

@media (min-width: 1024px) {
  .site-nav__links,
  .site-nav__actions {
    display: flex;
  }

  .site-nav__mobile-toggle,
  .site-nav__mobile-menu {
    display: none !important;
  }
}

/* Hero 1:1 pass */
.astom-hero {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
  background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 48%, #48CAE4 100%);
}

.astom-hero__bg,
.astom-hero__inner {
  position: relative;
  z-index: 1;
}

.astom-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.astom-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

.astom-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  animation: astom-luxury-float 8s ease-in-out infinite;
}
.astom-hero__orb--1 { width: 256px; height: 256px; top: 4rem; left: 2.5rem; background: rgba(255,255,255,.30); }
.astom-hero__orb--2 { width: 384px; height: 384px; right: 2.5rem; bottom: 4rem; background: rgba(255,255,255,.22); animation-delay: 1s; }
.astom-hero__orb--3 { width: 320px; height: 320px; top: 28%; left: 35%; background: rgba(175,238,238,.20); animation-delay: .5s; }
.astom-hero__orb--4 { width: 300px; height: 300px; top: 3rem; right: 18%; background: rgba(255,255,255,.18); animation-delay: 2s; }

.astom-hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 128px;
  background: linear-gradient(to top, rgba(255,255,255,.16), transparent 65%);
}

.astom-hero__particles {
  position: absolute;
  inset: 0;
}
.astom-hero__particle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(255,255,255,.18);
  animation: astom-luxury-float linear infinite;
}

.astom-hero__inner {
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 16px;
}
.astom-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 65vh;
}

.astom-hero__left {
  position: relative;
  z-index: 2;
}
.astom-hero__title {
  margin: 0 0 20px;
  color: #fff;
  line-height: .95;
  letter-spacing: -.035em;
}
.astom-hero__title-line {
  display: block;
  font-size: clamp(3rem, 5vw, 3.75rem);
  font-weight: 900;
}
.astom-hero__title-line--accent {
  margin-top: .45rem;
  background: linear-gradient(180deg, #ffffff 0%, #F0FFFF 52%, #E0FFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: astom-soft-pulse 2.6s ease-in-out infinite;
}
.astom-hero__title-line--light {
  margin-top: .5rem;
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,.9);
}
.astom-hero__subtitle {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 40rem;
}

.astom-hero__benefits {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.astom-hero__benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0,0,0,.08);
}
.astom-hero__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
  flex: 0 0 auto;
}
.astom-hero__benefit-icon--gold { background: linear-gradient(135deg, #FFD700 0%, #FFA500 55%, #FF8C00 100%); }
.astom-hero__benefit-icon--green { background: linear-gradient(135deg, #98FB98 0%, #90EE90 45%, #00FF7F 100%); }
.astom-hero__benefit-icon--violet { background: linear-gradient(135deg, #DDA0DD 0%, #DA70D6 50%, #BA55D3 100%); }

.astom-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.astom-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 16px;
  border: 2px solid transparent;
  font-weight: 900;
  transition: transform 300ms var(--ease-luxury), box-shadow 300ms var(--ease-luxury), background 300ms var(--ease-luxury), border-color 300ms var(--ease-luxury);
}
.astom-hero__btn:hover { transform: translateY(-3px); }
.astom-hero__btn--primary {
  background: #fff;
  color: #40E0D0;
  box-shadow: 0 20px 50px rgba(255,255,255,.24);
}
.astom-hero__btn--secondary {
  color: #fff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(10,65,84,.16);
}

.astom-hero__right {
  position: relative;
}
.astom-hero__visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.astom-hero__tooth {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: auto;
  transform: scale(1.1);
  filter: drop-shadow(0 0 50px rgba(64,224,208,.8)) drop-shadow(0 0 80px rgba(255,255,255,.4));
  animation: astom-gentle-float 6s ease-in-out infinite;
}
.astom-hero__ring {
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.2);
  animation: astom-spin 22s linear infinite;
}
.astom-hero__ring--lg { width: 540px; height: 540px; }
.astom-hero__ring--md { width: 430px; height: 430px; animation-duration: 16s; animation-direction: reverse; }
.astom-hero__ring--sm { width: 320px; height: 320px; animation-duration: 12s; }
.astom-hero__orbit-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #40E0D0 100%);
  box-shadow: 0 0 20px rgba(64,224,208,.8);
  transform: rotate(calc(var(--i) * 30deg)) translateX(255px);
  transform-origin: center;
  animation: astom-orbit-pulse 2.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .12s);
}

.astom-hero__widget {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(15,23,42,.12);
  animation: astom-luxury-float 8s ease-in-out infinite;
}
.astom-hero__widget strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
}
.astom-hero__widget small {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.astom-hero__widget-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  flex: 0 0 auto;
}
.astom-hero__widget-icon--split, .astom-hero__widget-icon--yandex { background: linear-gradient(135deg, #FF3333 0%, #CC0000 100%); }
.astom-hero__widget-icon--rating { background: #fff; color: #40E0D0; }
.astom-hero__widget-icon--programs { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }
.astom-hero__widget--split { top: 16px; left: -32px; }
.astom-hero__widget--rating { right: -32px; bottom: 48px; animation-delay: 1s; }
.astom-hero__widget--yandex { top: 25%; left: -48px; animation-delay: .6s; }
.astom-hero__widget--programs { left: -40px; bottom: 25%; animation-delay: 1.4s; }

.astom-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  animation: astom-bounce 2s infinite;
}
.astom-hero__scroll-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.astom-hero__scroll-mouse {
  display: inline-flex;
  justify-content: center;
  width: 32px;
  height: 56px;
  border: 3px solid rgba(255,255,255,.6);
  border-radius: 999px;
}
.astom-hero__scroll-dot {
  width: 6px;
  height: 12px;
  margin-top: 10px;
  background: #fff;
  border-radius: 999px;
  animation: astom-scroll-indicator 1.6s ease-in-out infinite;
}

@keyframes astom-luxury-float {
  0%,100% { transform: translateY(0) translateX(0) rotate(0deg); }
  33% { transform: translateY(-20px) translateX(10px) rotate(5deg); }
  66% { transform: translateY(10px) translateX(-5px) rotate(-3deg); }
}
@keyframes astom-gentle-float {
  0%,100% { transform: scale(1.1) translateY(0); }
  50% { transform: scale(1.1) translateY(-15px); }
}
@keyframes astom-spin { to { transform: rotate(360deg); } }
@keyframes astom-orbit-pulse {
  0%,100% { opacity: .7; box-shadow: 0 0 18px rgba(64,224,208,.55); }
  50% { opacity: 1; box-shadow: 0 0 24px rgba(64,224,208,.9); }
}
@keyframes astom-soft-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .86; }
}
@keyframes astom-scroll-indicator {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(16px); opacity: .4; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes astom-bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

@media (max-width: 1024px) {
  .astom-hero__content {
    grid-template-columns: 1fr;
    padding-top: 56px;
    min-height: auto;
  }
  .astom-hero__visual {
    min-height: 520px;
  }
  .astom-hero__widget--split { left: 0; }
  .astom-hero__widget--yandex { left: 0; }
  .astom-hero__widget--programs { left: 0; }
  .astom-hero__widget--rating { right: 0; }
}

@media (max-width: 767px) {
  .astom-hero__inner { padding-top: 96px; padding-bottom: 72px; }
  .astom-hero__content { gap: 28px; }
  .astom-hero__title-line { font-size: 2.5rem; }
  .astom-hero__title-line--light { font-size: 28px; }
  .astom-hero__subtitle { font-size: 16px; }
  .astom-hero__actions { flex-direction: column; align-items: stretch; }
  .astom-hero__btn { width: 100%; }
  .astom-hero__right { display: none; }
  .astom-hero__particle:nth-child(n+21) { display: none; }
  .astom-hero__scroll { bottom: 16px; }
}


/* Services 1:1 pass */
.services-home-1to1 {
  padding-block: 64px;
}

.services-home__badge {
  background: rgba(129, 216, 208, 0.10);
  border: 1px solid rgba(129, 216, 208, 0.30);
}

.services-home__decor {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .18;
  pointer-events: none;
}

.services-home__decor--left {
  top: -4rem;
  left: -4rem;
  background: rgba(129, 216, 208, .45);
}

.services-home__decor--right {
  right: -5rem;
  bottom: -3rem;
  background: rgba(255, 215, 0, .22);
}

.service-card-1to1 {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
  transition: transform 700ms var(--ease-luxury), box-shadow 700ms var(--ease-luxury), background-color 700ms var(--ease-luxury);
}

.service-card-1to1:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-card-1to1__border,
.service-card-1to1__wash {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.service-card-1to1__wash {
  opacity: 0;
  transition: opacity 700ms var(--ease-luxury);
}

.service-card-1to1:hover .service-card-1to1__wash {
  opacity: .08;
}

.service-card-1to1__border {
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,.0), rgba(255,255,255,.0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 700ms var(--ease-luxury), background 700ms var(--ease-luxury);
}

.service-card-1to1:hover .service-card-1to1__border {
  opacity: 1;
  background: linear-gradient(135deg, rgba(129,216,208,.9), rgba(255,255,255,.6), rgba(95,196,188,.9));
}

.service-card-1to1__icon-shell {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.service-card-1to1__icon {
  transition: transform 700ms var(--ease-luxury);
}

.service-card-1to1:hover .service-card-1to1__icon {
  transform: scale(1.10) rotate(12deg);
}

.service-card-1to1__title {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  color: #111827;
  margin: 0 0 8px;
  transition: color 500ms var(--ease-luxury), background-position 500ms var(--ease-luxury), -webkit-text-fill-color 500ms var(--ease-luxury);
}

.service-card-1to1:hover .service-card-1to1__title {
  background-image: linear-gradient(90deg, #81D8D0, #5FC4BC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card-1to1__text {
  font-size: 12px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0 0 12px;
}

.service-card-1to1__price {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.service-card-1to1__cta {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease-luxury), transform 500ms var(--ease-luxury), box-shadow 500ms var(--ease-luxury);
}

.service-card-1to1:hover .service-card-1to1__cta {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .16);
}

.services-home__main-cta {
  background: linear-gradient(90deg, #81D8D0 0%, #5FC4BC 100%);
  transition: transform 500ms var(--ease-luxury), box-shadow 500ms var(--ease-luxury);
}

.services-home__main-cta:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 24px 46px rgba(64, 224, 208, .28);
}

@media (max-width: 1023px) {
  .services-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .services-home-1to1 {
    padding-block: 56px;
  }

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

/* AboutSection 1:1 + OwnerMessage 1:1 */
.about-1to1__shell {
  min-height: 700px;
}
.about-1to1__image {
  min-height: 700px;
}
.about-1to1__overlay {
  background: linear-gradient(to right, rgba(64,224,208,.95), rgba(32,178,170,.90), rgba(64,224,208,.85));
}
.about-1to1__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(96px);
  pointer-events: none;
  z-index: 1;
  animation: astom-soft-pulse 6s ease-in-out infinite;
}
.about-1to1__orb--white {
  width: 300px;
  height: 300px;
  top: -40px;
  right: 12%;
  background: rgba(255,255,255,.28);
}
.about-1to1__orb--gold {
  width: 260px;
  height: 260px;
  left: -40px;
  bottom: 8%;
  background: rgba(255,215,0,.28);
  animation-delay: .8s;
}
.about-1to1__particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  animation: astom-luxury-float 7s ease-in-out infinite;
}
.about-1to1__gold-line {
  height: 8px;
  background: linear-gradient(to right, #FFD700, rgba(255,255,255,0.95), #FFD700);
}
.about-1to1__stat,
.about-1to1__founder-card,
.about-1to1__kids-card {
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}
.about-1to1__cta {
  box-shadow: 0 24px 48px rgba(255,255,255,.18);
}

.owner-1to1__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(96px);
  pointer-events: none;
  z-index: 0;
  animation: astom-soft-pulse 7s ease-in-out infinite;
}
.owner-1to1__orb--teal {
  width: 384px;
  height: 384px;
  left: -60px;
  top: 40px;
  background: rgba(64,224,208,.20);
}
.owner-1to1__orb--gold {
  width: 384px;
  height: 384px;
  right: -60px;
  bottom: 20px;
  background: rgba(251,191,36,.18);
  animation-delay: .9s;
}
.owner-1to1__particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #40E0D0 0%, #48CAE4 100%);
  opacity: .4;
  animation: astom-luxury-float 8s ease-in-out infinite;
}
.owner-1to1__heading {
  font-weight: 100;
}
.owner-1to1__photo-gradient {
  background: linear-gradient(135deg, #40E0D0 0%, #48CAE4 50%, #F59E0B 100%);
}
.owner-1to1__signature-line {
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #40E0D0 0%, #48CAE4 100%);
}
.owner-1to1__mini-card {
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
.owner-1to1__mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15,23,42,.12);
  border-color: rgba(64,224,208,.22);
}

@media (max-width: 1024px) {
  .about-1to1__shell,
  .about-1to1__image {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .about-1to1__content {
    padding-left: 24px;
    padding-right: 24px;
  }
  .owner-1to1 {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .owner-1to1__heading {
    font-size: 48px;
    line-height: 1.05;
  }
}

/* ChildrenDentistry 1:1 */
.children-home-1to1 {
  position: relative;
}
.children-home-1to1__space {
  pointer-events: none;
}
.children-home-1to1__star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  animation: astomChildrenPulse 2s ease-in-out infinite;
}
.children-home-1to1__bigstar {
  position: absolute;
  color: #fde047;
  line-height: 1;
  animation: astomChildrenPulse 2s ease-in-out infinite;
}
.children-home-1to1__planet {
  position: absolute;
  border-radius: 999px;
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
  animation: astomChildrenBounce 4s ease-in-out infinite;
}
.children-home-1to1__planet--purple {
  top: 4rem;
  right: 4rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #c084fc, #ec4899);
}
.children-home-1to1__planet--orange {
  bottom: 6rem;
  left: 6rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #fb923c, #ef4444);
  animation-duration: 5s;
  animation-delay: 1s;
}
.children-home-1to1__planet--blue {
  top: 50%;
  left: 4rem;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  animation-duration: 3.5s;
  animation-delay: .5s;
}
.children-home-1to1__panel {
  min-height: 420px;
}
.children-home-1to1__ship {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1;
}
.children-home-1to1__ship-body {
  position: relative;
  width: 6rem;
  height: 4.5rem;
  background: linear-gradient(135deg, #d1d5db, #6b7280);
  border-radius: 999px 999px 1rem 1rem;
}
.children-home-1to1__ship-window {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  border: 3px solid #fff;
}
.children-home-1to1__ship-leg {
  position: absolute;
  bottom: 0;
  width: 1.25rem;
  height: 1.5rem;
  background: #ef4444;
  border-radius: .5rem .5rem 0 0;
}
.children-home-1to1__ship-leg--left { left: 25%; }
.children-home-1to1__ship-leg--right { right: 25%; }
.children-home-1to1__ship-fire {
  position: absolute;
  bottom: -1.5rem;
  width: 1.25rem;
  height: 2.5rem;
  background: linear-gradient(to bottom, #f97316, #facc15, transparent);
  animation: astomChildrenPulse 1.5s ease-in-out infinite;
}
.children-home-1to1__ship-fire--left { left: 25%; }
.children-home-1to1__ship-fire--right { right: 25%; }
.children-home-1to1__alien {
  position: absolute;
  z-index: 1;
}
.children-home-1to1__alien--green {
  bottom: 2rem;
  left: 2rem;
}
.children-home-1to1__alien--purple {
  top: 50%;
  right: 6rem;
}
.children-home-1to1__alien-body {
  position: relative;
  width: 4rem;
  height: 5rem;
  border-radius: 999px;
}
.children-home-1to1__alien--green .children-home-1to1__alien-body {
  background: linear-gradient(135deg, #4ade80, #16a34a);
}
.children-home-1to1__alien--purple .children-home-1to1__alien-body {
  background: linear-gradient(135deg, #c084fc, #7e22ce);
}
.children-home-1to1__alien-eye {
  position: absolute;
  top: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #fff;
}
.children-home-1to1__alien-eye span {
  position: absolute;
  top: .25rem;
  left: .25rem;
  width: .75rem;
  height: .75rem;
  border-radius: 999px;
  background: #111827;
}
.children-home-1to1__alien-eye--left { left: .5rem; }
.children-home-1to1__alien-eye--right { right: .5rem; }
.children-home-1to1__alien-smile {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  width: 2rem;
  height: 1rem;
  transform: translateX(-50%);
  border-bottom: 3px solid #111827;
  border-radius: 0 0 999px 999px;
}
.children-home-1to1__alien-antenna {
  position: absolute;
  top: -1.25rem;
  width: 4px;
  height: 1.5rem;
}
.children-home-1to1__alien--green .children-home-1to1__alien-antenna { background: #15803d; }
.children-home-1to1__alien--purple .children-home-1to1__alien-antenna { background: #7e22ce; }
.children-home-1to1__alien-antenna span {
  position: absolute;
  top: -.375rem;
  left: -.25rem;
  width: .75rem;
  height: .75rem;
  border-radius: 999px;
  animation: astomChildrenPulse 1.5s ease-in-out infinite;
}
.children-home-1to1__alien--green .children-home-1to1__alien-antenna span { background: #facc15; }
.children-home-1to1__alien--purple .children-home-1to1__alien-antenna span { background: #f472b6; }
.children-home-1to1__alien-antenna--left { left: .75rem; }
.children-home-1to1__alien-antenna--right { right: .75rem; }

@keyframes astomChildrenPulse {
  0%, 100% { opacity: .75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
@keyframes astomChildrenBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 1024px) {
  .children-home-1to1__ship,
  .children-home-1to1__alien--purple,
  .children-home-1to1__planet--blue { display:none; }
}
@media (max-width: 767px) {
  .children-home-1to1__planet--purple,
  .children-home-1to1__planet--orange,
  .children-home-1to1__alien--green { display:none; }
  .children-home-1to1__panel { min-height: auto; }
}

/* Gallery + Reviews 1:1 pass */
.gallery-home-particle {
  animation: astom-luxury-float linear infinite;
}

#galleryReviewForm button[disabled] {
  opacity: .7;
  pointer-events: none;
}

.gallery-review-star {
  color: #facc15;
}

.gallery-review-star i {
  transition: transform 200ms ease, opacity 200ms ease;
}

.gallery-review-star:hover i {
  transform: scale(1.08);
}


/* Children page migrated from V6 */
.doctor-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  transition: box-shadow var(--dur-base) var(--ease-main), border-color var(--dur-base) var(--ease-main), background var(--dur-base) var(--ease-main);
  background: #fff;
}

.doctor-field:focus {
  border-color: #40E0D0;
  box-shadow: 0 0 0 3px rgba(64,224,208,.18);
}

.children-page-1to1__planet{position:fixed;border-radius:9999px;box-shadow:0 20px 50px rgba(0,0,0,.25);pointer-events:none;animation:childrenPlanetFloat 4.5s ease-in-out infinite}
.children-page-1to1__planet--one{top:5rem;right:5rem;width:8rem;height:8rem;background:linear-gradient(135deg,#c084fc,#ec4899)}
.children-page-1to1__planet--two{bottom:8rem;left:8rem;width:10rem;height:10rem;background:linear-gradient(135deg,#fb923c,#ef4444);animation-duration:5s;animation-delay:1s}
.children-page-1to1__planet--three{top:50%;left:5rem;width:7rem;height:7rem;background:linear-gradient(135deg,#60a5fa,#22d3ee);animation-duration:3.5s;animation-delay:.5s}
.children-page-1to1__planet--four{top:33%;right:25%;width:6rem;height:6rem;background:linear-gradient(135deg,#facc15,#fdba74);animation-duration:4.5s;animation-delay:2s}
@keyframes childrenPlanetFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-16px)}}
.children-page-1to1 .doctor-field{width:100%;padding:12px 16px;border:2px solid #e5e7eb;border-radius:16px;background:#fff;color:#1f2937;outline:none;transition:border-color .3s ease,box-shadow .3s ease}
.children-page-1to1 .doctor-field:focus{border-color:#40E0D0;box-shadow:0 0 0 4px rgba(64,224,208,.18)}
.children-time-slot{padding:.65rem .5rem;border-radius:14px;border:2px solid rgba(64,224,208,.18);background:#fff;font-weight:700;color:#0f766e;transition:all .25s ease;cursor:pointer}
.children-time-slot:hover{transform:translateY(-2px);border-color:#40E0D0;box-shadow:0 10px 24px rgba(64,224,208,.18)}
.children-time-slot.is-active{background:linear-gradient(135deg,#40E0D0,#20B2AA);color:#fff;border-color:transparent;box-shadow:0 16px 36px rgba(32,178,170,.3)}
@media (max-width:1024px){.children-page-1to1__planet{display:none}}


/* Loyalty page transplanted from V6 */
.loyalty-float-particle{animation:loyaltyFloat 14s linear infinite;}
.loyalty-sparkle{animation:loyaltySparkle 3s ease-in-out infinite;}
.loyalty-float-icon{animation:gentleFloat 7s ease-in-out infinite;}
@keyframes gentleFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes loyaltyFloat{0%{transform:translateY(0) translateX(0)}50%{transform:translateY(-18px) translateX(8px)}100%{transform:translateY(0) translateX(0)}}
@keyframes loyaltySparkle{0%,100%{opacity:.25;transform:scale(.8)}50%{opacity:1;transform:scale(1.8)}}
